home · contact · privacy
Reduced code complexity by stronger integrating windows library.
[plomrogue] / src / wincontrol.c
1 /* wincontrol.c */
2
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 <unistd.h> /* for access(), unlink() */
8 #include "windows.h" /* for suspend_win(), append_win(), reset_pad_offset(),
9                       * resize_active_win(), init_win(), free_win(),
10                       * structs Win, WinMeta
11                       */
12 #include "yx_uint16.h" /* for yx_uint16 struct */
13 #include "main.h" /* for world global */
14 #include "readwrite.h" /* for get_linemax(), try_fopen(), try_fclose(),
15                         * try_fgets(), try_fclose_unlink_rename(), try_fwrite()
16                         */
17 #include "rexit.h" /* for exit_err() */
18 #include "main.h" /* for world global */
19 #include "draw_wins.h" /* for draw_win_map(), draw_win_info(), draw_win_og(),
20                         * draw_win_available_keybindings(),
21                         * draw_win_keybindings_global(), draw_win_inventory(),
22                         * draw_win_keybindings_winconf_geometry(),
23                         * draw_win_keybindings_winconf_keybindings(),
24                         * draw_winconf_geometry(), draw_winconf_keybindings()
25                         */
26 #include "misc.h" /* for try_malloc(), trouble_msg() */
27 #include "dirent.h" /* for opendir(), closedir(), readdir() */
28 #include "errno.h" /* for errno */
29 #include "keybindings.h" /* for KeyBinding struct, free_keybindings() */
30
31
32
33 /* Return string "prefix" + "id"; malloc()'s string, remember to call free()! */
34 static char * string_prefixed_id(char * prefix, char id);
35
36
37
38 /* Create Winconf, init ->view/height_type/width_type to 0, ->id to "id". */
39 static void create_winconf(char id, struct WinConf * wcp);
40
41 /* Initialize Winconf of "id" from appropriate config file.*/
42 static void init_winconf_from_file(char id);
43
44 /* Wrapper around init_win() called with values from Winconf of "id". */
45 static void init_win_from_winconf(char id);
46
47 /* Save title, draw function, size of window identified by "id" to conffile. */
48 static void save_win_config(char id);
49
50 /* Free data pointed to inside WinConf struct. */
51 static void free_winconf_data(char id);
52
53
54
55 /* Write geometry of a window to its WinConf, as positive or negative values
56  * (dependent on state ofWinConf->height_type / WinConf->width_type).
57  */
58 static void set_winconf_geometry(char id);
59
60
61
62 /* Get WinConf by "id"; get id of WinConf mothering "win". */
63 static struct WinConf * get_winconf_by_id(char id);
64
65 /* Get (Win->draw) function identified by "c"; NULL if c not mapped to one. */
66 static void * get_drawfunc_by_char(char c);
67
68 /* Iterate over bytes of world.winconf_ids array. Re-start after null byte. */
69 static char get_next_winconf_id();
70
71
72
73 static char * string_prefixed_id(char * prefix, char id)
74 {
75     uint8_t size = strlen(prefix) + 2;
76     char * path = try_malloc(size, "string_prefixed_id()");
77     sprintf(path, "%s_", prefix);
78     path[size - 2] = id;
79     return path;
80 }
81
82
83
84 static void create_winconf(char id, struct WinConf * wcp)
85 {
86     wcp->id = id;
87     wcp->view = 0;
88     wcp->height_type = 0;
89     wcp->width_type = 0;
90     wcp->kb.edit = 0;
91     wcp->kb.select = 0;
92 }
93
94
95
96 static void init_winconf_from_file(char id)
97 {
98     char * tmp = "init_winconf_from_file() on window id '_'";
99     char * context = try_malloc(strlen(tmp) + 1, "init_winconf_from_file()");
100     memcpy(context, tmp, strlen(tmp) + 1);
101     context[strlen(tmp) - 2] = id;
102
103     char * path = string_prefixed_id("config/windows/Win_", id);
104     FILE * file = try_fopen(path, "r", context);
105     free(path);
106     uint16_t linemax = get_linemax(file, context);
107     char line[linemax + 1];
108
109     struct WinConf * winconf = get_winconf_by_id(id);
110     try_fgets(line, linemax + 1, file, context);
111     winconf->title = try_malloc(strlen(line), context);
112     memcpy(winconf->title, line, strlen(line) - 1); /* Eliminate newline char */
113     winconf->title[strlen(line) - 1] = '\0';        /* char at end of string. */
114
115     try_fgets(line, linemax + 1, file, context);
116     winconf->draw = line[0];
117
118     try_fgets(line, linemax + 1, file, context);
119     winconf->height = atoi(line);
120     if (0 >= winconf->height)
121     {
122         winconf->height_type = 1;
123     }
124     try_fgets(line, linemax + 1, file, context);
125     winconf->width = atoi(line);
126     if (0 >= winconf->width)
127     {
128         winconf->width_type = 1;
129     }
130
131     char command[linemax + 1];
132     char * cmdptr;
133     struct KeyBinding ** loc_last_ptr = &winconf->kb.kbs;
134     * loc_last_ptr = 0;
135     while (fgets(command, linemax + 1, file))
136     {
137         if ('\n' == command[0] || 0 == command[0])
138         {
139             break;
140         }
141         * loc_last_ptr = try_malloc(sizeof(struct KeyBinding), context);
142         struct KeyBinding * kb_p = * loc_last_ptr;
143         kb_p->next = 0;
144         kb_p->key = atoi(command);
145         cmdptr = strchr(command, ' ') + 1;
146         kb_p->name = try_malloc(strlen(cmdptr), context);
147         memcpy(kb_p->name, cmdptr, strlen(cmdptr) - 1);
148         kb_p->name[strlen(cmdptr) - 1] = '\0';
149         loc_last_ptr = & kb_p->next;
150     }
151
152     try_fclose(file, context);
153     free(context);
154 }
155
156
157
158 static void init_win_from_winconf(char id)
159 {
160     char * err = "get_drawfunc_by_char() returns NULL to init_win_from_file().";
161     struct WinConf * winconf = get_winconf_by_id(id);
162     void * f = get_drawfunc_by_char(winconf->draw);
163     exit_err(NULL == f, err);
164     init_win(&winconf->win, winconf->title, winconf->height, winconf->width, f);
165 }
166
167
168
169 static void save_win_config(char id)
170 {
171     char * f_name = "save_win_config()";
172
173     char * path_tmp = string_prefixed_id("config/windows/Win_tmp_", id);
174     FILE * file = try_fopen(path_tmp, "w", f_name);
175
176     struct WinConf * wc = get_winconf_by_id(id);
177     uint8_t size = strlen(wc->title) + 2;
178     if (size < 7)
179     {
180         size = 7;
181     }
182     char line[size];
183     sprintf(line, "%s\n", wc->title);
184     try_fwrite(line, sizeof(char), strlen(line), file, f_name);
185     sprintf(line, "%c\n", wc->draw);
186     try_fwrite(line, sizeof(char), strlen(line), file, f_name);
187     sprintf(line, "%d\n", wc->height);
188     try_fwrite(line, sizeof(char), strlen(line), file, f_name);
189     sprintf(line, "%d\n", wc->width);
190     try_fwrite(line, sizeof(char), strlen(line), file, f_name);
191
192     uint16_t linemax = 0;
193     struct KeyBinding * kb_p = wc->kb.kbs;
194     while (0 != kb_p)
195     {
196         if (strlen(kb_p->name) > linemax)
197         {
198             linemax = strlen(kb_p->name);
199         }
200         kb_p = kb_p->next;
201     }
202     linemax = linemax + 6;         /* + 6 = + 3 digits + whitespace + \n + \0 */
203
204     char kb_line[linemax];
205     kb_p = wc->kb.kbs;
206     while (0 != kb_p)
207     {
208         snprintf(kb_line, linemax, "%d %s\n", kb_p->key, kb_p->name);
209         try_fwrite(kb_line, sizeof(char), strlen(kb_line), file, f_name);
210         kb_p = kb_p->next;
211     }
212
213     char * path = string_prefixed_id("config/windows/Win_", id);
214     try_fclose_unlink_rename(file, path_tmp, path, f_name);
215     free(path);
216     free(path_tmp);
217 }
218
219
220
221 static void free_winconf_data(char id)
222 {
223     struct WinConf * wc = get_winconf_by_id(id);
224     free(wc->title);
225     free_keybindings(wc->kb.kbs);
226     free_win(wc->win);
227 }
228
229
230
231 static void set_winconf_geometry(char id)
232 {
233     struct WinConf * wcp = get_winconf_by_id(id);
234     if      (0 == wcp->height_type)
235     {
236         wcp->height = wcp->win->framesize.y;
237     }
238     else if (1 == wcp->height_type)
239     {
240         wcp->height = wcp->win->framesize.y - world.wmeta->padsize.y + 1;
241     }
242     if      (0 == wcp->width_type)
243     {
244         wcp->width = wcp->win->framesize.x;
245     }
246     else if (1 == wcp->width_type)
247     {
248         wcp->width = wcp->win->framesize.x - world.wmeta->padsize.x;
249     }
250 }
251
252
253
254 static struct WinConf * get_winconf_by_id(char id)
255 {
256     uint8_t i = 0;
257     while (1)
258     {
259         if (id == world.winconfs[i].id)
260         {
261             return &world.winconfs[i];
262         }
263         i++;
264     }
265 }
266
267
268
269 static void * get_drawfunc_by_char(char c)
270 {
271     if      ('c' == c)
272     {
273         return draw_win_inventory;
274     }
275     if      ('i' == c)
276     {
277         return draw_win_info;
278     }
279     else if ('l' == c)
280     {
281         return draw_win_log;
282     }
283     else if ('k' == c)
284     {
285         return draw_win_available_keybindings;
286     }
287     else if ('m' == c)
288     {
289         return draw_win_map;
290     }
291     else if ('0' == c)
292     {
293         return draw_win_keybindings_global;
294     }
295     else if ('1' == c)
296     {
297         return draw_win_keybindings_winconf_geometry;
298     }
299     else if ('2' == c)
300     {
301         return draw_win_keybindings_winconf_keybindings;
302     }
303     return NULL;
304 }
305
306
307
308 static char get_next_winconf_id()
309 {
310     static uint8_t i = 0;
311     char c = world.winconf_ids[i];
312     if (0 == c)
313     {
314         i = 0;
315     }
316     else
317     {
318         i++;
319     }
320     return c;
321 }
322
323
324
325 extern struct WinConf * get_winconf_by_win(struct Win * win)
326 {
327     uint8_t i = 0;
328     while (1)
329     {
330         if (win == world.winconfs[i].win)
331         {
332             return &world.winconfs[i];
333         }
334         i++;
335     }
336 }
337
338
339
340 extern struct Win * get_win_by_id(char id)
341 {
342     struct WinConf * wc = get_winconf_by_id(id);
343     return wc->win;
344 }
345
346
347
348 extern void init_winconfs()
349 {
350     char * f_name = "init_winconfs()";
351     char * err_o = "Trouble in init_winconfs() with opendir().";
352     char * err_r = "Trouble in init_winconfs() with readdir().";
353     char * err_c = "Trouble in init_winconfs() with closedir().";
354
355     DIR * dp = opendir("config/windows");
356     exit_err(NULL == dp, err_o);
357     struct dirent * fn;
358     errno = 0;
359     char * winconf_ids = try_malloc(256, f_name);
360     uint8_t i = 0;
361     char id;
362     while (NULL != (fn = readdir(dp)))
363     {
364         if (5 == strlen(fn->d_name) && fn->d_name == strstr(fn->d_name, "Win_"))
365         {
366             id = fn->d_name[4];
367             winconf_ids[i] = id;
368             i++;
369         }
370     }
371     winconf_ids[i] = '\0';
372     exit_err(errno, err_r);
373     exit_err(closedir(dp), err_c);
374     world.winconf_ids = try_malloc(strlen(winconf_ids) + 1, f_name);
375     memcpy(world.winconf_ids, winconf_ids, strlen(winconf_ids) + 1);
376     free(winconf_ids);
377
378     struct WinConf * winconfs;
379     winconfs = try_malloc(strlen(world.winconf_ids) * sizeof(struct WinConf),
380                           f_name);
381     i = 0;
382     while (0 != (id = get_next_winconf_id()))
383     {
384         create_winconf(id, &winconfs[i]);
385         i++;
386     }
387     world.winconfs = winconfs;
388     while (0 != (id = get_next_winconf_id()))
389     {
390         init_winconf_from_file(id);
391         i++;
392     }
393 }
394
395
396
397 extern void free_winconfs()
398 {
399     char id;
400     while (0 != (id = get_next_winconf_id()))
401     {
402         free_winconf_data(id);
403     }
404     free(world.winconf_ids);
405     free(world.winconfs);
406 }
407
408
409
410 extern void init_wins()
411 {
412     char id;
413     while (0 != (id = get_next_winconf_id()))
414     {
415         init_win_from_winconf(id);
416     }
417 }
418
419
420
421 extern void sorted_wintoggle_and_activate()
422 {
423     char * f_name = "sorted_wintoggle_and_activate()";
424
425     char * path = "config/windows/toggle_order_and_active";
426     FILE * file = try_fopen(path, "r", f_name);
427     uint16_t linemax = get_linemax(file, f_name);
428
429     char win_order[linemax + 1];
430     try_fgets(win_order, linemax + 1, file, f_name);
431
432     uint8_t a = 0;
433     char * err = trouble_msg(f_name, "read_uint8()");
434     exit_err(read_uint8(file, &a), err);
435     free(err);
436
437     try_fclose(file, f_name);
438
439     uint8_t i = 0;
440     for (; i < linemax - 1; i++)
441     {
442         if (NULL == strchr(world.winconf_ids, win_order[i]))
443         {
444             continue;
445         }
446         toggle_window(win_order[i]);
447
448         if (a == (uint8_t) win_order[i])
449         {
450             world.wmeta->active = get_win_by_id(win_order[i]);
451         }
452     }
453 }
454
455
456
457 extern void save_win_configs()
458 {
459     char * f_name = "save_win_configs()";
460
461     char id;
462     while (0 != (id = get_next_winconf_id()))
463     {
464         save_win_config(id);
465     }
466
467     char * path     = "config/windows/toggle_order_and_active";
468     char * path_tmp = "config/windows/toggle_order_and_active_tmp";
469     FILE * file = try_fopen(path_tmp, "w", f_name);
470
471     char line[6];
472     struct Win * w_p = world.wmeta->chain_start;
473     uint8_t i = 0;
474     while (0 != w_p)
475     {
476         struct WinConf * wc = get_winconf_by_win(w_p);
477         line[i] = wc->id;
478         w_p = w_p->next;
479         i++;
480     }
481     line[i] = '\n';
482     try_fwrite(line, sizeof(char), strlen(line), file, f_name);
483     if (0 != world.wmeta->active)
484     {
485         struct WinConf * wc = get_winconf_by_win(world.wmeta->active);
486         write_uint8(wc->id, file);
487     }
488
489     try_fclose_unlink_rename(file, path_tmp, path, f_name);
490 }
491
492
493
494 extern void toggle_window(char id)
495 {
496     struct Win * win = get_win_by_id(id);
497     if (0 == win->prev && world.wmeta->chain_start != win)  /* Win struct is  */
498     {                                                       /* outside chain. */
499         append_win(win);
500     }
501     else
502     {
503         suspend_win(win);
504     }
505 }
506
507
508
509 extern void toggle_winconfig()
510 {
511    struct Win * win = world.wmeta->active;
512    struct WinConf * wcp = get_winconf_by_win(win);
513     if      (0 == wcp->view)
514     {
515         win->draw = draw_winconf_geometry;
516         wcp->view = 1;
517         wcp->center = win->center;
518         win->center.y = 0;
519         win->center.x = 0;
520     }
521     else if (1 == wcp->view)
522     {
523         win->draw = draw_winconf_keybindings;
524         wcp->view = 2;
525         win->center.x = 0;
526     }
527     else
528     {
529         win->draw = get_drawfunc_by_char(wcp->draw);
530         win->center = wcp->center;
531         wcp->view = 0;
532     }
533 }
534
535
536
537 extern void toggle_win_height_type()
538 {
539     struct Win * win = world.wmeta->active;
540     struct WinConf * wcp = get_winconf_by_win(win);
541     if (0 == wcp->height_type)
542     {
543         wcp->height_type = 1;
544     }
545     else
546     {
547         wcp->height_type = 0;
548     }
549     set_winconf_geometry(wcp->id);
550 }
551
552
553
554 extern void toggle_win_width_type()
555 {
556     struct Win * win = world.wmeta->active;
557     struct WinConf * wcp = get_winconf_by_win(win);
558     if (0 == wcp->width_type && win->framesize.x <= world.wmeta->padsize.x)
559     {
560         wcp->width_type = 1;
561     }
562     else
563     {
564         wcp->width_type = 0;
565     }
566     set_winconf_geometry(wcp->id);
567 }
568
569
570
571 extern void scroll_pad(char dir)
572 {
573     if      ('+' == dir)
574     {
575         reset_pad_offset(world.wmeta->pad_offset + 1);
576     }
577     else if ('-' == dir)
578     {
579         reset_pad_offset(world.wmeta->pad_offset - 1);
580     }
581 }
582
583
584
585 extern void growshrink_active_window(char change)
586 {
587     if (0 != world.wmeta->active)
588     {
589         struct yx_uint16 size = world.wmeta->active->framesize;
590         if      (change == '-')
591         {
592             size.y--;
593         }
594         else if (change == '+')
595         {
596             size.y++;
597         }
598         else if (change == '_')
599         {
600             size.x--;
601         }
602         else if (change == '*')
603         {
604             size.x++;
605         }
606         resize_active_win(size);
607         struct WinConf * wcp = get_winconf_by_win(world.wmeta->active);
608         if (   1 == wcp->width_type
609             && world.wmeta->active->framesize.x > world.wmeta->padsize.x)
610         {
611             wcp->width_type = 0;
612         }
613         set_winconf_geometry(wcp->id);
614     }
615 }