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