home · contact · privacy
Improved (and simplified) pseudo-randomness.
authorChristian Heller <c.heller@plomlompom.de>
Wed, 20 Nov 2013 05:04:10 +0000 (06:04 +0100)
committerChristian Heller <c.heller@plomlompom.de>
Wed, 20 Nov 2013 05:04:10 +0000 (06:04 +0100)
src/main.c
src/main.h
src/map.c
src/misc.c
src/misc.h
src/rrand.c [deleted file]
src/rrand.h [deleted file]

index 86f8507869cd3e28899b67dde5ed97ed59a9b348..478f764d4586d43908632a0512a1b03bd58b495d 100644 (file)
 #include "map.h" /* for struct Map, init_map() */
 #include "misc.h" /* for update_log(), find_passable_pos(), save_game(),
                    * try_calloc(), check_tempfile(), check_xor_files(),
-                   * load_interface_conf(), load_game()
+                   * load_interface_conf(), load_game(), rrand()
                    */
 #include "wincontrol.h" /* get_win_by_id(), get_winconf_by_win() */
-#include "rrand.h" /* for rrand(), rrand_seed() */
 #include "rexit.h" /* for exit_game(), exit_err() */
 #include "command_db.h" /* for init_command_db(), is_command_id_shortdsc() */
 #include "control.h" /* for control_by_id(), player_control(),
@@ -127,12 +126,14 @@ int main(int argc, char *argv[])
             exit_err(write_uint32_bigendian(world.seed, file), err_w);
             try_fclose_unlink_rename(file, recordfile_tmp, recordfile, f_name);
         }
+        world.mapseed = world.seed;
     }
 
     /* Generate map from seed and, if newly generated world, start positions of
      * actors.
      */
-    rrand_seed(world.seed);
+    uint32_t restore_seed = world.seed;
+    world.seed = world.mapseed;
     struct Map map = init_map();
     world.map = &map;
     set_cleanup_flag(CLEANUP_MAP);
@@ -148,6 +149,7 @@ int main(int argc, char *argv[])
         set_cleanup_flag(CLEANUP_MAP_OBJECTS);
         world.turn = 1;
     }
+    world.seed = restore_seed;
 
     /* Initialize window system and windows. */
     WINDOW * screen = initscr();
index 687dfc8e97f075ee4bb03d2daad8c388e4565411..f3670b24324fb9286dccb9adc2697560ff1f9a75 100644 (file)
@@ -25,6 +25,7 @@ struct World
     struct KeyBiData kb_wingeom;      /* Window geometry config keybindings. */
     struct KeyBiData kb_winkeys;      /* Window keybinding config keybindings.*/
     uint32_t seed;                    /* Randomness seed. */
+    uint32_t mapseed;                 /* Initial randomness seed used for map.*/
     uint32_t turn;                    /* Current game turn. */
     uint16_t score;                   /* Player's score. */
     char * log;                       /* Pointer to the game log string. */
index 1615818ba329c792f62cf4c057bc1d5f8bb4f8fa..b8c8733a2aba0e79a0c0462bfc59125892de556a 100644 (file)
--- a/src/map.c
+++ b/src/map.c
@@ -1,9 +1,8 @@
 #include "map.h"
 #include <stdint.h>      /* for uint16_t, uint32_t */
-#include "misc.h"        /* for try_malloc(), center_offset() */
+#include "misc.h"        /* for try_malloc(), center_offset(), rrand() */
 #include "map_objects.h" /* for get_player() */
 #include "yx_uint16.h"   /* for yx_uint16 and dir enums */
-#include "rrand.h"       /* for rrand() */
 #include "windows.h"     /* for struct Win */
 #include "main.h"        /* for world global */
 #include "wincontrol.h"  /* for get_win_by_id() */
index 0e8abe9c6eecc755fd2fd37774887f9621ff1727..e71770daf8361b8a6df34c8b35f27b137596414f 100644 (file)
@@ -5,7 +5,7 @@
 #include <unistd.h> /* for unlink(), acess() */
 #include <stdlib.h> /* for size_t, calloc(), free() */
 #include <string.h> /* for strlen(), strcmp(), memcpy() */
-#include <stdint.h> /* for uint8_t, uint16_t */
+#include <stdint.h> /* for uint8_t, uint16_t, uint32_t */
 #include "readwrite.h" /* for [read/write]_uint[8/16/32][_bigendian](),
                         * try_fopen(), try_fclose(), get_linemax()
                         */
