home · contact · privacy
Strongly overhauled keybinding managemment. Window-specific keybindings and a window...
[plomrogue] / src / draw_wins.c
index b036d12c023f95a42c5962f591471da19ddde53c..f0397d9fa90fa02da4ae01836163d6f0ab6ad9ca 100644 (file)
@@ -1,13 +1,13 @@
 /* draw_wins.c */
 
 #include "draw_wins.h"
-#include <stdlib.h>      /* for malloc(), free() */
+#include <stdlib.h>      /* for free() */
 #include <stdint.h>      /* for uint16_t */
 #include <string.h>      /* for strlen() */
 #include <ncurses.h>     /* for mvwaddch() */
 #include "windows.h"     /* for structs Win, Frame, for draw_scroll_hint() */
 #include "misc.h"        /* for center_offset() */
-#include "keybindings.h" /* for struct KeyBinding, for get_keyname() */
+#include "keybindings.h" /* for struct KeyBinding, for get_name_to_keycode() */
 #include "map_objects.h" /* for structs MapObj, Player */
 #include "map.h"         /* for Map struct */
 #include "main.h"        /* for World struct */
@@ -28,6 +28,10 @@ static void draw_text_from_bottom(struct Win * win, char * text);
 static void draw_map_objects(struct World * world, struct MapObj * start,
                              struct Map * map, struct Win * win);
 
