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

49 lines
1.3 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
#include <game/client/component.h>
#include <engine/keys.h>
class CBinds : public CComponent
{
2017-04-11 23:36:48 +00:00
char *m_apKeyBindings[KEY_LAST];
2010-05-29 07:25:38 +00:00
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(); }
2010-05-29 07:25:38 +00:00
static void ConfigSaveCallback(class IConfig *pConfig, void *pUserData);
2010-05-29 07:25:38 +00:00
public:
CBinds();
2017-04-11 23:36:48 +00:00
~CBinds();
2010-05-29 07:25:38 +00:00
class CBindsSpecial : public CComponent
{
public:
CBinds *m_pBinds;
virtual bool OnInput(IInput::CEvent Event);
};
2010-05-29 07:25:38 +00:00
CBindsSpecial m_SpecialBinds;
void Bind(int KeyID, const char *pStr);
2010-05-29 07:25:38 +00:00
void SetDefaults();
void UnbindAll();
const char *Get(int KeyID);
2010-05-29 07:25:38 +00:00
const char *GetKey(const char *pBindStr);
2010-05-29 07:25:38 +00:00
virtual void OnConsoleInit();
virtual bool OnInput(IInput::CEvent Event);
2011-04-17 17:14:49 +00:00
// DDRace
void SetDDRaceBinds(bool FreeOnly);
2010-05-29 07:25:38 +00:00
};
#endif