@@ -16,7 +16,6 @@
 #include "map.h" /* for Map struct, is_passable() */
 #include "main.h" /* for world global */
 #include "yx_uint16.h" /* for yx_uint16 struct */
-#include "rrand.h" /* for rrand(), rrand_seed() */
 #include "rexit.h" /* for exit_err() */
 #include "wincontrol.h" /* for init_winconfs(), init_wins(), free_winconfs(),
                          * sorted_wintoggle_and_activate()
 
 
 
+extern uint16_t rrand()
+{
+    /* Constants as recommended by POSIX.1-2001 (see man page rand(3)). */
+    world.seed = ((world.seed * 1103515245) + 12345) % 4294967296;
+    return (world.seed >> 16); /* Ignore less random least significant bits. */
+}
+
+
+
 extern char * trouble_msg(char * parent, char * child)
 {
     char * p1 = "Trouble in ";
@@ -229,7 +237,6 @@ extern void turn_over(char action)
         }
         try_fclose_unlink_rename(file_new, recordfile_tmp, recordfile, f_name);
     }
-    rrand_seed(world.seed * world.turn);
 
     struct MapObj * player = get_player();
     struct MapObj * map_object = player;
@@ -279,11 +286,13 @@ extern void save_game()
     char * savefile     = "savefile";
     FILE * file = try_fopen(savefile_tmp, "w", f_name);
     char line[12];
-    sprintf(line, "%d\n", world.seed);
+    sprintf(line, "%u\n", world.mapseed);
+    try_fwrite(line, strlen(line), 1, file, f_name);
+    sprintf(line, "%u\n", world.seed);
     try_fwrite(line, strlen(line), 1, file, f_name);
-    sprintf(line, "%d\n", world.turn);
+    sprintf(line, "%u\n", world.turn);
     try_fwrite(line, strlen(line), 1, file, f_name);
-    sprintf(line, "%d\n", world.score);
+    sprintf(line, "%u\n", world.score);
     try_fwrite(line, strlen(line), 1, file, f_name);
     write_map_objects(file);
     try_fclose_unlink_rename(file, savefile_tmp, savefile, f_name);
@@ -299,6 +308,8 @@ extern void load_game()
     uint16_t linemax = get_linemax(file, f_name);
     char line[linemax + 1];
     try_fgets(line, linemax + 1, file, f_name);
+    world.mapseed = atoi(line);
+    try_fgets(line, linemax + 1, file, f_name);
     world.seed = atoi(line);
     try_fgets(line, linemax + 1, file, f_name);
     world.turn = atoi(line);
index fad27f6a51e890b18aa675a710f23f8c3aa4833a..bc3e274a5c2c3a181396a630f60f574123a2d889 100644 (file)
@@ -14,6 +14,12 @@ struct Map;
 
 
 
+/* Return 16-bit number pseudo-randomly generated via Linear Congruential
+ * Generator algorithm with some proven constants. Use instead of rand() to
+ * ensure portability of the same pseudo-randomness across systems.
+ */
+extern uint16_t rrand();
+
 /* Returns message: "Trouble in ".parent." with ".child."." (try_*() helper) */
 extern char * trouble_msg(char * parent, char * child);
 
diff --git a/src/rrand.c b/src/rrand.c
deleted file mode 100644 (file)
index e2b459b..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-#include "rrand.h"
-#include <stdint.h> /* for uint16_t, uint32_t */
-
-
-
-static uint32_t seed = 0;
-
-
-
-extern uint16_t rrand()
-{
-    /* Constants as recommended by POSIX.1-2001 (see man page rand(3)). */
-    seed = ((seed * 1103515245) + 12345) % 2147483647;
-
-    return (seed >> 16);     /* Ignore less random least significant 16 bits. */
-}
-
-
-
-extern void rrand_seed(uint32_t new_seed)
-{
-    seed = new_seed;
-}
diff --git a/src/rrand.h b/src/rrand.h
deleted file mode 100644 (file)
index 056be9b..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-/* rrand.h
- *
- * Provide pseudo-random numbers via a Linear Congruential Generator algorithm
- * with some proven constants. Use these functions instead of rand() and
- * srand() to ensure portable pseudo-randomness portability.
- */
-
-#ifndef RRAND_H
-#define RRAND_H
-
-#include <stdint.h>    /* for uint32_t */
-
-
-
-/* Return 16-bit number pseudo-randomly generated. */
-extern uint16_t rrand();
-
-/* Set seed that rrand() starts from. */
-extern void rrand_seed(uint32_t new_seed);
-
-
-
-#endif