X-Git-Url: https://plomlompom.com/repos/?a=blobdiff_plain;f=src%2Fclient%2Fkeybindings.h;h=bc9c0001151340f19c64ea75b4cf775f3cd585ec;hb=891ba8fbca53d920f6b3704827fa6b8aee737de4;hp=b191c59bbbc9e1d160dd5fe2cfa650156804d715;hpb=f118d194b29320b6fbebd254207514aba1241b08;p=plomrogue diff --git a/src/client/keybindings.h b/src/client/keybindings.h index b191c59..bc9c000 100644 --- a/src/client/keybindings.h +++ b/src/client/keybindings.h @@ -13,38 +13,29 @@ struct Command; struct KeyBinding { - struct KeyBinding * next; - uint16_t key; /* keycode */ + uint16_t keycode; struct Command * command; /* command in command DB to which key is bound */ }; struct KeyBindingDB { struct KeyBinding * kbs; - uint16_t select; /* linear list index of keybinding selected for editing */ - uint8_t edit; /* 1 if currently editing a keybinding, else 0 */ + uint8_t n_of_kbs; /* how many KeyBinding structs are stored below .kbs? */ + uint8_t select; /* linear list index of keybinding selected for editing */ + uint8_t edit; /* 1 if currently editing a keybinding, else 0 */ }; -/* Return command bound to keycode; NULL on failure. */ -extern struct Command * get_command_to_keycode(struct KeyBinding * kb_p, - uint16_t key); +/* Return command bound to "keycode" in "kbdb"; NULL if none found. */ +extern struct Command * get_command_to_keycode(struct KeyBindingDB * kbdb, + uint16_t keycode); /* Return human-readable name (of maximum 9 chars) for "keycode" as matched by - * ncurses.h; if none is found, return "UNKNOWN". + * ncurses.h; if none is found, return "(unknown)". */ extern char * get_keyname_to_keycode(uint16_t keycode); -/* Initialize/save keybindings data from/to file at "path" to/from keybindings - * data pointer "kbd". - */ -extern void init_keybindings(char * path, struct KeyBindingDB * kbd); -extern void save_keybindings(char * path, struct KeyBindingDB * kbd); - -/* Free keybinding chain starting at "kb_start". */ -extern void free_keybindings(struct KeyBinding * kb_start); - /* Mark keybinding in KeybindingDB (char_selected_kb_db()-) selected by "kb_c" * as being edited, get user input to modify it, then unmark it again. Ensure * there are max. three digits in the ASCII string of the kecode read from user.