home · contact · privacy
New command: type Z to reload default window configuration from window config files.
authorChristian Heller <c.heller@plomlompom.de>
Sat, 31 Aug 2013 03:24:32 +0000 (05:24 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Sat, 31 Aug 2013 03:24:32 +0000 (05:24 +0200)
README
config/commands
config/keybindings
src/control.c
src/wincontrol.c
src/wincontrol.h

diff --git a/README b/README
index 3c8e0548e6d569b1d5e2d7611834acd50e0114cf..6ad1207c55ae067a81189d3a642eb902155e0ad1 100644 (file)
--- a/README
+++ b/README
@@ -45,6 +45,7 @@ Y       shift window backwards
 _       shrink window horizontally
 +       grow window vertically
 -       shrink window vertically
+Z       reload window configuration
 
 w       scroll map up
 x       scroll map down
index f946af0df3075c705f82ae27ecac9f53de9d92d3..e4e98247a402e7c2135242413dffafed0ec43777 100644 (file)
@@ -27,3 +27,4 @@
 27 player_l player left
 28 player_r player right
 29 wait wait / next turn
+30 reload_wins reload windows configuration
index 704fed99e08d1b771e6c5075aac6b88a88bcd951..009a8b74e7cc0360ca2a2044adca51e580e33823 100644 (file)
@@ -27,3 +27,4 @@
 65 player_l
 68 player_r
 83 wait
+90 reload_wins
index 0c782ab158a7b15ad81aa6241ff563039fa7a9a2..b9ebbe15ee3a7d0897540ce9946253d5aa252625 100644 (file)
@@ -12,7 +12,7 @@
 #include "main.h" /* for World struct */
 #include "rexit.h" /* for exit_err() */
 #include "wincontrol.h" /* for scroll_pad(), toggle_window(),
-                         * growshrink_active_window()
+                         * growshrink_active_window(), reload_win_config()
                          */
 #include "map_object_actions.h" /* for player_wait(), move_player() */
 #include "command_db.h" /* for is_command_id_shortdsc() */
@@ -181,7 +181,11 @@ extern uint8_t meta_control(int key, struct World * world)
     }
     else if (key == get_action_key(world->keybindings, "map_c"))
     {
-        map_center_player (world->map, world->player, win_map->frame.size);
+        map_center_player(world->map, world->player, win_map->frame.size);
+    }
+    else if (key == get_action_key(world->keybindings, "reload_wins"))
+    {
+        reload_win_config(world);
     }
     return 0;
 }
index db144d1131664e9b666b4415b00c50071d356f27..0417852e686be454bdb9a817bdd4dbf3e453c596 100644 (file)
@@ -5,27 +5,49 @@
 #include <string.h> /* for strlen() */
 #include <stdint.h> /* for uint8_t, uint16_t */
 #include "windows.h" /* for suspend_win(), append_win(), reset_pad_offset(),
-                      * resize_active_win(), init_win(), structs Win, WinMeta
+                      * resize_active_win(), init_win(), free_win(),
+                      * structs Win, WinMeta
                       */
 #include "yx_uint16.h" /* for yx_uint16 struct */
 #include "main.h" /* for Wins struct */
 #include "misc.h" /* for textfile_sizes() */
 #include "rexit.h" /* for exit_err() */
 #include "main.h" /* for World, Wins structs */
+#include "draw_wins.h" /* for draw_keys_win(), draw_info_win(), draw_log_win(),
+                        * draw_map_win
+                        */
+
+
+
+extern void reload_win_config(struct World * world)
+{
+    while (0 != world->wins.meta->active)
+    {
+        suspend_win(world->wins.meta, world->wins.meta->active);
+    }
+    free_win(world->wins.info);
+    free_win(world->wins.keys);
+    free_win(world->wins.map);
+    free_win(world->wins.log);
+    world->wins.keys = init_win_from_file(world, "Keys", draw_keys_win);
+    world->wins.info = init_win_from_file(world, "Info", draw_info_win);
+    world->wins.log  = init_win_from_file(world, "Log", draw_log_win);
+    world->wins.map  = init_win_from_file(world, "Map", draw_map_win);
+    sorted_wintoggle(world);
+}
 
 
 
 extern struct Win * init_win_from_file(struct World * world, char * w_name,
                                        void (* f) (struct Win *))
 {
-    char * err = "Trouble in init_win_from_file() with malloc().";
+    char * err_m = "Trouble in init_win_from_file() with malloc().";
     char * prefix = "config/windows/";
     uint8_t size = strlen(prefix) + strlen(w_name) + 1;
     char * path = malloc(size);
-    exit_err(NULL == path, world, err);
+    exit_err(NULL == path, world, err_m);
     sprintf(path, "%s%s", prefix, w_name);
-
-    err = "Trouble in init_win_from_file() with fopen().";
+    char * err = "Trouble in init_win_from_file() with fopen().";
     FILE * file = fopen(path, "r");
     free(path);
     exit_err(NULL == file, world, err);
@@ -33,9 +55,11 @@ extern struct Win * init_win_from_file(struct World * world, char * w_name,
     err = "Trouble in init_win_from_file() with textfile_sizes().";
     exit_err(textfile_sizes(file, &linemax, NULL), world, err);
     char * line = malloc(linemax);
+    exit_err(NULL == line, world, err_m);
     err = "Trouble in init_win_from_file() with fgets().";
     exit_err(NULL == fgets(line, linemax, file), world, err);
     char * title = malloc(strlen(line));
+    exit_err(NULL == title, world, err_m);
     memcpy(title, line, strlen(line) - 1);   /* Eliminate newline char at end */
     title[strlen(line) - 1] = '\0';          /* of string.                    */
     exit_err(NULL == fgets(line, linemax, file), world, err);
@@ -45,7 +69,6 @@ extern struct Win * init_win_from_file(struct World * world, char * w_name,
     free(line);
     err = "Trouble in init_win_from_file() with fclose().";
     exit_err(fclose(file), world, err);
-
     struct WinMeta * wmeta = world->wins.meta;
     struct Win * wp;
     err = "Trouble in init_win_from_file() with init_win().";
@@ -150,4 +173,3 @@ extern uint8_t growshrink_active_window(struct WinMeta * win_meta, char change)
     }
     return 0;
 }
-
index 29a6ddfef472cb3da1fae9594b9da786c0674d9f..404ae1b741e967bb974ac90ff8ea31beb17ff15e 100644 (file)
@@ -16,6 +16,11 @@ struct World;
 
 
 
+/* Reload windows in order and sizes defined in win config. */
+extern void reload_win_config(struct World * world);
+
+
+
 /* Wrapper around init_win() that reads the desired window size and title from a
  * file at the path prefixing the provided win name "w_name" with
  * "config/windows/". "f"() is the window drawing function (Win._draw()).