author | Medo <smaxein@googlemail.com> |
Mon, 06 Aug 2012 22:39:36 +0200 | |
changeset 7476 | 2fb781bbdd51 |
parent 7389 | 15c3fb4882df |
child 7575 | f415b3e0f3b9 |
permissions | -rw-r--r-- |
4 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
6700 | 3 |
* Copyright (c) 2004-2012 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; |
5123 | 22 |
(* |
23 |
* This unit supplies platform-independent functions for getting various |
|
24 |
* pseudo-random values based on a shared seed. |
|
25 |
* |
|
26 |
* This is necessary for accomplishing pseudo-random behavior in the game |
|
27 |
* without causing a desynchronisation of different clients when playing over |
|
28 |
* a network. |
|
29 |
*) |
|
4 | 30 |
interface |
351 | 31 |
uses uFloat; |
4 | 32 |
|
3038 | 33 |
procedure initModule; |
34 |
procedure freeModule; |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
35 |
|
5123 | 36 |
procedure SetRandomSeed(Seed: shortstring); // Sets the seed that should be used for generating pseudo-random values. |
7001 | 37 |
function GetRandomf: hwFloat; overload; // Returns a pseudo-random hwFloat. |
7389
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7043
diff
changeset
|
38 |
function GetRandom(m: LongWord): LongWord; overload; inline; // Returns a positive pseudo-random integer smaller than m. |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7043
diff
changeset
|
39 |
procedure AddRandomness(r: LongWord); inline; |
5123 | 40 |
function rndSign(num: hwFloat): hwFloat; // Returns num with a random chance of having a inverted sign. |
4 | 41 |
|
7389
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7043
diff
changeset
|
42 |
|
4 | 43 |
implementation |
3295 | 44 |
|
102 | 45 |
var cirbuf: array[0..63] of Longword; |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2630
diff
changeset
|
46 |
n: byte; |
4 | 47 |
|
7389
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7043
diff
changeset
|
48 |
procedure AddRandomness(r: LongWord); inline; |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7043
diff
changeset
|
49 |
begin |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7043
diff
changeset
|
50 |
n:= (n + 1) and $3F; |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7043
diff
changeset
|
51 |
cirbuf[n]:= cirbuf[n] xor r |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7043
diff
changeset
|
52 |
end; |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7043
diff
changeset
|
53 |
|
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7043
diff
changeset
|
54 |
function GetNext: Longword; inline; |
4 | 55 |
begin |
102 | 56 |
n:= (n + 1) and $3F; |
57 |
cirbuf[n]:= |
|
105 | 58 |
(cirbuf[(n + 40) and $3F] + {n - 24 mod 64} |
59 |
cirbuf[(n + 9) and $3F]) {n - 55 mod 64} |
|
60 |
and $7FFFFFFF; {mod 2^31} |
|
136 | 61 |
|
351 | 62 |
GetNext:= cirbuf[n] |
102 | 63 |
end; |
64 |
||
65 |
procedure SetRandomSeed(Seed: shortstring); |
|
66 |
var i: Longword; |
|
67 |
begin |
|
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
136
diff
changeset
|
68 |
n:= 54; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
136
diff
changeset
|
69 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
5123
diff
changeset
|
70 |
if Length(Seed) > 54 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
5123
diff
changeset
|
71 |
Seed:= copy(Seed, 1, 54); // not 55 to ensure we have odd numbers in cirbuf |
102 | 72 |
|
527 | 73 |
for i:= 0 to Pred(Length(Seed)) do |
74 |
cirbuf[i]:= byte(Seed[i + 1]); |
|
102 | 75 |
|
124 | 76 |
for i:= Length(Seed) to 54 do |
4665
fa7ad5f3725f
Make basic training solvable again. Freeze RNG at current version for less of this kind of issue in future, and a bit more savable of seeds. Disable offsets in preparation for release.
nemo
parents:
4363
diff
changeset
|
77 |
cirbuf[i]:= $A98765 + 68; // odd number |
130 | 78 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
5123
diff
changeset
|
79 |
for i:= 0 to 1023 do |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
5123
diff
changeset
|
80 |
GetNext |
4 | 81 |
end; |
82 |
||
7001 | 83 |
function GetRandomf: hwFloat; |
4 | 84 |
begin |
351 | 85 |
GetNext; |
7001 | 86 |
GetRandomf.isNegative:= false; |
87 |
GetRandomf.QWordValue:= GetNext |
|
4 | 88 |
end; |
89 |
||
7389
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7043
diff
changeset
|
90 |
function GetRandom(m: LongWord): LongWord; inline; |
4 | 91 |
begin |
105 | 92 |
GetNext; |
351 | 93 |
GetRandom:= GetNext mod m |
4 | 94 |
end; |
95 |
||
915 | 96 |
function rndSign(num: hwFloat): hwFloat; |
97 |
begin |
|
98 |
num.isNegative:= odd(GetNext); |
|
99 |
rndSign:= num |
|
100 |
end; |
|
101 |
||
3038 | 102 |
procedure initModule; |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2630
diff
changeset
|
103 |
begin |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2924
diff
changeset
|
104 |
n:= 54; |
3369
c7289e42f0ee
add other controls for map preview, also fix a bug in digest
koda
parents:
3295
diff
changeset
|
105 |
FillChar(cirbuf, 64*sizeof(Longword), 0); |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2630
diff
changeset
|
106 |
end; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2630
diff
changeset
|
107 |
|
3038 | 108 |
procedure freeModule; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
109 |
begin |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
110 |
|
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
111 |
end; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
112 |
|
4 | 113 |
end. |