home · contact · privacy
Removed unneeded function; also some minor comment improvmenets.
[plomrogue] / src / wincontrol.c
index 4d166e8fc1cb8f81ac868f6060eaf71079a2c571..7a4cdbd04e6f3223cece4deee95d80430726c314 100644 (file)
 /* wincontrol.c */
 
 #include "wincontrol.h"
-#include <stdint.h> /* for uint8_t */
+#include <stdlib.h> /* for free() */
+#include <string.h> /* for strlen() */
+#include <stdint.h> /* for uint8_t, uint16_t */
+#include <stdio.h> /* for fwrite() */
+#include <unistd.h> /* for access(), unlink() */
 #include "windows.h" /* for suspend_win(), append_win(), reset_pad_offset(),
-                      * resize_active_win(), struct Win, struct 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 "readwrite.h" /* for get_linemax(), try_fopen(), try_fclose(),
+                        * try_fgets(), try_fclose_unlink_rename()
+                        */
+#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
+                        */
+#include "misc.h" /* for try_malloc() */
+
+
+
+/* Return string "prefix" + "id"; malloc()'s string, remember to call free()! */
+static char * string_prefixed_id(struct World * world, char * prefix, char id);
+
+
+
+/* Create Winconf, initialize ->view/height_type/width_type to 0, ->id to "id"
+ * and ->draw to "f".
+ */
+static void create_winconf(char id, struct WinConf * wcp,
+                           void (* f) (struct Win *));
+
+/* Initialize Winconf of "id" from appropriate config file.*/
+static void init_winconf_from_file(struct World * world, char id);
+
+/* Wrapper around init_win() called with values from Winconf of "id". */
+static void init_win_from_winconf(struct World * world, char id);
+
+/* Save title, size of window identified by "id" to its configuration file. */
+static void save_win_config(struct World * world, char id);
+
+
+
+/* Write size of a window to its WinConf, as positive or negative values
+ * (dependent on state ofWinConf->height_type / WinConf->width_type).
+ */
+static void set_winconf(struct World * world, char id);
+
+
+
+/* Get WinConf by "id"; get id of WinConf mothering "win". */
+static struct WinConf * get_winconf_by_id(struct World * world, char id);
+
+
+
+static char * string_prefixed_id(struct World * world, char * prefix, char id)
+{
+    uint8_t size = strlen(prefix) + 2;
+    char * path = try_malloc(size, world, "string_prefixed_id()");
+    sprintf(path, "%s_", prefix);
+    path[size - 2] = id;
+    return path;
+}
+
+
+
+static void create_winconf(char id, struct WinConf * wcp,
+                           void (* f) (struct Win *))
+{
+    wcp->id = id;
+    wcp->draw = f;
+    wcp->view = 0;
+    wcp->height_type = 0;
+    wcp->width_type = 0;
+}
+
+
+
+static void init_winconf_from_file(struct World * world, char id)
+{
+    char * f_name = "init_winconf_from_file()";
+
+    char * path = string_prefixed_id(world, "config/windows/Win_", id);
+    FILE * file = try_fopen(path, "r", world, f_name);
+    free(path);
+    uint16_t linemax = get_linemax(file, world, f_name);
+    char line[linemax + 1];
+
+    struct WinConf * winconf = get_winconf_by_id(world, id);
+    try_fgets(line, linemax + 1, file, world, f_name);
+    winconf->title = try_malloc(strlen(line), world, f_name);
+    memcpy(winconf->title, line, strlen(line) - 1); /* Eliminate newline char */
+    winconf->title[strlen(line) - 1] = '\0';        /* char at end of string. */
+    try_fgets(line, linemax + 1, file, world, f_name);
+    winconf->height = atoi(line);
+    if (0 >= winconf->height)
+    {
+        winconf->height_type = 1;
+    }
+    try_fgets(line, linemax + 1, file, world, f_name);
+    winconf->width = atoi(line);
+    if (0 >= winconf->width)
+    {
+        winconf->width_type = 1;
+    }
+
+    try_fclose(file, world, f_name);
+}
+
+
+
+static void init_win_from_winconf(struct World * world, char id)
+{
+    char * err = "Trouble in init_win_from_file() with init_win().";
+    struct WinConf * winconf = get_winconf_by_id(world, id);
+    exit_err(init_win(world->wmeta, &winconf->win, winconf->title,
+                      winconf->height, winconf->width, world, winconf->draw),
+             world, err);
+}
+
+
+
+extern void save_win_config(struct World * world, char id)
+{
+    char * f_name = "save_win_config()";
+
+    char * path_tmp = string_prefixed_id(world, "config/windows/Win_tmp_", id);
+    FILE * file = try_fopen(path_tmp, "w", world, f_name);
+
+    struct WinConf * wc = get_winconf_by_id(world, id);
+    uint8_t size = strlen(wc->title) + 2;
+    if (size < 7)
+    {
+        size = 7;
+    }
+    char line[size];
+    sprintf(line, "%s\n", wc->title);
+    fwrite(line, sizeof(char), strlen(line), file);
+    sprintf(line, "%d\n", wc->height);
+    fwrite(line, sizeof(char), strlen(line), file);
+    sprintf(line, "%d\n", wc->width);
+    fwrite(line, sizeof(char), strlen(line), file);
+
+    char * path = string_prefixed_id(world, "config/windows/Win_", id);
+    try_fclose_unlink_rename(file, path_tmp, path, world, f_name);
+    free(path);
+    free(path_tmp);
+}
+
+
+
+static void set_winconf(struct World * world, char id)
+{
+    struct WinConf * wcp = get_winconf_by_id(world, id);
+    if      (0 == wcp->height_type)
+    {
+        wcp->height = wcp->win->frame.size.y;
+    }
+    else if (1 == wcp->height_type)
+    {
+        wcp->height = wcp->win->frame.size.y - world->wmeta->padframe.size.y
+                      + 1;
+    }
+    if      (0 == wcp->width_type)
+    {
+        wcp->width = wcp->win->frame.size.x;
+    }
+    else if (1 == wcp->width_type)
+    {
+        wcp->width = wcp->win->frame.size.x - world->wmeta->padframe.size.x;
+    }
+}
+
+
+
+static struct WinConf * get_winconf_by_id(struct World * world, char id)
+{
+    uint8_t i = 0;
+    while (1)
+    {
+        if (id == world->winconfs[i].id)
+        {
+            return &world->winconfs[i];
+        }
+        i++;
+    }
+}
+
+
+
+extern struct WinConf * get_winconf_by_win(struct World * world,
+                                           struct Win * win)
+{
+    uint8_t i = 0;
+    while (1)
+    {
+        if (win == world->winconfs[i].win)
+        {
+            return &world->winconfs[i];
+        }
+        i++;
+    }
+}
+
+
+
+extern struct Win * get_win_by_id(struct World * world, char id)
+{
+    struct WinConf * wc = get_winconf_by_id(world, id);
+    return wc->win;
+}
+
+
+
+extern void init_winconfs(struct World * world)
+{
+    char * f_name = "init_winconfs()";
+    struct WinConf * winconfs = try_malloc(4 * sizeof(struct WinConf),
+                                           world, f_name);
+    create_winconf('i', &winconfs[0], draw_info_win);
+    create_winconf('k', &winconfs[1], draw_keys_win);
+    create_winconf('l', &winconfs[2], draw_log_win);
+    create_winconf('m', &winconfs[3], draw_map_win);
+    world->winconfs = winconfs;
+    init_winconf_from_file(world, 'i');
+    init_winconf_from_file(world, 'k');
+    init_winconf_from_file(world, 'l');
+    init_winconf_from_file(world, 'm');
+}
+
+
+
+extern void free_winconf(struct World * world, char id)
+{
+    struct WinConf * wc = get_winconf_by_id(world, id);
+    free(wc->title);
+}
+
+
+
+extern void free_winconfs(struct World * world)
+{
+    free_winconf(world, 'i');
+    free_winconf(world, 'k');
+    free_winconf(world, 'l');
+    free_winconf(world, 'm');
+    free(world->winconfs);
+}
+
+
+
+extern void init_wins(struct World * world)
+{
+    init_win_from_winconf(world, 'i');
+    init_win_from_winconf(world, 'k');
+    init_win_from_winconf(world, 'l');
+    init_win_from_winconf(world, 'm');
+}
+
+
+
+extern void free_wins(struct World * world)
+{
+    free_win(get_win_by_id(world, 'i'));
+    free_win(get_win_by_id(world, 'k'));
+    free_win(get_win_by_id(world, 'l'));
+    free_win(get_win_by_id(world, 'm'));
+}
+
+
+
+extern void sorted_wintoggle(struct World * world)
+{
+    char * f_name = "sorted_wintoggle()";
+    char * path = "config/windows/toggle_order";
+    FILE * file = try_fopen(path, "r", world, f_name);
+    uint16_t linemax = get_linemax(file, world, f_name);
+    char win_order[linemax + 1];
+    try_fgets(win_order, linemax + 1, file, world, f_name);
+    try_fclose(file, world, f_name);
+    uint8_t i = 0;
+    for (; i < linemax - 1; i++)
+    {
+        toggle_window(world->wmeta, get_win_by_id(world, win_order[i]));
+    }
+}
+
+
+
+extern void reload_win_config(struct World * world)
+{
+    while (0 != world->wmeta->active)
+    {
+        suspend_win(world->wmeta, world->wmeta->active);
+    }
+    free_wins(world);
+    free_winconfs(world);
+    init_winconfs(world);
+    init_wins(world);
+    sorted_wintoggle(world);
+}
+
+
+
+extern void save_win_configs(struct World * world)
+{
+    char * f_name = "save_win_configs()";
+
+    save_win_config(world, 'i');
+    save_win_config(world, 'k');
+    save_win_config(world, 'l');
+    save_win_config(world, 'm');
+
+    char * path     = "config/windows/toggle_order";
+    char * path_tmp = "config/windows/toggle_order_tmp";
+    FILE * file = try_fopen(path_tmp, "w", world, f_name);
+
+    char line[6];
+    struct Win * w_p = world->wmeta->_chain_start;
+    uint8_t i = 0;
+    while (0 != w_p)
+    {
+        struct WinConf * wc = get_winconf_by_win(world, w_p);
+        line[i] = wc->id;
+        w_p = w_p->_next;
+        i++;
+    }
+    line[i] = '\n';
+    fwrite(line, sizeof(char), strlen(line), file);
+
+    try_fclose_unlink_rename(file, path_tmp, path, world, f_name);
+}
+
 
 
 extern uint8_t toggle_window(struct WinMeta * win_meta, struct Win * win)
