mirror of
https://github.com/SPLURT-Station/S.P.L.U.R.T-Station-13.git
synced 2025-12-11 10:22:13 +00:00
* demodularize interface * keybindings * binds * prefs * loose ends * globals * changes * s * datum ref lists * ok * fixes * fixes * fix * ok * sigh * sigh * indicators * let's play the move code around game * let's play the i didn't comma my lists game * let's play the indent game * let's play hte spelling bee * let's fail the spelling bee * LET'S PLAY THe HOW HARd IS IT TO SPELL A PROC GAME * let's play the bugfix game * bugfixes * improvements * Update bindings_client.dm * pixel shift * A * wups
22 lines
536 B
Plaintext
22 lines
536 B
Plaintext
GLOBAL_LIST_EMPTY(classic_keybinding_list_by_key)
|
|
GLOBAL_LIST_EMPTY(hotkey_keybinding_list_by_key)
|
|
GLOBAL_LIST_EMPTY(keybindings_by_name)
|
|
|
|
// This is a mapping from JS keys to Byond - ref: https://keycode.info/
|
|
GLOBAL_LIST_INIT(_kbMap, list(
|
|
"UP" = "North",
|
|
"RIGHT" = "East",
|
|
"DOWN" = "South",
|
|
"LEFT" = "West",
|
|
"INSERT" = "Insert",
|
|
"HOME" = "Northwest",
|
|
"PAGEUP" = "Northeast",
|
|
"DEL" = "Delete",
|
|
"END" = "Southwest",
|
|
"PAGEDOWN" = "Southeast",
|
|
"SPACEBAR" = "Space",
|
|
"ALT" = "Alt",
|
|
"SHIFT" = "Shift",
|
|
"CONTROL" = "Ctrl"
|
|
))
|