home · contact · privacy
Cleaned up memory allocation by Win initialization.
[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 KeysWinData, KeyBinding structs */
12 #include "command_db.h" /* for free_command_db() */
13 #include "windows.h" /* for Win struct */
14 #include "wincontrol.h" /* for free_win() */
15
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)
31     {
32         free(world->map->cells);
33     }
34     if (cleanup_flags & CLEANUP_KEYBINDINGS)
35     {
36         uint16_t key;
37         for (key = 0; key <= world->keyswindata->max; key++)
38         {
39             free(world->keybindings[key].name);
40         }
41         free(world->keybindings);
42         free(world->keyswindata);
43     }
44     if (cleanup_flags & CLEANUP_LOG)
45     {
46         free(world->log);
47     }
48     if (cleanup_flags & CLEANUP_COMMAND_DB)
49     {
50         free_command_db(world);
51     }
52     if (cleanup_flags & CLEANUP_WIN_INFO)
53     {
54         free_win(world->wins.info);
55     }
56     if (cleanup_flags & CLEANUP_WIN_MAP)
57     {
58         free_win(world->wins.map);
59     }
60     if (cleanup_flags & CLEANUP_WIN_LOG)
61     {
62         free_win(world->wins.log);
63     }
64     if (cleanup_flags & CLEANUP_WIN_KEYS)
65     {
66         free_win(world->wins.keys);
67     }
68 }
69
70
71
72 extern void set_cleanup_flag(enum cleanup_flag flag)
73 {
74     cleanup_flags = cleanup_flags | flag;
75 }
76
77
78
79 extern void exit_game(struct World * world)
80 {
81     cleanup(world);
82     exit(EXIT_SUCCESS);
83 }
84
85
86
87 extern void exit_err(uint8_t err, struct World * world, char * msg)
88 {
89     if (0 == err)
90     {
91         return;
92     }
93     cleanup(world);
94     if (NULL == msg)
95     {
96         msg = "Details unknown.";
97     }
98     printf("Aborted PlomRogue due to error. %s\nInternal error code: %d\n",
99            msg, err);
100     if (0 != errno)
101     {
102         perror("errno states");
103     }
104     exit(EXIT_FAILURE);
105 }