@@ -22,6 +352,56 @@ extern uint8_t toggle_window(struct WinMeta * win_meta, struct Win * win)
 
 
 
+extern void toggle_winconfig(struct World * world, struct Win * win)
+{
+    struct WinConf * wcp = get_winconf_by_win(world, win);
+    if (0 == wcp->view)
+    {
+        win->_draw = draw_winconf;
+        wcp->view = 1;
+    }
+    else
+    {
+        win->_draw = wcp->draw;
+        wcp->view = 0;
+    }
+}
+
+
+
+extern void toggle_win_height_type(struct World * world, struct Win * win)
+{
+    struct WinConf * wcp = get_winconf_by_win(world, win);
+    if (0 == wcp->height_type)
+    {
+        wcp->height_type = 1;
+    }
+    else
+    {
+        wcp->height_type = 0;
+    }
+    set_winconf(world, wcp->id);
+}
+
+
+
+extern void toggle_win_width_type(struct World * world, struct Win * win)
+{
+    struct WinConf * wcp = get_winconf_by_win(world, win);
+    if (   0 == wcp->width_type
+        && win->frame.size.x <= world->wmeta->padframe.size.x)
+    {
+        wcp->width_type = 1;
+    }
+    else
+    {
+        wcp->width_type = 0;
+    }
+    set_winconf(world, wcp->id);
+}
+
+
+
 extern void scroll_pad(struct WinMeta * win_meta, char dir)
 {
     if      ('+' == dir)
@@ -36,11 +416,11 @@ extern void scroll_pad(struct WinMeta * win_meta, char dir)
 
 
 
-extern uint8_t growshrink_active_window(struct WinMeta * win_meta, char change)
+extern uint8_t growshrink_active_window(struct World * world, char change)
 {
-    if (0 != win_meta->active)
+    if (0 != world->wmeta->active)
     {
-        struct yx_uint16 size = win_meta->active->frame.size;
+        struct yx_uint16 size = world->wmeta->active->frame.size;
         if      (change == '-')
         {
             size.y--;
@@ -57,8 +437,16 @@ extern uint8_t growshrink_active_window(struct WinMeta * win_meta, char change)
         {
             size.x++;
         }
-        return resize_active_win (win_meta, size);
+        uint8_t x = resize_active_win(world->wmeta, size);
+        struct WinConf * wcp = get_winconf_by_win(world, world->wmeta->active);
+        if (   1 == wcp->width_type
+            && world->wmeta->active->frame.size.x
+               > world->wmeta->padframe.size.x)
+        {
+            wcp->width_type = 0;
+        }
+        set_winconf(world, wcp->id);
+        return x;
     }
     return 0;
 }
-