home · contact · privacy
Some variable / struct member renaming for greater clarity.
authorChristian Heller <c.heller@plomlompom.de>
Mon, 10 Mar 2014 10:18:30 +0000 (11:18 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Mon, 10 Mar 2014 10:18:30 +0000 (11:18 +0100)
src/client/draw_wins.c
src/client/keybindings.c
src/client/keybindings.h

index 129148c00886916d62ab9eb8b332d295dbfb3572..59b7c3aa444bb62642dc946737ce74bec0d3740a 100644 (file)
@@ -235,8 +235,8 @@ static char * get_kb_line_and_iterate(struct KeyBinding ** kb_pp)
 {
     char * f_name = "get_kb_line_and_iterate()";
     struct KeyBinding * kb_p = * kb_pp;
-    char * keyname = get_keyname_to_keycode(kb_p->key);
-    struct Command * command = get_command_to_keycode(kb_p, kb_p->key);
+    char * keyname = get_keyname_to_keycode(kb_p->keycode);
+    struct Command * command = get_command_to_keycode(kb_p, kb_p->keycode);
     uint16_t size = 9 + 1 + strlen(command->dsc_long) + 1;
     char * line = try_malloc(size, f_name);
     sprintf(line, "%-9s %s", keyname, command->dsc_long);
index 14d603baa9b10e834ce22bb322a14332610e5c56..bad527f57f4e66c97b90406d342af815188048f2 100644 (file)
@@ -105,11 +105,11 @@ static uint8_t try_keycode(uint16_t keycode_given, char * keyname,
 
 
 extern struct Command * get_command_to_keycode(struct KeyBinding * kb_p,
-                                               uint16_t key)
+                                               uint16_t keycode)
 {
     while (0 != kb_p)
     {
-        if (key == kb_p->key)
+        if (keycode == kb_p->keycode)
         {
             return kb_p->command;
         }
@@ -178,7 +178,7 @@ extern void write_keybindings_to_file(FILE * file, struct KeyBindingDB * kbd)
     kb_p = kbd->kbs;
     while (0 != kb_p)
     {
-        sprintf(line, "%d %s\n", kb_p->key, kb_p->command->dsc_short);
+        sprintf(line, "%d %s\n", kb_p->keycode, kb_p->command->dsc_short);
         try_fwrite(line, sizeof(char), strlen(line), file, f_name);
         kb_p = kb_p->next;
     }
@@ -222,7 +222,7 @@ extern void read_keybindings_from_file(char * line, uint32_t linemax,
         kb_p->command = get_command(ptr_space + 1);
         err_line(!(kb_p->command), line, context, err_cmd);
         kb_p->next = 0;
-        kb_p->key = atoi(line);
+        kb_p->keycode = atoi(line);
         loc_last_ptr = & kb_p->next;
     }
 }
@@ -251,12 +251,12 @@ extern void mod_selected_keyb(char kb_c)
     kbd->edit = 1;
     draw_all_wins();
     cbreak();
-    int key = getch();
+    int keycode = getch();
     halfdelay(world.halfdelay);
-    if (key < 1000)
+    if (keycode < 1000)
     {
         struct KeyBinding * kb_p = get_keyb_of_n(kbd->kbs, kbd->select);
-        kb_p->key = key;
+        kb_p->keycode = keycode;
     }
     kbd->edit = 0;
 }
index ff89a4cadee19b87a7ae641546f58de613d2e245..0d426e3e85602b144c6c120e6a75455a4a00219b 100644 (file)
@@ -15,7 +15,7 @@ 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 */
 };
 
@@ -30,7 +30,7 @@ struct KeyBindingDB
 
 /* Return command bound to keycode; NULL on failure. */
 extern struct Command * get_command_to_keycode(struct KeyBinding * kb_p,
-                                               uint16_t key);
+                                               uint16_t keycode);
 
 /* Return human-readable name (of maximum 9 chars) for "keycode" as matched by
  * ncurses.h; if none is found, return "UNKNOWN".