]> git.mxchange.org Git - simgear.git/blob - simgear/math/fg_random.c
Added simgear/magvar which impliments WMM 2000 world magnetic variance model.
[simgear.git] / simgear / math / fg_random.c
1 // fg_random.c -- routines to handle random number generation
2 //
3 // Written by Curtis Olson, started July 1997.
4 //
5 // Copyright (C) 1997  Curtis L. Olson  - curt@infoplane.com
6 //
7 // This program is free software; you can redistribute it and/or
8 // modify it under the terms of the GNU General Public License as
9 // published by the Free Software Foundation; either version 2 of the
10 // License, or (at your option) any later version.
11 //
12 // This program is distributed in the hope that it will be useful, but
13 // WITHOUT ANY WARRANTY; without even the implied warranty of
14 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15 // General Public License for more details.
16 //
17 // You should have received a copy of the GNU General Public License
18 // along with this program; if not, write to the Free Software
19 // Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 //
21 // $Id$
22
23
24 #ifdef HAVE_CONFIG_H
25 #  include <config.h>
26 #endif
27
28 #include <stdio.h>
29 #include <stdlib.h>         // for random(), srandom()
30 #include <time.h>           // for time() to seed srandom()        
31
32 #include "fg_random.h"
33
34 #ifndef HAVE_RAND
35 #  ifdef sgi
36 #    undef RAND_MAX
37 #    define RAND_MAX 2147483647
38 #  endif
39 #endif
40
41 #ifdef __SUNPRO_CC
42     extern "C" {
43         long int random(void);
44         void srandom(unsigned int seed);
45     }
46 #endif
47
48
49 // Seed the random number generater with time() so we don't see the
50 // same sequence every time
51 void fg_srandom(void) {
52     // fgPrintf( FG_MATH, FG_INFO, "Seeding random number generater\n");
53
54 #ifdef HAVE_RAND
55     srand(time(NULL));
56 #else
57     srandom(time(NULL));
58 #endif                                       
59 }
60
61
62 // return a random number between [0.0, 1.0)
63 double fg_random(void) {
64 #ifdef HAVE_RAND
65     return(rand() / (double)RAND_MAX);
66 #else
67     return(random() / (double)RAND_MAX);
68 #endif
69 }
70
71