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
|
124
|
60 |
if Length(Seed) > 54 then Seed:= copy(Seed, 1, 54); // not 55 to ensure we have odd numbers in cirbuf
|
102
|
61 |
|
124
|
62 |
for i:= 0 to pred(Length(Seed)) do
|
|
63 |
cirbuf[i]:= byte(Seed[i + 1]) * (i + 1);
|
102
|
64 |
|
124
|
65 |
for i:= Length(Seed) to 54 do
|
130
|
66 |
cirbuf[i]:= i * 7 + 1;
|
|
67 |
|
|
68 |
for i:= 0 to 1023 do GetNext
|
4
|
69 |
end;
|
|
70 |
|
107
|
71 |
function GetRandom: Double;
|
4
|
72 |
begin
|
124
|
73 |
Result:= frac( GetNext * 0.00073 + GetNext * 0.00301)
|
4
|
74 |
end;
|
|
75 |
|
102
|
76 |
function GetRandom(m: LongWord): LongWord;
|
4
|
77 |
begin
|
105
|
78 |
GetNext;
|
102
|
79 |
Result:= GetNext mod m
|
4
|
80 |
end;
|
|
81 |
|
|
82 |
end.
|