author | unc0rr |
Mon, 12 Oct 2009 16:44:30 +0000 | |
changeset 2428 | 6800f8aa0184 |
parent 2392 | a55dbef5cf31 |
child 2447 | 08d623a494e6 |
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 |
||
775 | 250 |
function DxDy2Angle(const _dY, _dX: hwFloat): GLfloat; |
251 |
var dY, dX: Extended; |
|
252 |
begin |
|
253 |
dY:= _dY.QWordValue / $100000000; |
|
254 |
if _dY.isNegative then dY:= - dY; |
|
255 |
dX:= _dX.QWordValue / $100000000; |
|
256 |
if _dX.isNegative then dX:= - dX; |
|
257 |
DxDy2Angle:= arctan2(dY, dX) * 180 / pi |
|
258 |
end; |
|
259 |
||
371 | 260 |
function DxDy2Angle32(const _dY, _dX: hwFloat): LongInt; |
100 | 261 |
const _16divPI: Extended = 16/pi; |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
262 |
var dY, dX: Extended; |
100 | 263 |
begin |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
264 |
dY:= _dY.QWordValue / $100000000; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
265 |
if _dY.isNegative then dY:= - dY; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
266 |
dX:= _dX.QWordValue / $100000000; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
267 |
if _dX.isNegative then dX:= - dX; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
268 |
DxDy2Angle32:= trunc(arctan2(dY, dX) * _16divPI) and $1f |
4 | 269 |
end; |
270 |
||
371 | 271 |
function DxDy2AttackAngle(const _dY, _dX: hwFloat): LongInt; |
100 | 272 |
const MaxAngleDivPI: Extended = cMaxAngle/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; |
438 | 279 |
DxDy2AttackAngle:= trunc(arctan2(dY, dX) * MaxAngleDivPI) |
100 | 280 |
end; |
4 | 281 |
|
208 | 282 |
procedure SetKB(n: Longword); |
283 |
begin |
|
284 |
KBnum:= n |
|
285 |
end; |
|
286 |
||
287 |
procedure SendKB; |
|
288 |
var s: shortstring; |
|
289 |
begin |
|
290 |
if KBnum <> 0 then |
|
291 |
begin |
|
292 |
s:= 'K' + inttostr(KBnum); |
|
293 |
SendIPCRaw(@s, Length(s) + 1) |
|
294 |
end |
|
295 |
end; |
|
296 |
||
351 | 297 |
procedure SetLittle(var r: hwFloat); |
300 | 298 |
begin |
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
543
diff
changeset
|
299 |
r:= SignAs(cLittle, r) |
300 | 300 |
end; |
301 |
||
337 | 302 |
procedure SendStat(sit: TStatInfoType; s: shortstring); |
1625 | 303 |
const stc: array [TStatInfoType] of char = 'rDkKH'; |
2382 | 304 |
var buf: shortstring; |
337 | 305 |
begin |
2382 | 306 |
buf:= 'i' + stc[sit] + s; |
307 |
SendIPCRaw(@buf[0], length(buf) + 1) |
|
337 | 308 |
end; |
309 |
||
534 | 310 |
function Str2PChar(const s: shortstring): PChar; |
351 | 311 |
const CharArray: array[byte] of Char = ''; |
312 |
begin |
|
313 |
CharArray:= s; |
|
314 |
CharArray[Length(s)]:= #0; |
|
315 |
Str2PChar:= @CharArray |
|
316 |
end; |
|
317 |
||
771 | 318 |
function isPowerOf2(i: Longword): boolean; |
319 |
begin |
|
320 |
if i = 0 then exit(true); |
|
321 |
while (i and 1) = 0 do i:= i shr 1; |
|
322 |
isPowerOf2:= (i = 1) |
|
323 |
end; |
|
324 |
||
325 |
function toPowerOf2(i: Longword): Longword; |
|
326 |
begin |
|
327 |
toPowerOf2:= 1; |
|
328 |
while (toPowerOf2 < i) do toPowerOf2:= toPowerOf2 shl 1 |
|
329 |
end; |
|
330 |
||
1912
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
331 |
procedure ResetVertexArrays(texture: PTexture); |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
332 |
begin |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
333 |
with texture^ do |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
334 |
begin |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
335 |
vb[0].X:= 0; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
336 |
vb[0].Y:= 0; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
337 |
vb[1].X:= w; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
338 |
vb[1].Y:= 0; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
339 |
vb[2].X:= w; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
340 |
vb[2].Y:= h; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
341 |
vb[3].X:= 0; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
342 |
vb[3].Y:= h; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
343 |
|
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
344 |
tb[0].X:= 0; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
345 |
tb[0].Y:= 0; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
346 |
tb[1].X:= rx; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
347 |
tb[1].Y:= 0; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
348 |
tb[2].X:= rx; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
349 |
tb[2].Y:= ry; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
350 |
tb[3].X:= 0; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
351 |
tb[3].Y:= ry |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
352 |
end; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
353 |
end; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
354 |
|
1180
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
355 |
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
|
356 |
begin |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
357 |
new(NewTexture); |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
358 |
NewTexture^.w:= width; |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
359 |
NewTexture^.h:= height; |
1896 | 360 |
NewTexture^.rx:= 1.0; |
361 |
NewTexture^.ry:= 1.0; |
|
1180
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
362 |
|
1912
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
363 |
ResetVertexArrays(NewTexture); |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
364 |
|
1180
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
365 |
glGenTextures(1, @NewTexture^.id); |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
366 |
|
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
367 |
glBindTexture(GL_TEXTURE_2D, NewTexture^.id); |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
368 |
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
|
369 |
|
2271
ca0754f0f42b
flagging for "reduced quality". Clamping cuts frame rate in half in software rendering on my sucky laptop
nemo
parents:
2256
diff
changeset
|
370 |
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
|
371 |
begin |
ca0754f0f42b
flagging for "reduced quality". Clamping cuts frame rate in half in software rendering on my sucky laptop
nemo
parents:
2256
diff
changeset
|
372 |
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
|
373 |
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
|
374 |
end; |
1180
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
375 |
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
|
376 |
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
|
377 |
end; |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
378 |
|
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
|
379 |
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
|
380 |
var modeIntFormat: LongInt; |
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
381 |
modeFormat: LongInt; |
1896 | 382 |
tw, th, x, y: Longword; |
383 |
tmpp: pointer; |
|
384 |
fromP4, toP4: PLongWordArray; |
|
385 |
fromP1, toP1: PByteArray; |
|
753 | 386 |
begin |
755 | 387 |
new(Surface2Tex); |
388 |
Surface2Tex^.w:= surf^.w; |
|
389 |
Surface2Tex^.h:= surf^.h; |
|
390 |
||
2376 | 391 |
if (surf^.format^.BytesPerPixel = 3) then |
2163
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
392 |
begin |
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
393 |
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
|
394 |
modeFormat:= modeIntFormat; |
2163
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
395 |
end |
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
396 |
else |
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
397 |
if (surf^.format^.BytesPerPixel = 4) then |
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
398 |
begin |
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
399 |
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
|
400 |
modeFormat:= modeIntFormat; |
2163
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
401 |
end |
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
402 |
else |
753 | 403 |
begin |
869 | 404 |
TryDo(false, 'Surface2Tex: BytesPerPixel not in [3, 4]', true); |
755 | 405 |
Surface2Tex^.id:= 0; |
753 | 406 |
exit |
407 |
end; |
|
408 |
||
755 | 409 |
glGenTextures(1, @Surface2Tex^.id); |
753 | 410 |
|
755 | 411 |
glBindTexture(GL_TEXTURE_2D, Surface2Tex^.id); |
753 | 412 |
|
771 | 413 |
if SDL_MustLock(surf) then |
414 |
SDLTry(SDL_LockSurface(surf) >= 0, true); |
|
415 |
||
2428 | 416 |
if (not SupportNPOTT) and (not (isPowerOf2(Surf^.w) and isPowerOf2(Surf^.h))) then |
1896 | 417 |
begin |
418 |
tw:= toPowerOf2(Surf^.w); |
|
419 |
th:= toPowerOf2(Surf^.h); |
|
420 |
||
421 |
Surface2Tex^.rx:= Surf^.w / tw; |
|
422 |
Surface2Tex^.ry:= Surf^.h / th; |
|
2376 | 423 |
|
1896 | 424 |
GetMem(tmpp, tw * th * surf^.format^.BytesPerPixel); |
425 |
||
426 |
if surf^.format^.BytesPerPixel = 4 then |
|
427 |
begin |
|
428 |
fromP4:= Surf^.pixels; |
|
429 |
toP4:= 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 |
toP4^[x]:= fromP4^[x]; |
|
435 |
for x:= Surf^.w to Pred(tw) do |
|
436 |
toP4^[x]:= 0; |
|
437 |
toP4:= @(toP4^[tw]); |
|
2017 | 438 |
fromP4:= @(fromP4^[Surf^.pitch div 4]); |
1896 | 439 |
end; |
440 |
||
441 |
for y:= Surf^.h to Pred(th) do |
|
442 |
begin |
|
443 |
for x:= 0 to Pred(tw) do |
|
444 |
toP4^[x]:= 0; |
|
445 |
toP4:= @(toP4^[tw]); |
|
446 |
end; |
|
447 |
end |
|
448 |
else |
|
449 |
begin |
|
450 |
fromP1:= Surf^.pixels; |
|
451 |
toP1:= tmpp; |
|
771 | 452 |
|
1896 | 453 |
for y:= 0 to Pred(Surf^.h) do |
454 |
begin |
|
455 |
for x:= 0 to Pred(Surf^.w) do |
|
456 |
begin |
|
457 |
toP1^[x * 3]:= fromP1^[x * 3]; |
|
458 |
toP1^[x * 3 + 1]:= fromP1^[x * 3 + 1]; |
|
459 |
toP1^[x * 3 + 2]:= fromP1^[x * 3 + 2]; |
|
460 |
end; |
|
461 |
for x:= Surf^.w to Pred(tw) do |
|
462 |
begin |
|
463 |
toP1^[x * 3]:= 0; |
|
464 |
toP1^[x * 3 + 1]:= 0; |
|
465 |
toP1^[x * 3 + 2]:= 0; |
|
466 |
end; |
|
467 |
toP1:= @(toP1^[tw * 3]); |
|
468 |
fromP1:= @(fromP1^[Surf^.pitch]); |
|
469 |
end; |
|
771 | 470 |
|
1896 | 471 |
for y:= Surf^.h to Pred(th) do |
472 |
begin |
|
473 |
for x:= 0 to Pred(tw) do |
|
474 |
begin |
|
475 |
toP1^[x * 3]:= 0; |
|
476 |
toP1^[x * 3 + 1]:= 0; |
|
477 |
toP1^[x * 3 + 2]:= 0; |
|
478 |
end; |
|
479 |
toP1:= @(toP1^[tw * 3]); |
|
480 |
end; |
|
481 |
end; |
|
771 | 482 |
|
2163
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
483 |
// legacy resizing function |
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
484 |
// gluScaleImage(mode, Surf^.w, Surf^.h, GL_UNSIGNED_BYTE, Surf^.pixels, tw, th, GL_UNSIGNED_BYTE, tmpp); |
2376 | 485 |
|
2163
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
486 |
glTexImage2D(GL_TEXTURE_2D, 0, modeIntFormat, tw, th, 0, modeFormat, GL_UNSIGNED_BYTE, tmpp); |
2376 | 487 |
|
1896 | 488 |
FreeMem(tmpp, tw * th * surf^.format^.BytesPerPixel) |
489 |
end else |
|
490 |
begin |
|
491 |
Surface2Tex^.rx:= 1.0; |
|
492 |
Surface2Tex^.ry:= 1.0; |
|
2163
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
493 |
glTexImage2D(GL_TEXTURE_2D, 0, modeIntFormat, surf^.w, surf^.h, 0, modeFormat, GL_UNSIGNED_BYTE, surf^.pixels); |
1896 | 494 |
end; |
753 | 495 |
|
1912
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
496 |
ResetVertexArrays(Surface2Tex); |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
497 |
|
754 | 498 |
if SDL_MustLock(surf) then |
1912
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
499 |
SDL_UnlockSurface(surf); |
754 | 500 |
|
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
|
501 |
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
|
502 |
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
|
503 |
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
|
504 |
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
|
505 |
end; |
788
00720357601f
- Get rid of PageSimpleGame, now pressing 'quick game' just starts round
unc0rr
parents:
785
diff
changeset
|
506 |
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
|
507 |
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR) |
753 | 508 |
end; |
509 |
||
759 | 510 |
procedure FreeTexture(tex: PTexture); |
511 |
begin |
|
2000
f9f47e681aad
Don't crash engine after round in reduced quality mode
unc0rr
parents:
1916
diff
changeset
|
512 |
if tex <> nil then |
f9f47e681aad
Don't crash engine after round in reduced quality mode
unc0rr
parents:
1916
diff
changeset
|
513 |
begin |
f9f47e681aad
Don't crash engine after round in reduced quality mode
unc0rr
parents:
1916
diff
changeset
|
514 |
glDeleteTextures(1, @tex^.id); |
f9f47e681aad
Don't crash engine after round in reduced quality mode
unc0rr
parents:
1916
diff
changeset
|
515 |
dispose(tex) |
f9f47e681aad
Don't crash engine after round in reduced quality mode
unc0rr
parents:
1916
diff
changeset
|
516 |
end |
759 | 517 |
end; |
337 | 518 |
|
949 | 519 |
function DecodeBase64(s: shortstring): shortstring; |
520 |
const table = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; |
|
521 |
var i, t, c: Longword; |
|
522 |
begin |
|
523 |
c:= 0; |
|
524 |
for i:= 1 to Length(s) do |
|
525 |
begin |
|
526 |
t:= Pos(s[i], table); |
|
527 |
if s[i] = '=' then inc(c); |
|
528 |
if t > 0 then byte(s[i]):= t - 1 else byte(s[i]):= 0 |
|
529 |
end; |
|
530 |
||
531 |
i:= 1; |
|
532 |
t:= 1; |
|
533 |
while i <= length(s) do |
|
534 |
begin |
|
535 |
DecodeBase64[t ]:= char((byte(s[i ]) shl 2) or (byte(s[i + 1]) shr 4)); |
|
536 |
DecodeBase64[t + 1]:= char((byte(s[i + 1]) shl 4) or (byte(s[i + 2]) shr 2)); |
|
537 |
DecodeBase64[t + 2]:= char((byte(s[i + 2]) shl 6) or (byte(s[i + 3]) )); |
|
538 |
inc(t, 3); |
|
539 |
inc(i, 4) |
|
540 |
end; |
|
541 |
||
542 |
if c < 3 then t:= t - c; |
|
543 |
||
544 |
byte(DecodeBase64[0]):= t - 1 |
|
545 |
end; |
|
546 |
||
2163
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
547 |
{$IFNDEF IPHONEOS} |
1080 | 548 |
procedure MakeScreenshot(s: shortstring); |
549 |
const head: array[0..8] of Word = (0, 2, 0, 0, 0, 0, 0, 0, 24); |
|
550 |
var p: Pointer; |
|
551 |
size: Longword; |
|
552 |
f: file; |
|
553 |
begin |
|
2327 | 554 |
playSound(sndShutter, false, nil); |
1080 | 555 |
head[6]:= cScreenWidth; |
556 |
head[7]:= cScreenHeight; |
|
557 |
||
558 |
size:= cScreenWidth * cScreenHeight * 3; |
|
559 |
p:= GetMem(size); |
|
560 |
||
2163
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
561 |
|
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
562 |
//remember that opengles operates on a single surface, so GL_FRONT *should* be implied |
1080 | 563 |
glReadBuffer(GL_FRONT); |
564 |
glReadPixels(0, 0, cScreenWidth, cScreenHeight, GL_BGR, GL_UNSIGNED_BYTE, p); |
|
565 |
||
566 |
{$I-} |
|
567 |
Assign(f, s); |
|
568 |
Rewrite(f, 1); |
|
569 |
if IOResult = 0 then |
|
570 |
begin |
|
571 |
BlockWrite(f, head, sizeof(head)); |
|
572 |
BlockWrite(f, p^, size); |
|
573 |
Close(f); |
|
574 |
end; |
|
575 |
{$I+} |
|
576 |
||
577 |
FreeMem(p) |
|
578 |
end; |
|
2163
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
579 |
{$ENDIF} |
1080 | 580 |
|
1861 | 581 |
function modifyDamage(dmg: Longword): Longword; |
582 |
begin |
|
1895 | 583 |
ModifyDamage:= hwRound(_0_01 * cDamageModifier * dmg * cDamagePercent) |
1861 | 584 |
end; |
585 |
||
949 | 586 |
{$IFDEF DEBUGFILE} |
587 |
procedure AddFileLog(s: shortstring); |
|
588 |
begin |
|
589 |
writeln(f, GameTicks: 6, ': ', s); |
|
590 |
flush(f) |
|
591 |
end; |
|
592 |
||
593 |
function RectToStr(Rect: TSDL_Rect): shortstring; |
|
594 |
begin |
|
595 |
RectToStr:= '(x: ' + inttostr(rect.x) + '; y: ' + inttostr(rect.y) + '; w: ' + inttostr(rect.w) + '; h: ' + inttostr(rect.h) + ')' |
|
596 |
end; |
|
597 |
||
2242 | 598 |
{$IFNDEF IPHONEOS} |
371 | 599 |
var i: LongInt; |
488 | 600 |
{$ENDIF} |
2242 | 601 |
{$ENDIF} |
306 | 602 |
|
4 | 603 |
initialization |
351 | 604 |
cDrownSpeed.QWordValue:= 257698038;// 0.06 |
488 | 605 |
cMaxWindSpeed.QWordValue:= 2147484;// 0.0005 |
606 |
cWindSpeed.QWordValue:= 429496;// 0.0001 |
|
351 | 607 |
cGravity:= cMaxWindSpeed; |
1849 | 608 |
cDamageModifier:= _1; |
1854 | 609 |
cLaserSighting:= false; |
2017 | 610 |
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
|
611 |
cArtillery:= false; |
351 | 612 |
|
488 | 613 |
{$IFDEF DEBUGFILE} |
337 | 614 |
{$I-} |
2156 | 615 |
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
|
616 |
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
|
617 |
{$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
|
618 |
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
|
619 |
for i:= 0 to 7 do |
2156 | 620 |
begin |
621 |
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
|
622 |
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
|
623 |
if IOResult = 0 then break |
337 | 624 |
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
|
625 |
{$ENDIF} |
337 | 626 |
{$I+} |
17 | 627 |
|
4 | 628 |
finalization |
916 | 629 |
//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
|
630 |
|
2242 | 631 |
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
|
632 |
flush(f); |
351 | 633 |
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
|
634 |
|
4 | 635 |
{$ENDIF} |
636 |
||
637 |
end. |