home · contact · privacy
Upgrade to newest version of erlehmann's redo scripts.
[plomrogue] / src / server / cleanup.c
1 /* src/server/cleanup.c */
2
3 #include "cleanup.h"
4 #include <stdint.h> /* uint32_t */
5 #include <stdlib.h> /* free() */
6 #include <unistd.h> /* unlink() */
7 #include "../common/readwrite.h" /* try_fclose() */
8 #include "hardcoded_strings.h" /* s */
9 #include "thing_actions.h" /* free_thing_actions() */
10 #include "things.h" /* free_things(), free_thing_types() */
11 #include "world.h" /* global world */
12
13
14
15
16 /* The clean-up flags set by set_cleanup_flag(). */
17 static uint32_t cleanup_flags = 0x0000;
18
19
20
21 extern void cleanup()
22 {
23     free(world.queue);
24     free(world.log);
25     free(world.map.cells);
26     if (cleanup_flags & CLEANUP_WORLDSTATE)
27     {
28         unlink(s[S_PATH_WORLDSTATE]);
29     }
30     if (cleanup_flags & CLEANUP_THINGS)
31     {
32         free_things(world.things);
33     }
34     if (cleanup_flags & CLEANUP_THING_TYPES)
35     {
36         free_thing_types(world.thing_types);
37     }
38     if (cleanup_flags & CLEANUP_THING_ACTIONS)
39     {
40         free_thing_actions(world.thing_actions);
41     }
42     if (cleanup_flags & CLEANUP_IN)
43     {
44         try_fclose(world.file_in, __func__);
45         unlink(s[S_PATH_IN]);
46     }
47     if (cleanup_flags & CLEANUP_OUT)
48     {
49         try_fclose(world.file_out, __func__);
50         free(world.server_test);
51         unlink(s[S_PATH_OUT]);
52     }
53 }
54
55
56 extern void set_cleanup_flag(enum cleanup_flag flag)
57 {
58     cleanup_flags = cleanup_flags | flag;
59 }
60
61
62
63 extern void unset_cleanup_flag(enum cleanup_flag flag)
64 {
65     cleanup_flags = cleanup_flags ^ flag;
66 }