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