ddnet/src/game/client/components/binds.h

73 lines
2.1 KiB
C
Raw Normal View History

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 GAME_CLIENT_COMPONENTS_BINDS_H
#define GAME_CLIENT_COMPONENTS_BINDS_H
2022-05-29 16:33:38 +00:00
#include <engine/console.h>
2010-05-29 07:25:38 +00:00
#include <engine/keys.h>
2022-05-29 16:33:38 +00:00
#include <game/client/component.h>
2021-07-12 09:29:59 +00:00
class IConfigManager;
2010-05-29 07:25:38 +00:00
class CBinds : public CComponent
{
int GetKeyID(const char *pKeyName);
2010-05-29 07:25:38 +00:00
static void ConBind(IConsole::IResult *pResult, void *pUserData);
2017-03-06 17:06:55 +00:00
static void ConDumpBinds(IConsole::IResult *pResult, void *pUserData);
static void ConUnbind(IConsole::IResult *pResult, void *pUserData);
static void ConUnbindAll(IConsole::IResult *pResult, void *pUserData);
2010-05-29 07:25:38 +00:00
class IConsole *GetConsole() const { return Console(); }
static void ConfigSaveCallback(IConfigManager *pConfigManager, void *pUserData);
2010-05-29 07:25:38 +00:00
public:
CBinds();
2017-04-11 23:36:48 +00:00
~CBinds();
virtual int Sizeof() const override { return sizeof(*this); }
2010-05-29 07:25:38 +00:00
class CBindsSpecial : public CComponent
{
public:
CBinds *m_pBinds;
virtual int Sizeof() const override { return sizeof(*this); }
virtual bool OnInput(IInput::CEvent Event) override;
2010-05-29 07:25:38 +00:00
};
enum
{
2020-09-04 20:48:39 +00:00
MODIFIER_NONE = 0,
2019-04-28 13:32:14 +00:00
MODIFIER_CTRL,
MODIFIER_ALT,
MODIFIER_SHIFT,
MODIFIER_GUI,
2020-09-04 20:48:39 +00:00
MODIFIER_COUNT,
MODIFIER_COMBINATION_COUNT = 1 << MODIFIER_COUNT
2019-04-28 13:32:14 +00:00
};
2010-05-29 07:25:38 +00:00
CBindsSpecial m_SpecialBinds;
void Bind(int KeyID, const char *pStr, bool FreeOnly = false, int ModifierCombination = MODIFIER_NONE);
2010-05-29 07:25:38 +00:00
void SetDefaults();
void UnbindAll();
const char *Get(int KeyID, int ModifierCombination);
2019-04-28 13:32:14 +00:00
void GetKey(const char *pBindStr, char *aBuf, unsigned BufSize);
int GetBindSlot(const char *pBindString, int *pModifierCombination);
static int GetModifierMask(IInput *i);
static int GetModifierMaskOfKey(int Key);
static const char *GetModifierName(int Modifier);
static const char *GetKeyBindModifiersName(int ModifierCombination);
virtual void OnConsoleInit() override;
virtual bool OnInput(IInput::CEvent Event) override;
2011-04-17 17:14:49 +00:00
// DDRace
void SetDDRaceBinds(bool FreeOnly);
2019-04-28 13:32:14 +00:00
private:
2020-09-04 20:48:39 +00:00
char *m_aapKeyBindings[MODIFIER_COMBINATION_COUNT][KEY_LAST];
2010-05-29 07:25:38 +00:00
};
#endif