]> git.pond.sub.org Git - empserver/blobdiff - src/lib/gen/chance.c
Update copyright notice
[empserver] / src / lib / gen / chance.c
index 25d2e2b591fd465297297525ec53b1c9687a24c8..fc9ab3edb43e6631ed6ffacb04dff805f15d968c 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2000, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *  Copyright (C) 1986-2008, Dave Pare, Jeff Bailey, Thomas Ruschak,
  *                           Ken Stevens, Steve McClure
  *
  *  This program is free software; you can redistribute it and/or modify
@@ -19,9 +19,9 @@
  *
  *  ---
  *
- *  See the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
- *  related information and legal notices. It is expected that any future
- *  projects/authors will amend these files as needed.
+ *  See files README, COPYING and CREDITS in the root of the source
+ *  tree for related information and legal notices.  It is expected
+ *  that future projects/authors will amend these files as needed.
  *
  *  ---
  *
  *     
  */
 
-#include "gen.h"
+#include <config.h>
 
-#ifdef hpux
-void
-srandom(unsigned int n)
-{
-       extern void srand48();
-
-       srand48(n);
-}
-
-long
-random(void)
-{
-       extern  long lrand48();
-
-       return (lrand48());     /* 5/28/91 by bailey@mcs.kent.edu */
-}
-#endif
+#include <math.h>
+#include "prototypes.h"
 
 int
 chance(double d)
 {
-       double  roll;
-
-       roll = (random() & 0x7fff);
-
-       if (d >  roll/32768.0)
-               return 1;
-       return 0;
+    return d > (random() % 32768) / 32768.0;
 }
 
 int
 roll(int n)
 {
-       return (random() % n) + 1;
+    return 1 + random() % n;
 }
 
 /*
@@ -76,12 +55,6 @@ roll(int n)
 int
 roundavg(double val)
 {
-       int     flr;
-
-       flr = (int) val;
-       if (val < 0)
-               flr -= chance(flr - val);
-       else
-               flr += chance(val - flr);
-       return flr;
+    double flr = floor(val);
+    return (int)(flr + chance(val - flr));
 }