mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-11 02:28:18 +00:00
480 lines
12 KiB
C++
480 lines
12 KiB
C++
/* (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. */
|
|
#include <engine/config.h>
|
|
#include <engine/shared/config.h>
|
|
#include "binds.h"
|
|
|
|
bool CBinds::CBindsSpecial::OnInput(IInput::CEvent Event)
|
|
{
|
|
// only handle F and composed F binds
|
|
if((Event.m_Key >= KEY_F1 && Event.m_Key <= KEY_F12) || (Event.m_Key >= KEY_F13 && Event.m_Key <= KEY_F24))
|
|
{
|
|
int Mask = m_pBinds->GetModifierMask(Input());
|
|
|
|
bool ret = false;
|
|
for(int Mod = 0; Mod < MODIFIER_COUNT; Mod++)
|
|
{
|
|
if(Mask&(1 << Mod) && m_pBinds->m_aapKeyBindings[Mod][Event.m_Key])
|
|
m_pBinds->GetConsole()->ExecuteLineStroked(Event.m_Flags&IInput::FLAG_PRESS, m_pBinds->m_aapKeyBindings[Mod][Event.m_Key]);
|
|
ret = true;
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
CBinds::CBinds()
|
|
{
|
|
mem_zero(m_aapKeyBindings, sizeof(m_aapKeyBindings));
|
|
m_SpecialBinds.m_pBinds = this;
|
|
}
|
|
|
|
CBinds::~CBinds()
|
|
{
|
|
for(int i = 0; i < KEY_LAST; i++)
|
|
for(int j = 0; j < MODIFIER_COUNT; j++)
|
|
if(m_aapKeyBindings[j][i])
|
|
free(m_aapKeyBindings[j][i]);
|
|
}
|
|
|
|
void CBinds::Bind(int KeyID, const char *pStr, bool FreeOnly, int Modifier)
|
|
{
|
|
if(KeyID < 0 || KeyID >= KEY_LAST)
|
|
return;
|
|
|
|
if(FreeOnly && Get(KeyID, Modifier)[0])
|
|
return;
|
|
|
|
if(m_aapKeyBindings[Modifier][KeyID])
|
|
{
|
|
free(m_aapKeyBindings[Modifier][KeyID]);
|
|
m_aapKeyBindings[Modifier][KeyID] = 0;
|
|
}
|
|
|
|
// skip modifiers for +xxx binds
|
|
if(pStr[0] == '+')
|
|
Modifier = 0;
|
|
|
|
char aBuf[256];
|
|
if(!pStr[0])
|
|
{
|
|
str_format(aBuf, sizeof(aBuf), "unbound %s (%d)", Input()->KeyName(KeyID), KeyID);
|
|
}
|
|
else
|
|
{
|
|
int Size = str_length(pStr) + 1;
|
|
m_aapKeyBindings[Modifier][KeyID] = (char *)malloc(Size);
|
|
str_copy(m_aapKeyBindings[Modifier][KeyID], pStr, Size);
|
|
if(Modifier)
|
|
str_format(aBuf, sizeof(aBuf), "bound %s+%s (%d) = %s", GetModifierName(Modifier), Input()->KeyName(KeyID), KeyID, m_aapKeyBindings[Modifier][KeyID]);
|
|
else
|
|
str_format(aBuf, sizeof(aBuf), "bound %s (%d) = %s", Input()->KeyName(KeyID), KeyID, m_aapKeyBindings[Modifier][KeyID]);
|
|
}
|
|
Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "binds", aBuf);
|
|
}
|
|
|
|
int CBinds::GetModifierMask(IInput *i)
|
|
{
|
|
int Mask = 0;
|
|
Mask |= i->KeyIsPressed(KEY_LSHIFT) << CBinds::MODIFIER_SHIFT;
|
|
Mask |= i->KeyIsPressed(KEY_RSHIFT) << CBinds::MODIFIER_SHIFT;
|
|
Mask |= i->KeyIsPressed(KEY_LCTRL) << CBinds::MODIFIER_CTRL;
|
|
Mask |= i->KeyIsPressed(KEY_RCTRL) << CBinds::MODIFIER_CTRL;
|
|
Mask |= i->KeyIsPressed(KEY_LALT) << CBinds::MODIFIER_ALT;
|
|
if(!Mask)
|
|
return 1 << CBinds::MODIFIER_NONE;
|
|
|
|
return Mask;
|
|
}
|
|
|
|
int CBinds::GetModifierMaskOfKey(int Key)
|
|
{
|
|
switch(Key)
|
|
{
|
|
case KEY_LSHIFT:
|
|
case KEY_RSHIFT:
|
|
return 1 << CBinds::MODIFIER_SHIFT;
|
|
case KEY_LCTRL:
|
|
case KEY_RCTRL:
|
|
return 1 << CBinds::MODIFIER_CTRL;
|
|
case KEY_LALT:
|
|
return 1 << CBinds::MODIFIER_ALT;
|
|
default:
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
bool CBinds::ModifierMatchesKey(int Modifier, int Key)
|
|
{
|
|
switch(Modifier)
|
|
{
|
|
case MODIFIER_SHIFT:
|
|
return Key == KEY_LSHIFT || Key == KEY_RSHIFT;
|
|
case MODIFIER_CTRL:
|
|
return Key == KEY_LCTRL || Key == KEY_RCTRL;
|
|
case MODIFIER_ALT:
|
|
return Key == KEY_LALT;
|
|
case MODIFIER_NONE:
|
|
default:
|
|
return false;
|
|
}
|
|
}
|
|
|
|
bool CBinds::OnInput(IInput::CEvent e)
|
|
{
|
|
// don't handle invalid events
|
|
if(e.m_Key <= 0 || e.m_Key >= KEY_LAST)
|
|
return false;
|
|
|
|
int Mask = GetModifierMask(Input());
|
|
int KeyModifierMask = GetModifierMaskOfKey(e.m_Key);
|
|
Mask &= ~KeyModifierMask;
|
|
if(!Mask)
|
|
Mask = 1 << MODIFIER_NONE;
|
|
|
|
if(Mask == ((1 << MODIFIER_CTRL) | (1 << MODIFIER_SHIFT)))
|
|
{
|
|
if(m_aapKeyBindings[0][e.m_Key] && e.m_Flags&IInput::FLAG_RELEASE)
|
|
Console()->ExecuteLineStroked(0, m_aapKeyBindings[0][e.m_Key]);
|
|
return true;
|
|
}
|
|
|
|
bool ret = false;
|
|
for(int Mod = 1; Mod < MODIFIER_COUNT; Mod++)
|
|
{
|
|
if(m_aapKeyBindings[Mod][e.m_Key] && Mask & (1 << Mod)) // always trigger +xxx binds despite any modifier
|
|
{
|
|
if(e.m_Flags&IInput::FLAG_PRESS)
|
|
Console()->ExecuteLineStroked(1, m_aapKeyBindings[Mod][e.m_Key]);
|
|
if(e.m_Flags&IInput::FLAG_RELEASE)
|
|
Console()->ExecuteLineStroked(0, m_aapKeyBindings[Mod][e.m_Key]);
|
|
ret = true;
|
|
}
|
|
}
|
|
|
|
if(m_aapKeyBindings[0][e.m_Key] && (!ret || m_aapKeyBindings[0][e.m_Key][0] == '+'))
|
|
{
|
|
if(e.m_Flags&IInput::FLAG_PRESS)
|
|
Console()->ExecuteLineStroked(1, m_aapKeyBindings[0][e.m_Key]);
|
|
if(e.m_Flags&IInput::FLAG_RELEASE)
|
|
Console()->ExecuteLineStroked(0, m_aapKeyBindings[0][e.m_Key]);
|
|
ret = true;
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
void CBinds::UnbindAll()
|
|
{
|
|
for(int i = 0; i < MODIFIER_COUNT; i++)
|
|
{
|
|
for(int j = 0; j < KEY_LAST; j++)
|
|
{
|
|
if(m_aapKeyBindings[i][j])
|
|
free(m_aapKeyBindings[i][j]);
|
|
m_aapKeyBindings[i][j] = 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
const char *CBinds::Get(int KeyID, int Modifier)
|
|
{
|
|
if(KeyID > 0 && KeyID < KEY_LAST && m_aapKeyBindings[Modifier][KeyID])
|
|
return m_aapKeyBindings[Modifier][KeyID];
|
|
return "";
|
|
}
|
|
|
|
void CBinds::GetKey(const char *pBindStr, char *aBuf, unsigned BufSize)
|
|
{
|
|
aBuf[0] = 0;
|
|
for(int Mod = 0; Mod < MODIFIER_COUNT; Mod++)
|
|
{
|
|
for(int KeyId = 0; KeyId < KEY_LAST; KeyId++)
|
|
{
|
|
const char *pBind = Get(KeyId, Mod);
|
|
if(!pBind[0])
|
|
continue;
|
|
|
|
if(str_comp(pBind, pBindStr) == 0){
|
|
if(Mod)
|
|
str_format(aBuf, BufSize, "%s+%s", GetModifierName(Mod), Input()->KeyName(KeyId));
|
|
else
|
|
str_format(aBuf, BufSize, "%s", Input()->KeyName(KeyId));
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void CBinds::SetDefaults()
|
|
{
|
|
// set default key bindings
|
|
UnbindAll();
|
|
Bind(KEY_F1, "toggle_local_console");
|
|
Bind(KEY_F2, "toggle_remote_console");
|
|
Bind(KEY_TAB, "+scoreboard");
|
|
Bind(KEY_EQUALS, "+statboard");
|
|
Bind(KEY_F10, "screenshot");
|
|
|
|
Bind(KEY_A, "+left");
|
|
Bind(KEY_D, "+right");
|
|
|
|
Bind(KEY_SPACE, "+jump");
|
|
Bind(KEY_MOUSE_1, "+fire");
|
|
Bind(KEY_MOUSE_2, "+hook");
|
|
Bind(KEY_LSHIFT, "+emote");
|
|
Bind(KEY_RETURN, "+show_chat; chat all");
|
|
Bind(KEY_RIGHT, "spectate_next");
|
|
Bind(KEY_LEFT, "spectate_previous");
|
|
Bind(KEY_RSHIFT, "+spectate");
|
|
|
|
Bind(KEY_1, "+weapon1");
|
|
Bind(KEY_2, "+weapon2");
|
|
Bind(KEY_3, "+weapon3");
|
|
Bind(KEY_4, "+weapon4");
|
|
Bind(KEY_5, "+weapon5");
|
|
|
|
Bind(KEY_MOUSE_WHEEL_UP, "+prevweapon");
|
|
Bind(KEY_MOUSE_WHEEL_DOWN, "+nextweapon");
|
|
|
|
Bind(KEY_T, "+show_chat; chat all");
|
|
Bind(KEY_Y, "+show_chat; chat team");
|
|
Bind(KEY_U, "+show_chat");
|
|
Bind(KEY_I, "+show_chat; chat all /c ");
|
|
|
|
Bind(KEY_F3, "vote yes");
|
|
Bind(KEY_F4, "vote no");
|
|
|
|
Bind(KEY_K, "kill");
|
|
Bind(KEY_Q, "say /pause");
|
|
Bind(KEY_P, "say /pause");
|
|
|
|
// DDRace
|
|
|
|
if(g_Config.m_ClDDRaceBinds)
|
|
SetDDRaceBinds(false);
|
|
}
|
|
|
|
void CBinds::OnConsoleInit()
|
|
{
|
|
// bindings
|
|
IConfig *pConfig = Kernel()->RequestInterface<IConfig>();
|
|
if(pConfig)
|
|
pConfig->RegisterCallback(ConfigSaveCallback, this);
|
|
|
|
Console()->Register("bind", "s[key] r[command]", CFGFLAG_CLIENT, ConBind, this, "Bind key to execute the command");
|
|
Console()->Register("dump_binds", "?s[key]", CFGFLAG_CLIENT, ConDumpBinds, this, "Print command executed by this keybindind or all binds");
|
|
Console()->Register("unbind", "s[key]", CFGFLAG_CLIENT, ConUnbind, this, "Unbind key");
|
|
Console()->Register("unbindall", "", CFGFLAG_CLIENT, ConUnbindAll, this, "Unbind all keys");
|
|
|
|
// default bindings
|
|
SetDefaults();
|
|
}
|
|
|
|
void CBinds::ConBind(IConsole::IResult *pResult, void *pUserData)
|
|
{
|
|
CBinds *pBinds = (CBinds *)pUserData;
|
|
const char *pBindStr = pResult->GetString(0);
|
|
int Modifier;
|
|
int KeyID = pBinds->GetBindSlot(pBindStr, &Modifier);
|
|
|
|
if(!KeyID)
|
|
{
|
|
char aBuf[256];
|
|
str_format(aBuf, sizeof(aBuf), "key %s not found", pBindStr);
|
|
pBinds->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "binds", aBuf);
|
|
return;
|
|
}
|
|
|
|
pBinds->Bind(KeyID, pResult->GetString(1), false, Modifier);
|
|
}
|
|
|
|
void CBinds::ConDumpBinds(IConsole::IResult *pResult, void *pUserData)
|
|
{
|
|
CBinds *pBinds = (CBinds *)pUserData;
|
|
if(pResult->NumArguments() == 1)
|
|
{
|
|
char aBuf[256];
|
|
const char *pKeyName = pResult->GetString(0);
|
|
|
|
int Modifier;
|
|
int id = pBinds->GetBindSlot(pKeyName, &Modifier);
|
|
if (!id)
|
|
{
|
|
str_format(aBuf, sizeof(aBuf), "key '%s' not found", pKeyName);
|
|
pBinds->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "binds", aBuf);
|
|
}
|
|
else
|
|
{
|
|
if (!pBinds->m_aapKeyBindings[Modifier][id])
|
|
str_format(aBuf, sizeof(aBuf), "%s (%d) is not bound", pKeyName, id);
|
|
else
|
|
str_format(aBuf, sizeof(aBuf), "%s (%d) = %s", pKeyName, id, pBinds->m_aapKeyBindings[Modifier][id]);
|
|
|
|
pBinds->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "binds", aBuf);
|
|
}
|
|
}
|
|
else if(pResult->NumArguments() == 0)
|
|
{
|
|
char aBuf[1024];
|
|
for(int i = 0; i < MODIFIER_COUNT; i++)
|
|
{
|
|
for(int j = 0; j < KEY_LAST; j++)
|
|
{
|
|
if(!pBinds->m_aapKeyBindings[i][j])
|
|
continue;
|
|
if(i)
|
|
str_format(aBuf, sizeof(aBuf), "%s+%s (%d) = %s", pBinds->GetModifierName(i), pBinds->Input()->KeyName(j), j, pBinds->m_aapKeyBindings[i][j]);
|
|
else
|
|
str_format(aBuf, sizeof(aBuf), "%s (%d) = %s", pBinds->Input()->KeyName(j), j, pBinds->m_aapKeyBindings[i][j]);
|
|
pBinds->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "binds", aBuf);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
void CBinds::ConUnbind(IConsole::IResult *pResult, void *pUserData)
|
|
{
|
|
CBinds *pBinds = (CBinds *)pUserData;
|
|
const char *pKeyName = pResult->GetString(0);
|
|
int Modifier;
|
|
int id = pBinds->GetBindSlot(pKeyName, &Modifier);
|
|
|
|
if(!id)
|
|
{
|
|
char aBuf[256];
|
|
str_format(aBuf, sizeof(aBuf), "key %s not found", pKeyName);
|
|
pBinds->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "binds", aBuf);
|
|
return;
|
|
}
|
|
|
|
pBinds->Bind(id, "", false, Modifier);
|
|
}
|
|
|
|
void CBinds::ConUnbindAll(IConsole::IResult *pResult, void *pUserData)
|
|
{
|
|
CBinds *pBinds = (CBinds *)pUserData;
|
|
pBinds->UnbindAll();
|
|
}
|
|
|
|
int CBinds::GetKeyID(const char *pKeyName)
|
|
{
|
|
// check for numeric
|
|
if(pKeyName[0] == '&')
|
|
{
|
|
int i = str_toint(pKeyName+1);
|
|
if(i > 0 && i < KEY_LAST)
|
|
return i; // numeric
|
|
}
|
|
|
|
// search for key
|
|
for(int i = 0; i < KEY_LAST; i++)
|
|
{
|
|
if(str_comp(pKeyName, Input()->KeyName(i)) == 0)
|
|
return i;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
int CBinds::GetBindSlot(const char *pBindString, int *Mod)
|
|
{
|
|
*Mod = MODIFIER_NONE;
|
|
char aMod[32] = { 0 };
|
|
const char *pKey = str_next_token(pBindString, "+", aMod, sizeof(aMod));
|
|
if(aMod[0] && *(pKey))
|
|
{
|
|
if(!str_comp(aMod, "shift"))
|
|
*Mod = MODIFIER_SHIFT;
|
|
else if(!str_comp(aMod, "ctrl"))
|
|
*Mod = MODIFIER_CTRL;
|
|
else if(!str_comp(aMod, "alt"))
|
|
*Mod = MODIFIER_ALT;
|
|
else
|
|
return 0;
|
|
}
|
|
|
|
return GetKeyID(*Mod == MODIFIER_NONE ? aMod : pKey + 1);
|
|
}
|
|
|
|
const char *CBinds::GetModifierName(int Modifier)
|
|
{
|
|
switch(Modifier)
|
|
{
|
|
case MODIFIER_SHIFT:
|
|
return "shift";
|
|
case MODIFIER_CTRL:
|
|
return "ctrl";
|
|
case MODIFIER_ALT:
|
|
return "alt";
|
|
case MODIFIER_NONE:
|
|
default:
|
|
return "";
|
|
}
|
|
}
|
|
|
|
void CBinds::ConfigSaveCallback(IConfig *pConfig, void *pUserData)
|
|
{
|
|
CBinds *pSelf = (CBinds *)pUserData;
|
|
|
|
char aBuffer[256];
|
|
char *pEnd = aBuffer+sizeof(aBuffer);
|
|
pConfig->WriteLine("unbindall");
|
|
for(int i = 0; i < MODIFIER_COUNT; i++)
|
|
{
|
|
for(int j = 0; j < KEY_LAST; j++)
|
|
{
|
|
if(!pSelf->m_aapKeyBindings[i][j])
|
|
continue;
|
|
if(i)
|
|
str_format(aBuffer, sizeof(aBuffer), "bind %s+%s \"", pSelf->GetModifierName(i), pSelf->Input()->KeyName(j));
|
|
else
|
|
str_format(aBuffer, sizeof(aBuffer), "bind %s \"", pSelf->Input()->KeyName(j));
|
|
|
|
// process the string. we need to escape some characters
|
|
char *pDst = aBuffer + str_length(aBuffer);
|
|
str_escape(&pDst, pSelf->m_aapKeyBindings[i][j], pEnd);
|
|
str_append(aBuffer, "\"", sizeof(aBuffer));
|
|
|
|
pConfig->WriteLine(aBuffer);
|
|
}
|
|
}
|
|
}
|
|
|
|
// DDRace
|
|
|
|
void CBinds::SetDDRaceBinds(bool FreeOnly)
|
|
{
|
|
Bind(KEY_KP_PLUS, "zoom+", FreeOnly);
|
|
Bind(KEY_KP_MINUS, "zoom-", FreeOnly);
|
|
Bind(KEY_KP_MULTIPLY, "zoom", FreeOnly);
|
|
Bind(KEY_PAUSE, "say /pause", FreeOnly);
|
|
Bind(KEY_UP, "+jump", FreeOnly);
|
|
Bind(KEY_LEFT, "+left", FreeOnly);
|
|
Bind(KEY_RIGHT, "+right", FreeOnly);
|
|
Bind(KEY_LEFTBRACKET, "+prevweapon", FreeOnly);
|
|
Bind(KEY_RIGHTBRACKET, "+nextweapon", FreeOnly);
|
|
Bind(KEY_C, "say /rank", FreeOnly);
|
|
Bind(KEY_V, "say /info", FreeOnly);
|
|
Bind(KEY_B, "say /top5", FreeOnly);
|
|
Bind(KEY_X, "emote 14", FreeOnly);
|
|
Bind(KEY_H, "emote 2", FreeOnly);
|
|
Bind(KEY_M, "emote 5", FreeOnly);
|
|
Bind(KEY_S, "+showhookcoll", FreeOnly);
|
|
Bind(KEY_X, "toggle cl_dummy 0 1", FreeOnly);
|
|
Bind(KEY_PAGEDOWN, "toggle cl_show_quads 0 1", FreeOnly);
|
|
Bind(KEY_PAGEUP, "toggle cl_overlay_entities 0 100", FreeOnly);
|
|
Bind(KEY_KP_0, "say /emote normal 999999", FreeOnly);
|
|
Bind(KEY_KP_1, "say /emote happy 999999", FreeOnly);
|
|
Bind(KEY_KP_2, "say /emote angry 999999", FreeOnly);
|
|
Bind(KEY_KP_3, "say /emote pain 999999", FreeOnly);
|
|
Bind(KEY_KP_4, "say /emote surprise 999999", FreeOnly);
|
|
Bind(KEY_KP_5, "say /emote blink 999999", FreeOnly);
|
|
Bind(KEY_MOUSE_3, "+spectate", FreeOnly);
|
|
Bind(KEY_MINUS, "spectate_previous", FreeOnly);
|
|
Bind(KEY_EQUALS, "spectate_next", FreeOnly);
|
|
|
|
g_Config.m_ClDDRaceBindsSet = 1;
|
|
}
|