+/* Draw from line "start" on config view for keybindings defined at "kb". */
+static void draw_kb_view(struct World * world, struct Win * win,
+                         char * f_name, struct KeyBiData * kb, uint8_t start);
+
 
 
 static void draw_with_linebreaks(struct Win * win, char * text,
@@ -162,7 +166,74 @@ static void draw_map_objects(struct World * world, struct MapObj * start,
 
 
 
-extern void draw_log_win(struct Win * win)
+static void draw_kb_view(struct World * world, struct Win * win,
+                         char * f_name, struct KeyBiData * kb, uint8_t start)
+{
+    char * err_hint = trouble_msg(world, f_name, "draw_scroll_hint()");
+    uint16_t kb_max = get_n_of_keybs(kb->kbs) - 1;
+    uint16_t y, x, offset;
+    offset = center_offset(kb->select, kb_max, win->frame.size.y - 1 - start);
+    uint8_t keydescwidth = 9 + 1;  /* get_name_to_keycode()'s max length + \0 */
+    char keydesc[keydescwidth];
+    uint16_t nav_max = kb_max + start;
+    uint16_t y_border = win->frame.size.y + offset - 1 - start;
+    for (y = start; y <= nav_max && y < win->frame.size.y; y++)
+    {
+
+        if (start == y && offset > 0)
+        {
+            uint8_t test = draw_scroll_hint(&win->frame, y, offset + 1, '^');
+            exit_err(test, world, err_hint);
+            continue;
+        }
+        else if (win->frame.size.y == y + 1 && kb_max > y_border)
+        {
+            uint16_t pos = kb_max - (offset + win->frame.size.y) + 2 + start;
+            uint8_t test = draw_scroll_hint(&win->frame, y, pos, 'v');
+            exit_err(test, world, err_hint);
+            continue;
+        }
+
+        attr_t attri = 0;
+        if (y - start == kb->select - offset)
+        {
+            attri = A_REVERSE;
+            if (1 == kb->edit)
+            {
+                attri = attri | A_BLINK;
+            }
+        }
+
+        struct KeyBinding * kb_p;
+        kb_p = get_keyb_of_n(kb->kbs, (y - start) + offset);
+        char * keyname = get_name_to_keycode(world, kb_p->key);
+        snprintf(keydesc, keydescwidth, "%-9s", keyname);
+        free(keyname);
+        char * cmd_dsc = get_command_longdsc(world, kb_p->name);
+        uint8_t dsclen = strlen(keydesc);
+        for (x = 0; x < win->frame.size.x; x++)
+        {
+            if (x < dsclen)
+            {
+                mvwaddch(win->frame.curses_win, y, x, keydesc[x] | attri);
+                continue;
+            }
+            else if (dsclen < x && x < strlen(cmd_dsc) + strlen(keydesc) + 1)
+            {
+                chtype ch = cmd_dsc[x - strlen(keydesc) - 1] | attri;
+                mvwaddch(win->frame.curses_win, y, x, ch);
+                continue;
+            }
+            mvwaddch(win->frame.curses_win, y, x, ' ' | attri);
+        }
+
+    }
+    free(err_hint);
+}
+
+
+
+extern void draw_win_log(struct Win * win)
 {
     struct World * world = (struct World *) win->data;
     draw_text_from_bottom(win, world->log);
@@ -170,7 +241,7 @@ extern void draw_log_win(struct Win * win)
 
 
 
-extern void draw_map_win(struct Win * win)
+extern void draw_win_map(struct Win * win)
 {
     struct World * world = (struct World *) win->data;
     struct Map * map = world->map;
@@ -206,7 +277,7 @@ extern void draw_map_win(struct Win * win)
 
 
 
-extern void draw_info_win(struct Win * win)
+extern void draw_win_info(struct Win * win)
 {
     struct World * world = (struct World *) win->data;
     char * dsc_turn      = "Turn: ";
@@ -214,96 +285,67 @@ extern void draw_info_win(struct Win * win)
     char * dsc_score     = "\nScore: ";
     uint16_t maxl = strlen(dsc_turn) + strlen(dsc_hitpoints) + strlen(dsc_score)
                     + 10 + 5 + 10;       /* max strlens of numbers to be used */
-    char * text = malloc(maxl + 1);
+    char text[maxl + 1];
     sprintf(text, "%s%d%s%d%s%d",
             dsc_turn, world->turn,
             dsc_hitpoints, world->player->hitpoints,
             dsc_score, world->score);
     draw_with_linebreaks(win, text, 0);
-    free(text);
 }
 
 
 
-extern void draw_keys_win(struct Win * win)
+extern void draw_win_keybindings_global(struct Win * win)
 {
+    char * f_name = "draw_win_keybindings_global()";
     struct World * world = (struct World *) win->data;
-    uint16_t offset, y, x;
-    offset = center_offset(world->keyswindata->select, world->keyswindata->max,
-                           win->frame.size.y - 1);
-    uint8_t keydescwidth = 9 + 1; /* max length assured by get_keyname() + \0 */
-    char * keydesc = malloc(keydescwidth), * keyname;
-    char * err_hint = "Trouble with draw_scroll_hint() in draw_keys_win().";
-    attr_t attri;
-    char * cmd_dsc;
-    for (y = 0; y <= world->keyswindata->max && y < win->frame.size.y; y++)
-    {
-        if (0 == y && offset > 0)
-        {
-            exit_err(draw_scroll_hint(&win->frame, y, offset + 1, '^'),
-                     world, err_hint);
-            continue;
-        }
-        else if (win->frame.size.y == y + 1
-                 && 0 < world->keyswindata->max
-                        - (win->frame.size.y + offset - 1))
-        {
-            exit_err(draw_scroll_hint(&win->frame, y,
-                                      world->keyswindata->max
-                                       - (offset + win->frame.size.y) + 2, 'v'),
-                     world, err_hint);
-            continue;
-        }
-        attri = 0;
-        if (y == world->keyswindata->select - offset)
-        {
-            attri = A_REVERSE;
-            if (1 == world->keyswindata->edit)
-            {
-                attri = attri | A_BLINK;
-            }
-        }
-        keyname = get_keyname(world->keybindings[y + offset].key);
-        snprintf(keydesc, keydescwidth, "%-9s", keyname);
-        free(keyname);
-        cmd_dsc = get_command_longdsc(world,
-                                      world->keybindings[y + offset].name);
-        for (x = 0; x < win->frame.size.x; x++)
-        {
-            if (x < strlen(keydesc))
-            {
-                mvwaddch(win->frame.curses_win, y, x, keydesc[x] | attri);
-            }
-            else if (   strlen(keydesc) < x
-                     && x < strlen(cmd_dsc) + strlen(keydesc) + 1)
-            {
-                mvwaddch(win->frame.curses_win, y, x,
-                         cmd_dsc[x - strlen(keydesc) - 1] | attri);
-            }
-            else
-            {
-                mvwaddch(win->frame.curses_win, y, x, ' ' | attri);
-            }
-        }
-    }
-    free(keydesc);
+    draw_kb_view(world, win, f_name, &world->kb_global, 0);
+}
+
+
+
+extern void draw_win_keybindings_winconf_geometry(struct Win * win)
+{
+    char * f_name = "draw_win_keybindings_winconf_geometry()";
+    struct World * world = (struct World *) win->data;
+    draw_kb_view(world, win, f_name, &world->kb_wingeom, 0);
+}
+
+
+
+extern void draw_win_keybindings_winconf_keybindings(struct Win * win)
+{
+    char * f_name = "draw_win_keybindings_winconf_keybindings()";
+    struct World * world = (struct World *) win->data;
+    draw_kb_view(world, win, f_name, &world->kb_winkeys, 0);
+}
+
+
+
+extern void draw_winconf_keybindings(struct Win * win)
+{
+    char * f_name = "draw_winconf_keybindings()";
+    struct World * world = (struct World *) win->data;
+    struct WinConf * wc = get_winconf_by_win(world, win);
+    char * title = "Window's keybindings:";
+    uint8_t title_space = strlen(title) / win->frame.size.x + 2;
+    mvwaddstr(win->frame.curses_win, 0, 0, "Window's keybindings:");
+    draw_kb_view(world, win, f_name, &wc->kb, title_space);
 }
 
 
 
-extern void draw_winconf(struct Win * win)
+extern void draw_winconf_geometry(struct Win * win)
 {
     struct World * world = (struct World *) win->data;
     struct WinConf * wcp = get_winconf_by_win(world, win);
-    char * title = "Window configuration:\n";
-    char * h_t_d = "\nWill save height as: ";
-    char * h_pos = "height in positive cells";
-    char * h_neg = "negative diff to maximum height";
-    char * h_d   = "\nHeight to be saved: ";
-    char * w_t_d = "\n\nWill save width as: ";
-    char * w_pos = "width in positive cells";
-    char * w_neg = "negative diff to maximum width";
-    char * w_d   = "\nWidth to be saved: ";
+    char * title = "Window's geometry:\n";
+    char * h_d   = "\nWidth to save: ";
+    char * h_pos = " (height in cells)";
+    char * h_neg = " (negative diff: cells to maximum height)";
+    char * w_d   = "\n\nHeight to save: ";
+    char * w_pos = " (width in cells)";
+    char * w_neg = " (negative diff: cells to maximum width)";
     char * h_t = h_pos;
     char * w_t = w_pos;
     if      (1 == wcp->height_type)
@@ -315,11 +357,10 @@ extern void draw_winconf(struct Win * win)
         w_t = w_neg;
     }
     uint16_t maxl = strlen(title)
-                    + strlen(h_t_d) + strlen(h_t) + strlen(h_d) + 6
-                    + strlen(w_t_d) + strlen(w_t) + strlen(w_d) + 6 + 1;
-    char * text = malloc(maxl + 1);
-    sprintf(text, "%s%s%s%s%d%s%s%s%d", title, h_t_d, h_t, h_d, wcp->height,
-                                               w_t_d, w_t, w_d, wcp->width);
+                    + strlen(h_t) + strlen(h_d) + 6
+                    + strlen(w_t) + strlen(w_d) + 6 + 1;
+    char text[maxl + 1];
+    sprintf(text, "%s%s%d%s%s%d%s", title, h_d, wcp->height, h_t,
+                                                w_d, wcp->width, w_t);
     draw_with_linebreaks(win, text, 0);
-    free(text);
 }