]> git.pond.sub.org Git - empserver/blobdiff - src/util/fairland.c
Update copyright notice
[empserver] / src / util / fairland.c
index c7f1baddaf7091f4257a189a7f69934153b887e7..eba88b20452b1a270cecc997ac300ba0e4d0a99e 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2013, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *  Copyright (C) 1986-2017, Dave Pare, Jeff Bailey, Thomas Ruschak,
  *                Ken Stevens, Steve McClure, Markus Armbruster
  *
  *  Empire is free software: you can redistribute it and/or modify
@@ -29,7 +29,7 @@
  *  Known contributors to this file:
  *     Ken Stevens, 1995
  *     Steve McClure, 1998
- *     Markus Armbruster, 2004-2012
+ *     Markus Armbruster, 2004-2013
  */
 
 #include <config.h>
@@ -72,7 +72,6 @@ static int quiet = 0;
 #include <stdio.h>
 #include <unistd.h>
 #include "chance.h"
-#include "file.h"
 #include "optlist.h"
 #include "prototypes.h"
 #include "sect.h"
@@ -117,14 +116,12 @@ static char *program_name;
 
 #define new_x(newx) (((newx) + WORLD_X) % WORLD_X)
 #define new_y(newy) (((newy) + WORLD_Y) % WORLD_Y)
-#define rnd(x) roll0((x))
 
 static int secs;               /* number of sectors grown */
 static int ctot;               /* total number of continents and islands grown */
 static int *isecs;             /* array of how large each island is */
 
 static int nc, sc, di, sp, pm, ni, is, id; /* the 8 args to this program */
-static unsigned long rnd_seed; /* optional seed argument */
 static int *capx, *capy;       /* location of the nc capitals */
 static int *mc, mcc;           /* array and counter used for stability
                                   check when perturbing */
@@ -167,7 +164,6 @@ static void set_coastal_flags(void);
 
 static void print_vars(void);
 static void fl_move(int);
