X-Git-Url: https://plomlompom.com/repos/foo.html?a=blobdiff_plain;f=src%2Frexit.c;h=5640d89fc6065b5033fdf9431431552ab066e96c;hb=f44e1046dd5fafc71ac481490633ae544c5e5b0c;hp=cb69ccd842c9275f41067e6704ae523bea9dfa60;hpb=9e12416aa36cc77957627900c2c1fc0055936504;p=plomrogue diff --git a/src/rexit.c b/src/rexit.c index cb69ccd..5640d89 100644 --- a/src/rexit.c +++ b/src/rexit.c @@ -5,15 +5,18 @@ #include /* for printf(), perror() */ #include /* for uint8_t */ #include /* for endwin() */ +#include /* for errno */ #include "main.h" /* for World struct */ #include "map.h" /* for Map struct */ #include "keybindings.h" /* for KeysWinData, KeyBinding structs */ +#include "command_db.h" /* for free_command_db() */ +#include "windows.h" /* for Win struct, free_win(), free_winmeta() */ +#include "map_objects.h" /* for free_item_defs(), free_monster_defs() */ -#include "errno.h" /* The clean-up routine and the flag resource by which it decides what to do. */ -static uint8_t cleanup_flags = 0x00; +static uint32_t cleanup_flags = 0x0000; static void cleanup(struct World * world); @@ -42,6 +45,40 @@ static void cleanup(struct World * world) { free(world->log); } + if (cleanup_flags & CLEANUP_COMMAND_DB) + { + free_command_db(world); + } + if (cleanup_flags & CLEANUP_WIN_INFO) + { + free_win(world->wins.info); + } + if (cleanup_flags & CLEANUP_WIN_MAP) + { + free_win(world->wins.map); + } + if (cleanup_flags & CLEANUP_WIN_LOG) + { + free_win(world->wins.log); + } + if (cleanup_flags & CLEANUP_WIN_KEYS) + { + free_win(world->wins.keys); + } + if (cleanup_flags & CLEANUP_WIN_META) + { + free_winmeta(world->wins.meta); + } + if (cleanup_flags & CLEANUP_MAP_OBJECT_DEFS) + { + free_item_defs(world->item_def); + free_monster_defs(world->monster_def); + } + if (cleanup_flags & CLEANUP_MAP_OBJECTS) + { + free_items(world->item); + free_monsters(world->monster); + } } @@ -70,10 +107,13 @@ extern void exit_err(uint8_t err, struct World * world, char * msg) cleanup(world); if (NULL == msg) { - msg = "Some error encountered. Aborted."; + msg = "Details unknown."; + } + printf("Aborted PlomRogue due to error. %s\nInternal error code: %d\n", + msg, err); + if (0 != errno) + { + perror("errno states"); } - printf("%s\n", msg); - errno = 0; - perror("errno states"); exit(EXIT_FAILURE); }