mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-11 02:28:18 +00:00
91 lines
2.1 KiB
C++
91 lines
2.1 KiB
C++
#include <engine/keys.h>
|
|
#include "lineinput.h"
|
|
|
|
CLineInput::CLineInput()
|
|
{
|
|
Clear();
|
|
}
|
|
|
|
void CLineInput::Clear()
|
|
{
|
|
mem_zero(m_Str, sizeof(m_Str));
|
|
m_Len = 0;
|
|
m_CursorPos = 0;
|
|
}
|
|
|
|
void CLineInput::Set(const char *pString)
|
|
{
|
|
str_copy(m_Str, pString, sizeof(m_Str));
|
|
m_Len = str_length(m_Str);
|
|
m_CursorPos = m_Len;
|
|
}
|
|
|
|
bool CLineInput::Manipulate(IInput::CEvent e, char *pStr, int StrMaxSize, int *pStrLenPtr, int *pCursorPosPtr)
|
|
{
|
|
int CursorPos = *pCursorPosPtr;
|
|
int Len = *pStrLenPtr;
|
|
bool Changes = false;
|
|
|
|
if(CursorPos > Len)
|
|
CursorPos = Len;
|
|
|
|
int Code = e.m_Unicode;
|
|
int k = e.m_Key;
|
|
|
|
// 127 is produced on Mac OS X and corresponds to the delete key
|
|
if (!(Code >= 0 && Code < 32) && Code != 127)
|
|
{
|
|
char Tmp[8];
|
|
int CharSize = str_utf8_encode(Tmp, Code);
|
|
|
|
if (Len < StrMaxSize - CharSize && CursorPos < StrMaxSize - CharSize)
|
|
{
|
|
mem_move(pStr + CursorPos + CharSize, pStr + CursorPos, Len - CursorPos + CharSize);
|
|
for(int i = 0; i < CharSize; i++)
|
|
pStr[CursorPos+i] = Tmp[i];
|
|
CursorPos += CharSize;
|
|
Len += CharSize;
|
|
Changes = true;
|
|
}
|
|
}
|
|
|
|
if(e.m_Flags&IInput::FLAG_PRESS)
|
|
{
|
|
if (k == KEY_BACKSPACE && CursorPos > 0)
|
|
{
|
|
int NewCursorPos = str_utf8_rewind(pStr, CursorPos);
|
|
int CharSize = CursorPos-NewCursorPos;
|
|
mem_move(pStr+NewCursorPos, pStr+CursorPos, Len - NewCursorPos - CharSize + 1); // +1 == null term
|
|
CursorPos = NewCursorPos;
|
|
Len -= CharSize;
|
|
Changes = true;
|
|
}
|
|
else if (k == KEY_DELETE && CursorPos < Len)
|
|
{
|
|
int p = str_utf8_forward(pStr, CursorPos);
|
|
int CharSize = p-CursorPos;
|
|
mem_move(pStr + CursorPos, pStr + CursorPos + CharSize, Len - CursorPos - CharSize + 1); // +1 == null term
|
|
Len -= CharSize;
|
|
Changes = true;
|
|
}
|
|
else if (k == KEY_LEFT && CursorPos > 0)
|
|
CursorPos = str_utf8_rewind(pStr, CursorPos);
|
|
else if (k == KEY_RIGHT && CursorPos < Len)
|
|
CursorPos = str_utf8_forward(pStr, CursorPos);
|
|
else if (k == KEY_HOME)
|
|
CursorPos = 0;
|
|
else if (k == KEY_END)
|
|
CursorPos = Len;
|
|
}
|
|
|
|
*pCursorPosPtr = CursorPos;
|
|
*pStrLenPtr = Len;
|
|
|
|
return Changes;
|
|
}
|
|
|
|
void CLineInput::ProcessInput(IInput::CEvent e)
|
|
{
|
|
Manipulate(e, m_Str, sizeof(m_Str), &m_Len, &m_CursorPos);
|
|
}
|