-static void next_coast(int c, int x, int y, int *xp, int *yp);
 static void grow_islands(void);
 
 /****************************************************************************
@@ -180,9 +176,10 @@ main(int argc, char *argv[])
     int opt;
     char *config_file = NULL;
     int i = 0;
+    unsigned rnd_seed = 0;
+    int seed_set = 0;
 
     program_name = argv[0];
-    rnd_seed = time(NULL);
 
     while ((opt = getopt(argc, argv, "ae:hioqR:s:v")) != EOF) {
        switch (opt) {
@@ -203,6 +200,7 @@ main(int argc, char *argv[])
            break;
        case 'R':
            rnd_seed = strtoul(optarg, NULL, 10);
+           seed_set = 1;
            break;
        case 's':
            outfile = optarg;
@@ -220,6 +218,8 @@ main(int argc, char *argv[])
     }
     parse_args(argc - optind, argv + optind);
 
+    if (!seed_set)
+       rnd_seed = pick_seed();
     seed_prng(rnd_seed);
     empfile_init();
     if (emp_config(config_file) < 0)
@@ -229,12 +229,12 @@ main(int argc, char *argv[])
     allocate_memory();
     print_vars();
 
+    qprint("\n        #*# ...fairland rips open a rift in the datumplane... #*#\n\n");
+    qprint("seed is %u\n", rnd_seed);
     do {
        init();
        if (i)
-           qprint("\ntry #%d (out of %d)...", i + 1, NUMTRIES);
-       qprint("\n\n        #*# ...fairland rips open a rift in the datumplane... #*#\n\n");
-       qprint("seed is %lu\n", rnd_seed);
+           qprint("\ntry #%d (out of %d)...\n", i + 1, NUMTRIES);
        qprint("placing capitals...\n");
        if (!drift())
            qprint("fairland: unstable drift -- try increasisg DRIFT_MAX\n");
@@ -320,12 +320,13 @@ usage(void)
           "  -a              airport marker for continents\n"
           "  -e CONFIG-FILE  configuration file\n"
           "                  (default %s)\n"
-          "  -h              display this help and exit\n"
           "  -i              islands may merge\n"
           "  -o              don't set resources\n"
           "  -q              quiet\n"
           "  -R SEED         seed for random number generator\n"
           "  -s SCRIPT       name of script to create (default %s)\n"
+          "  -h              display this help and exit\n"
+          "  -v              display version information and exit\n"
           "  NC              number of continents\n"
           "  SC              continent size\n"
           "  NI              number of islands (default NC)\n"
@@ -377,10 +378,7 @@ parse_args(int argc, char *argv[])
        sp = atoi(argv[4]);
     else
        sp = DEFAULT_SPIKE;
-    if (sp < 0)
-       sp = 0;
-    if (sp > 100)
-       sp = 100;
+    sp = LIMIT_TO(sp, 0, 100);
 
     if (argc > 5)
        pm = atoi(argv[5]);
@@ -560,7 +558,7 @@ fl_move(int j)
 {
     int i, n, newx, newy;
 
-    for (i = rnd(6), n = 0; n < 6; i = (i + 1) % 6, ++n) {
+    for (i = roll0(6), n = 0; n < 6; i = (i + 1) % 6, ++n) {
        newx = new_x(capx[j] + dirx[i]);
        newy = new_y(capy[j] + diry[i]);
        if (iso(j, newx, newy) >= iso(j, capx[j], capy[j])) {
@@ -677,7 +675,7 @@ new_try(int c)
        if (sectc[c][0])
            return 0;
     } else {
-       i = starti = (spike && sectc[c][secs - 1]) ? secs - 1 : rnd(secs);
+       i = starti = (spike && sectc[c][secs - 1]) ? secs - 1 : roll0(secs);
        do {
            if (sectc[c][i])
                return i;
@@ -697,7 +695,7 @@ grow_one_sector(int c)
 {
     int done, coast_search, try1, x, y, newx, newy, i, n, sx, sy;
 
-    spike = rnd(100) < sp;
+    spike = roll0(100) < sp;
     if ((try1 = new_try(c)) == -1)
        return 0;
     x = sx = sectx[c][try1];
@@ -706,7 +704,7 @@ grow_one_sector(int c)
     done = 0;
     do {
        if (spike) {
-           for (i = rnd(6), n = 0; n < 12 && !done; i = (i + 1) % 6, ++n) {
+           for (i = roll0(6), n = 0; n < 12 && !done; i = (i + 1) % 6, ++n) {
                newx = new_x(x + dirx[i]);
                newy = new_y(y + diry[i]);
                if (own[newx][newy] == -1 &&
@@ -717,7 +715,7 @@ grow_one_sector(int c)
                        done = 1;
            }
        } else
-           for (i = rnd(6), n = 0; n < 6 && !done; i = (i + 1) % 6, ++n) {
+           for (i = roll0(6), n = 0; n < 6 && !done; i = (i + 1) % 6, ++n) {
                newx = new_x(x + dirx[i]);
                newy = new_y(y + diry[i]);
                if (own[newx][newy] == -1)
@@ -776,8 +774,8 @@ static int
 place_island(int c, int *xp, int *yp)
 {
     int d, sx, sy;
-    int ssy = rnd(WORLD_Y);
-    int ssx = new_x(rnd(WORLD_X / 2) * 2 + ssy % 2);
+    int ssy = roll0(WORLD_Y);
+    int ssx = new_x(roll0(WORLD_X / 2) * 2 + ssy % 2);
 
     if (ssx > WORLD_X - 2)
        ssx = new_x(ssx + 2);
@@ -811,7 +809,7 @@ grow_islands(void)
        secs = 0;
        if (!place_island(c, &x, &y))
            return;
-       isiz = 1 + rnd(2 * is - 1);
+       isiz = roll(is) + roll0(is);
        do {
            ++secs;
            find_coast(c);
@@ -897,7 +895,7 @@ elevate_land(void)
        for (k = nm, mountain_search = 0;
             k && mountain_search < MOUNTAIN_SEARCH_MAX;
             ++mountain_search) {
-           r = rnd(total);
+           r = roll0(total);
            for (i = 0; i < ns; ++i)
                if (r < weight[i] && ELEV == -INFINITY &&
                    (c >= nc ||
@@ -951,10 +949,10 @@ elevate_land(void)
        for (i = 0; i < ns; ++i) {
            if (ELEV == INFINITY) {
                if (dsea[i] == 1)
-                   ELEV = HILLMIN + rnd(PLATMIN - HILLMIN);
+                   ELEV = HILLMIN + roll0(PLATMIN - HILLMIN);
                else
-                   ELEV = HIGHMIN + rnd((256 - HIGHMIN) / 2) +
-                     rnd((256 - HIGHMIN) / 2);
+                   ELEV = HIGHMIN + roll0((256 - HIGHMIN) / 2) +
+                     roll0((256 - HIGHMIN) / 2);
            } else if (c < nc &&
                       (((capx[c] == sectx[c][i] && capy[c] == secty[c][i])) ||
                        ((new_x(capx[c] + 2) == sectx[c][i] &&
@@ -974,7 +972,7 @@ elevate_sea(void)
     for (y = 0; y < WORLD_Y; ++y) {
        for (x = y % 2; x < WORLD_X; x += 2) {
            if (elev[x][y] == -INFINITY)
-               elev[x][y] = -rnd((distance_to_land() * 20 + 27)) - 1;
+               elev[x][y] = -roll(distance_to_land() * 20 + 27);
        }
     }
 }
@@ -1001,7 +999,7 @@ set_oil(int e)
 {
     int oil = 0;
     if (e < LANDMIN)
-       oil = (LANDMIN - e) * 2 + rnd(2);
+       oil = (LANDMIN - e) * 2 + roll0(2);
     else if (e <= OIL_MAX)
        oil = (120 * (OIL_MAX - e + 1)) / (OIL_MAX - LANDMIN + 1);
     if (oil > 100)
@@ -1082,6 +1080,7 @@ write_sects(void)
                sct->sct_type = SCT_MOUNT;
            sct->sct_elev = total;
            sct->sct_newtype = sct->sct_type;
+           sct->sct_dterr = own[sct->sct_x][y] + 1;
            if (ORE)
                add_resources(sct);
        }