]> git.pond.sub.org Git - empserver/blobdiff - src/lib/global/constants.c
Update copyright notice
[empserver] / src / lib / global / constants.c
index 64fcbabbc9aa937eec2a686cce450395b89c6eaa..cb3a4b0000fcd67965896b12f7882d225fbc0949 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2011, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *  Copyright (C) 1986-2015, 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, 1996
- *     Markus Armbruster, 2004-2011
+ *     Markus Armbruster, 2004-2014
  */
 
 #include <config.h>
@@ -41,12 +41,14 @@ char *privname = "Deity forgot to edit econfig";
 /* E-mail of the deity */
 char *privlog = "careless@invalid";
 /* Divine hosts and networks */
-char *privip = "127.0.0.1 ::1 ::ffff:127.0.0.1";
+char *privip = "127.0.0.1 ::1";
 
 char *post_crash_dump_hook = "";
 
 char *disabled_commands = "";
 
+int running_test_suite = 0;    /* For use by "make check" only */
+
 int keep_journal = 0;          /* journal log file enabled */
 
 int WORLD_X = 64;              /* World size - x */
@@ -65,6 +67,8 @@ char *game_days = "";         /* days game is running */
 char *game_hours = "";         /* hours game is running */
 char *pre_update_hook = "";
 int max_idle = 15;             /* session dies after max_idle minutes idle */
+int max_idle_visitor = 5;      /* same for visitors */
+int login_grace_time = 120;    /* Grace time for completing login (sec) */
 
 int sect_mob_max = 127;                /* sector mobility limits */
 float sect_mob_scale = 1.0;    /* accumulation multiplier */
@@ -111,7 +115,7 @@ double babyeat = 0.0060;    /* food to mature 1 baby into a civilian */
 double obrate = 0.005;         /* other sectors birth rate */
 double uwbrate = 0.0025;       /* uncompensated worker birth rate */
                                /* values > 0.25 for either will overflow */
-int rollover_avail_max = 0;    /* max. avail that can roll over an update */
+int rollover_avail_max = 50;   /* max. avail that can roll over an update */
 
 /* opt_FALLOUT */
 double decay_per_etu = 0.006;  /* This gives a half life of ? etus,
@@ -195,7 +199,7 @@ float drnuke_const = 0.0;   /* research must be at least drnuke_const*tech */
                                 * drnuke_const is .25, you need a 75 res to
                                 * build a nuke that takes 300 tech
                                 */
-/* opt_TRADESHIPS */
+/* trade ships */
 int trade_1_dist = 8;          /* less than this gets no money */
 int trade_2_dist = 14;         /* less than this gets trade_1 money */
 int trade_3_dist = 25;         /* less than this gets trade_2 money */
@@ -204,11 +208,10 @@ float trade_2 = 0.035;            /* return on trade_2 distance */
 float trade_3 = 0.050;         /* return on trade_3 distance */
 float trade_ally_bonus = 0.20; /* 20% bonus for trading with allies */
 float trade_ally_cut = 0.10;   /* 10% bonus for ally you trade with */
-/* end opt_TRADESHIPS */
 
 int torpedo_damage = 40;       /* damage is X + 1dX + 1dX, so 40+1d40+1d40 */
 
-long start_cash = 25000;
+int start_cash = 25000;
 
 /* initial levels */
 float start_education = 0.0;