3 #include "wincontrol.h"
4 #include <stdlib.h> /* for free() */
5 #include <string.h> /* for strlen(), strchr(), strstr() */
6 #include <stdint.h> /* for uint8_t, uint16_t */
7 #include "windows.h" /* for suspend_win(), append_win(), reset_pad_offset(),
8 * resize_active_win(), init_win(), free_win(), struct Win
10 #include "yx_uint16.h" /* for yx_uint16 struct */
11 #include "main.h" /* for world global */
12 #include "readwrite.h" /* for textfile_sizes(), try_fopen(), try_fclose(),
13 * try_fgets(), try_fclose_unlink_rename(), try_fwrite()
16 #include "rexit.h" /* for exit_err(), exit_trouble() */
17 #include "draw_wins.h" /* for draw_win_map(), draw_win_info(), draw_win_log(),
18 * draw_win_available_keybindings(),
19 * draw_win_inventory(), draw_win_keybindings_global(),
20 * draw_win_keybindings_winconf_geometry(),
21 * draw_win_keybindings_winconf_keybindings(),
22 * draw_winconf_geometry(), draw_winconf_keybindings()
24 #include "misc.h" /* for try_malloc() */
25 #include "dirent.h" /* for opendir(), closedir(), readdir() */
26 #include "errno.h" /* for errno */
27 #include "keybindings.h" /* for KeyBinding struct, free_keybindings() */
31 /* Return string "prefix" + "id"; malloc()'s string, remember to call free()! */
32 static char * string_prefixed_id(char * prefix, char id);
34 /* Initialize Winconf of "id" from appropriate config file.*/
35 static void init_winconf_from_file(char id, struct WinConf * winconf);
37 /* Wrapper around init_win() called with values from Winconf of "id". */
38 static void init_win_from_winconf(char id);
40 /* Save title, draw function, size of window identified by "id" to conffile. */
41 static void save_win_config(char id);
43 /* Free data pointed to inside individual WinConf struct of "id". */
44 static void free_winconf_data(char id);
46 /* Write geometry of a window to its WinConf, as positive or negative values
47 * (dependent on state ofWinConf->height_type / WinConf->width_type).
49 static void set_winconf_geometry(char id);
51 /* Get WinConf by "id"; get id of WinConf mothering "win". */
52 static struct WinConf * get_winconf_by_id(char id);
54 /* Get (Win->draw) function identified by "c"; NULL if c not mapped to one. */
55 static void * get_drawfunc_by_char(char c);
57 /* Iterate over chars of world.winconf_ids array. Re-start after null byte. */
58 static char get_next_winconf_id();
62 static char * string_prefixed_id(char * prefix, char id)
64 uint8_t size = strlen(prefix) + 2;
65 char * path = try_malloc(size, "string_prefixed_id()");
66 sprintf(path, "%s_", prefix);
73 static void init_winconf_from_file(char id, struct WinConf * winconf)
75 /* Assign WinConf id to filename path, error message context, winconf->id.*/
76 char * tmp = "init_winconf_from_file() on window id '_'";
77 char * context = try_malloc(strlen(tmp) + 1, "init_winconf_from_file()");
78 memcpy(context, tmp, strlen(tmp) + 1);
79 context[strlen(tmp) - 2] = id;
80 char * path = string_prefixed_id("config/windows/Win_", id);
83 /* Prepare reading in file line by line into "line" array. */
84 FILE * file = try_fopen(path, "r", context);
86 uint16_t linemax = textfile_sizes(file, NULL/*, context*/);
87 char line[linemax + 1];
89 /* Read/determine winconf->title, ->draw, ->height(_type),->width(_type). */
90 try_fgets(line, linemax + 1, file, context);
91 winconf->title = try_malloc(strlen(line), context);
92 memcpy(winconf->title, line, strlen(line) - 1); /* Eliminate newline char */
93 winconf->title[strlen(line) - 1] = '\0'; /* char at end of string. */
94 try_fgets(line, linemax + 1, file, context);
95 winconf->draw = line[0];
96 try_fgets(line, linemax + 1, file, context);
97 winconf->height = atoi(line);
98 winconf->height_type = (0 >= winconf->height);
99 try_fgets(line, linemax + 1, file, context);
100 winconf->width = atoi(line);
101 winconf->width_type = (0 >= winconf->width);
103 /* Read in window-specific keybindings (winconf->kb). */
104 char command[linemax + 1];
106 struct KeyBinding ** loc_last_ptr = &winconf->kb.kbs;
108 while (fgets(command, linemax + 1, file))
110 if ('\n' == command[0] || 0 == command[0])
114 * loc_last_ptr = try_malloc(sizeof(struct KeyBinding), context);
115 struct KeyBinding * kb_p = * loc_last_ptr;
117 kb_p->key = atoi(command);
118 cmdptr = strchr(command, ' ') + 1;
119 kb_p->name = try_malloc(strlen(cmdptr), context);
120 memcpy(kb_p->name, cmdptr, strlen(cmdptr) - 1);
121 kb_p->name[strlen(cmdptr) - 1] = '\0';
122 loc_last_ptr = & kb_p->next;
125 /* Init remaining values to zero and cleaning up. */
127 winconf->kb.edit = 0;
128 winconf->kb.select = 0;
129 try_fclose(file, context);
135 static void init_win_from_winconf(char id)
137 char * err = "get_drawfunc_by_char() returns NULL to init_win_from_file().";
138 struct WinConf * winconf = get_winconf_by_id(id);
139 void * f = get_drawfunc_by_char(winconf->draw);
140 exit_err(NULL == f, err);
141 init_win(&winconf->win, winconf->title, winconf->height, winconf->width, f);
146 static void save_win_config(char id)
148 char * f_name = "save_win_config()";
150 /* Prepare atomic file saving. */
151 char * path_tmp = string_prefixed_id("config/windows/Win_tmp_", id);
152 FILE * file = try_fopen(path_tmp, "w", f_name);
154 /* Save, line by line, ->title, ->draw, ->height and ->width. */
155 struct WinConf * wc = get_winconf_by_id(id);
156 uint8_t size = strlen(wc->title) + 2;
157 if (size < 7) /* Ensure that at least 5 + 2 char fit into line so that */
158 { /* the digit representation of any uint16_t may be stored. */
162 sprintf(line, "%s\n", wc->title);
163 try_fwrite(line, sizeof(char), strlen(line), file, f_name);
164 sprintf(line, "%c\n", wc->draw);
165 try_fwrite(line, sizeof(char), strlen(line), file, f_name);
166 sprintf(line, "%d\n", wc->height);
167 try_fwrite(line, sizeof(char), strlen(line), file, f_name);
168 sprintf(line, "%d\n", wc->width);
169 try_fwrite(line, sizeof(char), strlen(line), file, f_name);
171 /* Save window-specific keybindings (->kb.kbs). */
172 uint16_t linemax = 0;
173 struct KeyBinding * kb_p = wc->kb.kbs;
176 if (strlen(kb_p->name) > linemax)
178 linemax = strlen(kb_p->name);
182 linemax = linemax + 6; /* + 6: + 3 digits + whitespace + \n + \0 */
183 char kb_line[linemax];
187 sprintf(kb_line, "%d %s\n", kb_p->key, kb_p->name);
188 try_fwrite(kb_line, sizeof(char), strlen(kb_line), file, f_name);
192 /* Finish atomic file saving and clean up. */
193 char * path = string_prefixed_id("config/windows/Win_", id);
194 try_fclose_unlink_rename(file, path_tmp, path, f_name);
201 static void free_winconf_data(char id)
203 struct WinConf * wc = get_winconf_by_id(id);
205 free_keybindings(wc->kb.kbs);
211 static void set_winconf_geometry(char id)
213 struct WinConf * wcp = get_winconf_by_id(id);
214 if (0 == wcp->height_type)
216 wcp->height = wcp->win->framesize.y;
218 else if (1 == wcp->height_type)
220 wcp->height = wcp->win->framesize.y - world.wmeta->padsize.y + 1;
222 if (0 == wcp->width_type)
224 wcp->width = wcp->win->framesize.x;
226 else if (1 == wcp->width_type)
228 wcp->width = wcp->win->framesize.x - world.wmeta->padsize.x;
234 static struct WinConf * get_winconf_by_id(char id)
239 if (id == world.winconfs[i].id)
241 return &world.winconfs[i];
249 static void * get_drawfunc_by_char(char c)
253 return draw_win_inventory;
257 return draw_win_info;
265 return draw_win_available_keybindings;
273 return draw_win_keybindings_global;
277 return draw_win_keybindings_winconf_geometry;
281 return draw_win_keybindings_winconf_keybindings;
288 static char get_next_winconf_id()
290 static uint8_t i = 0;
291 char c = world.winconf_ids[i];
303 extern struct WinConf * get_winconf_by_win(struct Win * win)
308 if (win == world.winconfs[i].win)
310 return &world.winconfs[i];
318 extern struct Win * get_win_by_id(char id)
320 struct WinConf * wc = get_winconf_by_id(id);
326 extern void init_winconfs()
328 char * f_name = "init_winconfs()";
330 /* Fill world.winconf_ids with config/windows/Win_* filenames' end chars. */
331 uint8_t max_wins = 255; /* Maximum number of window ids to store. */
332 DIR * dp = opendir("config/windows");
333 exit_trouble(NULL == dp, f_name, "opendir()");
336 char * winconf_ids = try_malloc(max_wins + 1, f_name);
339 while (NULL != (fn = readdir(dp)) && i < max_wins)
341 if (5 == strlen(fn->d_name) && fn->d_name == strstr(fn->d_name, "Win_"))
348 winconf_ids[i] = '\0';
349 exit_trouble(errno, f_name, "readdir()");
350 exit_trouble(closedir(dp), f_name, "closedir()");
351 world.winconf_ids = try_malloc(strlen(winconf_ids) + 1, f_name);
352 memcpy(world.winconf_ids, winconf_ids, strlen(winconf_ids) + 1);
355 /* Initialize world.winconfs from Win_* files named in world.winconf_ids. */
356 size_t size = strlen(world.winconf_ids) * sizeof(struct WinConf);
357 world.winconfs = try_malloc(size, f_name);
359 while (0 != (id = get_next_winconf_id()))
361 init_winconf_from_file(id, &world.winconfs[i]);
368 extern void free_winconfs()
371 while (0 != (id = get_next_winconf_id()))
373 free_winconf_data(id);
375 free(world.winconf_ids);
376 free(world.winconfs);
381 extern void init_wins()
384 while (0 != (id = get_next_winconf_id()))
386 init_win_from_winconf(id);
392 extern void sorted_wintoggle_and_activate()
394 char * f_name = "sorted_wintoggle_and_activate()";
396 /* Read from file order of windows to be toggled + active win selection. */
397 char * path = "config/windows/toggle_order_and_active";
398 FILE * file = try_fopen(path, "r", f_name);
399 uint16_t linemax = textfile_sizes(file, NULL);
400 char win_order[linemax + 1];
401 try_fgets(win_order, linemax + 1, file, f_name);
402 uint8_t a = try_fgetc_noeof(file, f_name);
403 try_fclose(file, f_name);
405 /* Toggle windows and set active window selection. */
407 for (; i < strlen(win_order) - 1; i++)
409 if (NULL == strchr(world.winconf_ids, win_order[i]))
413 toggle_window(win_order[i]);
414 if (a == (uint8_t) win_order[i])
416 world.wmeta->active = get_win_by_id(win_order[i]);
423 extern void save_win_configs()
425 char * f_name = "save_win_configs()";
427 /* Save individual world.winconfs to their proper files. */
428 uint8_t max_wins = 255; /* So many winconf ids fit into world.winconf_ids.*/
430 while (0 != (id = get_next_winconf_id()))
435 /* Save order of windows to toggle on start / which to select as active. */
436 char * path = "config/windows/toggle_order_and_active";
437 char * path_tmp = "config/windows/toggle_order_and_active_tmp";
438 FILE * file = try_fopen(path_tmp, "w", f_name);
439 char line[max_wins + 2];
440 struct Win * w_p = world.wmeta->chain_start;
442 while (0 != w_p && i < max_wins)
444 struct WinConf * wc = get_winconf_by_win(w_p);
451 try_fwrite(line, sizeof(char), strlen(line), file, f_name);
452 if (0 != world.wmeta->active)
454 struct WinConf * wc = get_winconf_by_win(world.wmeta->active);
455 try_fputc(wc->id, file, f_name);
457 try_fclose_unlink_rename(file, path_tmp, path, f_name);
462 extern void toggle_window(char id)
464 struct Win * win = get_win_by_id(id);
465 if (0 == win->prev && world.wmeta->chain_start != win) /* Win struct is */
466 { /* outside chain? */
477 extern void toggle_winconfig()
479 struct Win * win = world.wmeta->active;
480 struct WinConf * wcp = get_winconf_by_win(win);
484 win->draw = draw_winconf_geometry;
485 wcp->center = win->center;
489 else if (1 == wcp->view)
492 win->draw = draw_winconf_keybindings;
498 win->draw = get_drawfunc_by_char(wcp->draw);
499 win->center = wcp->center;
505 extern void toggle_win_size_type(char axis)
507 struct Win * win = world.wmeta->active;
508 struct WinConf * wcp = get_winconf_by_win(win);
511 wcp->height_type = (0 == wcp->height_type);
512 set_winconf_geometry(wcp->id);
515 wcp->width_type = ( 0 == wcp->width_type
516 && win->framesize.x <= world.wmeta->padsize.x);
517 set_winconf_geometry(wcp->id);
522 extern void scroll_pad(char dir)
526 reset_pad_offset(world.wmeta->pad_offset + 1);
530 reset_pad_offset(world.wmeta->pad_offset - 1);
536 extern void growshrink_active_window(char change)
538 if (0 != world.wmeta->active)
540 struct yx_uint16 size = world.wmeta->active->framesize;
545 else if (change == '+')
549 else if (change == '_')
553 else if (change == '*')
557 resize_active_win(size);
558 struct WinConf * wcp = get_winconf_by_win(world.wmeta->active);
559 if ( 1 == wcp->width_type
560 && world.wmeta->active->framesize.x > world.wmeta->padsize.x)
564 set_winconf_geometry(wcp->id);