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