author | koda |
Fri, 20 Nov 2009 21:22:05 +0000 | |
changeset 2630 | 079ef82eac75 |
parent 2599 | c7153d2348f3 |
child 2699 | 249adefa9c1c |
permissions | -rw-r--r-- |
4 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
393 | 3 |
* Copyright (c) 2004-2007 Andrey Korotaev <unC0Rr@gmail.com> |
4 | 4 |
* |
183 | 5 |
* This program is free software; you can redistribute it and/or modify |
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
4 | 8 |
* |
183 | 9 |
* This program is distributed in the hope that it will be useful, |
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
4 | 13 |
* |
183 | 14 |
* You should have received a copy of the GNU General Public License |
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
4 | 17 |
*) |
18 |
||
2630 | 19 |
{$INCLUDE "options.inc"} |
20 |
||
4 | 21 |
unit uRandom; |
22 |
interface |
|
351 | 23 |
uses uFloat; |
2599 | 24 |
{$INCLUDE "proto.inc"} |
4 | 25 |
|
102 | 26 |
procedure SetRandomSeed(Seed: shortstring); |
351 | 27 |
function GetRandom: hwFloat; overload; |
4 | 28 |
function GetRandom(m: LongWord): LongWord; overload; |
915 | 29 |
function rndSign(num: hwFloat): hwFloat; |
30 |
{$IFDEF DEBUGFILE} |
|
31 |
procedure DumpBuffer; |
|
32 |
{$ENDIF} |
|
4 | 33 |
|
34 |
implementation |
|
915 | 35 |
{$IFDEF DEBUGFILE} |
36 |
uses uMisc; |
|
37 |
{$ENDIF} |
|
102 | 38 |
var cirbuf: array[0..63] of Longword; |
124 | 39 |
n: byte = 54; |
4 | 40 |
|
102 | 41 |
function GetNext: Longword; |
4 | 42 |
begin |
102 | 43 |
n:= (n + 1) and $3F; |
44 |
cirbuf[n]:= |
|
105 | 45 |
(cirbuf[(n + 40) and $3F] + {n - 24 mod 64} |
46 |
cirbuf[(n + 9) and $3F]) {n - 55 mod 64} |
|
47 |
and $7FFFFFFF; {mod 2^31} |
|
136 | 48 |
|
351 | 49 |
GetNext:= cirbuf[n] |
102 | 50 |
end; |
51 |
||
52 |
procedure SetRandomSeed(Seed: shortstring); |
|
53 |
var i: Longword; |
|
54 |
begin |
|
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
136
diff
changeset
|
55 |
n:= 54; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
136
diff
changeset
|
56 |
|
124 | 57 |
if Length(Seed) > 54 then Seed:= copy(Seed, 1, 54); // not 55 to ensure we have odd numbers in cirbuf |
102 | 58 |
|
527 | 59 |
for i:= 0 to Pred(Length(Seed)) do |
60 |
cirbuf[i]:= byte(Seed[i + 1]); |
|
102 | 61 |
|
124 | 62 |
for i:= Length(Seed) to 54 do |
527 | 63 |
cirbuf[i]:= $A98765 + (cNetProtoVersion * 2); // odd number |
130 | 64 |
|
65 |
for i:= 0 to 1023 do GetNext |
|
4 | 66 |
end; |
67 |
||
351 | 68 |
function GetRandom: hwFloat; |
4 | 69 |
begin |
351 | 70 |
GetNext; |
918 | 71 |
GetRandom.isNegative:= false; |
72 |
GetRandom.QWordValue:= GetNext |
|
4 | 73 |
end; |
74 |
||
102 | 75 |
function GetRandom(m: LongWord): LongWord; |
4 | 76 |
begin |
105 | 77 |
GetNext; |
351 | 78 |
GetRandom:= GetNext mod m |
4 | 79 |
end; |
80 |
||
915 | 81 |
function rndSign(num: hwFloat): hwFloat; |
82 |
begin |
|
83 |
num.isNegative:= odd(GetNext); |
|
84 |
rndSign:= num |
|
85 |
end; |
|
86 |
||
87 |
{$IFDEF DEBUGFILE} |
|
88 |
procedure DumpBuffer; |
|
89 |
var i: LongInt; |
|
90 |
begin |
|
91 |
for i:= 0 to 63 do |
|
92 |
AddFileLog('[' + inttostr(i) + '] = ' + inttostr(cirbuf[i])) |
|
93 |
end; |
|
94 |
{$ENDIF} |
|
95 |
||
4 | 96 |
end. |