home · contact · privacy
Strongly overhauled keybinding managemment. Window-specific keybindings and a window...
[plomrogue] / src / rexit.c
1 /* rexit.c */
2
3 #include "rexit.h"
4 #include <stdlib.h> /* for exit(), free(), defines EXIT_SUCESS, EXIT_FAILURE */
5 #include <stdio.h> /* for printf(), perror() */
6 #include <stdint.h> /* for uint8_t */
7 #include <ncurses.h> /* for endwin() */
8 #include <errno.h> /* for errno */
9 #include "main.h" /* for World struct */
10 #include "map.h" /* for Map struct */
11 #include "keybindings.h" /* for free_keybindings() */
12 #include "command_db.h" /* for free_command_db() */
13 #include "windows.h" /* for Win struct, free_win(), free_winmeta() */
14 #include "map_objects.h" /* for free_item_defs(), free_monster_defs() */
15 #include "wincontrol.h" /* for free_winconfs() */
16
17
18 /* The clean-up routine and the flag resource by which it decides what to do. */
19 static uint32_t cleanup_flags = 0x0000;
20 static void cleanup(struct World * world);
21
22
23
24 static void cleanup(struct World * world)
25 {
26     if (cleanup_flags & CLEANUP_NCURSES)
27     {
28         endwin();
29     }
30     if (cleanup_flags & CLEANUP_MAP_OBJECTS)
31     {
32         free_items(world->item);
33         free_monsters(world->monster);
34     }
35     if (cleanup_flags & CLEANUP_MAP_OBJECT_DEFS)
36     {
37         free_item_defs(world->item_def);
38         free_monster_defs(world->monster_def);
39     }
40     if (cleanup_flags & CLEANUP_LOG)
41     {
42         free(world->log);
43     }
44     if (cleanup_flags & CLEANUP_COMMAND_DB)
45     {
46         free_command_db(world);
47     }
48     if (cleanup_flags & CLEANUP_MAP)
49     {
50         free(world->map->cells);
51     }
52     if (cleanup_flags & CLEANUP_KEYBINDINGS)
53     {
54         free_keybindings(world->kb_global.kbs);
55         free_keybindings(world->kb_wingeom.kbs);
56         free_keybindings(world->kb_winkeys.kbs);
57     }
58     if (cleanup_flags & CLEANUP_WIN_META)
59     {
60         free_winmeta(world->wmeta);
61     }
62     if (cleanup_flags & CLEANUP_WINCONFS)
63     {
64         free_winconfs(world);
65     }
66 }
67
68
69
70 extern void set_cleanup_flag(enum cleanup_flag flag)
71 {
72     cleanup_flags = cleanup_flags | flag;
73 }
74
75
76
77 extern void exit_game(struct World * world)
78 {
79     cleanup(world);
80     exit(EXIT_SUCCESS);
81 }
82
83
84
85 extern void exit_err(uint8_t err, struct World * world, char * msg)
86 {
87     if (0 == err)
88     {
89         return;
90     }
91     cleanup(world);
92     if (NULL == msg)
93     {
94         msg = "Details unknown.";
95     }
96     printf("Aborted PlomRogue due to error. %s\nInternal error code: %d\n",
97            msg, err);
98     if (0 != errno)
99     {
100         perror("errno states");
101     }
102     exit(EXIT_FAILURE);
103 }