author | koda |
Thu, 02 Jul 2009 00:58:46 +0000 | |
changeset 2218 | 59a9bebc4988 |
parent 2210 | 1cb7118a77dd |
child 2242 | 2e8251933b71 |
permissions | -rw-r--r-- |
4 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
883 | 3 |
* Copyright (c) 2004-2008 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 |
||
19 |
unit uMisc; |
|
20 |
interface |
|
1906 | 21 |
uses uConsts, SDLh, |
2152 | 22 |
{$IFDEF GLES11} |
1906 | 23 |
gles11, |
24 |
{$ELSE} |
|
25 |
GL, |
|
26 |
{$ENDIF} |
|
27 |
uFloat; |
|
4 | 28 |
{$INCLUDE options.inc} |
1054 | 29 |
var |
30 |
isCursorVisible : boolean = false; |
|
31 |
isTerminated : boolean = false; |
|
32 |
isInLag : boolean = false; |
|
33 |
isPaused : boolean = false; |
|
34 |
isSoundEnabled : boolean = true; |
|
1128 | 35 |
isMusicEnabled : boolean = false; |
1054 | 36 |
isSEBackup : boolean = true; |
37 |
isInMultiShoot : boolean = false; |
|
38 |
isSpeed : boolean = false; |
|
4 | 39 |
|
1560
e140bc57ff68
Quick replay round to spectators until current move
unc0rr
parents:
1530
diff
changeset
|
40 |
fastUntilLag : boolean = false; |
e140bc57ff68
Quick replay round to spectators until current move
unc0rr
parents:
1530
diff
changeset
|
41 |
|
1054 | 42 |
GameState : TGameState = Low(TGameState); |
43 |
GameType : TGameType = gmtLocal; |
|
44 |
GameFlags : Longword = 0; |
|
45 |
TurnTimeLeft : Longword = 0; |
|
1784 | 46 |
cSuddenDTurns : LongInt = 15; |
1895 | 47 |
cDamagePercent : LongInt = 100; |
1797 | 48 |
cTemplateFilter : LongInt = 0; |
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1861
diff
changeset
|
49 |
|
1054 | 50 |
cHedgehogTurnTime: Longword = 45000; |
2031
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2023
diff
changeset
|
51 |
cMinesTime : LongInt = 3000; |
1054 | 52 |
cMaxAIThinkTime : Longword = 9000; |
4 | 53 |
|
1054 | 54 |
cCloudsNumber : LongInt = 9; |
55 |
cScreenWidth : LongInt = 1024; |
|
56 |
cScreenHeight : LongInt = 768; |
|
1121
d595dc56b4f3
Remember initial resolution settings to use when switching to fullscreen mode
unc0rr
parents:
1080
diff
changeset
|
57 |
cInitWidth : LongInt = 1024; |
d595dc56b4f3
Remember initial resolution settings to use when switching to fullscreen mode
unc0rr
parents:
1080
diff
changeset
|
58 |
cInitHeight : LongInt = 768; |
2008 | 59 |
cBits : LongInt = 32; |
60 |
cBitsStr : string[2] = '32'; |
|
1054 | 61 |
cTagsMask : byte = 7; |
2162 | 62 |
zoom : GLfloat = 2.0; |
74 | 63 |
|
1760 | 64 |
cWaterLine : LongInt = LAND_HEIGHT; |
1054 | 65 |
cVisibleWater : LongInt = 128; |
66 |
cGearScrEdgesDist: LongInt = 240; |
|
1530 | 67 |
cCursorEdgesDist : LongInt = 100; |
1054 | 68 |
cTeamHealthWidth : LongInt = 128; |
69 |
cAltDamage : boolean = true; |
|
4 | 70 |
|
1054 | 71 |
GameTicks : LongWord = 0; |
72 |
||
73 |
cSkyColor : Longword = 0; |
|
74 |
cWhiteColor : Longword = $FFFFFFFF; |
|
75 |
cColorNearBlack : Longword = $FF000010; |
|
76 |
cExplosionBorderColor : LongWord = $808080; |
|
4 | 77 |
|
2008 | 78 |
cShowFPS : boolean = false; |
1298 | 79 |
cCaseFactor : Longword = 5; {0..9} |
1054 | 80 |
cLandAdditions: Longword = 4; |
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1861
diff
changeset
|
81 |
cFullScreen : boolean = false; |
1812 | 82 |
cReducedQuality : boolean = false; |
1054 | 83 |
cLocaleFName : shortstring = 'en.txt'; |
84 |
cSeed : shortstring = ''; |
|
2210 | 85 |
cInitVolume : LongInt = 50; |
1054 | 86 |
cVolumeDelta : LongInt = 0; |
2008 | 87 |
cTimerInterval : Longword = 8; |
1054 | 88 |
cHasFocus : boolean = true; |
1057 | 89 |
cInactDelay : Longword = 1250; |
4 | 90 |
|
1054 | 91 |
bBetweenTurns: boolean = false; |
1055
9af540b23409
Water rises after 25 mins of round, health is decreased after 20 mins
unc0rr
parents:
1054
diff
changeset
|
92 |
cHealthDecrease: LongWord = 0; |
9af540b23409
Water rises after 25 mins of round, health is decreased after 20 mins
unc0rr
parents:
1054
diff
changeset
|
93 |
bWaterRising : Boolean = false; |
4 | 94 |
|
614 | 95 |
{$WARNINGS OFF} |
1124 | 96 |
cAirPlaneSpeed: hwFloat = (isNegative: false; QWordValue: 3006477107); // 1.4 |
1054 | 97 |
cBombsSpeed : hwFloat = (isNegative: false; QWordValue: 429496729); |
614 | 98 |
{$WARNINGS ON} |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
539
diff
changeset
|
99 |
|
4 | 100 |
var |
1054 | 101 |
cSendEmptyPacketTime : LongWord = 2000; |
102 |
cSendCursorPosTime : LongWord = 50; |
|
103 |
ShowCrosshair : boolean; |
|
104 |
cDrownSpeed, |
|
105 |
cMaxWindSpeed, |
|
106 |
cWindSpeed, |
|
107 |
cGravity: hwFloat; |
|
1849 | 108 |
cDamageModifier: hwFloat; |
1854 | 109 |
cLaserSighting: boolean; |
2017 | 110 |
cVampiric: boolean; |
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
111 |
cArtillery: boolean; |
4 | 112 |
|
1054 | 113 |
flagMakeCapture: boolean = false; |
4 | 114 |
|
1054 | 115 |
InitStepsFlags: Longword = 0; |
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
53
diff
changeset
|
116 |
|
1054 | 117 |
RealTicks: Longword = 0; |
836 | 118 |
|
1054 | 119 |
AttackBar: LongInt = 0; // 0 - none, 1 - just bar at the right-down corner, 2 - like in WWP |
4 | 120 |
|
2171
8208946331ba
Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents:
2163
diff
changeset
|
121 |
type HwColor4f = record |
8208946331ba
Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents:
2163
diff
changeset
|
122 |
r, g, b, a: byte |
1911 | 123 |
end; |
124 |
||
2171
8208946331ba
Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents:
2163
diff
changeset
|
125 |
var WaterColorArray: array[0..3] of HwColor4f; |
1911 | 126 |
|
371 | 127 |
function hwSign(r: hwFloat): LongInt; |
802
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
788
diff
changeset
|
128 |
function Min(a, b: LongInt): LongInt; |
371 | 129 |
function Max(a, b: LongInt): LongInt; |
351 | 130 |
procedure OutError(Msg: String; isFatalError: boolean); |
4 | 131 |
procedure TryDo(Assert: boolean; Msg: string; isFatal: boolean); |
132 |
procedure SDLTry(Assert: boolean; isFatal: boolean); |
|
316 | 133 |
function IntToStr(n: LongInt): shortstring; |
351 | 134 |
function FloatToStr(n: hwFloat): shortstring; |
775 | 135 |
function DxDy2Angle(const _dY, _dX: hwFloat): GLfloat; |
371 | 136 |
function DxDy2Angle32(const _dY, _dX: hwFloat): LongInt; |
137 |
function DxDy2AttackAngle(const _dY, _dX: hwFloat): LongInt; |
|
4 | 138 |
procedure AdjustColor(var Color: Longword); |
139 |
{$IFDEF DEBUGFILE} |
|
140 |
procedure AddFileLog(s: shortstring); |
|
24 | 141 |
function RectToStr(Rect: TSDL_Rect): shortstring; |
4 | 142 |
{$ENDIF} |
208 | 143 |
procedure SetKB(n: Longword); |
144 |
procedure SendKB; |
|
351 | 145 |
procedure SetLittle(var r: hwFloat); |
306 | 146 |
procedure SendStat(sit: TStatInfoType; s: shortstring); |
753 | 147 |
function Str2PChar(const s: shortstring): PChar; |
1180
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
148 |
function NewTexture(width, height: Longword; buf: Pointer): PTexture; |
755 | 149 |
function Surface2Tex(surf: PSDL_Surface): PTexture; |
759 | 150 |
procedure FreeTexture(tex: PTexture); |
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
916
diff
changeset
|
151 |
function toPowerOf2(i: Longword): Longword; |
949 | 152 |
function DecodeBase64(s: shortstring): shortstring; |
2163
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
153 |
{$IFNDEF IPHONEOS} |
1080 | 154 |
procedure MakeScreenshot(s: shortstring); |
2163
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
155 |
{$ENDIF} |
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
156 |
|
1861 | 157 |
function modifyDamage(dmg: Longword): Longword; |
4 | 158 |
|
159 |
var CursorPoint: TPoint; |
|
160 |
TargetPoint: TPoint = (X: NoPointX; Y: 0); |
|
161 |
||
162 |
implementation |
|
1896 | 163 |
uses uConsole, uStore, uIO, Math, uRandom; |
208 | 164 |
var KBnum: Longword = 0; |
4 | 165 |
{$IFDEF DEBUGFILE} |
166 |
var f: textfile; |
|
167 |
{$ENDIF} |
|
168 |
||
371 | 169 |
function hwSign(r: hwFloat): LongInt; |
4 | 170 |
begin |
351 | 171 |
if r.isNegative then hwSign:= -1 else hwSign:= 1 |
4 | 172 |
end; |
173 |
||
371 | 174 |
function Min(a, b: LongInt): LongInt; |
4 | 175 |
begin |
351 | 176 |
if a < b then Min:= a else Min:= b |
4 | 177 |
end; |
178 |
||
371 | 179 |
function Max(a, b: LongInt): LongInt; |
4 | 180 |
begin |
351 | 181 |
if a > b then Max:= a else Max:= b |
4 | 182 |
end; |
183 |
||
351 | 184 |
procedure OutError(Msg: String; isFatalError: boolean); |
4 | 185 |
begin |
186 |
{$IFDEF DEBUGFILE}AddFileLog(Msg);{$ENDIF} |
|
53 | 187 |
WriteLnToConsole(Msg); |
4 | 188 |
if isFatalError then |
189 |
begin |
|
53 | 190 |
SendIPC('E' + GetLastConsoleLine); |
4 | 191 |
SDL_Quit; |
192 |
halt(1) |
|
53 | 193 |
end |
4 | 194 |
end; |
195 |
||
196 |
procedure TryDo(Assert: boolean; Msg: string; isFatal: boolean); |
|
197 |
begin |
|
70 | 198 |
if not Assert then OutError(Msg, isFatal) |
4 | 199 |
end; |
200 |
||
201 |
procedure SDLTry(Assert: boolean; isFatal: boolean); |
|
202 |
begin |
|
203 |
if not Assert then OutError(SDL_GetError, isFatal) |
|
204 |
end; |
|
205 |
||
188 | 206 |
procedure AdjustColor(var Color: Longword); |
4 | 207 |
begin |
208 |
Color:= SDL_MapRGB(PixelFormat, (Color shr 16) and $FF, (Color shr 8) and $FF, Color and $FF) |
|
209 |
end; |
|
210 |
||
316 | 211 |
function IntToStr(n: LongInt): shortstring; |
4 | 212 |
begin |
351 | 213 |
str(n, IntToStr) |
4 | 214 |
end; |
215 |
||
351 | 216 |
function FloatToStr(n: hwFloat): shortstring; |
4 | 217 |
begin |
1346 | 218 |
FloatToStr:= cstr(n) + '_' + inttostr(Lo(n.QWordValue)) |
4 | 219 |
end; |
220 |
||
775 | 221 |
function DxDy2Angle(const _dY, _dX: hwFloat): GLfloat; |
222 |
var dY, dX: Extended; |
|
223 |
begin |
|
224 |
dY:= _dY.QWordValue / $100000000; |
|
225 |
if _dY.isNegative then dY:= - dY; |
|
226 |
dX:= _dX.QWordValue / $100000000; |
|
227 |
if _dX.isNegative then dX:= - dX; |
|
228 |
DxDy2Angle:= arctan2(dY, dX) * 180 / pi |
|
229 |
end; |
|
230 |
||
371 | 231 |
function DxDy2Angle32(const _dY, _dX: hwFloat): LongInt; |
100 | 232 |
const _16divPI: Extended = 16/pi; |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
233 |
var dY, dX: Extended; |
100 | 234 |
begin |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
235 |
dY:= _dY.QWordValue / $100000000; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
236 |
if _dY.isNegative then dY:= - dY; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
237 |
dX:= _dX.QWordValue / $100000000; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
238 |
if _dX.isNegative then dX:= - dX; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
239 |
DxDy2Angle32:= trunc(arctan2(dY, dX) * _16divPI) and $1f |
4 | 240 |
end; |
241 |
||
371 | 242 |
function DxDy2AttackAngle(const _dY, _dX: hwFloat): LongInt; |
100 | 243 |
const MaxAngleDivPI: Extended = cMaxAngle/pi; |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
244 |
var dY, dX: Extended; |
100 | 245 |
begin |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
246 |
dY:= _dY.QWordValue / $100000000; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
247 |
if _dY.isNegative then dY:= - dY; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
248 |
dX:= _dX.QWordValue / $100000000; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
249 |
if _dX.isNegative then dX:= - dX; |
438 | 250 |
DxDy2AttackAngle:= trunc(arctan2(dY, dX) * MaxAngleDivPI) |
100 | 251 |
end; |
4 | 252 |
|
208 | 253 |
procedure SetKB(n: Longword); |
254 |
begin |
|
255 |
KBnum:= n |
|
256 |
end; |
|
257 |
||
258 |
procedure SendKB; |
|
259 |
var s: shortstring; |
|
260 |
begin |
|
261 |
if KBnum <> 0 then |
|
262 |
begin |
|
263 |
s:= 'K' + inttostr(KBnum); |
|
264 |
SendIPCRaw(@s, Length(s) + 1) |
|
265 |
end |
|
266 |
end; |
|
267 |
||
351 | 268 |
procedure SetLittle(var r: hwFloat); |
300 | 269 |
begin |
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
543
diff
changeset
|
270 |
r:= SignAs(cLittle, r) |
300 | 271 |
end; |
272 |
||
337 | 273 |
procedure SendStat(sit: TStatInfoType; s: shortstring); |
1625 | 274 |
const stc: array [TStatInfoType] of char = 'rDkKH'; |
337 | 275 |
begin |
276 |
SendIPC('i' + stc[sit] + s) |
|
277 |
end; |
|
278 |
||
534 | 279 |
function Str2PChar(const s: shortstring): PChar; |
351 | 280 |
const CharArray: array[byte] of Char = ''; |
281 |
begin |
|
282 |
CharArray:= s; |
|
283 |
CharArray[Length(s)]:= #0; |
|
284 |
Str2PChar:= @CharArray |
|
285 |
end; |
|
286 |
||
771 | 287 |
function isPowerOf2(i: Longword): boolean; |
288 |
begin |
|
289 |
if i = 0 then exit(true); |
|
290 |
while (i and 1) = 0 do i:= i shr 1; |
|
291 |
isPowerOf2:= (i = 1) |
|
292 |
end; |
|
293 |
||
294 |
function toPowerOf2(i: Longword): Longword; |
|
295 |
begin |
|
296 |
toPowerOf2:= 1; |
|
297 |
while (toPowerOf2 < i) do toPowerOf2:= toPowerOf2 shl 1 |
|
298 |
end; |
|
299 |
||
1912
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
300 |
procedure ResetVertexArrays(texture: PTexture); |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
301 |
begin |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
302 |
with texture^ do |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
303 |
begin |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
304 |
vb[0].X:= 0; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
305 |
vb[0].Y:= 0; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
306 |
vb[1].X:= w; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
307 |
vb[1].Y:= 0; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
308 |
vb[2].X:= w; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
309 |
vb[2].Y:= h; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
310 |
vb[3].X:= 0; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
311 |
vb[3].Y:= h; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
312 |
|
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
313 |
tb[0].X:= 0; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
314 |
tb[0].Y:= 0; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
315 |
tb[1].X:= rx; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
316 |
tb[1].Y:= 0; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
317 |
tb[2].X:= rx; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
318 |
tb[2].Y:= ry; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
319 |
tb[3].X:= 0; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
320 |
tb[3].Y:= ry |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
321 |
end; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
322 |
end; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
323 |
|
1180
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
324 |
function NewTexture(width, height: Longword; buf: Pointer): PTexture; |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
325 |
begin |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
326 |
new(NewTexture); |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
327 |
NewTexture^.w:= width; |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
328 |
NewTexture^.h:= height; |
1896 | 329 |
NewTexture^.rx:= 1.0; |
330 |
NewTexture^.ry:= 1.0; |
|
1180
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
331 |
|
1912
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
332 |
ResetVertexArrays(NewTexture); |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
333 |
|
1180
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
334 |
glGenTextures(1, @NewTexture^.id); |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
335 |
|
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
336 |
glBindTexture(GL_TEXTURE_2D, NewTexture^.id); |
2163
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
337 |
{$IFDEF IPHONEOS} |
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
338 |
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0, GL_BGRA, GL_UNSIGNED_BYTE, buf); |
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
339 |
{$ELSE} |
1180
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
340 |
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, buf); |
2163
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
341 |
{$ENDIF} |
1180
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
342 |
|
2147
ffa64983dc07
typos - the fix for zoom in uMisc.pas appears to be screwing up flakes and other things. commenting it out for now
nemo
parents:
2133
diff
changeset
|
343 |
//glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP); |
ffa64983dc07
typos - the fix for zoom in uMisc.pas appears to be screwing up flakes and other things. commenting it out for now
nemo
parents:
2133
diff
changeset
|
344 |
//glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP); |
1180
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
345 |
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
346 |
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR) |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
347 |
end; |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
348 |
|
755 | 349 |
function Surface2Tex(surf: PSDL_Surface): PTexture; |
2163
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
350 |
var modeIntFormat: LongInt; |
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
351 |
modeFormat: LongInt; |
1896 | 352 |
tw, th, x, y: Longword; |
353 |
tmpp: pointer; |
|
354 |
fromP4, toP4: PLongWordArray; |
|
355 |
fromP1, toP1: PByteArray; |
|
753 | 356 |
begin |
755 | 357 |
new(Surface2Tex); |
358 |
Surface2Tex^.w:= surf^.w; |
|
359 |
Surface2Tex^.h:= surf^.h; |
|
360 |
||
2163
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
361 |
if (surf^.format^.BytesPerPixel = 3) then |
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
362 |
begin |
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
363 |
modeIntFormat:= GL_RGB; |
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
364 |
{$IFDEF IPHONEOS} |
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
365 |
modeFormat:= GL_BGR; |
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
366 |
{$ELSE} |
2171
8208946331ba
Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents:
2163
diff
changeset
|
367 |
modeFormat:= modeIntFormat; |
2163
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
368 |
{$ENDIF} |
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
369 |
end |
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
370 |
else |
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
371 |
if (surf^.format^.BytesPerPixel = 4) then |
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
372 |
begin |
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
373 |
modeIntFormat:= GL_RGBA; |
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
374 |
{$IFDEF IPHONEOS} |
2171
8208946331ba
Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents:
2163
diff
changeset
|
375 |
modeFormat:= GL_BGRA; |
2163
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
376 |
{$ELSE} |
2171
8208946331ba
Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents:
2163
diff
changeset
|
377 |
modeFormat:= modeIntFormat; |
2163
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
378 |
{$ENDIF} |
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
379 |
end |
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
380 |
else |
753 | 381 |
begin |
869 | 382 |
TryDo(false, 'Surface2Tex: BytesPerPixel not in [3, 4]', true); |
755 | 383 |
Surface2Tex^.id:= 0; |
753 | 384 |
exit |
385 |
end; |
|
386 |
||
755 | 387 |
glGenTextures(1, @Surface2Tex^.id); |
753 | 388 |
|
755 | 389 |
glBindTexture(GL_TEXTURE_2D, Surface2Tex^.id); |
753 | 390 |
|
771 | 391 |
if SDL_MustLock(surf) then |
392 |
SDLTry(SDL_LockSurface(surf) >= 0, true); |
|
393 |
||
394 |
if not (isPowerOf2(Surf^.w) and isPowerOf2(Surf^.h)) then |
|
1896 | 395 |
begin |
396 |
tw:= toPowerOf2(Surf^.w); |
|
397 |
th:= toPowerOf2(Surf^.h); |
|
398 |
||
399 |
Surface2Tex^.rx:= Surf^.w / tw; |
|
400 |
Surface2Tex^.ry:= Surf^.h / th; |
|
401 |
||
402 |
GetMem(tmpp, tw * th * surf^.format^.BytesPerPixel); |
|
403 |
||
404 |
if surf^.format^.BytesPerPixel = 4 then |
|
405 |
begin |
|
406 |
fromP4:= Surf^.pixels; |
|
407 |
toP4:= tmpp; |
|
771 | 408 |
|
1896 | 409 |
for y:= 0 to Pred(Surf^.h) do |
410 |
begin |
|
411 |
for x:= 0 to Pred(Surf^.w) do |
|
412 |
toP4^[x]:= fromP4^[x]; |
|
413 |
for x:= Surf^.w to Pred(tw) do |
|
414 |
toP4^[x]:= 0; |
|
415 |
toP4:= @(toP4^[tw]); |
|
2017 | 416 |
fromP4:= @(fromP4^[Surf^.pitch div 4]); |
1896 | 417 |
end; |
418 |
||
419 |
for y:= Surf^.h to Pred(th) do |
|
420 |
begin |
|
421 |
for x:= 0 to Pred(tw) do |
|
422 |
toP4^[x]:= 0; |
|
423 |
toP4:= @(toP4^[tw]); |
|
424 |
end; |
|
425 |
end |
|
426 |
else |
|
427 |
begin |
|
428 |
fromP1:= Surf^.pixels; |
|
429 |
toP1:= tmpp; |
|
771 | 430 |
|
1896 | 431 |
for y:= 0 to Pred(Surf^.h) do |
432 |
begin |
|
433 |
for x:= 0 to Pred(Surf^.w) do |
|
434 |
begin |
|
435 |
toP1^[x * 3]:= fromP1^[x * 3]; |
|
436 |
toP1^[x * 3 + 1]:= fromP1^[x * 3 + 1]; |
|
437 |
toP1^[x * 3 + 2]:= fromP1^[x * 3 + 2]; |
|
438 |
end; |
|
439 |
for x:= Surf^.w to Pred(tw) do |
|
440 |
begin |
|
441 |
toP1^[x * 3]:= 0; |
|
442 |
toP1^[x * 3 + 1]:= 0; |
|
443 |
toP1^[x * 3 + 2]:= 0; |
|
444 |
end; |
|
445 |
toP1:= @(toP1^[tw * 3]); |
|
446 |
fromP1:= @(fromP1^[Surf^.pitch]); |
|
447 |
end; |
|
771 | 448 |
|
1896 | 449 |
for y:= Surf^.h to Pred(th) do |
450 |
begin |
|
451 |
for x:= 0 to Pred(tw) do |
|
452 |
begin |
|
453 |
toP1^[x * 3]:= 0; |
|
454 |
toP1^[x * 3 + 1]:= 0; |
|
455 |
toP1^[x * 3 + 2]:= 0; |
|
456 |
end; |
|
457 |
toP1:= @(toP1^[tw * 3]); |
|
458 |
end; |
|
459 |
end; |
|
771 | 460 |
|
2163
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
461 |
// legacy resizing function |
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
462 |
// gluScaleImage(mode, Surf^.w, Surf^.h, GL_UNSIGNED_BYTE, Surf^.pixels, tw, th, GL_UNSIGNED_BYTE, tmpp); |
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
463 |
|
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
464 |
glTexImage2D(GL_TEXTURE_2D, 0, modeIntFormat, tw, th, 0, modeFormat, GL_UNSIGNED_BYTE, tmpp); |
1896 | 465 |
|
466 |
FreeMem(tmpp, tw * th * surf^.format^.BytesPerPixel) |
|
467 |
end else |
|
468 |
begin |
|
469 |
Surface2Tex^.rx:= 1.0; |
|
470 |
Surface2Tex^.ry:= 1.0; |
|
2163
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
471 |
glTexImage2D(GL_TEXTURE_2D, 0, modeIntFormat, surf^.w, surf^.h, 0, modeFormat, GL_UNSIGNED_BYTE, surf^.pixels); |
1896 | 472 |
end; |
753 | 473 |
|
1912
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
474 |
ResetVertexArrays(Surface2Tex); |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
475 |
|
754 | 476 |
if SDL_MustLock(surf) then |
1912
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
477 |
SDL_UnlockSurface(surf); |
754 | 478 |
|
2147
ffa64983dc07
typos - the fix for zoom in uMisc.pas appears to be screwing up flakes and other things. commenting it out for now
nemo
parents:
2133
diff
changeset
|
479 |
//glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP); |
ffa64983dc07
typos - the fix for zoom in uMisc.pas appears to be screwing up flakes and other things. commenting it out for now
nemo
parents:
2133
diff
changeset
|
480 |
//glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP); |
788
00720357601f
- Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents:
785
diff
changeset
|
481 |
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); |
00720357601f
- Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents:
785
diff
changeset
|
482 |
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR) |
753 | 483 |
end; |
484 |
||
759 | 485 |
procedure FreeTexture(tex: PTexture); |
486 |
begin |
|
2000
f9f47e681aad
Don't crash engine after round in reduced quality mode
unc0rr
parents:
1916
diff
changeset
|
487 |
if tex <> nil then |
f9f47e681aad
Don't crash engine after round in reduced quality mode
unc0rr
parents:
1916
diff
changeset
|
488 |
begin |
f9f47e681aad
Don't crash engine after round in reduced quality mode
unc0rr
parents:
1916
diff
changeset
|
489 |
glDeleteTextures(1, @tex^.id); |
f9f47e681aad
Don't crash engine after round in reduced quality mode
unc0rr
parents:
1916
diff
changeset
|
490 |
dispose(tex) |
f9f47e681aad
Don't crash engine after round in reduced quality mode
unc0rr
parents:
1916
diff
changeset
|
491 |
end |
759 | 492 |
end; |
337 | 493 |
|
949 | 494 |
function DecodeBase64(s: shortstring): shortstring; |
495 |
const table = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; |
|
496 |
var i, t, c: Longword; |
|
497 |
begin |
|
498 |
c:= 0; |
|
499 |
for i:= 1 to Length(s) do |
|
500 |
begin |
|
501 |
t:= Pos(s[i], table); |
|
502 |
if s[i] = '=' then inc(c); |
|
503 |
if t > 0 then byte(s[i]):= t - 1 else byte(s[i]):= 0 |
|
504 |
end; |
|
505 |
||
506 |
i:= 1; |
|
507 |
t:= 1; |
|
508 |
while i <= length(s) do |
|
509 |
begin |
|
510 |
DecodeBase64[t ]:= char((byte(s[i ]) shl 2) or (byte(s[i + 1]) shr 4)); |
|
511 |
DecodeBase64[t + 1]:= char((byte(s[i + 1]) shl 4) or (byte(s[i + 2]) shr 2)); |
|
512 |
DecodeBase64[t + 2]:= char((byte(s[i + 2]) shl 6) or (byte(s[i + 3]) )); |
|
513 |
inc(t, 3); |
|
514 |
inc(i, 4) |
|
515 |
end; |
|
516 |
||
517 |
if c < 3 then t:= t - c; |
|
518 |
||
519 |
byte(DecodeBase64[0]):= t - 1 |
|
520 |
end; |
|
521 |
||
2163
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
522 |
{$IFNDEF IPHONEOS} |
1080 | 523 |
procedure MakeScreenshot(s: shortstring); |
524 |
const head: array[0..8] of Word = (0, 2, 0, 0, 0, 0, 0, 0, 24); |
|
525 |
var p: Pointer; |
|
526 |
size: Longword; |
|
527 |
f: file; |
|
528 |
begin |
|
529 |
head[6]:= cScreenWidth; |
|
530 |
head[7]:= cScreenHeight; |
|
531 |
||
532 |
size:= cScreenWidth * cScreenHeight * 3; |
|
533 |
p:= GetMem(size); |
|
534 |
||
2163
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
535 |
|
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
536 |
//remember that opengles operates on a single surface, so GL_FRONT *should* be implied |
1080 | 537 |
glReadBuffer(GL_FRONT); |
538 |
glReadPixels(0, 0, cScreenWidth, cScreenHeight, GL_BGR, GL_UNSIGNED_BYTE, p); |
|
539 |
||
540 |
{$I-} |
|
541 |
Assign(f, s); |
|
542 |
Rewrite(f, 1); |
|
543 |
if IOResult = 0 then |
|
544 |
begin |
|
545 |
BlockWrite(f, head, sizeof(head)); |
|
546 |
BlockWrite(f, p^, size); |
|
547 |
Close(f); |
|
548 |
end; |
|
549 |
{$I+} |
|
550 |
||
551 |
FreeMem(p) |
|
552 |
end; |
|
2163
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
553 |
{$ENDIF} |
1080 | 554 |
|
1861 | 555 |
function modifyDamage(dmg: Longword): Longword; |
556 |
begin |
|
1895 | 557 |
ModifyDamage:= hwRound(_0_01 * cDamageModifier * dmg * cDamagePercent) |
1861 | 558 |
end; |
559 |
||
949 | 560 |
{$IFDEF DEBUGFILE} |
561 |
procedure AddFileLog(s: shortstring); |
|
562 |
begin |
|
563 |
writeln(f, GameTicks: 6, ': ', s); |
|
564 |
flush(f) |
|
565 |
end; |
|
566 |
||
567 |
function RectToStr(Rect: TSDL_Rect): shortstring; |
|
568 |
begin |
|
569 |
RectToStr:= '(x: ' + inttostr(rect.x) + '; y: ' + inttostr(rect.y) + '; w: ' + inttostr(rect.w) + '; h: ' + inttostr(rect.h) + ')' |
|
570 |
end; |
|
571 |
||
371 | 572 |
var i: LongInt; |
488 | 573 |
{$ENDIF} |
306 | 574 |
|
4 | 575 |
initialization |
351 | 576 |
cDrownSpeed.QWordValue:= 257698038;// 0.06 |
488 | 577 |
cMaxWindSpeed.QWordValue:= 2147484;// 0.0005 |
578 |
cWindSpeed.QWordValue:= 429496;// 0.0001 |
|
351 | 579 |
cGravity:= cMaxWindSpeed; |
1849 | 580 |
cDamageModifier:= _1; |
1854 | 581 |
cLaserSighting:= false; |
2017 | 582 |
cVampiric:= false; |
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2017
diff
changeset
|
583 |
cArtillery:= false; |
351 | 584 |
|
488 | 585 |
{$IFDEF DEBUGFILE} |
337 | 586 |
{$I-} |
2156 | 587 |
f:= stderr; |
2154
3d2917be12c3
Change default output to stderr since /tmp doesn't exist under windows and is useless under iphoneos, add a couple of extra parameters
nemo
parents:
2152
diff
changeset
|
588 |
rewrite(f); |
3d2917be12c3
Change default output to stderr since /tmp doesn't exist under windows and is useless under iphoneos, add a couple of extra parameters
nemo
parents:
2152
diff
changeset
|
589 |
{$IFNDEF IPHONEOS} |
3d2917be12c3
Change default output to stderr since /tmp doesn't exist under windows and is useless under iphoneos, add a couple of extra parameters
nemo
parents:
2152
diff
changeset
|
590 |
if ParamCount <> 0 then |
3d2917be12c3
Change default output to stderr since /tmp doesn't exist under windows and is useless under iphoneos, add a couple of extra parameters
nemo
parents:
2152
diff
changeset
|
591 |
for i:= 0 to 7 do |
2156 | 592 |
begin |
593 |
assign(f, ParamStr(1) + '/debug' + inttostr(i) + '.txt'); |
|
2154
3d2917be12c3
Change default output to stderr since /tmp doesn't exist under windows and is useless under iphoneos, add a couple of extra parameters
nemo
parents:
2152
diff
changeset
|
594 |
rewrite(f); |
3d2917be12c3
Change default output to stderr since /tmp doesn't exist under windows and is useless under iphoneos, add a couple of extra parameters
nemo
parents:
2152
diff
changeset
|
595 |
if IOResult = 0 then break |
337 | 596 |
end; |
2154
3d2917be12c3
Change default output to stderr since /tmp doesn't exist under windows and is useless under iphoneos, add a couple of extra parameters
nemo
parents:
2152
diff
changeset
|
597 |
{$ENDIF} |
337 | 598 |
{$I+} |
17 | 599 |
|
4 | 600 |
finalization |
916 | 601 |
//uRandom.DumpBuffer; |
2154
3d2917be12c3
Change default output to stderr since /tmp doesn't exist under windows and is useless under iphoneos, add a couple of extra parameters
nemo
parents:
2152
diff
changeset
|
602 |
|
3d2917be12c3
Change default output to stderr since /tmp doesn't exist under windows and is useless under iphoneos, add a couple of extra parameters
nemo
parents:
2152
diff
changeset
|
603 |
writeln(f, 'halt at ',GameTicks,' ticks'); |
3d2917be12c3
Change default output to stderr since /tmp doesn't exist under windows and is useless under iphoneos, add a couple of extra parameters
nemo
parents:
2152
diff
changeset
|
604 |
flush(f); |
351 | 605 |
close(f) |
2154
3d2917be12c3
Change default output to stderr since /tmp doesn't exist under windows and is useless under iphoneos, add a couple of extra parameters
nemo
parents:
2152
diff
changeset
|
606 |
|
4 | 607 |
{$ENDIF} |
608 |
||
609 |
end. |