author | nemo |
Mon, 08 Dec 2014 10:24:06 -0500 | |
changeset 10636 | aba9ae27ead0 |
parent 10605 | df7a73db2c43 |
child 10606 | 8e95911cb86b |
child 10690 | c3b73dc33294 |
permissions | -rw-r--r-- |
4976 | 1 |
(* |
2 |
* Hedgewars, a free turn based strategy game |
|
9998 | 3 |
* Copyright (c) 2004-2014 Andrey Korotaev <unC0Rr@gmail.com> |
4976 | 4 |
* |
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 |
|
8 |
* |
|
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. |
|
13 |
* |
|
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:
10104
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
4976 | 17 |
*) |
18 |
||
4374 | 19 |
{$INCLUDE "options.inc"} |
4976 | 20 |
|
4374 | 21 |
unit uUtils; |
22 |
||
23 |
interface |
|
9295
f8819c3dde54
Remove some GLunit dependencies noticed on graph. uUtils was using it for GLfloat - but, the stuff it was returning to was usually converting to "real" anyway. uLand was including it unnecessarily. Minor refactor
nemo
parents:
9080
diff
changeset
|
24 |
uses uTypes, uFloat; |
4374 | 25 |
|
26 |
procedure SplitBySpace(var a, b: shortstring); |
|
7191
9419294e5f33
first attempt at implementing support for keys with modifiers
Xeli
parents:
7151
diff
changeset
|
27 |
procedure SplitByChar(var a, b: shortstring; c: char); |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10127
diff
changeset
|
28 |
procedure SplitByCharA(var a, b: ansistring; c: char); |
4374 | 29 |
|
30 |
function EnumToStr(const en : TGearType) : shortstring; overload; |
|
4453 | 31 |
function EnumToStr(const en : TVisualGearType) : shortstring; overload; |
4374 | 32 |
function EnumToStr(const en : TSound) : shortstring; overload; |
33 |
function EnumToStr(const en : TAmmoType) : shortstring; overload; |
|
9642
8a691e0f117a
use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9377
diff
changeset
|
34 |
function EnumToStr(const en : TStatInfoType) : shortstring; overload; |
4374 | 35 |
function EnumToStr(const en : THogEffect) : shortstring; overload; |
5118 | 36 |
function EnumToStr(const en : TCapGroup) : shortstring; overload; |
10280
762c256552e9
WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents:
10131
diff
changeset
|
37 |
function EnumToStr(const en : TSprite) : shortstring; overload; |
10603
bda5c7caf396
switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents:
10595
diff
changeset
|
38 |
function EnumToStr(const en : TMapGen) : shortstring; overload; |
4374 | 39 |
|
40 |
function Min(a, b: LongInt): LongInt; inline; |
|
10562 | 41 |
function MinD(a, b: double) : double; inline; |
4374 | 42 |
function Max(a, b: LongInt): LongInt; inline; |
43 |
||
44 |
function IntToStr(n: LongInt): shortstring; |
|
7151 | 45 |
function StrToInt(s: shortstring): LongInt; |
4374 | 46 |
function FloatToStr(n: hwFloat): shortstring; |
47 |
||
9295
f8819c3dde54
Remove some GLunit dependencies noticed on graph. uUtils was using it for GLfloat - but, the stuff it was returning to was usually converting to "real" anyway. uLand was including it unnecessarily. Minor refactor
nemo
parents:
9080
diff
changeset
|
48 |
function DxDy2Angle(const _dY, _dX: hwFloat): real; inline; |
4374 | 49 |
function DxDy2Angle32(const _dY, _dX: hwFloat): LongInt; |
50 |
function DxDy2AttackAngle(const _dY, _dX: hwFloat): LongInt; |
|
6894 | 51 |
function DxDy2AttackAnglef(const _dY, _dX: extended): LongInt; |
4374 | 52 |
|
53 |
procedure SetLittle(var r: hwFloat); |
|
54 |
||
55 |
function Str2PChar(const s: shortstring): PChar; |
|
56 |
function DecodeBase64(s: shortstring): shortstring; |
|
57 |
||
58 |
function isPowerOf2(i: Longword): boolean; |
|
59 |
function toPowerOf2(i: Longword): Longword; inline; |
|
60 |
||
61 |
function endian(independent: LongWord): LongWord; inline; |
|
62 |
||
10116
dd27562b6f21
rolling back my PChar stuff, because unC0Rr improves string handling pas2c instead <3
sheepluva
parents:
10108
diff
changeset
|
63 |
function CheckCJKFont(s: ansistring; font: THWFont): THWFont; |
4380 | 64 |
|
4374 | 65 |
procedure AddFileLog(s: shortstring); |
7180 | 66 |
procedure AddFileLogRaw(s: pchar); cdecl; |
4374 | 67 |
|
4900 | 68 |
function CheckNoTeamOrHH: boolean; inline; |
4398
36d7e4b6ca81
Move some command handlers out of uCommands into more appropriate places, thus removing some dependencies. Ideally uCommands shouldn't depend on anything (except for uTypes and uConsts probably)
unc0rr
parents:
4385
diff
changeset
|
69 |
|
4403 | 70 |
function GetLaunchX(at: TAmmoType; dir: LongInt; angle: LongInt): LongInt; |
71 |
function GetLaunchY(at: TAmmoType; angle: LongInt): LongInt; |
|
72 |
||
7151 | 73 |
{$IFNDEF PAS2C} |
74 |
procedure Write(var f: textfile; s: shortstring); |
|
75 |
procedure WriteLn(var f: textfile; s: shortstring); |
|
10080 | 76 |
function StrLength(s: PChar): Longword; |
7151 | 77 |
{$ENDIF} |
78 |
||
8204 | 79 |
function isPhone: Boolean; inline; |
80 |
||
81 |
{$IFDEF IPHONEOS} |
|
82 |
procedure startLoadingIndicator; cdecl; external; |
|
83 |
procedure stopLoadingIndicator; cdecl; external; |
|
84 |
procedure saveFinishedSynching; cdecl; external; |
|
85 |
function isApplePhone: Boolean; cdecl; external; |
|
86 |
procedure AudioServicesPlaySystemSound(num: LongInt); cdecl; external; |
|
87 |
{$ENDIF} |
|
88 |
||
8498
eecadca7db50
Bring back full log strings for commands, just a bit sanitized
unc0rr
parents:
8425
diff
changeset
|
89 |
function sanitizeForLog(s: shortstring): shortstring; |
eecadca7db50
Bring back full log strings for commands, just a bit sanitized
unc0rr
parents:
8425
diff
changeset
|
90 |
function sanitizeCharForLog(c: char): shortstring; |
eecadca7db50
Bring back full log strings for commands, just a bit sanitized
unc0rr
parents:
8425
diff
changeset
|
91 |
|
7896
67217e6108fd
another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents:
7565
diff
changeset
|
92 |
procedure initModule(isNotPreview: boolean); |
4374 | 93 |
procedure freeModule; |
94 |
||
4385 | 95 |
|
4374 | 96 |
implementation |
7043
7c080e5ac8d0
Some work to make more units compile after conversion to c
unc0rr
parents:
7028
diff
changeset
|
97 |
uses {$IFNDEF PAS2C}typinfo, {$ENDIF}Math, uConsts, uVariables, SysUtils; |
4374 | 98 |
|
99 |
{$IFDEF DEBUGFILE} |
|
10572
c4e86a2efc55
give variable with unit-wide scope a better name than just 'f'
sheepluva
parents:
10562
diff
changeset
|
100 |
var logFile: textfile; |
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7194
diff
changeset
|
101 |
{$IFDEF USE_VIDEO_RECORDING} |
7180 | 102 |
logMutex: TRTLCriticalSection; // mutex for debug file |
4374 | 103 |
{$ENDIF} |
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7194
diff
changeset
|
104 |
{$ENDIF} |
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7896
diff
changeset
|
105 |
var CharArray: array[0..255] of Char; |
4374 | 106 |
|
7191
9419294e5f33
first attempt at implementing support for keys with modifiers
Xeli
parents:
7151
diff
changeset
|
107 |
procedure SplitBySpace(var a,b: shortstring); |
9419294e5f33
first attempt at implementing support for keys with modifiers
Xeli
parents:
7151
diff
changeset
|
108 |
begin |
9419294e5f33
first attempt at implementing support for keys with modifiers
Xeli
parents:
7151
diff
changeset
|
109 |
SplitByChar(a,b,' '); |
9419294e5f33
first attempt at implementing support for keys with modifiers
Xeli
parents:
7151
diff
changeset
|
110 |
end; |
9419294e5f33
first attempt at implementing support for keys with modifiers
Xeli
parents:
7151
diff
changeset
|
111 |
|
4374 | 112 |
// should this include "strtolower()" for the split string? |
7191
9419294e5f33
first attempt at implementing support for keys with modifiers
Xeli
parents:
7151
diff
changeset
|
113 |
procedure SplitByChar(var a, b: shortstring; c : char); |
4374 | 114 |
var i, t: LongInt; |
115 |
begin |
|
7191
9419294e5f33
first attempt at implementing support for keys with modifiers
Xeli
parents:
7151
diff
changeset
|
116 |
i:= Pos(c, a); |
4374 | 117 |
if i > 0 then |
118 |
begin |
|
119 |
for t:= 1 to Pred(i) do |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6444
diff
changeset
|
120 |
if (a[t] >= 'A')and(a[t] <= 'Z') then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6444
diff
changeset
|
121 |
Inc(a[t], 32); |
4374 | 122 |
b:= copy(a, i + 1, Length(a) - i); |
7074 | 123 |
a[0]:= char(Pred(i)) |
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7896
diff
changeset
|
124 |
{$IFDEF PAS2C} |
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7896
diff
changeset
|
125 |
a[i] := 0; |
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7896
diff
changeset
|
126 |
{$ENDIF} |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6444
diff
changeset
|
127 |
end |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6444
diff
changeset
|
128 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6444
diff
changeset
|
129 |
b:= ''; |
4374 | 130 |
end; |
131 |
||
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7896
diff
changeset
|
132 |
{$IFNDEF PAS2C} |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10127
diff
changeset
|
133 |
procedure SetLengthA(var s: ansistring; len: Longword); |
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10127
diff
changeset
|
134 |
begin |
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10127
diff
changeset
|
135 |
SetLength(s, len) |
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10127
diff
changeset
|
136 |
end; |
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10127
diff
changeset
|
137 |
{$ENDIF} |
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10127
diff
changeset
|
138 |
|
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10127
diff
changeset
|
139 |
procedure SplitByCharA(var a, b: ansistring; c: char); |
4374 | 140 |
var i: LongInt; |
141 |
begin |
|
142 |
i:= Pos(c, a); |
|
143 |
if i > 0 then |
|
144 |
begin |
|
145 |
b:= copy(a, i + 1, Length(a) - i); |
|
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10127
diff
changeset
|
146 |
SetLengthA(a, Pred(i)); |
4374 | 147 |
end else b:= ''; |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10127
diff
changeset
|
148 |
end; { SplitByCharA } |
4374 | 149 |
|
150 |
function EnumToStr(const en : TGearType) : shortstring; overload; |
|
151 |
begin |
|
152 |
EnumToStr:= GetEnumName(TypeInfo(TGearType), ord(en)) |
|
153 |
end; |
|
8838
aa2ffd427f6a
strip PAS2C, old WEB symbols and outdated pas2c sources from default branch, all c-related development is done on the webgl branch
koda
parents:
8575
diff
changeset
|
154 |
|
4453 | 155 |
function EnumToStr(const en : TVisualGearType) : shortstring; overload; |
156 |
begin |
|
157 |
EnumToStr:= GetEnumName(TypeInfo(TVisualGearType), ord(en)) |
|
158 |
end; |
|
4374 | 159 |
|
160 |
function EnumToStr(const en : TSound) : shortstring; overload; |
|
161 |
begin |
|
162 |
EnumToStr:= GetEnumName(TypeInfo(TSound), ord(en)) |
|
163 |
end; |
|
164 |
||
165 |
function EnumToStr(const en : TAmmoType) : shortstring; overload; |
|
166 |
begin |
|
167 |
EnumToStr:= GetEnumName(TypeInfo(TAmmoType), ord(en)) |
|
168 |
end; |
|
169 |
||
9642
8a691e0f117a
use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9377
diff
changeset
|
170 |
function EnumToStr(const en : TStatInfoType) : shortstring; overload; |
8a691e0f117a
use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9377
diff
changeset
|
171 |
begin |
8a691e0f117a
use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9377
diff
changeset
|
172 |
EnumToStr:= GetEnumName(TypeInfo(TStatInfoType), ord(en)) |
8a691e0f117a
use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9377
diff
changeset
|
173 |
end; |
8a691e0f117a
use consts for TStatInfo enum
Periklis Ntanasis <pntanasis@gmail.com>
parents:
9377
diff
changeset
|
174 |
|
4374 | 175 |
function EnumToStr(const en: THogEffect) : shortstring; overload; |
176 |
begin |
|
5118 | 177 |
EnumToStr := GetEnumName(TypeInfo(THogEffect), ord(en)) |
178 |
end; |
|
179 |
||
180 |
function EnumToStr(const en: TCapGroup) : shortstring; overload; |
|
181 |
begin |
|
182 |
EnumToStr := GetEnumName(TypeInfo(TCapGroup), ord(en)) |
|
4374 | 183 |
end; |
8838
aa2ffd427f6a
strip PAS2C, old WEB symbols and outdated pas2c sources from default branch, all c-related development is done on the webgl branch
koda
parents:
8575
diff
changeset
|
184 |
|
10280
762c256552e9
WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents:
10131
diff
changeset
|
185 |
function EnumToStr(const en: TSprite) : shortstring; overload; |
762c256552e9
WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents:
10131
diff
changeset
|
186 |
begin |
762c256552e9
WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents:
10131
diff
changeset
|
187 |
EnumToStr := GetEnumName(TypeInfo(TSprite), ord(en)) |
762c256552e9
WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents:
10131
diff
changeset
|
188 |
end; |
762c256552e9
WIP: PlaceSprite for lua API. also changed PlaceGirder so that it will return true/false for whether placing was successful too
sheepluva
parents:
10131
diff
changeset
|
189 |
|
10603
bda5c7caf396
switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents:
10595
diff
changeset
|
190 |
function EnumToStr(const en: TMapGen) : shortstring; overload; |
bda5c7caf396
switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents:
10595
diff
changeset
|
191 |
begin |
bda5c7caf396
switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents:
10595
diff
changeset
|
192 |
EnumToStr := GetEnumName(TypeInfo(TMapGen), ord(en)) |
bda5c7caf396
switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents:
10595
diff
changeset
|
193 |
end; |
bda5c7caf396
switch mapgen to enum. should still try and make sure the values are backwards compatible if possible.
nemo
parents:
10595
diff
changeset
|
194 |
|
4374 | 195 |
|
196 |
function Min(a, b: LongInt): LongInt; |
|
197 |
begin |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6444
diff
changeset
|
198 |
if a < b then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6444
diff
changeset
|
199 |
Min:= a |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6444
diff
changeset
|
200 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6444
diff
changeset
|
201 |
Min:= b |
4374 | 202 |
end; |
203 |
||
10562 | 204 |
function MinD(a, b: double): double; |
205 |
begin |
|
206 |
if a < b then |
|
207 |
MinD:= a |
|
208 |
else |
|
209 |
MinD:= b |
|
210 |
end; |
|
211 |
||
4374 | 212 |
function Max(a, b: LongInt): LongInt; |
213 |
begin |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6444
diff
changeset
|
214 |
if a > b then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6444
diff
changeset
|
215 |
Max:= a |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6444
diff
changeset
|
216 |
else |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6444
diff
changeset
|
217 |
Max:= b |
4374 | 218 |
end; |
219 |
||
220 |
||
221 |
function IntToStr(n: LongInt): shortstring; |
|
222 |
begin |
|
223 |
str(n, IntToStr) |
|
224 |
end; |
|
225 |
||
8850
ae8a957c69fd
engine to c now compiles with some manual intervention (as of bug 596)
koda
parents:
8847
diff
changeset
|
226 |
function StrToInt(s: shortstring): LongInt; |
7151 | 227 |
var c: LongInt; |
228 |
begin |
|
8850
ae8a957c69fd
engine to c now compiles with some manual intervention (as of bug 596)
koda
parents:
8847
diff
changeset
|
229 |
{$IFDEF PAS2C} |
ae8a957c69fd
engine to c now compiles with some manual intervention (as of bug 596)
koda
parents:
8847
diff
changeset
|
230 |
val(s, StrToInt); |
ae8a957c69fd
engine to c now compiles with some manual intervention (as of bug 596)
koda
parents:
8847
diff
changeset
|
231 |
{$ELSE} |
8370 | 232 |
val(s, StrToInt, c); |
233 |
{$IFDEF DEBUGFILE} |
|
234 |
if c <> 0 then |
|
10572
c4e86a2efc55
give variable with unit-wide scope a better name than just 'f'
sheepluva
parents:
10562
diff
changeset
|
235 |
writeln(logFile, 'Error at position ' + IntToStr(c) + ' : ' + s[c]) |
8370 | 236 |
{$ENDIF} |
8850
ae8a957c69fd
engine to c now compiles with some manual intervention (as of bug 596)
koda
parents:
8847
diff
changeset
|
237 |
{$ENDIF} |
7151 | 238 |
end; |
239 |
||
4374 | 240 |
function FloatToStr(n: hwFloat): shortstring; |
241 |
begin |
|
242 |
FloatToStr:= cstr(n) + '_' + inttostr(Lo(n.QWordValue)) |
|
243 |
end; |
|
244 |
||
245 |
||
9295
f8819c3dde54
Remove some GLunit dependencies noticed on graph. uUtils was using it for GLfloat - but, the stuff it was returning to was usually converting to "real" anyway. uLand was including it unnecessarily. Minor refactor
nemo
parents:
9080
diff
changeset
|
246 |
function DxDy2Angle(const _dY, _dX: hwFloat): real; inline; |
4374 | 247 |
var dY, dX: Extended; |
248 |
begin |
|
7547 | 249 |
dY:= hwFloat2Float(_dY); |
250 |
dX:= hwFloat2Float(_dX); |
|
4374 | 251 |
DxDy2Angle:= arctan2(dY, dX) * 180 / pi |
252 |
end; |
|
253 |
||
254 |
function DxDy2Angle32(const _dY, _dX: hwFloat): LongInt; |
|
255 |
const _16divPI: Extended = 16/pi; |
|
256 |
var dY, dX: Extended; |
|
257 |
begin |
|
7547 | 258 |
dY:= hwFloat2Float(_dY); |
259 |
dX:= hwFloat2Float(_dX); |
|
4374 | 260 |
DxDy2Angle32:= trunc(arctan2(dY, dX) * _16divPI) and $1f |
261 |
end; |
|
262 |
||
263 |
function DxDy2AttackAngle(const _dY, _dX: hwFloat): LongInt; |
|
264 |
const MaxAngleDivPI: Extended = cMaxAngle/pi; |
|
265 |
var dY, dX: Extended; |
|
266 |
begin |
|
7547 | 267 |
dY:= hwFloat2Float(_dY); |
268 |
dX:= hwFloat2Float(_dX); |
|
4374 | 269 |
DxDy2AttackAngle:= trunc(arctan2(dY, dX) * MaxAngleDivPI) |
270 |
end; |
|
271 |
||
6894 | 272 |
function DxDy2AttackAnglef(const _dY, _dX: extended): LongInt; inline; |
5151
cbadb9fa52fc
An experiment - make bazooka AI use float instead of hwFloat - should be as accurate, but faster.
nemo
parents:
5130
diff
changeset
|
273 |
begin |
6894 | 274 |
DxDy2AttackAnglef:= trunc(arctan2(_dY, _dX) * (cMaxAngle/pi)) |
5151
cbadb9fa52fc
An experiment - make bazooka AI use float instead of hwFloat - should be as accurate, but faster.
nemo
parents:
5130
diff
changeset
|
275 |
end; |
cbadb9fa52fc
An experiment - make bazooka AI use float instead of hwFloat - should be as accurate, but faster.
nemo
parents:
5130
diff
changeset
|
276 |
|
4374 | 277 |
|
278 |
procedure SetLittle(var r: hwFloat); |
|
279 |
begin |
|
280 |
r:= SignAs(cLittle, r) |
|
281 |
end; |
|
282 |
||
283 |
||
284 |
function isPowerOf2(i: Longword): boolean; |
|
285 |
begin |
|
4981
0c60ade27a0a
Optimize check (not like it is called much, just ffs; not tested)
unc0rr
parents:
4976
diff
changeset
|
286 |
isPowerOf2:= (i and (i - 1)) = 0 |
4374 | 287 |
end; |
288 |
||
289 |
function toPowerOf2(i: Longword): Longword; |
|
290 |
begin |
|
291 |
toPowerOf2:= 1; |
|
292 |
while (toPowerOf2 < i) do toPowerOf2:= toPowerOf2 shl 1 |
|
293 |
end; |
|
294 |
||
295 |
||
296 |
function DecodeBase64(s: shortstring): shortstring; |
|
297 |
const table = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; |
|
10560 | 298 |
var i, t, c: LongInt; |
4374 | 299 |
begin |
300 |
c:= 0; |
|
301 |
for i:= 1 to Length(s) do |
|
302 |
begin |
|
303 |
t:= Pos(s[i], table); |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6444
diff
changeset
|
304 |
if s[i] = '=' then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6444
diff
changeset
|
305 |
inc(c); |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6444
diff
changeset
|
306 |
if t > 0 then |
7074 | 307 |
s[i]:= char(t - 1) |
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6444
diff
changeset
|
308 |
else |
7074 | 309 |
s[i]:= #0 |
4374 | 310 |
end; |
311 |
||
312 |
i:= 1; |
|
313 |
t:= 1; |
|
314 |
while i <= length(s) do |
|
315 |
begin |
|
316 |
DecodeBase64[t ]:= char((byte(s[i ]) shl 2) or (byte(s[i + 1]) shr 4)); |
|
317 |
DecodeBase64[t + 1]:= char((byte(s[i + 1]) shl 4) or (byte(s[i + 2]) shr 2)); |
|
318 |
DecodeBase64[t + 2]:= char((byte(s[i + 2]) shl 6) or (byte(s[i + 3]) )); |
|
319 |
inc(t, 3); |
|
320 |
inc(i, 4) |
|
321 |
end; |
|
322 |
||
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6444
diff
changeset
|
323 |
if c < 3 then |
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6444
diff
changeset
|
324 |
t:= t - c; |
4374 | 325 |
|
7074 | 326 |
DecodeBase64[0]:= char(t - 1) |
4374 | 327 |
end; |
328 |
||
329 |
||
330 |
function Str2PChar(const s: shortstring): PChar; |
|
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7896
diff
changeset
|
331 |
var i :Integer ; |
4374 | 332 |
begin |
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7896
diff
changeset
|
333 |
for i:= 1 to Length(s) do |
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7896
diff
changeset
|
334 |
begin |
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7896
diff
changeset
|
335 |
CharArray[i - 1] := s[i]; |
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7896
diff
changeset
|
336 |
end; |
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10127
diff
changeset
|
337 |
CharArray[Length(s)]:= #0; |
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7896
diff
changeset
|
338 |
Str2PChar:= @(CharArray[0]); |
4374 | 339 |
end; |
340 |
||
341 |
||
342 |
function endian(independent: LongWord): LongWord; inline; |
|
343 |
begin |
|
344 |
{$IFDEF ENDIAN_LITTLE} |
|
345 |
endian:= independent; |
|
346 |
{$ELSE} |
|
347 |
endian:= (((independent and $FF000000) shr 24) or |
|
348 |
((independent and $00FF0000) shr 8) or |
|
349 |
((independent and $0000FF00) shl 8) or |
|
350 |
((independent and $000000FF) shl 24)) |
|
351 |
{$ENDIF} |
|
352 |
end; |
|
353 |
||
354 |
||
355 |
procedure AddFileLog(s: shortstring); |
|
356 |
begin |
|
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7896
diff
changeset
|
357 |
// s:= s; |
4900 | 358 |
{$IFDEF DEBUGFILE} |
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7896
diff
changeset
|
359 |
|
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7194
diff
changeset
|
360 |
{$IFDEF USE_VIDEO_RECORDING} |
7180 | 361 |
EnterCriticalSection(logMutex); |
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7194
diff
changeset
|
362 |
{$ENDIF} |
10572
c4e86a2efc55
give variable with unit-wide scope a better name than just 'f'
sheepluva
parents:
10562
diff
changeset
|
363 |
writeln(logFile, inttostr(GameTicks) + ': ' + s); |
c4e86a2efc55
give variable with unit-wide scope a better name than just 'f'
sheepluva
parents:
10562
diff
changeset
|
364 |
flush(logFile); |
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7896
diff
changeset
|
365 |
|
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7194
diff
changeset
|
366 |
{$IFDEF USE_VIDEO_RECORDING} |
7180 | 367 |
LeaveCriticalSection(logMutex); |
4900 | 368 |
{$ENDIF} |
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7896
diff
changeset
|
369 |
|
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7194
diff
changeset
|
370 |
{$ENDIF} |
4374 | 371 |
end; |
372 |
||
7180 | 373 |
procedure AddFileLogRaw(s: pchar); cdecl; |
374 |
begin |
|
375 |
s:= s; |
|
9966 | 376 |
{$IFNDEF PAS2C} |
7180 | 377 |
{$IFDEF DEBUGFILE} |
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7194
diff
changeset
|
378 |
{$IFDEF USE_VIDEO_RECORDING} |
7180 | 379 |
EnterCriticalSection(logMutex); |
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7194
diff
changeset
|
380 |
{$ENDIF} |
10572
c4e86a2efc55
give variable with unit-wide scope a better name than just 'f'
sheepluva
parents:
10562
diff
changeset
|
381 |
write(logFile, s); |
c4e86a2efc55
give variable with unit-wide scope a better name than just 'f'
sheepluva
parents:
10562
diff
changeset
|
382 |
flush(logFile); |
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7194
diff
changeset
|
383 |
{$IFDEF USE_VIDEO_RECORDING} |
7180 | 384 |
LeaveCriticalSection(logMutex); |
385 |
{$ENDIF} |
|
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7194
diff
changeset
|
386 |
{$ENDIF} |
9966 | 387 |
{$ENDIF} |
7180 | 388 |
end; |
4374 | 389 |
|
10116
dd27562b6f21
rolling back my PChar stuff, because unC0Rr improves string handling pas2c instead <3
sheepluva
parents:
10108
diff
changeset
|
390 |
function CheckCJKFont(s: ansistring; font: THWFont): THWFont; |
4380 | 391 |
var l, i : LongInt; |
392 |
u: WideChar; |
|
393 |
tmpstr: array[0..256] of WideChar; |
|
394 |
begin |
|
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6978
diff
changeset
|
395 |
CheckCJKFont:= font; |
4380 | 396 |
|
5639 | 397 |
{$IFNDEF MOBILE} |
4380 | 398 |
// remove chinese fonts for now |
10116
dd27562b6f21
rolling back my PChar stuff, because unC0Rr improves string handling pas2c instead <3
sheepluva
parents:
10108
diff
changeset
|
399 |
if (font >= CJKfnt16) or (length(s) = 0) then |
4380 | 400 |
{$ENDIF} |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6978
diff
changeset
|
401 |
exit; |
4380 | 402 |
|
10131
4b4a043111f4
- pas2c recognizes typecasts in initialization expressions
unc0rr
parents:
10127
diff
changeset
|
403 |
l:= Utf8ToUnicode(PWideChar(@tmpstr), PChar(s), min(length(tmpstr), length(s)))-1; |
4380 | 404 |
i:= 0; |
4737 | 405 |
|
4380 | 406 |
while i < l do |
407 |
begin |
|
408 |
u:= tmpstr[i]; |
|
4737 | 409 |
if (#$1100 <= u) and ( |
410 |
(u <= #$11FF ) or // Hangul Jamo |
|
411 |
((#$2E80 <= u) and (u <= #$2FDF)) or // CJK Radicals Supplement / Kangxi Radicals |
|
8575 | 412 |
((#$2FF0 <= u) and (u <= #$31FF)) or // Ideographic Description Characters / CJK Radicals Supplement / Hiragana / Hangul Compatibility Jamo / Katakana |
4380 | 413 |
((#$31C0 <= u) and (u <= #$31EF)) or // CJK Strokes |
8575 | 414 |
((#$3200 <= u) and (u <= #$4DBF)) or // Enclosed CJK Letters and Months / CJK Compatibility / CJK Unified Ideographs Extension A / Circled Katakana |
4380 | 415 |
((#$4E00 <= u) and (u <= #$9FFF)) or // CJK Unified Ideographs |
4737 | 416 |
((#$AC00 <= u) and (u <= #$D7AF)) or // Hangul Syllables |
4380 | 417 |
((#$F900 <= u) and (u <= #$FAFF)) or // CJK Compatibility Ideographs |
8575 | 418 |
((#$FE30 <= u) and (u <= #$FE4F)) or // CJK Compatibility Forms |
419 |
((#$FF66 <= u) and (u <= #$FF9D))) // halfwidth katakana |
|
10015 | 420 |
then |
6990
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6978
diff
changeset
|
421 |
begin |
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6978
diff
changeset
|
422 |
CheckCJKFont:= THWFont( ord(font) + ((ord(High(THWFont))+1) div 2) ); |
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6978
diff
changeset
|
423 |
exit; |
40e5af28d026
change every return value into a more pascal-ish form, using the name of the fucntion (helps the parser and macpas compaitilibity)
koda
parents:
6978
diff
changeset
|
424 |
end; |
4380 | 425 |
inc(i) |
426 |
end; |
|
427 |
(* two more to check. pascal WideChar is only 16 bit though |
|
428 |
((#$20000 <= u) and (u >= #$2A6DF)) or // CJK Unified Ideographs Extension B |
|
429 |
((#$2F800 <= u) and (u >= #$2FA1F))) // CJK Compatibility Ideographs Supplement *) |
|
430 |
end; |
|
431 |
||
4385 | 432 |
|
433 |
function GetLaunchX(at: TAmmoType; dir: LongInt; angle: LongInt): LongInt; |
|
434 |
begin |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6444
diff
changeset
|
435 |
GetLaunchX:= 0 |
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:
4453
diff
changeset
|
436 |
(* |
4385 | 437 |
if (Ammoz[at].ejectX <> 0) or (Ammoz[at].ejectY <> 0) then |
438 |
GetLaunchX:= sign(dir) * (8 + hwRound(AngleSin(angle) * Ammoz[at].ejectX) + hwRound(AngleCos(angle) * Ammoz[at].ejectY)) |
|
439 |
else |
|
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:
4453
diff
changeset
|
440 |
GetLaunchX:= 0 *) |
4385 | 441 |
end; |
442 |
||
443 |
function GetLaunchY(at: TAmmoType; angle: LongInt): LongInt; |
|
444 |
begin |
|
6580
6155187bf599
A partial reformatting of the pascal code to have consistent syntax. Things that are still inconsistent.
lovelacer
parents:
6444
diff
changeset
|
445 |
GetLaunchY:= 0 |
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:
4453
diff
changeset
|
446 |
(* |
4385 | 447 |
if (Ammoz[at].ejectX <> 0) or (Ammoz[at].ejectY <> 0) then |
448 |
GetLaunchY:= hwRound(AngleSin(angle) * Ammoz[at].ejectY) - hwRound(AngleCos(angle) * Ammoz[at].ejectX) - 2 |
|
449 |
else |
|
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:
4453
diff
changeset
|
450 |
GetLaunchY:= 0*) |
4385 | 451 |
end; |
452 |
||
4398
36d7e4b6ca81
Move some command handlers out of uCommands into more appropriate places, thus removing some dependencies. Ideally uCommands shouldn't depend on anything (except for uTypes and uConsts probably)
unc0rr
parents:
4385
diff
changeset
|
453 |
function CheckNoTeamOrHH: boolean; |
36d7e4b6ca81
Move some command handlers out of uCommands into more appropriate places, thus removing some dependencies. Ideally uCommands shouldn't depend on anything (except for uTypes and uConsts probably)
unc0rr
parents:
4385
diff
changeset
|
454 |
begin |
36d7e4b6ca81
Move some command handlers out of uCommands into more appropriate places, thus removing some dependencies. Ideally uCommands shouldn't depend on anything (except for uTypes and uConsts probably)
unc0rr
parents:
4385
diff
changeset
|
455 |
CheckNoTeamOrHH:= (CurrentTeam = nil) or (CurrentHedgehog^.Gear = nil); |
36d7e4b6ca81
Move some command handlers out of uCommands into more appropriate places, thus removing some dependencies. Ideally uCommands shouldn't depend on anything (except for uTypes and uConsts probably)
unc0rr
parents:
4385
diff
changeset
|
456 |
end; |
4385 | 457 |
|
7151 | 458 |
{$IFNDEF PAS2C} |
459 |
procedure Write(var f: textfile; s: shortstring); |
|
460 |
begin |
|
461 |
system.write(f, s) |
|
462 |
end; |
|
463 |
||
464 |
procedure WriteLn(var f: textfile; s: shortstring); |
|
465 |
begin |
|
466 |
system.writeln(f, s) |
|
467 |
end; |
|
10080 | 468 |
|
469 |
function StrLength(s: PChar): Longword; |
|
470 |
begin |
|
471 |
StrLength:= length(s) |
|
472 |
end; |
|
7151 | 473 |
{$ENDIF} |
474 |
||
8204 | 475 |
// this function is just to determine whether we are running on a limited screen device |
476 |
function isPhone: Boolean; inline; |
|
477 |
begin |
|
478 |
isPhone:= false; |
|
479 |
{$IFDEF IPHONEOS} |
|
480 |
isPhone:= isApplePhone(); |
|
481 |
{$ENDIF} |
|
482 |
{$IFDEF ANDROID} |
|
483 |
//nasty nasty hack. TODO: implement callback to java to have a unified way of determining if it is a tablet |
|
484 |
if (cScreenWidth < 1000) and (cScreenHeight < 500) then |
|
485 |
isPhone:= true; |
|
486 |
{$ENDIF} |
|
487 |
end; |
|
488 |
||
489 |
||
8498
eecadca7db50
Bring back full log strings for commands, just a bit sanitized
unc0rr
parents:
8425
diff
changeset
|
490 |
function sanitizeForLog(s: shortstring): shortstring; |
eecadca7db50
Bring back full log strings for commands, just a bit sanitized
unc0rr
parents:
8425
diff
changeset
|
491 |
var i: byte; |
eecadca7db50
Bring back full log strings for commands, just a bit sanitized
unc0rr
parents:
8425
diff
changeset
|
492 |
r: shortstring; |
eecadca7db50
Bring back full log strings for commands, just a bit sanitized
unc0rr
parents:
8425
diff
changeset
|
493 |
begin |
eecadca7db50
Bring back full log strings for commands, just a bit sanitized
unc0rr
parents:
8425
diff
changeset
|
494 |
r[0]:= s[0]; |
eecadca7db50
Bring back full log strings for commands, just a bit sanitized
unc0rr
parents:
8425
diff
changeset
|
495 |
for i:= 1 to length(s) do |
eecadca7db50
Bring back full log strings for commands, just a bit sanitized
unc0rr
parents:
8425
diff
changeset
|
496 |
if (s[i] < #32) or (s[i] > #127) then |
eecadca7db50
Bring back full log strings for commands, just a bit sanitized
unc0rr
parents:
8425
diff
changeset
|
497 |
r[i]:= '?' |
eecadca7db50
Bring back full log strings for commands, just a bit sanitized
unc0rr
parents:
8425
diff
changeset
|
498 |
else |
eecadca7db50
Bring back full log strings for commands, just a bit sanitized
unc0rr
parents:
8425
diff
changeset
|
499 |
r[i]:= s[i]; |
10015 | 500 |
|
8498
eecadca7db50
Bring back full log strings for commands, just a bit sanitized
unc0rr
parents:
8425
diff
changeset
|
501 |
sanitizeForLog:= r |
eecadca7db50
Bring back full log strings for commands, just a bit sanitized
unc0rr
parents:
8425
diff
changeset
|
502 |
end; |
eecadca7db50
Bring back full log strings for commands, just a bit sanitized
unc0rr
parents:
8425
diff
changeset
|
503 |
|
eecadca7db50
Bring back full log strings for commands, just a bit sanitized
unc0rr
parents:
8425
diff
changeset
|
504 |
function sanitizeCharForLog(c: char): shortstring; |
eecadca7db50
Bring back full log strings for commands, just a bit sanitized
unc0rr
parents:
8425
diff
changeset
|
505 |
var r: shortstring; |
eecadca7db50
Bring back full log strings for commands, just a bit sanitized
unc0rr
parents:
8425
diff
changeset
|
506 |
begin |
eecadca7db50
Bring back full log strings for commands, just a bit sanitized
unc0rr
parents:
8425
diff
changeset
|
507 |
if (c < #32) or (c > #127) then |
eecadca7db50
Bring back full log strings for commands, just a bit sanitized
unc0rr
parents:
8425
diff
changeset
|
508 |
r:= '#' + inttostr(byte(c)) |
eecadca7db50
Bring back full log strings for commands, just a bit sanitized
unc0rr
parents:
8425
diff
changeset
|
509 |
else |
8841 | 510 |
begin |
511 |
// some magic for pas2c |
|
512 |
r[0]:= #1; |
|
513 |
r[1]:= c; |
|
514 |
end; |
|
515 |
||
8498
eecadca7db50
Bring back full log strings for commands, just a bit sanitized
unc0rr
parents:
8425
diff
changeset
|
516 |
sanitizeCharForLog:= r |
eecadca7db50
Bring back full log strings for commands, just a bit sanitized
unc0rr
parents:
8425
diff
changeset
|
517 |
end; |
eecadca7db50
Bring back full log strings for commands, just a bit sanitized
unc0rr
parents:
8425
diff
changeset
|
518 |
|
7896
67217e6108fd
another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents:
7565
diff
changeset
|
519 |
procedure initModule(isNotPreview: boolean); |
7027 | 520 |
{$IFDEF DEBUGFILE} |
521 |
var logfileBase: shortstring; |
|
8095 | 522 |
i: LongInt; |
10595
6781190b053d
turns out IOResult is actually IOResult() - a function that clears its result after each call
sheepluva
parents:
10594
diff
changeset
|
523 |
rwfailed: boolean; |
7027 | 524 |
{$ENDIF} |
4374 | 525 |
begin |
526 |
{$IFDEF DEBUGFILE} |
|
7896
67217e6108fd
another stake at variable pre-initialisation - we lost preview logging in the course
koda
parents:
7565
diff
changeset
|
527 |
if isNotPreview then |
7386
e82a076df09b
Fix bug with isInLag picture displayed at end of some videos.
Stepan777 <stepik-777@mail.ru>
parents:
7198
diff
changeset
|
528 |
begin |
e82a076df09b
Fix bug with isInLag picture displayed at end of some videos.
Stepan777 <stepik-777@mail.ru>
parents:
7198
diff
changeset
|
529 |
if GameType = gmtRecord then |
e82a076df09b
Fix bug with isInLag picture displayed at end of some videos.
Stepan777 <stepik-777@mail.ru>
parents:
7198
diff
changeset
|
530 |
logfileBase:= 'rec' |
e82a076df09b
Fix bug with isInLag picture displayed at end of some videos.
Stepan777 <stepik-777@mail.ru>
parents:
7198
diff
changeset
|
531 |
else |
10505 | 532 |
{$IFDEF PAS2C} |
533 |
logfileBase:= 'game_pas2c'; |
|
534 |
{$ELSE} |
|
535 |
logfileBase:= 'game'; |
|
536 |
{$ENDIF} |
|
7386
e82a076df09b
Fix bug with isInLag picture displayed at end of some videos.
Stepan777 <stepik-777@mail.ru>
parents:
7198
diff
changeset
|
537 |
end |
7027 | 538 |
else |
10502
a888e649bea2
Fix difference in map generation between fpc and pas2c engine
unc0rr
parents:
10280
diff
changeset
|
539 |
{$IFDEF PAS2C} |
10503 | 540 |
logfileBase:= 'preview_pas2c'; |
10502
a888e649bea2
Fix difference in map generation between fpc and pas2c engine
unc0rr
parents:
10280
diff
changeset
|
541 |
{$ELSE} |
10504 | 542 |
logfileBase:= 'preview'; |
10502
a888e649bea2
Fix difference in map generation between fpc and pas2c engine
unc0rr
parents:
10280
diff
changeset
|
543 |
{$ENDIF} |
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7194
diff
changeset
|
544 |
{$IFDEF USE_VIDEO_RECORDING} |
7180 | 545 |
InitCriticalSection(logMutex); |
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7194
diff
changeset
|
546 |
{$ENDIF} |
4374 | 547 |
{$I-} |
10595
6781190b053d
turns out IOResult is actually IOResult() - a function that clears its result after each call
sheepluva
parents:
10594
diff
changeset
|
548 |
rwfailed:= false; |
10127 | 549 |
if (length(UserPathPrefix) > 0) then |
4374 | 550 |
begin |
9966 | 551 |
{$IFNDEF PAS2C} |
8425
4f226963faef
restored ios project file, updated Game() interface, tweaked arg parsing, updated log writing, minor warnings
koda
parents:
8370
diff
changeset
|
552 |
// create directory if it doesn't exist |
8095 | 553 |
if not FileExists(UserPathPrefix + '/Logs/') then |
554 |
CreateDir(UserPathPrefix + '/Logs/'); |
|
9966 | 555 |
{$ENDIF} |
8425
4f226963faef
restored ios project file, updated Game() interface, tweaked arg parsing, updated log writing, minor warnings
koda
parents:
8370
diff
changeset
|
556 |
// if log is locked, write to the next one |
8095 | 557 |
i:= 0; |
558 |
while(i < 7) do |
|
4374 | 559 |
begin |
10572
c4e86a2efc55
give variable with unit-wide scope a better name than just 'f'
sheepluva
parents:
10562
diff
changeset
|
560 |
assign(logFile, shortstring(UserPathPrefix) + '/Logs/' + logfileBase + inttostr(i) + '.log'); |
10573
3b82b4d90eb7
make the code, which was supposed to iterate file log number (if no access) and fallback to stderr in worst case rather than segfault, actually work
sheepluva
parents:
10572
diff
changeset
|
561 |
Rewrite(logFile); |
10605
df7a73db2c43
oops, IOResult is a function in pascal, but not in pas2c
sheepluva
parents:
10603
diff
changeset
|
562 |
// note: IOResult is a function in pascal and a variable in pas2c |
df7a73db2c43
oops, IOResult is a function in pascal, but not in pas2c
sheepluva
parents:
10603
diff
changeset
|
563 |
rwfailed:= (IOResult <> 0); |
10595
6781190b053d
turns out IOResult is actually IOResult() - a function that clears its result after each call
sheepluva
parents:
10594
diff
changeset
|
564 |
if (not rwfailed) then |
8095 | 565 |
break; |
566 |
inc(i) |
|
4374 | 567 |
end; |
8095 | 568 |
end; |
10573
3b82b4d90eb7
make the code, which was supposed to iterate file log number (if no access) and fallback to stderr in worst case rather than segfault, actually work
sheepluva
parents:
10572
diff
changeset
|
569 |
|
3b82b4d90eb7
make the code, which was supposed to iterate file log number (if no access) and fallback to stderr in worst case rather than segfault, actually work
sheepluva
parents:
10572
diff
changeset
|
570 |
{$IFNDEF PAS2C} |
10574 | 571 |
// if everything fails, write to stderr |
10595
6781190b053d
turns out IOResult is actually IOResult() - a function that clears its result after each call
sheepluva
parents:
10594
diff
changeset
|
572 |
if (length(UserPathPrefix) = 0) or (rwfailed) then |
10574 | 573 |
logFile:= stderr; |
10573
3b82b4d90eb7
make the code, which was supposed to iterate file log number (if no access) and fallback to stderr in worst case rather than segfault, actually work
sheepluva
parents:
10572
diff
changeset
|
574 |
{$ENDIF} |
4374 | 575 |
{$I+} |
576 |
{$ENDIF} |
|
577 |
||
9300 | 578 |
//mobile stuff |
579 |
{$IFDEF IPHONEOS} |
|
580 |
mobileRecord.PerformRumble:= @AudioServicesPlaySystemSound; |
|
581 |
mobileRecord.GameLoading:= @startLoadingIndicator; |
|
582 |
mobileRecord.GameLoaded:= @stopLoadingIndicator; |
|
583 |
mobileRecord.SaveLoadingEnded:= @saveFinishedSynching; |
|
584 |
{$ELSE} |
|
585 |
mobileRecord.PerformRumble:= nil; |
|
586 |
mobileRecord.GameLoading:= nil; |
|
587 |
mobileRecord.GameLoaded:= nil; |
|
588 |
mobileRecord.SaveLoadingEnded:= nil; |
|
589 |
{$ENDIF} |
|
590 |
||
4374 | 591 |
end; |
592 |
||
593 |
procedure freeModule; |
|
594 |
begin |
|
595 |
{$IFDEF DEBUGFILE} |
|
10572
c4e86a2efc55
give variable with unit-wide scope a better name than just 'f'
sheepluva
parents:
10562
diff
changeset
|
596 |
writeln(logFile, 'halt at ' + inttostr(GameTicks) + ' ticks. TurnTimeLeft = ' + inttostr(TurnTimeLeft)); |
c4e86a2efc55
give variable with unit-wide scope a better name than just 'f'
sheepluva
parents:
10562
diff
changeset
|
597 |
flush(logFile); |
c4e86a2efc55
give variable with unit-wide scope a better name than just 'f'
sheepluva
parents:
10562
diff
changeset
|
598 |
close(logFile); |
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7194
diff
changeset
|
599 |
{$IFDEF USE_VIDEO_RECORDING} |
7180 | 600 |
DoneCriticalSection(logMutex); |
4374 | 601 |
{$ENDIF} |
7198
5debd5fe526e
1. Add IFDEFs for video recording
Stepan777 <stepik-777@mail.ru>
parents:
7194
diff
changeset
|
602 |
{$ENDIF} |
4374 | 603 |
end; |
604 |
||
4453 | 605 |
end. |