author | unc0rr |
Tue, 22 Sep 2009 15:48:49 +0000 | |
changeset 2389 | bc3e45a4d5fb |
parent 2382 | bfd378dfc4e7 |
child 2392 | a55dbef5cf31 |
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} |
|
2250 | 25 |
GL, |
1906 | 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; |
2372 | 63 |
ZoomValue : GLfloat = 2.0; |
74 | 64 |
|
1760 | 65 |
cWaterLine : LongInt = LAND_HEIGHT; |
1054 | 66 |
cVisibleWater : LongInt = 128; |
67 |
cGearScrEdgesDist: LongInt = 240; |
|
1530 | 68 |
cCursorEdgesDist : LongInt = 100; |
1054 | 69 |
cTeamHealthWidth : LongInt = 128; |
70 |
cAltDamage : boolean = true; |
|
4 | 71 |
|
1054 | 72 |
GameTicks : LongWord = 0; |
73 |
||
74 |
cSkyColor : Longword = 0; |
|
75 |
cWhiteColor : Longword = $FFFFFFFF; |
|
76 |
cColorNearBlack : Longword = $FF000010; |
|
77 |
cExplosionBorderColor : LongWord = $808080; |
|
4 | 78 |
|
2008 | 79 |
cShowFPS : boolean = false; |
1298 | 80 |
cCaseFactor : Longword = 5; {0..9} |
1054 | 81 |
cLandAdditions: Longword = 4; |
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1861
diff
changeset
|
82 |
cFullScreen : boolean = false; |
1812 | 83 |
cReducedQuality : boolean = false; |
1054 | 84 |
cLocaleFName : shortstring = 'en.txt'; |
85 |
cSeed : shortstring = ''; |
|
2210 | 86 |
cInitVolume : LongInt = 50; |
1054 | 87 |
cVolumeDelta : LongInt = 0; |
2008 | 88 |
cTimerInterval : Longword = 8; |
1054 | 89 |
cHasFocus : boolean = true; |
1057 | 90 |
cInactDelay : Longword = 1250; |
4 | 91 |
|
1054 | 92 |
bBetweenTurns: boolean = false; |
1055
9af540b23409
Water rises after 25 mins of round, health is decreased after 20 mins
unc0rr
parents:
1054
diff
changeset
|
93 |
cHealthDecrease: LongWord = 0; |
9af540b23409
Water rises after 25 mins of round, health is decreased after 20 mins
unc0rr
parents:
1054
diff
changeset
|
94 |
bWaterRising : Boolean = false; |
4 | 95 |
|
614 | 96 |
{$WARNINGS OFF} |
1124 | 97 |
cAirPlaneSpeed: hwFloat = (isNegative: false; QWordValue: 3006477107); // 1.4 |
1054 | 98 |
cBombsSpeed : hwFloat = (isNegative: false; QWordValue: 429496729); |
614 | 99 |
{$WARNINGS ON} |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
539
diff
changeset
|
100 |
|
4 | 101 |
var |
1054 | 102 |
cSendCursorPosTime : LongWord = 50; |
2382 | 103 |
ShowCrosshair : boolean; |
1054 | 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 |
||
2272
c59656d7b1de
Add water opacity to theme - defaulting to 50% opaque on all themes but Eyes (80%) and Underwater (100%)
nemo
parents:
2271
diff
changeset
|
125 |
var cWaterOpacity: byte = $80; |
c59656d7b1de
Add water opacity to theme - defaulting to 50% opaque on all themes but Eyes (80%) and Underwater (100%)
nemo
parents:
2271
diff
changeset
|
126 |
|
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
|
127 |
var WaterColorArray: array[0..3] of HwColor4f; |
1911 | 128 |
|
371 | 129 |
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
|
130 |
function Min(a, b: LongInt): LongInt; |
371 | 131 |
function Max(a, b: LongInt): LongInt; |
351 | 132 |
procedure OutError(Msg: String; isFatalError: boolean); |
4 | 133 |
procedure TryDo(Assert: boolean; Msg: string; isFatal: boolean); |
134 |
procedure SDLTry(Assert: boolean; isFatal: boolean); |
|
316 | 135 |
function IntToStr(n: LongInt): shortstring; |
351 | 136 |
function FloatToStr(n: hwFloat): shortstring; |
775 | 137 |
function DxDy2Angle(const _dY, _dX: hwFloat): GLfloat; |
371 | 138 |
function DxDy2Angle32(const _dY, _dX: hwFloat): LongInt; |
139 |
function DxDy2AttackAngle(const _dY, _dX: hwFloat): LongInt; |
|
4 | 140 |
procedure AdjustColor(var Color: Longword); |
141 |
{$IFDEF DEBUGFILE} |
|
142 |
procedure AddFileLog(s: shortstring); |
|
24 | 143 |
function RectToStr(Rect: TSDL_Rect): shortstring; |
4 | 144 |
{$ENDIF} |
208 | 145 |
procedure SetKB(n: Longword); |
146 |
procedure SendKB; |
|
351 | 147 |
procedure SetLittle(var r: hwFloat); |
306 | 148 |
procedure SendStat(sit: TStatInfoType; s: shortstring); |
753 | 149 |
function Str2PChar(const s: shortstring): PChar; |
1180
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
150 |
function NewTexture(width, height: Longword; buf: Pointer): PTexture; |
2290
bf87ca44782e
Selectively enable clamping - seeing if this helps avoid weird flake problems while still fixing vertical lines in waves and sky
nemo
parents:
2279
diff
changeset
|
151 |
function Surface2Tex(surf: PSDL_Surface; enableClamp: boolean): PTexture; |
759 | 152 |
procedure FreeTexture(tex: PTexture); |
945
4ead9cde4e14
- Start chat implementation: chat strings are on the screen
unc0rr
parents:
916
diff
changeset
|
153 |
function toPowerOf2(i: Longword): Longword; |
949 | 154 |
function DecodeBase64(s: shortstring): shortstring; |
2163
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
155 |
{$IFNDEF IPHONEOS} |
1080 | 156 |
procedure MakeScreenshot(s: shortstring); |
2163
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
157 |
{$ENDIF} |
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
158 |
|
1861 | 159 |
function modifyDamage(dmg: Longword): Longword; |
4 | 160 |
|
161 |
var CursorPoint: TPoint; |
|
162 |
TargetPoint: TPoint = (X: NoPointX; Y: 0); |
|
163 |
||
164 |
implementation |
|
2327 | 165 |
uses uConsole, uStore, uIO, Math, uRandom, uSound; |
208 | 166 |
var KBnum: Longword = 0; |
4 | 167 |
{$IFDEF DEBUGFILE} |
168 |
var f: textfile; |
|
169 |
{$ENDIF} |
|
170 |
||
371 | 171 |
function hwSign(r: hwFloat): LongInt; |
4 | 172 |
begin |
2389 | 173 |
// yes, we have negative zero for a reason |
174 |
if r.isNegative then hwSign:= -1 else hwSign:= 1 |
|
4 | 175 |
end; |
176 |
||
371 | 177 |
function Min(a, b: LongInt): LongInt; |
4 | 178 |
begin |
351 | 179 |
if a < b then Min:= a else Min:= b |
4 | 180 |
end; |
181 |
||
371 | 182 |
function Max(a, b: LongInt): LongInt; |
4 | 183 |
begin |
351 | 184 |
if a > b then Max:= a else Max:= b |
4 | 185 |
end; |
186 |
||
351 | 187 |
procedure OutError(Msg: String; isFatalError: boolean); |
4 | 188 |
begin |
189 |
{$IFDEF DEBUGFILE}AddFileLog(Msg);{$ENDIF} |
|
53 | 190 |
WriteLnToConsole(Msg); |
4 | 191 |
if isFatalError then |
192 |
begin |
|
53 | 193 |
SendIPC('E' + GetLastConsoleLine); |
4 | 194 |
SDL_Quit; |
195 |
halt(1) |
|
53 | 196 |
end |
4 | 197 |
end; |
198 |
||
199 |
procedure TryDo(Assert: boolean; Msg: string; isFatal: boolean); |
|
200 |
begin |
|
70 | 201 |
if not Assert then OutError(Msg, isFatal) |
4 | 202 |
end; |
203 |
||
204 |
procedure SDLTry(Assert: boolean; isFatal: boolean); |
|
205 |
begin |
|
206 |
if not Assert then OutError(SDL_GetError, isFatal) |
|
207 |
end; |
|
208 |
||
188 | 209 |
procedure AdjustColor(var Color: Longword); |
4 | 210 |
begin |
211 |
Color:= SDL_MapRGB(PixelFormat, (Color shr 16) and $FF, (Color shr 8) and $FF, Color and $FF) |
|
212 |
end; |
|
213 |
||
316 | 214 |
function IntToStr(n: LongInt): shortstring; |
4 | 215 |
begin |
351 | 216 |
str(n, IntToStr) |
4 | 217 |
end; |
218 |
||
351 | 219 |
function FloatToStr(n: hwFloat): shortstring; |
4 | 220 |
begin |
1346 | 221 |
FloatToStr:= cstr(n) + '_' + inttostr(Lo(n.QWordValue)) |
4 | 222 |
end; |
223 |
||
775 | 224 |
function DxDy2Angle(const _dY, _dX: hwFloat): GLfloat; |
225 |
var dY, dX: Extended; |
|
226 |
begin |
|
227 |
dY:= _dY.QWordValue / $100000000; |
|
228 |
if _dY.isNegative then dY:= - dY; |
|
229 |
dX:= _dX.QWordValue / $100000000; |
|
230 |
if _dX.isNegative then dX:= - dX; |
|
231 |
DxDy2Angle:= arctan2(dY, dX) * 180 / pi |
|
232 |
end; |
|
233 |
||
371 | 234 |
function DxDy2Angle32(const _dY, _dX: hwFloat): LongInt; |
100 | 235 |
const _16divPI: Extended = 16/pi; |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
236 |
var dY, dX: Extended; |
100 | 237 |
begin |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
238 |
dY:= _dY.QWordValue / $100000000; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
239 |
if _dY.isNegative then dY:= - dY; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
240 |
dX:= _dX.QWordValue / $100000000; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
241 |
if _dX.isNegative then dX:= - dX; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
242 |
DxDy2Angle32:= trunc(arctan2(dY, dX) * _16divPI) and $1f |
4 | 243 |
end; |
244 |
||
371 | 245 |
function DxDy2AttackAngle(const _dY, _dX: hwFloat): LongInt; |
100 | 246 |
const MaxAngleDivPI: Extended = cMaxAngle/pi; |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
247 |
var dY, dX: Extended; |
100 | 248 |
begin |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
249 |
dY:= _dY.QWordValue / $100000000; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
250 |
if _dY.isNegative then dY:= - dY; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
251 |
dX:= _dX.QWordValue / $100000000; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
252 |
if _dX.isNegative then dX:= - dX; |
438 | 253 |
DxDy2AttackAngle:= trunc(arctan2(dY, dX) * MaxAngleDivPI) |
100 | 254 |
end; |
4 | 255 |
|
208 | 256 |
procedure SetKB(n: Longword); |
257 |
begin |
|
258 |
KBnum:= n |
|
259 |
end; |
|
260 |
||
261 |
procedure SendKB; |
|
262 |
var s: shortstring; |
|
263 |
begin |
|
264 |
if KBnum <> 0 then |
|
265 |
begin |
|
266 |
s:= 'K' + inttostr(KBnum); |
|
267 |
SendIPCRaw(@s, Length(s) + 1) |
|
268 |
end |
|
269 |
end; |
|
270 |
||
351 | 271 |
procedure SetLittle(var r: hwFloat); |
300 | 272 |
begin |
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
543
diff
changeset
|
273 |
r:= SignAs(cLittle, r) |
300 | 274 |
end; |
275 |
||
337 | 276 |
procedure SendStat(sit: TStatInfoType; s: shortstring); |
1625 | 277 |
const stc: array [TStatInfoType] of char = 'rDkKH'; |
2382 | 278 |
var buf: shortstring; |
337 | 279 |
begin |
2382 | 280 |
buf:= 'i' + stc[sit] + s; |
281 |
SendIPCRaw(@buf[0], length(buf) + 1) |
|
337 | 282 |
end; |
283 |
||
534 | 284 |
function Str2PChar(const s: shortstring): PChar; |
351 | 285 |
const CharArray: array[byte] of Char = ''; |
286 |
begin |
|
287 |
CharArray:= s; |
|
288 |
CharArray[Length(s)]:= #0; |
|
289 |
Str2PChar:= @CharArray |
|
290 |
end; |
|
291 |
||
771 | 292 |
function isPowerOf2(i: Longword): boolean; |
293 |
begin |
|
294 |
if i = 0 then exit(true); |
|
295 |
while (i and 1) = 0 do i:= i shr 1; |
|
296 |
isPowerOf2:= (i = 1) |
|
297 |
end; |
|
298 |
||
299 |
function toPowerOf2(i: Longword): Longword; |
|
300 |
begin |
|
301 |
toPowerOf2:= 1; |
|
302 |
while (toPowerOf2 < i) do toPowerOf2:= toPowerOf2 shl 1 |
|
303 |
end; |
|
304 |
||
1912
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
305 |
procedure ResetVertexArrays(texture: PTexture); |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
306 |
begin |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
307 |
with texture^ do |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
308 |
begin |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
309 |
vb[0].X:= 0; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
310 |
vb[0].Y:= 0; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
311 |
vb[1].X:= w; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
312 |
vb[1].Y:= 0; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
313 |
vb[2].X:= w; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
314 |
vb[2].Y:= h; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
315 |
vb[3].X:= 0; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
316 |
vb[3].Y:= h; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
317 |
|
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
318 |
tb[0].X:= 0; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
319 |
tb[0].Y:= 0; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
320 |
tb[1].X:= rx; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
321 |
tb[1].Y:= 0; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
322 |
tb[2].X:= rx; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
323 |
tb[2].Y:= ry; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
324 |
tb[3].X:= 0; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
325 |
tb[3].Y:= ry |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
326 |
end; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
327 |
end; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
328 |
|
1180
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
329 |
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
|
330 |
begin |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
331 |
new(NewTexture); |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
332 |
NewTexture^.w:= width; |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
333 |
NewTexture^.h:= height; |
1896 | 334 |
NewTexture^.rx:= 1.0; |
335 |
NewTexture^.ry:= 1.0; |
|
1180
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
336 |
|
1912
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
337 |
ResetVertexArrays(NewTexture); |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
338 |
|
1180
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
339 |
glGenTextures(1, @NewTexture^.id); |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
340 |
|
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
341 |
glBindTexture(GL_TEXTURE_2D, NewTexture^.id); |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
342 |
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, buf); |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
343 |
|
2271
ca0754f0f42b
flagging for "reduced quality". Clamping cuts frame rate in half in software rendering on my sucky laptop
nemo
parents:
2256
diff
changeset
|
344 |
if not cReducedQuality then |
ca0754f0f42b
flagging for "reduced quality". Clamping cuts frame rate in half in software rendering on my sucky laptop
nemo
parents:
2256
diff
changeset
|
345 |
begin |
ca0754f0f42b
flagging for "reduced quality". Clamping cuts frame rate in half in software rendering on my sucky laptop
nemo
parents:
2256
diff
changeset
|
346 |
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE); |
ca0754f0f42b
flagging for "reduced quality". Clamping cuts frame rate in half in software rendering on my sucky laptop
nemo
parents:
2256
diff
changeset
|
347 |
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE) |
ca0754f0f42b
flagging for "reduced quality". Clamping cuts frame rate in half in software rendering on my sucky laptop
nemo
parents:
2256
diff
changeset
|
348 |
end; |
1180
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
349 |
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
|
350 |
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
|
351 |
end; |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
352 |
|
2290
bf87ca44782e
Selectively enable clamping - seeing if this helps avoid weird flake problems while still fixing vertical lines in waves and sky
nemo
parents:
2279
diff
changeset
|
353 |
function Surface2Tex(surf: PSDL_Surface; enableClamp: boolean): PTexture; |
2163
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
354 |
var modeIntFormat: LongInt; |
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
355 |
modeFormat: LongInt; |
1896 | 356 |
tw, th, x, y: Longword; |
357 |
tmpp: pointer; |
|
358 |
fromP4, toP4: PLongWordArray; |
|
359 |
fromP1, toP1: PByteArray; |
|
753 | 360 |
begin |
755 | 361 |
new(Surface2Tex); |
362 |
Surface2Tex^.w:= surf^.w; |
|
363 |
Surface2Tex^.h:= surf^.h; |
|
364 |
||
2376 | 365 |
if (surf^.format^.BytesPerPixel = 3) then |
2163
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
366 |
begin |
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
367 |
modeIntFormat:= GL_RGB; |
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
|
368 |
modeFormat:= modeIntFormat; |
2163
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; |
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
|
374 |
modeFormat:= modeIntFormat; |
2163
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
375 |
end |
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
376 |
else |
753 | 377 |
begin |
869 | 378 |
TryDo(false, 'Surface2Tex: BytesPerPixel not in [3, 4]', true); |
755 | 379 |
Surface2Tex^.id:= 0; |
753 | 380 |
exit |
381 |
end; |
|
382 |
||
755 | 383 |
glGenTextures(1, @Surface2Tex^.id); |
753 | 384 |
|
755 | 385 |
glBindTexture(GL_TEXTURE_2D, Surface2Tex^.id); |
753 | 386 |
|
771 | 387 |
if SDL_MustLock(surf) then |
388 |
SDLTry(SDL_LockSurface(surf) >= 0, true); |
|
389 |
||
390 |
if not (isPowerOf2(Surf^.w) and isPowerOf2(Surf^.h)) then |
|
1896 | 391 |
begin |
392 |
tw:= toPowerOf2(Surf^.w); |
|
393 |
th:= toPowerOf2(Surf^.h); |
|
394 |
||
395 |
Surface2Tex^.rx:= Surf^.w / tw; |
|
396 |
Surface2Tex^.ry:= Surf^.h / th; |
|
2376 | 397 |
|
1896 | 398 |
GetMem(tmpp, tw * th * surf^.format^.BytesPerPixel); |
399 |
||
400 |
if surf^.format^.BytesPerPixel = 4 then |
|
401 |
begin |
|
402 |
fromP4:= Surf^.pixels; |
|
403 |
toP4:= tmpp; |
|
771 | 404 |
|
1896 | 405 |
for y:= 0 to Pred(Surf^.h) do |
406 |
begin |
|
407 |
for x:= 0 to Pred(Surf^.w) do |
|
408 |
toP4^[x]:= fromP4^[x]; |
|
409 |
for x:= Surf^.w to Pred(tw) do |
|
410 |
toP4^[x]:= 0; |
|
411 |
toP4:= @(toP4^[tw]); |
|
2017 | 412 |
fromP4:= @(fromP4^[Surf^.pitch div 4]); |
1896 | 413 |
end; |
414 |
||
415 |
for y:= Surf^.h to Pred(th) do |
|
416 |
begin |
|
417 |
for x:= 0 to Pred(tw) do |
|
418 |
toP4^[x]:= 0; |
|
419 |
toP4:= @(toP4^[tw]); |
|
420 |
end; |
|
421 |
end |
|
422 |
else |
|
423 |
begin |
|
424 |
fromP1:= Surf^.pixels; |
|
425 |
toP1:= tmpp; |
|
771 | 426 |
|
1896 | 427 |
for y:= 0 to Pred(Surf^.h) do |
428 |
begin |
|
429 |
for x:= 0 to Pred(Surf^.w) do |
|
430 |
begin |
|
431 |
toP1^[x * 3]:= fromP1^[x * 3]; |
|
432 |
toP1^[x * 3 + 1]:= fromP1^[x * 3 + 1]; |
|
433 |
toP1^[x * 3 + 2]:= fromP1^[x * 3 + 2]; |
|
434 |
end; |
|
435 |
for x:= Surf^.w to Pred(tw) do |
|
436 |
begin |
|
437 |
toP1^[x * 3]:= 0; |
|
438 |
toP1^[x * 3 + 1]:= 0; |
|
439 |
toP1^[x * 3 + 2]:= 0; |
|
440 |
end; |
|
441 |
toP1:= @(toP1^[tw * 3]); |
|
442 |
fromP1:= @(fromP1^[Surf^.pitch]); |
|
443 |
end; |
|
771 | 444 |
|
1896 | 445 |
for y:= Surf^.h to Pred(th) do |
446 |
begin |
|
447 |
for x:= 0 to Pred(tw) do |
|
448 |
begin |
|
449 |
toP1^[x * 3]:= 0; |
|
450 |
toP1^[x * 3 + 1]:= 0; |
|
451 |
toP1^[x * 3 + 2]:= 0; |
|
452 |
end; |
|
453 |
toP1:= @(toP1^[tw * 3]); |
|
454 |
end; |
|
455 |
end; |
|
771 | 456 |
|
2163
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
457 |
// legacy resizing function |
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
458 |
// gluScaleImage(mode, Surf^.w, Surf^.h, GL_UNSIGNED_BYTE, Surf^.pixels, tw, th, GL_UNSIGNED_BYTE, tmpp); |
2376 | 459 |
|
2163
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
460 |
glTexImage2D(GL_TEXTURE_2D, 0, modeIntFormat, tw, th, 0, modeFormat, GL_UNSIGNED_BYTE, tmpp); |
2376 | 461 |
|
1896 | 462 |
FreeMem(tmpp, tw * th * surf^.format^.BytesPerPixel) |
463 |
end else |
|
464 |
begin |
|
465 |
Surface2Tex^.rx:= 1.0; |
|
466 |
Surface2Tex^.ry:= 1.0; |
|
2163
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
467 |
glTexImage2D(GL_TEXTURE_2D, 0, modeIntFormat, surf^.w, surf^.h, 0, modeFormat, GL_UNSIGNED_BYTE, surf^.pixels); |
1896 | 468 |
end; |
753 | 469 |
|
1912
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
470 |
ResetVertexArrays(Surface2Tex); |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
471 |
|
754 | 472 |
if SDL_MustLock(surf) then |
1912
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
473 |
SDL_UnlockSurface(surf); |
754 | 474 |
|
2290
bf87ca44782e
Selectively enable clamping - seeing if this helps avoid weird flake problems while still fixing vertical lines in waves and sky
nemo
parents:
2279
diff
changeset
|
475 |
if enableClamp and not cReducedQuality then |
bf87ca44782e
Selectively enable clamping - seeing if this helps avoid weird flake problems while still fixing vertical lines in waves and sky
nemo
parents:
2279
diff
changeset
|
476 |
begin |
bf87ca44782e
Selectively enable clamping - seeing if this helps avoid weird flake problems while still fixing vertical lines in waves and sky
nemo
parents:
2279
diff
changeset
|
477 |
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE); |
bf87ca44782e
Selectively enable clamping - seeing if this helps avoid weird flake problems while still fixing vertical lines in waves and sky
nemo
parents:
2279
diff
changeset
|
478 |
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE) |
bf87ca44782e
Selectively enable clamping - seeing if this helps avoid weird flake problems while still fixing vertical lines in waves and sky
nemo
parents:
2279
diff
changeset
|
479 |
end; |
788
00720357601f
- Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents:
785
diff
changeset
|
480 |
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
|
481 |
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR) |
753 | 482 |
end; |
483 |
||
759 | 484 |
procedure FreeTexture(tex: PTexture); |
485 |
begin |
|
2000
f9f47e681aad
Don't crash engine after round in reduced quality mode
unc0rr
parents:
1916
diff
changeset
|
486 |
if tex <> nil then |
f9f47e681aad
Don't crash engine after round in reduced quality mode
unc0rr
parents:
1916
diff
changeset
|
487 |
begin |
f9f47e681aad
Don't crash engine after round in reduced quality mode
unc0rr
parents:
1916
diff
changeset
|
488 |
glDeleteTextures(1, @tex^.id); |
f9f47e681aad
Don't crash engine after round in reduced quality mode
unc0rr
parents:
1916
diff
changeset
|
489 |
dispose(tex) |
f9f47e681aad
Don't crash engine after round in reduced quality mode
unc0rr
parents:
1916
diff
changeset
|
490 |
end |
759 | 491 |
end; |
337 | 492 |
|
949 | 493 |
function DecodeBase64(s: shortstring): shortstring; |
494 |
const table = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; |
|
495 |
var i, t, c: Longword; |
|
496 |
begin |
|
497 |
c:= 0; |
|
498 |
for i:= 1 to Length(s) do |
|
499 |
begin |
|
500 |
t:= Pos(s[i], table); |
|
501 |
if s[i] = '=' then inc(c); |
|
502 |
if t > 0 then byte(s[i]):= t - 1 else byte(s[i]):= 0 |
|
503 |
end; |
|
504 |
||
505 |
i:= 1; |
|
506 |
t:= 1; |
|
507 |
while i <= length(s) do |
|
508 |
begin |
|
509 |
DecodeBase64[t ]:= char((byte(s[i ]) shl 2) or (byte(s[i + 1]) shr 4)); |
|
510 |
DecodeBase64[t + 1]:= char((byte(s[i + 1]) shl 4) or (byte(s[i + 2]) shr 2)); |
|
511 |
DecodeBase64[t + 2]:= char((byte(s[i + 2]) shl 6) or (byte(s[i + 3]) )); |
|
512 |
inc(t, 3); |
|
513 |
inc(i, 4) |
|
514 |
end; |
|
515 |
||
516 |
if c < 3 then t:= t - c; |
|
517 |
||
518 |
byte(DecodeBase64[0]):= t - 1 |
|
519 |
end; |
|
520 |
||
2163
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
521 |
{$IFNDEF IPHONEOS} |
1080 | 522 |
procedure MakeScreenshot(s: shortstring); |
523 |
const head: array[0..8] of Word = (0, 2, 0, 0, 0, 0, 0, 0, 24); |
|
524 |
var p: Pointer; |
|
525 |
size: Longword; |
|
526 |
f: file; |
|
527 |
begin |
|
2327 | 528 |
playSound(sndShutter, false, nil); |
1080 | 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 |
||
2242 | 572 |
{$IFNDEF IPHONEOS} |
371 | 573 |
var i: LongInt; |
488 | 574 |
{$ENDIF} |
2242 | 575 |
{$ENDIF} |
306 | 576 |
|
4 | 577 |
initialization |
351 | 578 |
cDrownSpeed.QWordValue:= 257698038;// 0.06 |
488 | 579 |
cMaxWindSpeed.QWordValue:= 2147484;// 0.0005 |
580 |
cWindSpeed.QWordValue:= 429496;// 0.0001 |
|
351 | 581 |
cGravity:= cMaxWindSpeed; |
1849 | 582 |
cDamageModifier:= _1; |
1854 | 583 |
cLaserSighting:= false; |
2017 | 584 |
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
|
585 |
cArtillery:= false; |
351 | 586 |
|
488 | 587 |
{$IFDEF DEBUGFILE} |
337 | 588 |
{$I-} |
2156 | 589 |
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
|
590 |
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
|
591 |
{$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
|
592 |
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
|
593 |
for i:= 0 to 7 do |
2156 | 594 |
begin |
595 |
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
|
596 |
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
|
597 |
if IOResult = 0 then break |
337 | 598 |
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
|
599 |
{$ENDIF} |
337 | 600 |
{$I+} |
17 | 601 |
|
4 | 602 |
finalization |
916 | 603 |
//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
|
604 |
|
2242 | 605 |
writeln(f, 'halt at ', GameTicks, ' ticks'); |
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 |
flush(f); |
351 | 607 |
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
|
608 |
|
4 | 609 |
{$ENDIF} |
610 |
||
611 |
end. |