author | nemo |
Mon, 08 Dec 2014 10:24:06 -0500 | |
changeset 10636 | aba9ae27ead0 |
parent 10108 | c68cf030eded |
child 11046 | 47a8c19ecb60 |
permissions | -rw-r--r-- |
4 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
9998 | 3 |
* Copyright (c) 2004-2014 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 |
|
10108
c68cf030eded
update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents:
10015
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 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 |
|
8912 | 33 |
procedure SetRandomSeed(Seed: shortstring; dropAdditionalPart: boolean); // Sets the seed that should be used for generating pseudo-random values. |
9168
20ff80421736
Some fixes to make pas2c+clang compile all engine files
unc0rr
parents:
9127
diff
changeset
|
34 |
function GetRandomf: hwFloat; // Returns a pseudo-random hwFloat. |
20ff80421736
Some fixes to make pas2c+clang compile all engine files
unc0rr
parents:
9127
diff
changeset
|
35 |
function GetRandom(m: LongWord): LongWord; inline; // Returns a positive pseudo-random integer smaller than m. |
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
|
36 |
procedure AddRandomness(r: LongWord); inline; |
5123 | 37 |
function rndSign(num: hwFloat): hwFloat; // Returns num with a random chance of having a inverted sign. |
4 | 38 |
|
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
|
39 |
|
4 | 40 |
implementation |
3295 | 41 |
|
102 | 42 |
var cirbuf: array[0..63] of Longword; |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2630
diff
changeset
|
43 |
n: byte; |
4 | 44 |
|
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
|
45 |
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
|
46 |
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
|
47 |
n:= (n + 1) and $3F; |
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7579
diff
changeset
|
48 |
cirbuf[n]:= cirbuf[n] xor r; |
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
|
49 |
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
|
50 |
|
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 |
function GetNext: Longword; inline; |
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7579
diff
changeset
|
52 |
var s : string; |
4 | 53 |
begin |
102 | 54 |
n:= (n + 1) and $3F; |
55 |
cirbuf[n]:= |
|
105 | 56 |
(cirbuf[(n + 40) and $3F] + {n - 24 mod 64} |
57 |
cirbuf[(n + 9) and $3F]) {n - 55 mod 64} |
|
58 |
and $7FFFFFFF; {mod 2^31} |
|
136 | 59 |
|
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7579
diff
changeset
|
60 |
GetNext:= cirbuf[n]; |
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7579
diff
changeset
|
61 |
str(GetNext, s); |
102 | 62 |
end; |
63 |
||
8912 | 64 |
procedure SetRandomSeed(Seed: shortstring; dropAdditionalPart: boolean); |
65 |
var i, t, l: Longword; |
|
102 | 66 |
begin |
7577 | 67 |
n:= 54; |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
136
diff
changeset
|
68 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
5123
diff
changeset
|
69 |
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
|
70 |
Seed:= copy(Seed, 1, 54); // not 55 to ensure we have odd numbers in cirbuf |
102 | 71 |
|
8912 | 72 |
t:= 0; |
73 |
l:= Length(Seed); |
|
102 | 74 |
|
8912 | 75 |
while (t < l) and ((not dropAdditionalPart) or (Seed[t + 1] <> '|')) do |
76 |
begin |
|
77 |
cirbuf[t]:= byte(Seed[t + 1]); |
|
78 |
inc(t) |
|
79 |
end; |
|
80 |
||
81 |
for i:= t 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
|
82 |
cirbuf[i]:= $A98765 + 68; // odd number |
130 | 83 |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
5123
diff
changeset
|
84 |
for i:= 0 to 1023 do |
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7579
diff
changeset
|
85 |
GetNext; |
4 | 86 |
end; |
87 |
||
7001 | 88 |
function GetRandomf: hwFloat; |
4 | 89 |
begin |
351 | 90 |
GetNext; |
7001 | 91 |
GetRandomf.isNegative:= false; |
92 |
GetRandomf.QWordValue:= GetNext |
|
4 | 93 |
end; |
94 |
||
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
|
95 |
function GetRandom(m: LongWord): LongWord; inline; |
4 | 96 |
begin |
105 | 97 |
GetNext; |
351 | 98 |
GetRandom:= GetNext mod m |
4 | 99 |
end; |
100 |
||
915 | 101 |
function rndSign(num: hwFloat): hwFloat; |
102 |
begin |
|
103 |
num.isNegative:= odd(GetNext); |
|
104 |
rndSign:= num |
|
105 |
end; |
|
106 |
||
4 | 107 |
end. |