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