home · contact · privacy
Removed redundancy between record_control() and player_control() by re-writing their...
[plomrogue] / src / keybindings.h
1 /* keybindings.h
2  *
3  * Retrieval and storage of keybindings.
4  */
5
6 #ifndef KEYBINDINGS_H
7 #define KEYBINDINGS_H
8
9 #include <stdint.h> /* for uint16_t */
10
11
12
13 /* Individual keybinding in keybinding chain. */
14 struct KeyBinding
15 {
16   struct KeyBinding * next;
17   uint16_t key; /* keycode */
18   char * name;  /* name of functionality bound to keycode */
19 };
20
21
22
23 /* Wrapper to keybinding chain, contains some keybinding editing metadata. */
24 struct KeyBiData
25 {
26     struct KeyBinding * kbs;
27     uint8_t edit;    /* 1 if currently editing a keybinding, else 0 */
28     uint16_t select; /* linear list index of keybinding selected for editing */
29 };
30
31
32
33 /* Return name of action / functionality coupled to keycode; NULL on failure. */
34 extern char * get_func_to_keycode(struct KeyBinding * kb_p, uint16_t key);
35
36 /* Return keycode matched by keybinding to command of "name". */
37 extern uint16_t get_keycode_to_action(struct KeyBinding * keybindings,
38                                       char * name);
39
40 /* Return human-readable name (of maximum 9 chars) for "keycode" as matched by
41  * ncurses.h; if none is found, return "UNKNOWN".
42  */
43 extern char * get_name_to_keycode(uint16_t keycode);
44
45 /* Return number of keybindings in keybindings chain from "kb_p" on. */
46 extern uint16_t get_n_of_keybs(struct KeyBinding * kb_p);
47
48 /* Return "n"-th keybinding in keybindings chain from "kb_p" on. */
49 extern struct KeyBinding * get_keyb_of_n(struct KeyBinding * kb_p, uint16_t n);
50
51
52
53 /* Initialize/save keybindings data from/to file at "path" to/from keybindings
54  * data pointer "kbd".
55  */
56 extern void init_keybindings(char * path, struct KeyBiData * kbd);
57 extern void save_keybindings(char * path, struct KeyBiData * kbd);
58
59 /* Free keybinding chain starting at "kb_start". */
60 extern void free_keybindings(struct KeyBinding * kb_start);
61
62
63
64 /* Mark keybinding selected for modification as being edited, get user input to
65  * modify it, then unmark it again. Ensure there are max. three digits in the
66  * keycode ASCII representation.
67  */
68 extern void mod_selected_keyb(struct KeyBiData * kbd);
69
70 /* Move keybinding modification selection upwards ("dir"=="u") or downwards
71  * ("dir"=="d") within the limits of the keybindings chain length.
72  */
73 extern void move_keyb_mod_selection(struct KeyBiData * kbd, char dir);
74
75
76
77 #endif