2010-11-20 10:37:14 +00:00
|
|
|
/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */
|
|
|
|
/* If you are missing that file, acquire a complete release at teeworlds.com. */
|
2010-05-29 07:25:38 +00:00
|
|
|
#ifndef ENGINE_INPUT_H
|
|
|
|
#define ENGINE_INPUT_H
|
|
|
|
|
|
|
|
#include "kernel.h"
|
|
|
|
|
2016-04-30 18:11:26 +00:00
|
|
|
const int g_MaxKeys = 512;
|
|
|
|
extern const char g_aaKeyStrings[g_MaxKeys][20];
|
2010-05-29 07:25:38 +00:00
|
|
|
|
|
|
|
class IInput : public IInterface
|
|
|
|
{
|
|
|
|
MACRO_INTERFACE("input", 0)
|
|
|
|
public:
|
2020-10-25 15:48:12 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
INPUT_TEXT_SIZE = 128
|
|
|
|
};
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
class CEvent
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
int m_Flags;
|
|
|
|
int m_Key;
|
2020-10-25 15:48:12 +00:00
|
|
|
char m_aText[INPUT_TEXT_SIZE];
|
2016-04-30 18:11:26 +00:00
|
|
|
int m_InputCount;
|
2010-05-29 07:25:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
protected:
|
|
|
|
enum
|
|
|
|
{
|
2020-09-22 16:02:03 +00:00
|
|
|
INPUT_BUFFER_SIZE = 32
|
2010-05-29 07:25:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// quick access to events
|
|
|
|
int m_NumEvents;
|
|
|
|
IInput::CEvent m_aInputEvents[INPUT_BUFFER_SIZE];
|
|
|
|
|
2011-04-13 18:37:12 +00:00
|
|
|
public:
|
2010-05-29 07:25:38 +00:00
|
|
|
enum
|
|
|
|
{
|
2020-09-22 16:02:03 +00:00
|
|
|
FLAG_PRESS = 1,
|
|
|
|
FLAG_RELEASE = 2,
|
|
|
|
FLAG_REPEAT = 4,
|
|
|
|
FLAG_TEXT = 8,
|
2010-05-29 07:25:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// events
|
|
|
|
int NumEvents() const { return m_NumEvents; }
|
2016-04-30 18:11:26 +00:00
|
|
|
virtual bool IsEventValid(CEvent *pEvent) const = 0;
|
2010-05-29 07:25:38 +00:00
|
|
|
CEvent GetEvent(int Index) const
|
2011-04-13 18:37:12 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
if(Index < 0 || Index >= m_NumEvents)
|
|
|
|
{
|
2020-09-22 16:02:03 +00:00
|
|
|
IInput::CEvent e = {0, 0};
|
2010-05-29 07:25:38 +00:00
|
|
|
return e;
|
|
|
|
}
|
|
|
|
return m_aInputEvents[Index];
|
|
|
|
}
|
2021-05-31 09:43:02 +00:00
|
|
|
CEvent *GetEventsRaw() { return m_aInputEvents; }
|
|
|
|
int *GetEventCountRaw() { return &m_NumEvents; }
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
// keys
|
2021-12-18 11:23:20 +00:00
|
|
|
virtual bool ModifierIsPressed() const = 0;
|
2016-04-30 18:11:26 +00:00
|
|
|
virtual bool KeyIsPressed(int Key) const = 0;
|
2020-09-22 16:02:03 +00:00
|
|
|
virtual bool KeyPress(int Key, bool CheckCounter = false) const = 0;
|
2016-04-30 18:11:26 +00:00
|
|
|
const char *KeyName(int Key) const { return (Key >= 0 && Key < g_MaxKeys) ? g_aaKeyStrings[Key] : g_aaKeyStrings[0]; }
|
|
|
|
virtual void Clear() = 0;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2022-06-06 17:58:03 +00:00
|
|
|
// mouse
|
|
|
|
virtual void NativeMousePos(int *pX, int *pY) const = 0;
|
|
|
|
virtual bool NativeMousePressed(int Index) = 0;
|
2021-10-23 11:48:21 +00:00
|
|
|
virtual void MouseModeRelative() = 0;
|
|
|
|
virtual void MouseModeAbsolute() = 0;
|
2022-01-16 11:18:23 +00:00
|
|
|
virtual bool MouseDoubleClick() = 0;
|
2022-06-06 17:58:03 +00:00
|
|
|
virtual void MouseRelative(float *pX, float *pY) = 0;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2022-06-06 17:58:03 +00:00
|
|
|
// clipboard
|
|
|
|
virtual const char *GetClipboardText() = 0;
|
|
|
|
virtual void SetClipboardText(const char *pText) = 0;
|
2016-08-15 04:01:31 +00:00
|
|
|
|
2022-06-06 17:58:03 +00:00
|
|
|
// text editing
|
2016-08-15 05:16:06 +00:00
|
|
|
virtual bool GetIMEState() = 0;
|
2017-07-15 13:25:36 +00:00
|
|
|
virtual void SetIMEState(bool Activate) = 0;
|
2020-10-25 17:44:10 +00:00
|
|
|
virtual int GetIMEEditingTextLength() const = 0;
|
2020-10-25 15:48:12 +00:00
|
|
|
virtual const char *GetIMEEditingText() = 0;
|
2016-08-15 04:01:31 +00:00
|
|
|
virtual int GetEditingCursor() = 0;
|
2020-09-22 16:01:13 +00:00
|
|
|
virtual void SetEditingPosition(float X, float Y) = 0;
|
2010-05-29 07:25:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class IEngineInput : public IInput
|
|
|
|
{
|
|
|
|
MACRO_INTERFACE("engineinput", 0)
|
|
|
|
public:
|
|
|
|
virtual void Init() = 0;
|
2010-12-11 21:04:50 +00:00
|
|
|
virtual int Update() = 0;
|
2014-06-16 11:29:18 +00:00
|
|
|
virtual int VideoRestartNeeded() = 0;
|
2010-05-29 07:25:38 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern IEngineInput *CreateEngineInput();
|
|
|
|
|
|
|
|
#endif
|