home · contact · privacy
Add command to let the AI decide player's next move.
[plomrogue] / src / server / cleanup.h
index 61abd71f4b0a4e35089e27cd709da4e67bb0e1fc..12e76807344b78e08dee3fae7de4ee3eabdda392 100644 (file)
  */
 enum cleanup_flag
 {
-    CLEANUP_FIFO            = 0x0001,
-    CLEANUP_OUTFILE         = 0x0002,
-    CLEANUP_MAP_OBJECT_DEFS = 0x0004,
-    CLEANUP_MAP_OBJECTS     = 0x0008,
-    CLEANUP_MAP_OBJECT_ACTS = 0x0010
+    CLEANUP_FIFO          = 0x0001,
+    CLEANUP_WORLDSTATE    = 0x0002,
+    CLEANUP_THING_TYPES   = 0x0004,
+    CLEANUP_THINGS        = 0x0008,
+    CLEANUP_THING_ACTIONS = 0x0010,
+    CLEANUP_IN            = 0x0020,
+    CLEANUP_OUT           = 0x0040
 };
 
+/* In addition, unset_cleanup_flag() may be used to unset flags. */
 extern void set_cleanup_flag(enum cleanup_flag flag);
+extern void unset_cleanup_flag(enum cleanup_flag flag);
 
 /* Frees memory and unlinks some files. */
 extern void cleanup();