home · contact · privacy
Made single World struct a global variable, fitted a lot of code to this change,...
[plomrogue] / src / wincontrol.c
index 5680ff97ee3de08ba2694ebab86d797ca078f8b0..41ba94525a24f1de3c05635a89ba7cd79ae84fae 100644 (file)
@@ -15,7 +15,7 @@
                         * try_fgets(), try_fclose_unlink_rename(), try_fwrite()
                         */
 #include "rexit.h" /* for exit_err() */
-#include "main.h" /* for World struct */
+#include "main.h" /* for world global */
 #include "draw_wins.h" /* for draw_win_map(), draw_win_info(), draw_win_og(),
                         * draw_win_available_keybindings(),
                         * draw_win_keybindings_global(), draw_win_inventory(),
 
 
 /* Return string "prefix" + "id"; malloc()'s string, remember to call free()! */
-static char * string_prefixed_id(struct World * world, char * prefix, char id);
+static char * string_prefixed_id(char * prefix, char id);
 
 
 
 /* Create Winconf, init ->view/height_type/width_type to 0, ->id to "id". */
-static void create_winconf(struct World * world, char id, struct WinConf * wcp);
+static void create_winconf(char id, struct WinConf * wcp);
 
 /* Initialize Winconf of "id" from appropriate config file.*/
-static void init_winconf_from_file(struct World * world, char id);
+static void init_winconf_from_file(char id);
 
 /* Wrapper around init_win() called with values from Winconf of "id". */
-static void init_win_from_winconf(struct World * world, char id);
+static void init_win_from_winconf(char id);
 
 /* Save title, draw function, size of window identified by "id" to conffile. */
-static void save_win_config(struct World * world, char id);
+static void save_win_config(char id);
 
 /* Free data pointed to inside WinConf struct. */
-static void free_winconf_data(struct World * world, char id);
+static void free_winconf_data(char id);
 
 
 
 /* Write geometry of a window to its WinConf, as positive or negative values
  * (dependent on state ofWinConf->height_type / WinConf->width_type).
  */
