home · contact · privacy
Renamed functions to reflect change from seed files system to game save files system.
authorChristian Heller <c.heller@plomlompom.de>
Wed, 29 May 2013 03:28:28 +0000 (05:28 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Wed, 29 May 2013 03:28:28 +0000 (05:28 +0200)
roguelike.c
roguelike.h

index c68e983705466eac6a3f920127070b3ca51486bb..c5c13094c59e3439560fe0e0312520e24d387cdc 100644 (file)
@@ -54,7 +54,7 @@ void write_uint32_bigendian(uint32_t x, FILE * file) {
   fputc(c, file);
   fputc(d, file); }
 
-void load_seed(struct World * world) {
+void load_game(struct World * world) {
 // Load seed integer from seed file.
   FILE * file = fopen("savefile", "r");
   world->seed = read_uint32_bigendian(file);
@@ -65,7 +65,7 @@ void load_seed(struct World * world) {
   world->monster->x = read_uint16_bigendian(file);
   fclose(file); }
 
-void save_seed(struct World * world) {
+void save_game(struct World * world) {
 // Save seed integer to seed file.
   FILE * file = fopen("savefile", "w");
   write_uint32_bigendian(world->seed, file);
@@ -225,7 +225,7 @@ int main (int argc, char *argv[]) {
   struct Monster monster;
   world.monster = &monster;
   if (0 == access("savefile", F_OK))
-    load_seed(&world);
+    load_game(&world);
   else {
     player.y = 8;
     player.x = 8;
@@ -256,7 +256,7 @@ int main (int argc, char *argv[]) {
   uint32_t last_turn = 0;
   while (1) {
     if (last_turn != world.turn) {
-      save_seed(&world);
+      save_game(&world);
       last_turn = world.turn; }
     draw_all_windows (&win_meta);
     key = getch();
index 2bfa449f071f05ff91498c9c6f2ce88af8a2bce5..0d0ce86ab385b91f8237397f099131681a995817 100644 (file)
@@ -28,8 +28,8 @@ uint16_t read_uint16_bigendian(FILE * file);
 void write_uint16_bigendian(uint16_t x, FILE * file);
 uint32_t read_uint32_bigendian(FILE * file);
 void write_uint32_bigendian(uint32_t x, FILE * file);
-void load_seed(struct World *);
-void save_seed(struct World *);
+void load_game(struct World *);
+void save_game(struct World *);
 void toggle_window (struct WinMeta *, struct Win *);
 void growshrink_active_window (struct WinMeta *, char);
 struct Map init_map ();