author | displacer |
Sun, 01 Oct 2006 20:14:30 +0000 | |
changeset 177 | c67c15e6fae3 |
parent 155 | 401f4ea24715 |
child 183 | 57c2ef19f719 |
permissions | -rw-r--r-- |
4 | 1 |
(* |
2 |
* Hedgewars, a worms-like game |
|
136 | 3 |
* Copyright (c) 2004-2006 Andrey Korotaev <unC0Rr@gmail.com> |
4 | 4 |
* |
5 |
* Distributed under the terms of the BSD-modified licence: |
|
6 |
* |
|
7 |
* Permission is hereby granted, free of charge, to any person obtaining a copy |
|
8 |
* of this software and associated documentation files (the "Software"), to deal |
|
9 |
* with the Software without restriction, including without limitation the |
|
10 |
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or |
|
11 |
* sell copies of the Software, and to permit persons to whom the Software is |
|
12 |
* furnished to do so, subject to the following conditions: |
|
13 |
* |
|
14 |
* 1. Redistributions of source code must retain the above copyright notice, |
|
15 |
* this list of conditions and the following disclaimer. |
|
16 |
* 2. Redistributions in binary form must reproduce the above copyright notice, |
|
17 |
* this list of conditions and the following disclaimer in the documentation |
|
18 |
* and/or other materials provided with the distribution. |
|
19 |
* 3. The name of the author may not be used to endorse or promote products |
|
20 |
* derived from this software without specific prior written permission. |
|
21 |
* |
|
22 |
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED |
|
23 |
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
|
24 |
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO |
|
25 |
* EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|
26 |
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
|
27 |
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
|
28 |
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
|
29 |
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
|
30 |
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
|
31 |
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
32 |
*) |
|
33 |
||
34 |
unit uRandom; |
|
35 |
interface |
|
124 | 36 |
{$INCLUDE options.inc} |
4 | 37 |
|
102 | 38 |
procedure SetRandomSeed(Seed: shortstring); |
107 | 39 |
function GetRandom: Double; overload; |
4 | 40 |
function GetRandom(m: LongWord): LongWord; overload; |
41 |
||
42 |
implementation |
|
102 | 43 |
var cirbuf: array[0..63] of Longword; |
124 | 44 |
n: byte = 54; |
4 | 45 |
|
102 | 46 |
function GetNext: Longword; |
4 | 47 |
begin |
102 | 48 |
n:= (n + 1) and $3F; |
49 |
cirbuf[n]:= |
|
105 | 50 |
(cirbuf[(n + 40) and $3F] + {n - 24 mod 64} |
51 |
cirbuf[(n + 9) and $3F]) {n - 55 mod 64} |
|
52 |
and $7FFFFFFF; {mod 2^31} |
|
136 | 53 |
|
102 | 54 |
Result:= cirbuf[n] |
55 |
end; |
|
56 |
||
57 |
procedure SetRandomSeed(Seed: shortstring); |
|
58 |
var i: Longword; |
|
59 |
begin |
|
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
136
diff
changeset
|
60 |
n:= 54; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
136
diff
changeset
|
61 |
|
124 | 62 |
if Length(Seed) > 54 then Seed:= copy(Seed, 1, 54); // not 55 to ensure we have odd numbers in cirbuf |
102 | 63 |
|
124 | 64 |
for i:= 0 to pred(Length(Seed)) do |
65 |
cirbuf[i]:= byte(Seed[i + 1]) * (i + 1); |
|
102 | 66 |
|
124 | 67 |
for i:= Length(Seed) to 54 do |
130 | 68 |
cirbuf[i]:= i * 7 + 1; |
69 |
||
70 |
for i:= 0 to 1023 do GetNext |
|
4 | 71 |
end; |
72 |
||
107 | 73 |
function GetRandom: Double; |
4 | 74 |
begin |
124 | 75 |
Result:= frac( GetNext * 0.00073 + GetNext * 0.00301) |
4 | 76 |
end; |
77 |
||
102 | 78 |
function GetRandom(m: LongWord): LongWord; |
4 | 79 |
begin |
105 | 80 |
GetNext; |
102 | 81 |
Result:= GetNext mod m |
4 | 82 |
end; |
83 |
||
84 |
end. |