-static void set_winconf_geometry(struct World * world, char id);
+static void set_winconf_geometry(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 struct WinConf * get_winconf_by_id(char id);
 
 /* Get (Win->draw) function identified by "c"; NULL if c not mapped to one. */
 static void * get_drawfunc_by_char(char c);
 
-/* Iterate over bytes of world->winconf_ids array. Re-start after null byte. */
-static char get_next_winconf_id(struct World * world);
+/* Iterate over bytes of world.winconf_ids array. Re-start after null byte. */
+static char get_next_winconf_id();
 
 
 
-static char * string_prefixed_id(struct World * world, char * prefix, char id)
+static char * string_prefixed_id(char * prefix, char id)
 {
     uint8_t size = strlen(prefix) + 2;
-    char * path = try_malloc(size, world, "string_prefixed_id()");
+    char * path = try_malloc(size, "string_prefixed_id()");
     sprintf(path, "%s_", prefix);
     path[size - 2] = id;
     return path;
@@ -81,7 +81,7 @@ static char * string_prefixed_id(struct World * world, char * prefix, char id)
 
 
 
-static void create_winconf(struct World * world, char id, struct WinConf * wcp)
+static void create_winconf(char id, struct WinConf * wcp)
 {
     wcp->id = id;
     wcp->view = 0;
@@ -93,36 +93,35 @@ static void create_winconf(struct World * world, char id, struct WinConf * wcp)
 
 
 
-static void init_winconf_from_file(struct World * world, char id)
+static void init_winconf_from_file(char id)
 {
     char * tmp = "init_winconf_from_file() on window id '_'";
-    char * context = try_malloc(strlen(tmp) + 1, world,
-                               "init_winconf_from_file()");
+    char * context = try_malloc(strlen(tmp) + 1, "init_winconf_from_file()");
     memcpy(context, tmp, strlen(tmp) + 1);
     context[strlen(tmp) - 2] = id;
 
-    char * path = string_prefixed_id(world, "config/windows/Win_", id);
-    FILE * file = try_fopen(path, "r", world, context);
+    char * path = string_prefixed_id("config/windows/Win_", id);
+    FILE * file = try_fopen(path, "r", context);
     free(path);
-    uint16_t linemax = get_linemax(file, world, context);
+    uint16_t linemax = get_linemax(file, context);
     char line[linemax + 1];
 
-    struct WinConf * winconf = get_winconf_by_id(world, id);
-    try_fgets(line, linemax + 1, file, world, context);
-    winconf->title = try_malloc(strlen(line), world, context);
+    struct WinConf * winconf = get_winconf_by_id(id);
+    try_fgets(line, linemax + 1, file, context);
+    winconf->title = try_malloc(strlen(line), context);
     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, context);
+    try_fgets(line, linemax + 1, file, context);
     winconf->draw = line[0];
 
-    try_fgets(line, linemax + 1, file, world, context);
+    try_fgets(line, linemax + 1, file, context);
     winconf->height = atoi(line);
     if (0 >= winconf->height)
     {
         winconf->height_type = 1;
     }
-    try_fgets(line, linemax + 1, file, world, context);
+    try_fgets(line, linemax + 1, file, context);
     winconf->width = atoi(line);
     if (0 >= winconf->width)
     {
@@ -139,48 +138,48 @@ static void init_winconf_from_file(struct World * world, char id)
         {
             break;
         }
-        * loc_last_ptr = try_malloc(sizeof(struct KeyBinding), world, context);
+        * loc_last_ptr = try_malloc(sizeof(struct KeyBinding), context);
         struct KeyBinding * kb_p = * loc_last_ptr;
         kb_p->next = 0;
         kb_p->key = atoi(command);
         cmdptr = strchr(command, ' ') + 1;
-        kb_p->name = try_malloc(strlen(cmdptr), world, context);
+        kb_p->name = try_malloc(strlen(cmdptr), context);
         memcpy(kb_p->name, cmdptr, strlen(cmdptr) - 1);
         kb_p->name[strlen(cmdptr) - 1] = '\0';
         loc_last_ptr = & kb_p->next;
     }
 
-    try_fclose(file, world, context);
+    try_fclose(file, context);
     free(context);
 }
 
 
 
-static void init_win_from_winconf(struct World * world, char id)
+static void init_win_from_winconf(char id)
 {
     char * tmp = "Trouble in init_win_from_file() with init_win() (win id: _).";
-    char * err = try_malloc(strlen(tmp) + 1, world, "init_win_from_file()");
+    char * err = try_malloc(strlen(tmp) + 1, "init_win_from_file()");
     memcpy(err, tmp, strlen(tmp) + 1);
     err[strlen(tmp) - 3] = id;
-    struct WinConf * winconf = get_winconf_by_id(world, id);
+    struct WinConf * winconf = get_winconf_by_id(id);
     void * f = get_drawfunc_by_char(winconf->draw);
-    exit_err(NULL == f, world, err);
-    exit_err(init_win(world->wmeta, &winconf->win, winconf->title,
-                      winconf->height, winconf->width, world, f),
-             world, err);
+    exit_err(NULL == f, err);
+    uint8_t test = init_win(world.wmeta, &winconf->win, winconf->title,
+                            winconf->height, winconf->width, f);
+    exit_err(test, err);
     free(err);
 }
 
 
 
-static void save_win_config(struct World * world, char id)
+static void save_win_config(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);
+    char * path_tmp = string_prefixed_id("config/windows/Win_tmp_", id);
+    FILE * file = try_fopen(path_tmp, "w", f_name);
 
-    struct WinConf * wc = get_winconf_by_id(world, id);
+    struct WinConf * wc = get_winconf_by_id(id);
     uint8_t size = strlen(wc->title) + 2;
     if (size < 7)
     {
@@ -188,13 +187,13 @@ static void save_win_config(struct World * world, char id)
     }
     char line[size];
     sprintf(line, "%s\n", wc->title);
-    try_fwrite(line, sizeof(char), strlen(line), file, world, f_name);
+    try_fwrite(line, sizeof(char), strlen(line), file, f_name);
     sprintf(line, "%c\n", wc->draw);
-    try_fwrite(line, sizeof(char), strlen(line), file, world, f_name);
+    try_fwrite(line, sizeof(char), strlen(line), file, f_name);
     sprintf(line, "%d\n", wc->height);
-    try_fwrite(line, sizeof(char), strlen(line), file, world, f_name);
+    try_fwrite(line, sizeof(char), strlen(line), file, f_name);
     sprintf(line, "%d\n", wc->width);
-    try_fwrite(line, sizeof(char), strlen(line), file, world, f_name);
+    try_fwrite(line, sizeof(char), strlen(line), file, f_name);
 
     uint16_t linemax = 0;
     struct KeyBinding * kb_p = wc->kb.kbs;
@@ -213,21 +212,21 @@ static void save_win_config(struct World * world, char id)
     while (0 != kb_p)
     {
         snprintf(kb_line, linemax, "%d %s\n", kb_p->key, kb_p->name);
-        try_fwrite(kb_line, sizeof(char), strlen(kb_line), file, world, f_name);
+        try_fwrite(kb_line, sizeof(char), strlen(kb_line), file, f_name);
         kb_p = kb_p->next;
     }
 
-    char * path = string_prefixed_id(world, "config/windows/Win_", id);
-    try_fclose_unlink_rename(file, path_tmp, path, world, f_name);
+    char * path = string_prefixed_id("config/windows/Win_", id);
+    try_fclose_unlink_rename(file, path_tmp, path, f_name);
     free(path);
     free(path_tmp);
 }
 
 
 
-static void free_winconf_data(struct World * world, char id)
+static void free_winconf_data(char id)
 {
-    struct WinConf * wc = get_winconf_by_id(world, id);
+    struct WinConf * wc = get_winconf_by_id(id);
     free(wc->title);
     free_keybindings(wc->kb.kbs);
     free_win(wc->win);
@@ -235,16 +234,16 @@ static void free_winconf_data(struct World * world, char id)
 
 
 
-static void set_winconf_geometry(struct World * world, char id)
+static void set_winconf_geometry(char id)
 {
-    struct WinConf * wcp = get_winconf_by_id(world, id);
+    struct WinConf * wcp = get_winconf_by_id(id);
     if      (0 == wcp->height_type)
     {
         wcp->height = wcp->win->framesize.y;
     }
     else if (1 == wcp->height_type)
     {
-        wcp->height = wcp->win->framesize.y - world->wmeta->padsize.y + 1;
+        wcp->height = wcp->win->framesize.y - world.wmeta->padsize.y + 1;
     }
     if      (0 == wcp->width_type)
     {
@@ -252,20 +251,20 @@ static void set_winconf_geometry(struct World * world, char id)
     }
     else if (1 == wcp->width_type)
     {
-        wcp->width = wcp->win->framesize.x - world->wmeta->padsize.x;
+        wcp->width = wcp->win->framesize.x - world.wmeta->padsize.x;
     }
 }
 
 
 
-static struct WinConf * get_winconf_by_id(struct World * world, char id)
+static struct WinConf * get_winconf_by_id(char id)
 {
     uint8_t i = 0;
     while (1)
     {
-        if (id == world->winconfs[i].id)
+        if (id == world.winconfs[i].id)
         {
-            return &world->winconfs[i];
+            return &world.winconfs[i];
         }
         i++;
     }
@@ -312,10 +311,10 @@ static void * get_drawfunc_by_char(char c)
 
 
 
-static char get_next_winconf_id(struct World * world)
+static char get_next_winconf_id()
 {
     static uint8_t i = 0;
-    char c = world->winconf_ids[i];
+    char c = world.winconf_ids[i];
     if (0 == c)
     {
         i = 0;
@@ -329,15 +328,14 @@ static char get_next_winconf_id(struct World * world)
 
 
 
-extern struct WinConf * get_winconf_by_win(struct World * world,
-                                           struct Win * win)
+extern struct WinConf * get_winconf_by_win(struct Win * win)
 {
     uint8_t i = 0;
     while (1)
     {
-        if (win == world->winconfs[i].win)
+        if (win == world.winconfs[i].win)
         {
-            return &world->winconfs[i];
+            return &world.winconfs[i];
         }
         i++;
     }
@@ -345,15 +343,15 @@ extern struct WinConf * get_winconf_by_win(struct World * world,
 
 
 
-extern struct Win * get_win_by_id(struct World * world, char id)
+extern struct Win * get_win_by_id(char id)
 {
-    struct WinConf * wc = get_winconf_by_id(world, id);
+    struct WinConf * wc = get_winconf_by_id(id);
     return wc->win;
 }
 
 
 
-extern void init_winconfs(struct World * world)
+extern void init_winconfs()
 {
     char * f_name = "init_winconfs()";
     char * err_o = "Trouble in init_winconfs() with opendir().";
@@ -361,16 +359,15 @@ extern void init_winconfs(struct World * world)
     char * err_c = "Trouble in init_winconfs() with closedir().";
 
     DIR * dp = opendir("config/windows");
-    exit_err(NULL == dp, world, err_o);
+    exit_err(NULL == dp, err_o);
     struct dirent * fn;
     errno = 0;
-    char * winconf_ids = try_malloc(256, world, f_name);
+    char * winconf_ids = try_malloc(256, f_name);
     uint8_t i = 0;
     char id;
     while (NULL != (fn = readdir(dp)))
     {
-        if (   5 == strlen(fn->d_name)
-            && fn->d_name == strstr(fn->d_name, "Win_"))
+        if (5 == strlen(fn->d_name) && fn->d_name == strstr(fn->d_name, "Win_"))
         {
             id = fn->d_name[4];
             winconf_ids[i] = id;
@@ -378,125 +375,125 @@ extern void init_winconfs(struct World * world)
         }
     }
     winconf_ids[i] = '\0';
-    exit_err(errno, world, err_r);
-    exit_err(closedir(dp), world, err_c);
-    world->winconf_ids = try_malloc(strlen(winconf_ids) + 1, world, f_name);
-    memcpy(world->winconf_ids, winconf_ids, strlen(winconf_ids) + 1);
+    exit_err(errno, err_r);
+    exit_err(closedir(dp), err_c);
+    world.winconf_ids = try_malloc(strlen(winconf_ids) + 1, f_name);
+    memcpy(world.winconf_ids, winconf_ids, strlen(winconf_ids) + 1);
     free(winconf_ids);
 
     struct WinConf * winconfs;
-    winconfs = try_malloc(strlen(world->winconf_ids) * sizeof(struct WinConf),
-                                 world, f_name);
+    winconfs = try_malloc(strlen(world.winconf_ids) * sizeof(struct WinConf),
+                          f_name);
     i = 0;
-    while (0 != (id = get_next_winconf_id(world)))
+    while (0 != (id = get_next_winconf_id()))
     {
-        create_winconf(world, id, &winconfs[i]);
+        create_winconf(id, &winconfs[i]);
         i++;
     }
-    world->winconfs = winconfs;
-    while (0 != (id = get_next_winconf_id(world)))
+    world.winconfs = winconfs;
+    while (0 != (id = get_next_winconf_id()))
     {
-        init_winconf_from_file(world, id);
+        init_winconf_from_file(id);
         i++;
     }
 }
 
 
 
-extern void free_winconfs(struct World * world)
+extern void free_winconfs()
 {
     char id;
-    while (0 != (id = get_next_winconf_id(world)))
+    while (0 != (id = get_next_winconf_id()))
     {
-        free_winconf_data(world, id);
+        free_winconf_data(id);
     }
-    free(world->winconf_ids);
-    free(world->winconfs);
+    free(world.winconf_ids);
+    free(world.winconfs);
 }
 
 
 
-extern void init_wins(struct World * world)
+extern void init_wins()
 {
     char id;
-    while (0 != (id = get_next_winconf_id(world)))
+    while (0 != (id = get_next_winconf_id()))
     {
-        init_win_from_winconf(world, id);
+        init_win_from_winconf(id);
     }
 }
 
 
 
-extern void sorted_wintoggle_and_activate(struct World * world)
+extern void sorted_wintoggle_and_activate()
 {
     char * f_name = "sorted_wintoggle_and_activate()";
 
     char * path = "config/windows/toggle_order_and_active";
-    FILE * file = try_fopen(path, "r", world, f_name);
-    uint16_t linemax = get_linemax(file, world, f_name);
+    FILE * file = try_fopen(path, "r", f_name);
+    uint16_t linemax = get_linemax(file, f_name);
 
     char win_order[linemax + 1];
-    try_fgets(win_order, linemax + 1, file, world, f_name);
+    try_fgets(win_order, linemax + 1, file, f_name);
 
     uint8_t a = 0;
-    char * err = trouble_msg(world, f_name, "read_uint8()");
-    exit_err(read_uint8(file, &a), world, err);
+    char * err = trouble_msg(f_name, "read_uint8()");
+    exit_err(read_uint8(file, &a), err);
     free(err);
 
-    try_fclose(file, world, f_name);
+    try_fclose(file, f_name);
 
     uint8_t i = 0;
     for (; i < linemax - 1; i++)
     {
-        if (NULL == strchr(world->winconf_ids, win_order[i]))
+        if (NULL == strchr(world.winconf_ids, win_order[i]))
         {
             continue;
         }
-        struct Win * win = get_win_by_id(world, win_order[i]);
-        toggle_window(world->wmeta, win);
+        struct Win * win = get_win_by_id(win_order[i]);
+        toggle_window(world.wmeta, win);
 
         if (a == (uint8_t) win_order[i])
         {
-            world->wmeta->active = win;
+            world.wmeta->active = win;
         }
     }
 }
 
 
 
-extern void save_win_configs(struct World * world)
+extern void save_win_configs()
 {
     char * f_name = "save_win_configs()";
 
     char id;
-    while (0 != (id = get_next_winconf_id(world)))
+    while (0 != (id = get_next_winconf_id()))
     {
-        save_win_config(world, id);
+        save_win_config(id);
     }
 
     char * path     = "config/windows/toggle_order_and_active";
     char * path_tmp = "config/windows/toggle_order_and_active_tmp";
-    FILE * file = try_fopen(path_tmp, "w", world, f_name);
+    FILE * file = try_fopen(path_tmp, "w", f_name);
 
     char line[6];
-    struct Win * w_p = world->wmeta->chain_start;
+    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);
+        struct WinConf * wc = get_winconf_by_win(w_p);
         line[i] = wc->id;
         w_p = w_p->next;
         i++;
     }
     line[i] = '\n';
-    try_fwrite(line, sizeof(char), strlen(line), file, world, f_name);
-    if (0 != world->wmeta->active)
+    try_fwrite(line, sizeof(char), strlen(line), file, f_name);
+    if (0 != world.wmeta->active)
     {
-        struct WinConf * wc = get_winconf_by_win(world, world->wmeta->active);
+        struct WinConf * wc = get_winconf_by_win(world.wmeta->active);
         write_uint8(wc->id, file);
     }
 
-    try_fclose_unlink_rename(file, path_tmp, path, world, f_name);
+    try_fclose_unlink_rename(file, path_tmp, path, f_name);
 }
 
 
@@ -515,9 +512,9 @@ extern uint8_t toggle_window(struct WinMeta * win_meta, struct Win * win)
 
 
 
-extern void toggle_winconfig(struct World * world, struct Win * win)
+extern void toggle_winconfig(struct Win * win)
 {
-    struct WinConf * wcp = get_winconf_by_win(world, win);
+    struct WinConf * wcp = get_winconf_by_win(win);
     if      (0 == wcp->view)
     {
         win->draw = draw_winconf_geometry;
@@ -542,9 +539,9 @@ extern void toggle_winconfig(struct World * world, struct Win * win)
 
 
 
-extern void toggle_win_height_type(struct World * world, struct Win * win)
+extern void toggle_win_height_type(struct Win * win)
 {
-    struct WinConf * wcp = get_winconf_by_win(world, win);
+    struct WinConf * wcp = get_winconf_by_win(win);
     if (0 == wcp->height_type)
     {
         wcp->height_type = 1;
@@ -553,15 +550,15 @@ extern void toggle_win_height_type(struct World * world, struct Win * win)
     {
         wcp->height_type = 0;
     }
-    set_winconf_geometry(world, wcp->id);
+    set_winconf_geometry(wcp->id);
 }
 
 
 
-extern void toggle_win_width_type(struct World * world, struct Win * win)
+extern void toggle_win_width_type(struct Win * win)
 {
-    struct WinConf * wcp = get_winconf_by_win(world, win);
-    if (0 == wcp->width_type && win->framesize.x <= world->wmeta->padsize.x)
+    struct WinConf * wcp = get_winconf_by_win(win);
+    if (0 == wcp->width_type && win->framesize.x <= world.wmeta->padsize.x)
     {
         wcp->width_type = 1;
     }
@@ -569,7 +566,7 @@ extern void toggle_win_width_type(struct World * world, struct Win * win)
     {
         wcp->width_type = 0;
     }
-    set_winconf_geometry(world, wcp->id);
+    set_winconf_geometry(wcp->id);
 }
 
 
@@ -588,11 +585,11 @@ extern void scroll_pad(struct WinMeta * win_meta, char dir)
 
 
 
-extern uint8_t growshrink_active_window(struct World * world, char change)
+extern uint8_t growshrink_active_window(char change)
 {
-    if (0 != world->wmeta->active)
+    if (0 != world.wmeta->active)
     {
-        struct yx_uint16 size = world->wmeta->active->framesize;
+        struct yx_uint16 size = world.wmeta->active->framesize;
         if      (change == '-')
         {
             size.y--;
@@ -609,14 +606,14 @@ extern uint8_t growshrink_active_window(struct World * world, char change)
         {
             size.x++;
         }
-        uint8_t x = resize_active_win(world->wmeta, size);
-        struct WinConf * wcp = get_winconf_by_win(world, world->wmeta->active);
+        uint8_t x = resize_active_win(world.wmeta, size);
+        struct WinConf * wcp = get_winconf_by_win(world.wmeta->active);
         if (   1 == wcp->width_type
-            && world->wmeta->active->framesize.x > world->wmeta->padsize.x)
+            && world.wmeta->active->framesize.x > world.wmeta->padsize.x)
         {
             wcp->width_type = 0;
         }
-        set_winconf_geometry(world, wcp->id);
+        set_winconf_geometry(wcp->id);
         return x;
     }
     return 0;