home · contact · privacy
Each map object action now take different numbers of turns to complete. Re-wrote...
[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 global */
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_map_objects, free_map_object_defs() */
15 #include "misc.h" /* for unload_interface_conf() */
16 #include "map_object_actions.h" /* for free_map_object_actions() */
17
18
19
20 /* The clean-up routine and the flag resource by which it decides what to do. */
21 static uint32_t cleanup_flags = 0x0000;
22 static void cleanup();
23
24
25
26 static void cleanup()
27 {
28     if (cleanup_flags & CLEANUP_NCURSES)
29     {
30         endwin();
31     }
32     if (cleanup_flags & CLEANUP_MAP_OBJECTS)
33     {
34         free_map_objects(world.map_objs);
35     }
36     if (cleanup_flags & CLEANUP_MAP_OBJECT_DEFS)
37     {
38         free_map_object_defs(world.map_obj_defs);
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();
47     }
48     if (cleanup_flags & CLEANUP_MAPOBJACTS)
49     {
50         free_map_object_actions(world.map_obj_acts);
51     }
52     if (cleanup_flags & CLEANUP_MAP)
53     {
54         free(world.map->cells);
55     }
56     if (cleanup_flags & CLEANUP_INTERFACE_CONF)
57     {
58         unload_interface_conf();
59     }
60     if (cleanup_flags & CLEANUP_WIN_META)
61     {
62         free_winmeta();
63     }
64 }
65
66
67
68 extern void set_cleanup_flag(enum cleanup_flag flag)
69 {
70     cleanup_flags = cleanup_flags | flag;
71 }
72
73
74
75 extern void exit_game()
76 {
77     cleanup();
78     exit(EXIT_SUCCESS);
79 }
80
81
82
83 extern void exit_err(uint8_t err, char * msg)
84 {
85     if (0 == err)
86     {
87         return;
88     }
89     cleanup();
90     if (NULL == msg)
91     {
92         msg = "Details unknown.";
93     }
94     printf("Aborted PlomRogue due to error. %s\nInternal error code: %d\n",
95            msg, err);
96     if (0 != errno)
97     {
98         perror("errno states");
99     }
100     exit(EXIT_FAILURE);
101 }