home · contact · privacy
While adding cleaning up / freeing of map objects, fixed bug that initialized map...
authorChristian Heller <c.heller@plomlompom.de>
Sat, 31 Aug 2013 00:35:23 +0000 (02:35 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Sat, 31 Aug 2013 00:35:23 +0000 (02:35 +0200)
src/main.c
src/map_objects.c
src/map_objects.h
src/rexit.c
src/rexit.h

index 27613bf450ecf864b59a2b7e236b01e957636d09..786e72e51f173349e90740e027515d1067430bf4 100644 (file)
@@ -33,6 +33,7 @@
 int main(int argc, char *argv[])
 {
     struct World world;
+    world.turn = 0;        /* Turns to 1 when map and objects are initalized. */
 
     init_command_db(&world);
     set_cleanup_flag(CLEANUP_COMMAND_DB);
@@ -128,9 +129,11 @@ int main(int argc, char *argv[])
         {
             exit_err(1, &world, err_r);
         }
+        set_cleanup_flag(CLEANUP_MAP_OBJECTS);
         exit_err(fclose(file), &world, err_c);
         player.pos.y--;
         player.pos.x--;
+        world.turn = 1;
     }
 
     /* For non-interactive mode, try to load world state from record file. */
@@ -140,7 +143,6 @@ int main(int argc, char *argv[])
                 "opening file 'record' for reading.";
         err_r = "Trouble loading record file (read_uint32_bigendian() in "
                 "main()) / reading from opened file 'record'.";
-        world.turn = 1;
         if (0 == world.interactive)
         {
             file = fopen(recordfile, "r");
@@ -172,7 +174,6 @@ int main(int argc, char *argv[])
         }
     }
 
-
     /* Generate map from seed and, if newly generated world, start positions of
      * actors.
      */
@@ -180,7 +181,7 @@ int main(int argc, char *argv[])
     struct Map map = init_map();
     world.map = &map;
     set_cleanup_flag(CLEANUP_MAP);
-    if (1 == world.turn)
+    if (0 == world.turn)
     {
         player.pos = find_passable_pos(world.map);
         void * foo;
@@ -189,6 +190,8 @@ int main(int argc, char *argv[])
         build_map_objects(&world, foo, 3, 1 + rrand() % 3);
         foo = build_map_objects(&world, &world.item, 4, 1 + rrand() % 3);
         build_map_objects(&world, foo, 5, 1 + rrand() % 3);
+        set_cleanup_flag(CLEANUP_MAP_OBJECTS);
+        world.turn = 1;
     }
 
     /* Initialize window system and windows. */
index 4cd6cb0d8cae2a682196861a18e8a3292d3cd615..f0f002caa31feddaaaba44d6cdef7a7a935404fa 100644 (file)
@@ -290,7 +290,29 @@ extern void * build_map_objects(struct World * world, void * start, char def_id,
 
 
 
-extern struct MapObjDef * get_map_obj_def (struct World * world, char def_id)
+extern void free_items(struct Item * item)
+{
+    if (0 != item->map_obj.next)
+    {
+        free_items((struct Item *) item->map_obj.next);
+    }
+    free(item);
+}
+
+
+
+extern void free_monsters(struct Monster * monster)
+{
+    if (0 != monster->map_obj.next)
+    {
+        free_monsters((struct Monster *) monster->map_obj.next);
+    }
+    free(monster);
+}
+
+
+
+extern struct MapObjDef * get_map_obj_def(struct World * world, char def_id)
 {
     struct MapObjDef * d = NULL;
     for (d = (struct MapObjDef *) world->monster_def;
index 83ae7c5c610553097bb2684736abffbacb94777c..bddd5ffc5f96e655180bcb4ad1b0f9e0d8c42a29 100644 (file)
@@ -104,6 +104,9 @@ extern uint8_t read_map_objects(struct World * world, void * start,
                                 FILE * file);
 
 
+/* Free items / monsters in map object chain starting at "item" / "monster". */
+extern void free_items(struct Item * item);
+extern void free_monsters(struct Monster * monster);
 
 /* Get pointer to the map object definition of identifier "def_id". */
 extern struct MapObjDef * get_map_obj_def(struct World * world, char def_id);
index e0d029f124b1d6218c2dde85e8b3167cd371aa12..2907705af45948398966b77b2cf141bea3ef676c 100644 (file)
@@ -70,6 +70,11 @@ static void cleanup(struct World * world)
         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);
+    }
 }
 
 
index 6336788ddf8c19012cdea8cbc771517de834f7bc..f376e5ead2b063ada2a8cbcddc22622b6f510d58 100644 (file)
@@ -26,11 +26,12 @@ enum cleanup_flag
     CLEANUP_KEYBINDINGS     = 0x0004,
     CLEANUP_LOG             = 0x0008,
     CLEANUP_COMMAND_DB      = 0x0010,
-    CLEANUP_MAP_OBJECT_DEFS = 0x0020,
-    CLEANUP_WIN_INFO        = 0x0040,
-    CLEANUP_WIN_LOG         = 0x0080,
-    CLEANUP_WIN_MAP         = 0x0100,
-    CLEANUP_WIN_KEYS        = 0x0200
+    CLEANUP_MAP_OBJECTS     = 0x0020,
+    CLEANUP_MAP_OBJECT_DEFS = 0x0040,
+    CLEANUP_WIN_INFO        = 0x0080,
+    CLEANUP_WIN_LOG         = 0x0100,
+    CLEANUP_WIN_MAP         = 0x0200,
+    CLEANUP_WIN_KEYS        = 0x0400
 };
 extern void set_cleanup_flag(enum cleanup_flag flag);