home · contact · privacy
Test return values of _all_ *printf() calls.
[plomrogue] / src / client / keybindings.c
1 /* src/client/keybindings.c */
2
3 #include "keybindings.h"
4 #include <ncurses.h> /* keycode defines, cbreak(), halfdelay(), getch() */
5 #include <stddef.h> /* NULL */
6 #include <stdint.h> /* uint8_t, uint16_t, uint32_t */
7 #include <stdio.h> /* FILE, sprintf() */
8 #include "../common/rexit.h" /* exit_trouble() */
9 #include "../common/try_malloc.h" /* try_malloc() */
10 #include "windows.h" /* draw_all_wins() */
11 #include "world.h" /* global world */
12 struct Command;
13
14
15 /* Return pointer to global keybindings or to keybindings for wingeometry config
16  * (c = "g") or winkeys config (c = "k") or active window's keybindings ("w").
17  */
18 static struct KeyBindingDB * char_selected_kb_db(char c);
19
20 /* If "keycode_given" equals "keycode_match", copy "keyname_match" to "keyname"
21  * and return 1; otherwise return 0.
22  */
23 static uint8_t try_keycode(uint16_t keycode_given, char * keyname,
24                            uint16_t keycode_match, char * keyname_match);
25
26
27
28 static struct KeyBindingDB * char_selected_kb_db(char c)
29 {
30     struct KeyBindingDB * kbdb;
31     kbdb = &world.kb_global;
32     if      ('g' == c)
33     {
34         kbdb = &world.kb_wingeom;
35     }
36     else if ('k' == c)
37     {
38         kbdb = &world.kb_winkeys;
39     }
40     else if ('w' == c)
41     {
42         struct Win * w = get_win_by_id(world.winDB.active);
43         kbdb = &w->kb;
44     }
45     return kbdb;
46 }
47
48
49
50 static uint8_t try_keycode(uint16_t keycode_given, char * keyname,
51                            uint16_t keycode_match, char * keyname_match)
52 {
53     char * f_name = "try_keycode()";
54     if (keycode_given == keycode_match)
55     {
56         int test = sprintf(keyname, "%s", keyname_match);
57         exit_trouble(test < 0, f_name, "sprintf()");
58         return 1;
59     }
60     return 0;
61 }
62
63
64
65 extern struct Command * get_command_to_keycode(struct KeyBindingDB * kbdb,
66                                                uint16_t keycode)
67 {
68     uint8_t n_kb;
69     for (n_kb = 0; n_kb < kbdb->n_of_kbs; n_kb++)
70     {
71         if (keycode == kbdb->kbs[n_kb].keycode)
72         {
73             return kbdb->kbs[n_kb].command;
74         }
75     }
76     return NULL;
77 }
78
79
80
81 extern char * get_keyname_to_keycode(uint16_t keycode)
82 {
83     char * f_name = "get_name_to_keycode()";
84     char * keyname = try_malloc(10, f_name);        /* max keyname length + 1 */
85     if (32 < keycode && keycode < 127)
86     {
87         exit_trouble(sprintf(keyname, "%c", keycode) < 0, f_name, "sprintf()");
88     }
89     else if (keycode >= KEY_F0 && keycode <= KEY_F(63))
90     {
91         uint16_t f = keycode - KEY_F0;
92         exit_trouble(sprintf(keyname, "F%d", f) < 0, f_name, "sprintf()");;
93     }
94     else if (   try_keycode(keycode, keyname, 9, "TAB")
95              || try_keycode(keycode, keyname, 10, "RETURN")
96              || try_keycode(keycode, keyname, 27, "ESCAPE")
97              || try_keycode(keycode, keyname, 32, "SPACE")
98              || try_keycode(keycode, keyname, KEY_UP, "UP")
99              || try_keycode(keycode, keyname, KEY_DOWN, "DOWN")
100              || try_keycode(keycode, keyname, KEY_LEFT, "LEFT")
101              || try_keycode(keycode, keyname, KEY_RIGHT, "RIGHT")
102              || try_keycode(keycode, keyname, KEY_HOME, "HOME")
103              || try_keycode(keycode, keyname, KEY_BACKSPACE, "BACKSPACE")
104              || try_keycode(keycode, keyname, KEY_DC, "DELETE")
105              || try_keycode(keycode, keyname, KEY_IC, "INSERT")
106              || try_keycode(keycode, keyname, KEY_NPAGE, "NEXT PAGE")
107              || try_keycode(keycode, keyname, KEY_PPAGE, "PREV PAGE")
108              || try_keycode(keycode, keyname, KEY_END, "END"))
109     {
110         ;
111     }
112     else
113     {
114         exit_trouble(sprintf(keyname, "(unknown)") < 0, f_name, "sprintf()");
115     }
116     return keyname;
117 }
118
119
120
121 extern void mod_selected_keyb(char kb_c)
122 {
123     struct KeyBindingDB * kbdb = char_selected_kb_db(kb_c);
124     kbdb->edit = 1;
125     draw_all_wins();
126     cbreak();
127     int keycode = getch();
128     halfdelay(world.halfdelay);
129     if (keycode < 1000)
130     {
131         kbdb->kbs[kbdb->select].keycode = keycode;
132     }
133     kbdb->edit = 0;
134 }
135
136
137
138 extern void move_keyb_selection(char kb_c, char dir)
139 {
140     struct KeyBindingDB * kbdb = char_selected_kb_db(kb_c);
141     if      ('u' == dir && kbdb->select > 0)
142     {
143         kbdb->select--;
144     }
145     else if ('d' == dir && kbdb->select < kbdb->n_of_kbs - 1)
146     {
147         kbdb->select++;
148     }
149 }