author | koda |
Sun, 18 Jul 2010 03:26:15 +0200 | |
changeset 3650 | ec90e573f47a |
parent 3634 | 93d260c96635 |
child 3663 | 8c28abf427f5 |
permissions | -rw-r--r-- |
4 | 1 |
(* |
2947 | 2 |
* Hedgewars, a free turn based strategy game |
3 |
* Copyright (c) 2004-2008 Andrey Korotaev <unC0Rr@gmail.com> |
|
4 |
* |
|
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 |
|
8 |
* |
|
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. |
|
13 |
* |
|
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 |
|
17 |
*) |
|
4 | 18 |
|
2630 | 19 |
{$INCLUDE "options.inc"} |
3599 | 20 |
{$INLINE ON} |
2630 | 21 |
|
4 | 22 |
unit uMisc; |
23 |
interface |
|
2630 | 24 |
|
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3537
diff
changeset
|
25 |
uses SDLh, uConsts, uFloat, GLunit, Math; |
2697 | 26 |
|
1054 | 27 |
var |
2947 | 28 |
isCursorVisible : boolean; |
29 |
isTerminated : boolean; |
|
30 |
isInLag : boolean; |
|
31 |
isPaused : boolean; |
|
3611 | 32 |
|
2947 | 33 |
isSEBackup : boolean; |
34 |
isInMultiShoot : boolean; |
|
35 |
isSpeed : boolean; |
|
3107 | 36 |
isFirstFrame : boolean; |
1560
e140bc57ff68
Quick replay round to spectators until current move
unc0rr
parents:
1530
diff
changeset
|
37 |
|
2947 | 38 |
fastUntilLag : boolean; |
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1861
diff
changeset
|
39 |
|
3611 | 40 |
GameState : TGameState; |
41 |
GameType : TGameType; |
|
42 |
GameFlags : Longword; |
|
2947 | 43 |
TrainingFlags : Longword; |
44 |
TurnTimeLeft : Longword; |
|
45 |
cSuddenDTurns : LongInt; |
|
46 |
cDamagePercent : LongInt; |
|
47 |
cMineDudPercent : LongWord; |
|
48 |
cTemplateFilter : LongInt; |
|
3133 | 49 |
cMapGen : LongInt; |
50 |
cMazeSize : LongInt; |
|
4 | 51 |
|
2947 | 52 |
cHedgehogTurnTime: Longword; |
53 |
cMinesTime : LongInt; |
|
54 |
cMaxAIThinkTime : Longword; |
|
74 | 55 |
|
2947 | 56 |
cCloudsNumber : LongInt; |
3611 | 57 |
|
2947 | 58 |
cTagsMask : byte; |
59 |
zoom : GLfloat; |
|
60 |
ZoomValue : GLfloat; |
|
4 | 61 |
|
2947 | 62 |
cWaterLine : LongInt; |
63 |
cGearScrEdgesDist: LongInt; |
|
1054 | 64 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
65 |
GameTicks : LongWord; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
66 |
TrainingTimeInc : Longword; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
67 |
TrainingTimeInD : Longword; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
68 |
TrainingTimeInM : Longword; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
69 |
TrainingTimeMax : Longword; |
2666 | 70 |
|
2947 | 71 |
TimeTrialStartTime: Longword; |
72 |
TimeTrialStopTime : Longword; |
|
73 |
||
3611 | 74 |
// init flags |
75 |
cScreenWidth : LongInt = 1024; |
|
76 |
cScreenHeight : LongInt = 768; |
|
77 |
cBits : LongInt = 32; |
|
78 |
cBitsStr : string[2] = '32'; |
|
79 |
//ipcPort is in uIO |
|
80 |
cFullScreen : boolean = false; |
|
81 |
isSoundEnabled : boolean = true; |
|
82 |
isMusicEnabled : boolean = false; |
|
83 |
cVSyncInUse : boolean = true; |
|
84 |
cLocaleFName : shortstring = 'en.txt'; |
|
85 |
cInitVolume : LongInt = 50; |
|
86 |
cTimerInterval : LongInt = 8; |
|
87 |
//pathPrefix is in uConsts |
|
88 |
cShowFPS : boolean = false; |
|
89 |
cAltDamage : boolean = true; |
|
3613 | 90 |
cReducedQuality : LongInt = rqNone; |
3611 | 91 |
|
92 |
recordFileName : shortstring = ''; |
|
93 |
||
94 |
cCaseFactor : Longword; |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
95 |
cLandAdditions : Longword; |
3611 | 96 |
cExplosives : Longword; |
97 |
||
98 |
cSeed : shortstring; |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
99 |
cVolumeDelta : LongInt; |
3611 | 100 |
cHasFocus : boolean; |
101 |
cInactDelay : Longword; |
|
4 | 102 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
103 |
bBetweenTurns : boolean; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
104 |
cHealthDecrease : LongWord; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
105 |
bWaterRising : Boolean; |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
539
diff
changeset
|
106 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
107 |
ShowCrosshair : boolean; |
3169
c8c6ac44f51b
prophylactic removal of some Integer references, raise a few of the template islands up a bit so they work inverted without triggering border
nemo
parents:
3165
diff
changeset
|
108 |
CursorMovementX : LongInt; |
c8c6ac44f51b
prophylactic removal of some Integer references, raise a few of the template islands up a bit so they work inverted without triggering border
nemo
parents:
3165
diff
changeset
|
109 |
CursorMovementY : LongInt; |
3611 | 110 |
cDrownSpeed : hwFloat; |
111 |
cDrownSpeedf : float; |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
112 |
cMaxWindSpeed : hwFloat; |
3611 | 113 |
cWindSpeed : hwFloat; |
114 |
cWindSpeedf : float; |
|
115 |
cGravity : hwFloat; |
|
116 |
cGravityf : float; |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
117 |
cDamageModifier : hwFloat; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
118 |
cLaserSighting : boolean; |
3611 | 119 |
cVampiric : boolean; |
120 |
cArtillery : boolean; |
|
2947 | 121 |
WeaponTooltipTex : PTexture; |
4 | 122 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
123 |
flagMakeCapture : boolean; |
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
53
diff
changeset
|
124 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
125 |
InitStepsFlags : Longword; |
3611 | 126 |
RealTicks : Longword; |
127 |
AttackBar : LongInt; |
|
836 | 128 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
129 |
WaterColorArray : array[0..3] of HwColor4f; |
4 | 130 |
|
3611 | 131 |
CursorPoint : TPoint; |
132 |
TargetPoint : TPoint; |
|
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
133 |
|
3611 | 134 |
TextureList : PTexture; |
2715
0e4e0db79e2a
Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents:
2705
diff
changeset
|
135 |
|
3611 | 136 |
ScreenFade : TScreenFade; |
3115 | 137 |
ScreenFadeValue : LongInt; |
138 |
ScreenFadeSpeed : LongInt; |
|
3107 | 139 |
|
3598 | 140 |
{$IFDEF SDL13} |
3611 | 141 |
SDLwindow : PSDL_Window; |
3598 | 142 |
{$ENDIF} |
2630 | 143 |
|
3038 | 144 |
procedure initModule; |
145 |
procedure freeModule; |
|
2747 | 146 |
procedure SplitBySpace(var a, b: shortstring); |
2905 | 147 |
procedure SplitByChar(var a, b: ansistring; c: char); |
3611 | 148 |
function EnumToStr(const en : TGearType) : shortstring; overload; |
149 |
function EnumToStr(const en : TSound) : shortstring; overload; |
|
150 |
function EnumToStr(const en : TAmmoType) : shortstring; overload; |
|
3169
c8c6ac44f51b
prophylactic removal of some Integer references, raise a few of the template islands up a bit so they work inverted without triggering border
nemo
parents:
3165
diff
changeset
|
151 |
procedure movecursor(dx, dy: LongInt); |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
152 |
function hwSign(r: hwFloat): LongInt; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
153 |
function Min(a, b: LongInt): LongInt; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
154 |
function Max(a, b: LongInt): LongInt; |
2905 | 155 |
procedure OutError(Msg: shortstring; isFatalError: boolean); |
3599 | 156 |
procedure TryDo(Assert: boolean; Msg: shortstring; isFatal: boolean); inline; |
4 | 157 |
procedure SDLTry(Assert: boolean; isFatal: boolean); |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
158 |
function IntToStr(n: LongInt): shortstring; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
159 |
function FloatToStr(n: hwFloat): shortstring; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
160 |
function DxDy2Angle(const _dY, _dX: hwFloat): GLfloat; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
161 |
function DxDy2Angle32(const _dY, _dX: hwFloat): LongInt; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
162 |
function DxDy2AttackAngle(const _dY, _dX: hwFloat): LongInt; |
4 | 163 |
procedure AdjustColor(var Color: Longword); |
208 | 164 |
procedure SetKB(n: Longword); |
165 |
procedure SendKB; |
|
351 | 166 |
procedure SetLittle(var r: hwFloat); |
306 | 167 |
procedure SendStat(sit: TStatInfoType; s: shortstring); |
753 | 168 |
function Str2PChar(const s: shortstring): PChar; |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
169 |
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
|
170 |
function Surface2Tex(surf: PSDL_Surface; enableClamp: boolean): PTexture; |
759 | 171 |
procedure FreeTexture(tex: PTexture); |
3599 | 172 |
function toPowerOf2(i: Longword): Longword; inline; |
2670 | 173 |
function DecodeBase64(s: shortstring): shortstring; |
174 |
function doSurfaceConversion(tmpsurf: PSDL_Surface): PSDL_Surface; |
|
175 |
function endian(independent: LongWord): LongWord; |
|
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
176 |
{$IFDEF DEBUGFILE} |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
177 |
procedure AddFileLog(s: shortstring); |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
178 |
function RectToStr(Rect: TSDL_Rect): shortstring; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
179 |
{$ENDIF} |
2163
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
180 |
{$IFNDEF IPHONEOS} |
2735 | 181 |
procedure MakeScreenshot(filename: shortstring); |
2163
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
182 |
{$ENDIF} |
4 | 183 |
|
184 |
implementation |
|
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3537
diff
changeset
|
185 |
uses uConsole, uStore, uIO, uSound, typinfo, sysutils; |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
186 |
|
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
187 |
var KBnum: Longword; |
4 | 188 |
{$IFDEF DEBUGFILE} |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
189 |
f: textfile; |
4 | 190 |
{$ENDIF} |
191 |
||
2747 | 192 |
// should this include "strtolower()" for the split string? |
193 |
procedure SplitBySpace(var a, b: shortstring); |
|
194 |
var i, t: LongInt; |
|
195 |
begin |
|
196 |
i:= Pos(' ', a); |
|
197 |
if i > 0 then |
|
2947 | 198 |
begin |
199 |
for t:= 1 to Pred(i) do |
|
200 |
if (a[t] >= 'A')and(a[t] <= 'Z') then Inc(a[t], 32); |
|
201 |
b:= copy(a, i + 1, Length(a) - i); |
|
202 |
byte(a[0]):= Pred(i) |
|
203 |
end else b:= ''; |
|
2747 | 204 |
end; |
205 |
||
2905 | 206 |
procedure SplitByChar(var a, b: ansistring; c: char); |
2747 | 207 |
var i: LongInt; |
208 |
begin |
|
209 |
i:= Pos(c, a); |
|
210 |
if i > 0 then |
|
2947 | 211 |
begin |
212 |
b:= copy(a, i + 1, Length(a) - i); |
|
213 |
setlength(a, Pred(i)); |
|
214 |
end else b:= ''; |
|
2747 | 215 |
end; |
216 |
||
3337 | 217 |
function EnumToStr(const en : TGearType) : shortstring; overload; |
218 |
begin |
|
219 |
EnumToStr:= GetEnumName(TypeInfo(TGearType), ord(en)) |
|
220 |
end; |
|
221 |
||
222 |
function EnumToStr(const en : TSound) : shortstring; overload; |
|
223 |
begin |
|
224 |
EnumToStr:= GetEnumName(TypeInfo(TSound), ord(en)) |
|
225 |
end; |
|
226 |
||
227 |
function EnumToStr(const en : TAmmoType) : shortstring; overload; |
|
228 |
begin |
|
229 |
EnumToStr:= GetEnumName(TypeInfo(TAmmoType), ord(en)) |
|
230 |
end; |
|
231 |
||
3169
c8c6ac44f51b
prophylactic removal of some Integer references, raise a few of the template islands up a bit so they work inverted without triggering border
nemo
parents:
3165
diff
changeset
|
232 |
procedure movecursor(dx, dy: LongInt); |
2428 | 233 |
var x, y: LongInt; |
234 |
begin |
|
235 |
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
|
236 |
|
2428 | 237 |
SDL_GetMouseState(@x, @y); |
238 |
Inc(x, dx); |
|
239 |
Inc(y, dy); |
|
240 |
SDL_WarpMouse(x, y); |
|
241 |
end; |
|
242 |
||
371 | 243 |
function hwSign(r: hwFloat): LongInt; |
4 | 244 |
begin |
2389 | 245 |
// yes, we have negative zero for a reason |
246 |
if r.isNegative then hwSign:= -1 else hwSign:= 1 |
|
4 | 247 |
end; |
248 |
||
371 | 249 |
function Min(a, b: LongInt): LongInt; |
4 | 250 |
begin |
351 | 251 |
if a < b then Min:= a else Min:= b |
4 | 252 |
end; |
253 |
||
371 | 254 |
function Max(a, b: LongInt): LongInt; |
4 | 255 |
begin |
351 | 256 |
if a > b then Max:= a else Max:= b |
4 | 257 |
end; |
258 |
||
2905 | 259 |
procedure OutError(Msg: shortstring; isFatalError: boolean); |
4 | 260 |
begin |
3407 | 261 |
// obsolete? written in WriteLnToConsole() anyway |
262 |
// {$IFDEF DEBUGFILE}AddFileLog(Msg);{$ENDIF} |
|
53 | 263 |
WriteLnToConsole(Msg); |
4 | 264 |
if isFatalError then |
3407 | 265 |
begin |
266 |
SendIPC('E' + GetLastConsoleLine); |
|
267 |
SDL_Quit; |
|
268 |
halt(1) |
|
269 |
end |
|
4 | 270 |
end; |
271 |
||
2905 | 272 |
procedure TryDo(Assert: boolean; Msg: shortstring; isFatal: boolean); |
4 | 273 |
begin |
70 | 274 |
if not Assert then OutError(Msg, isFatal) |
4 | 275 |
end; |
276 |
||
277 |
procedure SDLTry(Assert: boolean; isFatal: boolean); |
|
278 |
begin |
|
279 |
if not Assert then OutError(SDL_GetError, isFatal) |
|
280 |
end; |
|
281 |
||
188 | 282 |
procedure AdjustColor(var Color: Longword); |
4 | 283 |
begin |
284 |
Color:= SDL_MapRGB(PixelFormat, (Color shr 16) and $FF, (Color shr 8) and $FF, Color and $FF) |
|
285 |
end; |
|
286 |
||
316 | 287 |
function IntToStr(n: LongInt): shortstring; |
4 | 288 |
begin |
351 | 289 |
str(n, IntToStr) |
4 | 290 |
end; |
291 |
||
351 | 292 |
function FloatToStr(n: hwFloat): shortstring; |
4 | 293 |
begin |
1346 | 294 |
FloatToStr:= cstr(n) + '_' + inttostr(Lo(n.QWordValue)) |
4 | 295 |
end; |
296 |
||
2447
08d623a494e6
Smaxx's updated german translation + texture gap fixes + updated room list
koda
parents:
2428
diff
changeset
|
297 |
procedure SetTextureParameters(enableClamp: Boolean); |
08d623a494e6
Smaxx's updated german translation + texture gap fixes + updated room list
koda
parents:
2428
diff
changeset
|
298 |
begin |
3611 | 299 |
if enableClamp and ((cReducedQuality and rqClampLess) = 0) then |
2447
08d623a494e6
Smaxx's updated german translation + texture gap fixes + updated room list
koda
parents:
2428
diff
changeset
|
300 |
begin |
3594
aeca3d8f1b29
turn cReducedQuality into a LongInt and provide a series of quality flags (and best of all, this is still compatible with current frontend)
koda
parents:
3593
diff
changeset
|
301 |
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE); |
aeca3d8f1b29
turn cReducedQuality into a LongInt and provide a series of quality flags (and best of all, this is still compatible with current frontend)
koda
parents:
3593
diff
changeset
|
302 |
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE) |
2447
08d623a494e6
Smaxx's updated german translation + texture gap fixes + updated room list
koda
parents:
2428
diff
changeset
|
303 |
end; |
3594
aeca3d8f1b29
turn cReducedQuality into a LongInt and provide a series of quality flags (and best of all, this is still compatible with current frontend)
koda
parents:
3593
diff
changeset
|
304 |
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR); |
aeca3d8f1b29
turn cReducedQuality into a LongInt and provide a series of quality flags (and best of all, this is still compatible with current frontend)
koda
parents:
3593
diff
changeset
|
305 |
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR) |
2447
08d623a494e6
Smaxx's updated german translation + texture gap fixes + updated room list
koda
parents:
2428
diff
changeset
|
306 |
end; |
08d623a494e6
Smaxx's updated german translation + texture gap fixes + updated room list
koda
parents:
2428
diff
changeset
|
307 |
|
775 | 308 |
function DxDy2Angle(const _dY, _dX: hwFloat): GLfloat; |
309 |
var dY, dX: Extended; |
|
310 |
begin |
|
311 |
dY:= _dY.QWordValue / $100000000; |
|
312 |
if _dY.isNegative then dY:= - dY; |
|
313 |
dX:= _dX.QWordValue / $100000000; |
|
314 |
if _dX.isNegative then dX:= - dX; |
|
315 |
DxDy2Angle:= arctan2(dY, dX) * 180 / pi |
|
316 |
end; |
|
317 |
||
371 | 318 |
function DxDy2Angle32(const _dY, _dX: hwFloat): LongInt; |
100 | 319 |
const _16divPI: Extended = 16/pi; |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
320 |
var dY, dX: Extended; |
100 | 321 |
begin |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
322 |
dY:= _dY.QWordValue / $100000000; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
323 |
if _dY.isNegative then dY:= - dY; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
324 |
dX:= _dX.QWordValue / $100000000; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
325 |
if _dX.isNegative then dX:= - dX; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
326 |
DxDy2Angle32:= trunc(arctan2(dY, dX) * _16divPI) and $1f |
4 | 327 |
end; |
328 |
||
371 | 329 |
function DxDy2AttackAngle(const _dY, _dX: hwFloat): LongInt; |
100 | 330 |
const MaxAngleDivPI: Extended = cMaxAngle/pi; |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
331 |
var dY, dX: Extended; |
100 | 332 |
begin |
370
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
333 |
dY:= _dY.QWordValue / $100000000; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
334 |
if _dY.isNegative then dY:= - dY; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
335 |
dX:= _dX.QWordValue / $100000000; |
c75410fe3133
- Repair bots: they can walk and use bazooka, possible cannot jump (why?)
unc0rr
parents:
351
diff
changeset
|
336 |
if _dX.isNegative then dX:= - dX; |
438 | 337 |
DxDy2AttackAngle:= trunc(arctan2(dY, dX) * MaxAngleDivPI) |
100 | 338 |
end; |
4 | 339 |
|
208 | 340 |
procedure SetKB(n: Longword); |
341 |
begin |
|
342 |
KBnum:= n |
|
343 |
end; |
|
344 |
||
345 |
procedure SendKB; |
|
346 |
var s: shortstring; |
|
347 |
begin |
|
348 |
if KBnum <> 0 then |
|
2947 | 349 |
begin |
350 |
s:= 'K' + inttostr(KBnum); |
|
351 |
SendIPCRaw(@s, Length(s) + 1) |
|
352 |
end |
|
208 | 353 |
end; |
354 |
||
351 | 355 |
procedure SetLittle(var r: hwFloat); |
300 | 356 |
begin |
553
5478386d935f
- Switch to bazooka (or whatever) after use of some weapon (fixes problem with bots)
unc0rr
parents:
543
diff
changeset
|
357 |
r:= SignAs(cLittle, r) |
300 | 358 |
end; |
359 |
||
337 | 360 |
procedure SendStat(sit: TStatInfoType; s: shortstring); |
3381 | 361 |
const stc: array [TStatInfoType] of char = 'rDkKHT'; |
2382 | 362 |
var buf: shortstring; |
337 | 363 |
begin |
2382 | 364 |
buf:= 'i' + stc[sit] + s; |
365 |
SendIPCRaw(@buf[0], length(buf) + 1) |
|
337 | 366 |
end; |
367 |
||
534 | 368 |
function Str2PChar(const s: shortstring): PChar; |
351 | 369 |
const CharArray: array[byte] of Char = ''; |
370 |
begin |
|
371 |
CharArray:= s; |
|
372 |
CharArray[Length(s)]:= #0; |
|
373 |
Str2PChar:= @CharArray |
|
374 |
end; |
|
375 |
||
771 | 376 |
function isPowerOf2(i: Longword): boolean; |
377 |
begin |
|
378 |
if i = 0 then exit(true); |
|
379 |
while (i and 1) = 0 do i:= i shr 1; |
|
380 |
isPowerOf2:= (i = 1) |
|
381 |
end; |
|
382 |
||
383 |
function toPowerOf2(i: Longword): Longword; |
|
384 |
begin |
|
385 |
toPowerOf2:= 1; |
|
386 |
while (toPowerOf2 < i) do toPowerOf2:= toPowerOf2 shl 1 |
|
387 |
end; |
|
388 |
||
1912
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
389 |
procedure ResetVertexArrays(texture: PTexture); |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
390 |
begin |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
391 |
with texture^ do |
2947 | 392 |
begin |
393 |
vb[0].X:= 0; |
|
394 |
vb[0].Y:= 0; |
|
395 |
vb[1].X:= w; |
|
396 |
vb[1].Y:= 0; |
|
397 |
vb[2].X:= w; |
|
398 |
vb[2].Y:= h; |
|
399 |
vb[3].X:= 0; |
|
400 |
vb[3].Y:= h; |
|
1912
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
401 |
|
2947 | 402 |
tb[0].X:= 0; |
403 |
tb[0].Y:= 0; |
|
404 |
tb[1].X:= rx; |
|
405 |
tb[1].Y:= 0; |
|
406 |
tb[2].X:= rx; |
|
407 |
tb[2].Y:= ry; |
|
408 |
tb[3].X:= 0; |
|
409 |
tb[3].Y:= ry |
|
410 |
end; |
|
1912
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
411 |
end; |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
412 |
|
1180
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
413 |
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
|
414 |
begin |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
415 |
new(NewTexture); |
2715
0e4e0db79e2a
Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents:
2705
diff
changeset
|
416 |
NewTexture^.PrevTexture:= nil; |
0e4e0db79e2a
Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents:
2705
diff
changeset
|
417 |
NewTexture^.NextTexture:= nil; |
3537
8f5b3108f29c
New approach to the low-res problem. Basically, we already have a 1024 minimum, and the tallest maps are restricting themselves to 2048 maximum. All backgrounds are scaled down 50%, then scaled up on draw. Saves memory, and backgrounds are already deliberately fuzzed for depth of field anyway.
nemo
parents:
3534
diff
changeset
|
418 |
NewTexture^.Scale:= 1; |
2715
0e4e0db79e2a
Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents:
2705
diff
changeset
|
419 |
if TextureList <> nil then |
0e4e0db79e2a
Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents:
2705
diff
changeset
|
420 |
begin |
0e4e0db79e2a
Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents:
2705
diff
changeset
|
421 |
TextureList^.PrevTexture:= NewTexture; |
0e4e0db79e2a
Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents:
2705
diff
changeset
|
422 |
NewTexture^.NextTexture:= TextureList |
0e4e0db79e2a
Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents:
2705
diff
changeset
|
423 |
end; |
0e4e0db79e2a
Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents:
2705
diff
changeset
|
424 |
TextureList:= NewTexture; |
0e4e0db79e2a
Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents:
2705
diff
changeset
|
425 |
|
1180
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
426 |
NewTexture^.w:= width; |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
427 |
NewTexture^.h:= height; |
1896 | 428 |
NewTexture^.rx:= 1.0; |
429 |
NewTexture^.ry:= 1.0; |
|
1180
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
430 |
|
1912
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
431 |
ResetVertexArrays(NewTexture); |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
432 |
|
1180
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
433 |
glGenTextures(1, @NewTexture^.id); |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
434 |
|
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
435 |
glBindTexture(GL_TEXTURE_2D, NewTexture^.id); |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
436 |
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
|
437 |
|
2447
08d623a494e6
Smaxx's updated german translation + texture gap fixes + updated room list
koda
parents:
2428
diff
changeset
|
438 |
SetTextureParameters(true); |
1180
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
439 |
end; |
e56317fdf78d
Start implementing support for 32bit sprites concerned in map generation process.
unc0rr
parents:
1128
diff
changeset
|
440 |
|
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
|
441 |
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
|
442 |
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
|
443 |
tmpp: pointer; |
2eb7ce1c1f19
code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents:
2575
diff
changeset
|
444 |
fromP4, toP4: PLongWordArray; |
753 | 445 |
begin |
755 | 446 |
new(Surface2Tex); |
2715
0e4e0db79e2a
Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents:
2705
diff
changeset
|
447 |
Surface2Tex^.PrevTexture:= nil; |
0e4e0db79e2a
Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents:
2705
diff
changeset
|
448 |
Surface2Tex^.NextTexture:= nil; |
0e4e0db79e2a
Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents:
2705
diff
changeset
|
449 |
if TextureList <> nil then |
0e4e0db79e2a
Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents:
2705
diff
changeset
|
450 |
begin |
0e4e0db79e2a
Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents:
2705
diff
changeset
|
451 |
TextureList^.PrevTexture:= Surface2Tex; |
0e4e0db79e2a
Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents:
2705
diff
changeset
|
452 |
Surface2Tex^.NextTexture:= TextureList |
0e4e0db79e2a
Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents:
2705
diff
changeset
|
453 |
end; |
0e4e0db79e2a
Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents:
2705
diff
changeset
|
454 |
TextureList:= Surface2Tex; |
0e4e0db79e2a
Free up some unfreed memory. Needed for Koda's iphone lib work
nemo
parents:
2705
diff
changeset
|
455 |
|
755 | 456 |
Surface2Tex^.w:= surf^.w; |
457 |
Surface2Tex^.h:= surf^.h; |
|
458 |
||
2576
2eb7ce1c1f19
code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents:
2575
diff
changeset
|
459 |
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
|
460 |
begin |
2947 | 461 |
TryDo(false, 'Surface2Tex failed, expecting 32 bit surface', true); |
462 |
Surface2Tex^.id:= 0; |
|
463 |
exit |
|
2576
2eb7ce1c1f19
code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents:
2575
diff
changeset
|
464 |
end; |
2eb7ce1c1f19
code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents:
2575
diff
changeset
|
465 |
|
753 | 466 |
|
755 | 467 |
glGenTextures(1, @Surface2Tex^.id); |
753 | 468 |
|
755 | 469 |
glBindTexture(GL_TEXTURE_2D, Surface2Tex^.id); |
753 | 470 |
|
771 | 471 |
if SDL_MustLock(surf) then |
2947 | 472 |
SDLTry(SDL_LockSurface(surf) >= 0, true); |
771 | 473 |
|
2428 | 474 |
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
|
475 |
begin |
2947 | 476 |
tw:= toPowerOf2(Surf^.w); |
477 |
th:= toPowerOf2(Surf^.h); |
|
1896 | 478 |
|
2947 | 479 |
Surface2Tex^.rx:= Surf^.w / tw; |
480 |
Surface2Tex^.ry:= Surf^.h / th; |
|
2376 | 481 |
|
2947 | 482 |
GetMem(tmpp, tw * th * surf^.format^.BytesPerPixel); |
1896 | 483 |
|
2947 | 484 |
fromP4:= Surf^.pixels; |
485 |
toP4:= tmpp; |
|
771 | 486 |
|
2947 | 487 |
for y:= 0 to Pred(Surf^.h) do |
488 |
begin |
|
489 |
for x:= 0 to Pred(Surf^.w) do toP4^[x]:= fromP4^[x]; |
|
490 |
for x:= Surf^.w to Pred(tw) do toP4^[x]:= 0; |
|
491 |
toP4:= @(toP4^[tw]); |
|
492 |
fromP4:= @(fromP4^[Surf^.pitch div 4]); |
|
493 |
end; |
|
1896 | 494 |
|
2947 | 495 |
for y:= Surf^.h to Pred(th) do |
496 |
begin |
|
497 |
for x:= 0 to Pred(tw) do toP4^[x]:= 0; |
|
498 |
toP4:= @(toP4^[tw]); |
|
499 |
end; |
|
771 | 500 |
|
2947 | 501 |
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, tw, th, 0, GL_RGBA, GL_UNSIGNED_BYTE, tmpp); |
2376 | 502 |
|
2947 | 503 |
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
|
504 |
end |
2eb7ce1c1f19
code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents:
2575
diff
changeset
|
505 |
else |
2eb7ce1c1f19
code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents:
2575
diff
changeset
|
506 |
begin |
2947 | 507 |
Surface2Tex^.rx:= 1.0; |
508 |
Surface2Tex^.ry:= 1.0; |
|
509 |
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, surf^.w, surf^.h, 0, GL_RGBA, GL_UNSIGNED_BYTE, surf^.pixels); |
|
2576
2eb7ce1c1f19
code cleanup for Surface2Tex (we don't have 3 bytes surfaces any more)
koda
parents:
2575
diff
changeset
|
510 |
end; |
753 | 511 |
|
1912
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
512 |
ResetVertexArrays(Surface2Tex); |
c3d31fb59f0e
Save much CPU time by initializing vertex arrays in texture creation function
unc0rr
parents:
1911
diff
changeset
|
513 |
|
754 | 514 |
if SDL_MustLock(surf) then |
2947 | 515 |
SDL_UnlockSurface(surf); |
754 | 516 |
|
2447
08d623a494e6
Smaxx's updated german translation + texture gap fixes + updated room list
koda
parents:
2428
diff
changeset
|
517 |
SetTextureParameters(enableClamp); |
753 | 518 |
end; |
519 |
||
759 | 520 |
procedure FreeTexture(tex: PTexture); |
521 |
begin |
|
3513
f589230fa21b
now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents:
3464
diff
changeset
|
522 |
if tex <> nil then |
2947 | 523 |
begin |
3513
f589230fa21b
now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents:
3464
diff
changeset
|
524 |
if tex^.NextTexture <> nil then |
f589230fa21b
now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents:
3464
diff
changeset
|
525 |
tex^.NextTexture^.PrevTexture:= tex^.PrevTexture; |
f589230fa21b
now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents:
3464
diff
changeset
|
526 |
if tex^.PrevTexture <> nil then |
f589230fa21b
now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents:
3464
diff
changeset
|
527 |
tex^.PrevTexture^.NextTexture:= tex^.NextTexture |
f589230fa21b
now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents:
3464
diff
changeset
|
528 |
else |
f589230fa21b
now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents:
3464
diff
changeset
|
529 |
TextureList:= tex^.NextTexture; |
f589230fa21b
now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents:
3464
diff
changeset
|
530 |
glDeleteTextures(1, @tex^.id); |
f589230fa21b
now it's possible to select the scheme file in the ifrontendfix a type about loading an image (iphone file system IS case senstive)
koda
parents:
3464
diff
changeset
|
531 |
Dispose(tex); |
2947 | 532 |
end |
759 | 533 |
end; |
337 | 534 |
|
949 | 535 |
function DecodeBase64(s: shortstring): shortstring; |
536 |
const table = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; |
|
537 |
var i, t, c: Longword; |
|
538 |
begin |
|
539 |
c:= 0; |
|
540 |
for i:= 1 to Length(s) do |
|
2947 | 541 |
begin |
542 |
t:= Pos(s[i], table); |
|
543 |
if s[i] = '=' then inc(c); |
|
544 |
if t > 0 then byte(s[i]):= t - 1 else byte(s[i]):= 0 |
|
545 |
end; |
|
949 | 546 |
|
547 |
i:= 1; |
|
548 |
t:= 1; |
|
549 |
while i <= length(s) do |
|
2947 | 550 |
begin |
551 |
DecodeBase64[t ]:= char((byte(s[i ]) shl 2) or (byte(s[i + 1]) shr 4)); |
|
552 |
DecodeBase64[t + 1]:= char((byte(s[i + 1]) shl 4) or (byte(s[i + 2]) shr 2)); |
|
553 |
DecodeBase64[t + 2]:= char((byte(s[i + 2]) shl 6) or (byte(s[i + 3]) )); |
|
554 |
inc(t, 3); |
|
555 |
inc(i, 4) |
|
556 |
end; |
|
949 | 557 |
|
558 |
if c < 3 then t:= t - c; |
|
559 |
||
560 |
byte(DecodeBase64[0]):= t - 1 |
|
561 |
end; |
|
562 |
||
2163
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
563 |
{$IFNDEF IPHONEOS} |
2735 | 564 |
procedure MakeScreenshot(filename: shortstring); |
1080 | 565 |
var p: Pointer; |
2947 | 566 |
size: Longword; |
567 |
f: file; |
|
2735 | 568 |
{$IFNDEF WIN32} |
2947 | 569 |
// TGA Header |
570 |
head: array[0..8] of Word = (0, 2, 0, 0, 0, 0, 0, 0, 24); |
|
2735 | 571 |
{$ELSE} |
2947 | 572 |
// Windows Bitmap Header |
573 |
head: array[0..53] of Byte = ( |
|
574 |
$42, $4D, // identifier ("BM") |
|
575 |
0, 0, 0, 0, // file size |
|
576 |
0, 0, 0, 0, // reserved |
|
577 |
54, 0, 0, 0, // starting offset |
|
578 |
40, 0, 0, 0, // header size |
|
579 |
0, 0, 0, 0, // width |
|
580 |
0, 0, 0, 0, // height |
|
581 |
1, 0, // color planes |
|
582 |
24, 0, // bit depth |
|
583 |
0, 0, 0, 0, // compression method (uncompressed) |
|
584 |
0, 0, 0, 0, // image size |
|
585 |
96, 0, 0, 0, // horizontal resolution |
|
586 |
96, 0, 0, 0, // vertical resolution |
|
587 |
0, 0, 0, 0, // number of colors (all) |
|
588 |
0, 0, 0, 0 // number of important colors |
|
589 |
); |
|
2735 | 590 |
{$ENDIF} |
1080 | 591 |
begin |
2745 | 592 |
playSound(sndShutter); |
1080 | 593 |
|
3107 | 594 |
// flash |
595 |
ScreenFade:= sfFromWhite; |
|
596 |
ScreenFadeValue:= sfMax; |
|
597 |
ScreenFadeSpeed:= 5; |
|
598 |
||
1080 | 599 |
size:= cScreenWidth * cScreenHeight * 3; |
600 |
p:= GetMem(size); |
|
601 |
||
2735 | 602 |
// update header information and file name |
603 |
{$IFNDEF WIN32} |
|
3350 | 604 |
filename:= ParamStr(1) + '/Screenshots/' + filename + '.tga'; |
2735 | 605 |
|
606 |
head[6]:= cScreenWidth; |
|
607 |
head[7]:= cScreenHeight; |
|
608 |
{$ELSE} |
|
3350 | 609 |
filename:= ParamStr(1) + '/Screenshots/' + filename + '.bmp'; |
2735 | 610 |
|
611 |
head[$02]:= (size + 54) and $ff; |
|
612 |
head[$03]:= ((size + 54) shr 8) and $ff; |
|
613 |
head[$04]:= ((size + 54) shr 16) and $ff; |
|
614 |
head[$05]:= ((size + 54) shr 24) and $ff; |
|
615 |
head[$12]:= cScreenWidth and $ff; |
|
616 |
head[$13]:= (cScreenWidth shr 8) and $ff; |
|
617 |
head[$14]:= (cScreenWidth shr 16) and $ff; |
|
618 |
head[$15]:= (cScreenWidth shr 24) and $ff; |
|
619 |
head[$16]:= cScreenHeight and $ff; |
|
620 |
head[$17]:= (cScreenHeight shr 8) and $ff; |
|
621 |
head[$18]:= (cScreenHeight shr 16) and $ff; |
|
622 |
head[$19]:= (cScreenHeight shr 24) and $ff; |
|
623 |
head[$22]:= size and $ff; |
|
624 |
head[$23]:= (size shr 8) and $ff; |
|
625 |
head[$24]:= (size shr 16) and $ff; |
|
626 |
head[$25]:= (size shr 24) and $ff; |
|
627 |
{$ENDIF} |
|
2163
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
628 |
|
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
629 |
//remember that opengles operates on a single surface, so GL_FRONT *should* be implied |
1080 | 630 |
glReadBuffer(GL_FRONT); |
631 |
glReadPixels(0, 0, cScreenWidth, cScreenHeight, GL_BGR, GL_UNSIGNED_BYTE, p); |
|
632 |
||
633 |
{$I-} |
|
2735 | 634 |
Assign(f, filename); |
1080 | 635 |
Rewrite(f, 1); |
636 |
if IOResult = 0 then |
|
2947 | 637 |
begin |
638 |
BlockWrite(f, head, sizeof(head)); |
|
639 |
BlockWrite(f, p^, size); |
|
640 |
Close(f); |
|
641 |
end; |
|
1080 | 642 |
{$I+} |
643 |
||
644 |
FreeMem(p) |
|
645 |
end; |
|
2163
12730f5e79b9
koda's patch fixing some iphone port troubles (color, mouse)
unc0rr
parents:
2162
diff
changeset
|
646 |
{$ENDIF} |
1080 | 647 |
|
949 | 648 |
{$IFDEF DEBUGFILE} |
649 |
procedure AddFileLog(s: shortstring); |
|
650 |
begin |
|
651 |
writeln(f, GameTicks: 6, ': ', s); |
|
652 |
flush(f) |
|
653 |
end; |
|
654 |
||
655 |
function RectToStr(Rect: TSDL_Rect): shortstring; |
|
656 |
begin |
|
657 |
RectToStr:= '(x: ' + inttostr(rect.x) + '; y: ' + inttostr(rect.y) + '; w: ' + inttostr(rect.w) + '; h: ' + inttostr(rect.h) + ')' |
|
658 |
end; |
|
2242 | 659 |
{$ENDIF} |
306 | 660 |
|
2619 | 661 |
function doSurfaceConversion(tmpsurf: PSDL_Surface): PSDL_Surface; |
662 |
{* for more information http://www.idevgames.com/forum/showpost.php?p=85864&postcount=7 *} |
|
663 |
var convertedSurf: PSDL_Surface = nil; |
|
664 |
begin |
|
2947 | 665 |
if (tmpsurf^.format^.bitsperpixel = 24) or ((tmpsurf^.format^.bitsperpixel = 32) and (tmpsurf^.format^.rshift > tmpsurf^.format^.bshift)) then |
666 |
begin |
|
667 |
convertedSurf:= SDL_ConvertSurface(tmpsurf, @conversionFormat, SDL_SWSURFACE); |
|
668 |
SDL_FreeSurface(tmpsurf); |
|
669 |
exit(convertedSurf); |
|
670 |
end; |
|
2705
2b5625c4ec16
fix a nasty 196 bytes memory leak in engine, plus other stuff for iphone frontend
koda
parents:
2699
diff
changeset
|
671 |
|
2947 | 672 |
exit(tmpsurf); |
2619 | 673 |
end; |
674 |
||
2670 | 675 |
function endian(independent: LongWord): LongWord; |
676 |
begin |
|
677 |
{$IFDEF ENDIAN_LITTLE} |
|
678 |
endian:= independent; |
|
679 |
{$ELSE} |
|
680 |
endian:= (((independent and $FF000000) shr 24) or |
|
3365
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3355
diff
changeset
|
681 |
((independent and $00FF0000) shr 8) or |
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3355
diff
changeset
|
682 |
((independent and $0000FF00) shl 8) or |
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3355
diff
changeset
|
683 |
((independent and $000000FF) shl 24)) |
2670 | 684 |
{$ENDIF} |
685 |
end; |
|
2630 | 686 |
|
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
687 |
|
3038 | 688 |
procedure initModule; |
3305 | 689 |
{$IFDEF DEBUGFILE}{$IFNDEF IPHONEOS}var i: LongInt;{$ENDIF}{$ENDIF} |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
690 |
begin |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
691 |
cDrownSpeed.QWordValue := 257698038; // 0.06 |
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3537
diff
changeset
|
692 |
cDrownSpeedf := 0.06; |
3355
dc9e61e67484
cWindSpeed recalculation assumed GetRandom returns a value between 0.0-1.0 while in fact is in the 0.0-0.5 range; Halve cMaxWindSpeed to compensate.
palewolf
parents:
3350
diff
changeset
|
693 |
cMaxWindSpeed.QWordValue:= 1073742; // 0.00025 |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
694 |
cWindSpeed.QWordValue := 429496; // 0.0001 |
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3537
diff
changeset
|
695 |
cWindSpeedf := 0.0001; |
3355
dc9e61e67484
cWindSpeed recalculation assumed GetRandom returns a value between 0.0-1.0 while in fact is in the 0.0-0.5 range; Halve cMaxWindSpeed to compensate.
palewolf
parents:
3350
diff
changeset
|
696 |
cGravity := cMaxWindSpeed * 2; |
3593
ae50f63e4fa9
Remove hwFloat from VisualGears - they don't need the precision for syncing purposes, and it saves a whole lot of operations.
nemo
parents:
3537
diff
changeset
|
697 |
cGravityf := 0.00025 * 2; |
2947 | 698 |
cDamageModifier := _1; |
699 |
TargetPoint := cTargetPointRef; |
|
700 |
TextureList := nil; |
|
701 |
||
702 |
// int, longint longword and byte |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
703 |
CursorMovementX := 0; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
704 |
CursorMovementY := 0; |
3066
5c0efa437728
Enable birdy. Has egg bombing. Eggs should possibly have a dX component. No poison yet, no egg sprite.
nemo
parents:
3038
diff
changeset
|
705 |
GameTicks := 0; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
706 |
TrainingTimeInc := 10000; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
707 |
TrainingTimeInD := 500; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
708 |
TrainingTimeInM := 5000; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
709 |
TrainingTimeMax := 60000; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
710 |
TimeTrialStartTime := 0; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
711 |
TimeTrialStopTime := 0; |
3066
5c0efa437728
Enable birdy. Has egg bombing. Eggs should possibly have a dX component. No poison yet, no egg sprite.
nemo
parents:
3038
diff
changeset
|
712 |
cWaterLine := LAND_HEIGHT; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
713 |
cGearScrEdgesDist := 240; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
714 |
cHealthDecrease := 0; |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
715 |
|
3066
5c0efa437728
Enable birdy. Has egg bombing. Eggs should possibly have a dX component. No poison yet, no egg sprite.
nemo
parents:
3038
diff
changeset
|
716 |
GameFlags := 0; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
717 |
TrainingFlags := 0; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
718 |
TurnTimeLeft := 0; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
719 |
cSuddenDTurns := 15; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
720 |
cDamagePercent := 100; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
721 |
cMineDudPercent := 0; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
722 |
cTemplateFilter := 0; |
3133 | 723 |
cMapGen := 0;//MAPGEN_REGULAR |
724 |
cMazeSize := 0; |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
725 |
cHedgehogTurnTime := 45000; |
3066
5c0efa437728
Enable birdy. Has egg bombing. Eggs should possibly have a dX component. No poison yet, no egg sprite.
nemo
parents:
3038
diff
changeset
|
726 |
cMinesTime := 3000; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
727 |
cMaxAIThinkTime := 9000; |
3611 | 728 |
cCloudsNumber := 9; |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
729 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
730 |
cTagsMask := 0; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
731 |
KBnum := 0; |
3066
5c0efa437728
Enable birdy. Has egg bombing. Eggs should possibly have a dX component. No poison yet, no egg sprite.
nemo
parents:
3038
diff
changeset
|
732 |
InitStepsFlags := 0; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
733 |
RealTicks := 0; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
734 |
AttackBar := 0; // 0 - none, 1 - just bar at the right-down corner, 2 - like in WWP |
3611 | 735 |
cCaseFactor := 5; {0..9} |
736 |
cLandAdditions := 4; |
|
737 |
cExplosives := 2; |
|
738 |
||
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
739 |
GameState := Low(TGameState); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
740 |
GameType := gmtLocal; |
3650 | 741 |
zoom := cDefaultZoomLevel; |
742 |
ZoomValue := cDefaultZoomLevel; |
|
3066
5c0efa437728
Enable birdy. Has egg bombing. Eggs should possibly have a dX component. No poison yet, no egg sprite.
nemo
parents:
3038
diff
changeset
|
743 |
WeaponTooltipTex:= nil; |
5c0efa437728
Enable birdy. Has egg bombing. Eggs should possibly have a dX component. No poison yet, no egg sprite.
nemo
parents:
3038
diff
changeset
|
744 |
cLaserSighting := false; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
745 |
cVampiric := false; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
746 |
cArtillery := false; |
3066
5c0efa437728
Enable birdy. Has egg bombing. Eggs should possibly have a dX component. No poison yet, no egg sprite.
nemo
parents:
3038
diff
changeset
|
747 |
flagMakeCapture := false; |
5c0efa437728
Enable birdy. Has egg bombing. Eggs should possibly have a dX component. No poison yet, no egg sprite.
nemo
parents:
3038
diff
changeset
|
748 |
bBetweenTurns := false; |
5c0efa437728
Enable birdy. Has egg bombing. Eggs should possibly have a dX component. No poison yet, no egg sprite.
nemo
parents:
3038
diff
changeset
|
749 |
bWaterRising := false; |
5c0efa437728
Enable birdy. Has egg bombing. Eggs should possibly have a dX component. No poison yet, no egg sprite.
nemo
parents:
3038
diff
changeset
|
750 |
isCursorVisible := false; |
5c0efa437728
Enable birdy. Has egg bombing. Eggs should possibly have a dX component. No poison yet, no egg sprite.
nemo
parents:
3038
diff
changeset
|
751 |
isTerminated := false; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
752 |
isInLag := false; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
753 |
isPaused := false; |
3066
5c0efa437728
Enable birdy. Has egg bombing. Eggs should possibly have a dX component. No poison yet, no egg sprite.
nemo
parents:
3038
diff
changeset
|
754 |
isInMultiShoot := false; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
755 |
isSpeed := false; |
3066
5c0efa437728
Enable birdy. Has egg bombing. Eggs should possibly have a dX component. No poison yet, no egg sprite.
nemo
parents:
3038
diff
changeset
|
756 |
fastUntilLag := false; |
3107 | 757 |
isFirstFrame := true; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
758 |
isSEBackup := true; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
759 |
cSeed := ''; |
3066
5c0efa437728
Enable birdy. Has egg bombing. Eggs should possibly have a dX component. No poison yet, no egg sprite.
nemo
parents:
3038
diff
changeset
|
760 |
cVolumeDelta := 0; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
761 |
cHasFocus := true; |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
762 |
cInactDelay := 1250; |
3107 | 763 |
|
764 |
ScreenFade := sfNone; |
|
3598 | 765 |
|
766 |
{$IFDEF SDL13} |
|
767 |
SDLwindow := nil; |
|
768 |
{$ENDIF} |
|
488 | 769 |
{$IFDEF DEBUGFILE} |
337 | 770 |
{$I-} |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
771 |
{$IFDEF IPHONEOS} |
3377 | 772 |
Assign(f,'../Documents/debug.txt'); |
773 |
Rewrite(f); |
|
2630 | 774 |
{$ELSE} |
3533
03892fb97ab3
fix build and permissions problems when launching hwengine from command line
koda
parents:
3513
diff
changeset
|
775 |
if (ParamStr(1) <> '') and (ParamStr(2) <> '') then |
3534 | 776 |
if (ParamCount <> 3) and (ParamCount <> 18) then |
2947 | 777 |
begin |
3534 | 778 |
for i:= 0 to 7 do |
779 |
begin |
|
780 |
assign(f, ExtractFileDir(ParamStr(2)) + '/debug' + inttostr(i) + '.txt'); |
|
781 |
rewrite(f); |
|
782 |
if IOResult = 0 then break; |
|
783 |
end; |
|
784 |
if IOResult <> 0 then f:= stderr; // if everything fails, write to stderr |
|
785 |
end |
|
786 |
else |
|
787 |
begin |
|
788 |
for i:= 0 to 7 do |
|
789 |
begin |
|
790 |
assign(f, ParamStr(1) + '/debug' + inttostr(i) + '.txt'); |
|
791 |
rewrite(f); |
|
792 |
if IOResult = 0 then break; |
|
793 |
end; |
|
794 |
if IOResult <> 0 then f:= stderr; // if everything fails, write to stderr |
|
2947 | 795 |
end |
796 |
else |
|
797 |
f:= stderr; |
|
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
798 |
{$ENDIF} |
337 | 799 |
{$I+} |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
800 |
{$ENDIF} |
17 | 801 |
|
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
802 |
end; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
803 |
|
3038 | 804 |
procedure freeModule; |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
805 |
begin |
3626 | 806 |
recordFileName:= ''; |
2947 | 807 |
while TextureList <> nil do FreeTexture(TextureList); |
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
|
808 |
|
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
809 |
{$IFDEF DEBUGFILE} |
2947 | 810 |
writeln(f, 'halt at ', GameTicks, ' ticks. TurnTimeLeft = ', TurnTimeLeft); |
811 |
flush(f); |
|
812 |
close(f); |
|
4 | 813 |
{$ENDIF} |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
814 |
end; |
4 | 815 |
|
816 |
end. |