author | koda |
Sat, 10 Jul 2010 02:02:37 +0200 | |
changeset 3632 | 8e1bd8b5780e |
parent 3628 | 2b4d878ba565 |
child 3634 | 93d260c96635 |
permissions | -rw-r--r-- |
2947 | 1 |
(* |
2 |
* Hedgewars, a free turn based strategy game |
|
3236
4ab3917d7d44
Update (c) lines to 2010 as unc0rr requested - they all had varying values so I just took the first year mentioned, then tacked on -2010
nemo
parents:
3165
diff
changeset
|
3 |
* Copyright (c) 2004-2010 Andrey Korotaev <unC0Rr@gmail.com> |
2947 | 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 |
*) |
|
51 | 18 |
|
2599 | 19 |
{$INCLUDE "options.inc"} |
2587
0dfa56a8513c
fix a segfault in the iphone simulator by moving options.inc at the beginning of the file
koda
parents:
2586
diff
changeset
|
20 |
|
2800 | 21 |
{$IFDEF WIN32} |
22 |
{$R hwengine.rc} |
|
23 |
{$ENDIF} |
|
24 |
||
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2800
diff
changeset
|
25 |
{$IFDEF HWLIBRARY} |
2698 | 26 |
unit hwengine; |
27 |
interface |
|
28 |
{$ELSE} |
|
51 | 29 |
program hwengine; |
2698 | 30 |
{$ENDIF} |
3407 | 31 |
|
3615 | 32 |
uses SDLh, uMisc, uConsole, uGame, uConsts, uLand, uAmmos, uVisualGears, uGears, uStore, uWorld, uKeys, uSound, |
33 |
uScript, uTeams, uStats, uIO, uLocale, uChat, uAI, uAIMisc, uRandom, uLandTexture, uCollisions, sysutils; |
|
34 |
||
35 |
type arrayofpchar = array[0..9] of PChar; |
|
3064 | 36 |
var isTerminated: boolean = false; |
37 |
alsoShutdownFrontend: boolean = false; |
|
3615 | 38 |
|
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2800
diff
changeset
|
39 |
{$IFDEF HWLIBRARY} |
3525 | 40 |
procedure initEverything(complete:boolean); |
41 |
procedure freeEverything(complete:boolean); |
|
51 | 42 |
|
2698 | 43 |
implementation |
44 |
{$ELSE} |
|
51 | 45 |
procedure OnDestroy; forward; |
3611 | 46 |
procedure initEverything(complete:boolean); forward; |
3525 | 47 |
procedure freeEverything(complete:boolean); forward; |
2698 | 48 |
{$ENDIF} |
51 | 49 |
|
50 |
//////////////////////////////// |
|
371 | 51 |
procedure DoTimer(Lag: LongInt); |
2243
b4764993f833
additional touch support and nemo's reduced land array size
koda
parents:
2191
diff
changeset
|
52 |
{$IFNDEF IPHONEOS} |
2905 | 53 |
var s: shortstring; |
2243
b4764993f833
additional touch support and nemo's reduced land array size
koda
parents:
2191
diff
changeset
|
54 |
{$ENDIF} |
51 | 55 |
begin |
3449
033e4a8a9c74
wait for AI thread to finish before freeing ressources (to avoid segfaults on game exit)
sheepluva
parents:
3444
diff
changeset
|
56 |
if not isPaused then inc(RealTicks, Lag); |
564 | 57 |
|
2947 | 58 |
case GameState of |
59 |
gsLandGen: begin |
|
60 |
GenMap; |
|
61 |
GameState:= gsStart; |
|
62 |
end; |
|
63 |
gsStart: begin |
|
64 |
if HasBorder then DisableSomeWeapons; |
|
65 |
AddClouds; |
|
66 |
AssignHHCoords; |
|
67 |
AddMiscGears; |
|
68 |
StoreLoad; |
|
69 |
InitWorld; |
|
70 |
ResetKbd; |
|
71 |
SoundLoad; |
|
72 |
if GameType = gmtSave then |
|
73 |
begin |
|
74 |
isSEBackup:= isSoundEnabled; |
|
75 |
isSoundEnabled:= false |
|
76 |
end; |
|
77 |
FinishProgress; |
|
78 |
PlayMusic; |
|
79 |
SetScale(zoom); |
|
80 |
ScriptCall('onGameStart'); |
|
81 |
GameState:= gsGame; |
|
82 |
end; |
|
83 |
gsConfirm, |
|
84 |
gsGame: begin |
|
85 |
DrawWorld(Lag); // never place between ProcessKbd and DoGameTick - bugs due to /put cmd and isCursorVisible |
|
86 |
ProcessKbd; |
|
3449
033e4a8a9c74
wait for AI thread to finish before freeing ressources (to avoid segfaults on game exit)
sheepluva
parents:
3444
diff
changeset
|
87 |
if not isPaused then |
033e4a8a9c74
wait for AI thread to finish before freeing ressources (to avoid segfaults on game exit)
sheepluva
parents:
3444
diff
changeset
|
88 |
begin |
033e4a8a9c74
wait for AI thread to finish before freeing ressources (to avoid segfaults on game exit)
sheepluva
parents:
3444
diff
changeset
|
89 |
DoGameTick(Lag); |
033e4a8a9c74
wait for AI thread to finish before freeing ressources (to avoid segfaults on game exit)
sheepluva
parents:
3444
diff
changeset
|
90 |
ProcessVisualGears(Lag); |
033e4a8a9c74
wait for AI thread to finish before freeing ressources (to avoid segfaults on game exit)
sheepluva
parents:
3444
diff
changeset
|
91 |
end; |
2947 | 92 |
end; |
93 |
gsChat: begin |
|
94 |
DrawWorld(Lag); |
|
3449
033e4a8a9c74
wait for AI thread to finish before freeing ressources (to avoid segfaults on game exit)
sheepluva
parents:
3444
diff
changeset
|
95 |
if not isPaused then |
033e4a8a9c74
wait for AI thread to finish before freeing ressources (to avoid segfaults on game exit)
sheepluva
parents:
3444
diff
changeset
|
96 |
begin |
033e4a8a9c74
wait for AI thread to finish before freeing ressources (to avoid segfaults on game exit)
sheepluva
parents:
3444
diff
changeset
|
97 |
DoGameTick(Lag); |
033e4a8a9c74
wait for AI thread to finish before freeing ressources (to avoid segfaults on game exit)
sheepluva
parents:
3444
diff
changeset
|
98 |
ProcessVisualGears(Lag); |
033e4a8a9c74
wait for AI thread to finish before freeing ressources (to avoid segfaults on game exit)
sheepluva
parents:
3444
diff
changeset
|
99 |
end; |
2947 | 100 |
end; |
101 |
gsExit: begin |
|
102 |
isTerminated:= true; |
|
103 |
end; |
|
104 |
end; |
|
564 | 105 |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2715
diff
changeset
|
106 |
{$IFDEF SDL13} |
2947 | 107 |
SDL_RenderPresent(); |
3523 | 108 |
{$ELSE} |
109 |
SDL_GL_SwapBuffers(); |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2715
diff
changeset
|
110 |
{$ENDIF} |
2171
8208946331ba
Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents:
2162
diff
changeset
|
111 |
{$IFNDEF IPHONEOS} |
2947 | 112 |
// not going to make captures on the iPhone |
113 |
if flagMakeCapture then |
|
114 |
begin |
|
115 |
flagMakeCapture:= false; |
|
116 |
s:= 'hw_' + FormatDateTime('YYYY-MM-DD_HH-mm-ss', Now()) + inttostr(GameTicks); |
|
117 |
WriteLnToConsole('Saving ' + s + '...'); |
|
118 |
MakeScreenshot(s); |
|
119 |
//SDL_SaveBMP_RW(SDLPrimSurface, SDL_RWFromFile(Str2PChar(s), 'wb'), 1) |
|
120 |
end; |
|
2171
8208946331ba
Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents:
2162
diff
changeset
|
121 |
{$ENDIF} |
51 | 122 |
end; |
123 |
||
124 |
//////////////////// |
|
79 | 125 |
procedure OnDestroy; |
51 | 126 |
begin |
2947 | 127 |
WriteLnToConsole('Freeing resources...'); |
3617 | 128 |
FreeActionsList(); |
2947 | 129 |
StoreRelease(); |
130 |
ControllerClose(); |
|
131 |
SendKB(); |
|
132 |
CloseIPC(); |
|
133 |
TTF_Quit(); |
|
3598 | 134 |
{$IFDEF SDL13} |
135 |
SDL_DestroyRenderer(SDLwindow); |
|
136 |
SDL_DestroyWindow(SDLwindow); |
|
137 |
{$ENDIF} |
|
2947 | 138 |
SDL_Quit(); |
3063 | 139 |
isTerminated:= false; |
51 | 140 |
end; |
141 |
||
142 |
/////////////////// |
|
2698 | 143 |
procedure MainLoop; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2715
diff
changeset
|
144 |
var PrevTime, CurrTime: Longword; |
3463 | 145 |
event: TSDL_Event; |
2698 | 146 |
begin |
2947 | 147 |
PrevTime:= SDL_GetTicks; |
3063 | 148 |
while isTerminated = false do |
149 |
begin |
|
3523 | 150 |
|
2947 | 151 |
while SDL_PollEvent(@event) <> 0 do |
152 |
begin |
|
153 |
case event.type_ of |
|
154 |
SDL_KEYDOWN: if GameState = gsChat then KeyPressChat(event.key.keysym.unicode); |
|
2698 | 155 |
{$IFDEF SDL13} |
2947 | 156 |
SDL_WINDOWEVENT: |
3463 | 157 |
if event.wevent.event = SDL_WINDOWEVENT_SHOWN then |
158 |
cHasFocus:= true; |
|
2698 | 159 |
{$ELSE} |
2947 | 160 |
SDL_ACTIVEEVENT: |
161 |
if (event.active.state and SDL_APPINPUTFOCUS) <> 0 then |
|
162 |
cHasFocus:= event.active.gain = 1; |
|
3463 | 163 |
{$ENDIF} |
164 |
{$IFNDEF IPHONEOS} |
|
2947 | 165 |
SDL_MOUSEBUTTONDOWN: if event.button.button = SDL_BUTTON_WHEELDOWN then uKeys.wheelDown:= true; |
166 |
SDL_MOUSEBUTTONUP: if event.button.button = SDL_BUTTON_WHEELUP then uKeys.wheelUp:= true; |
|
3463 | 167 |
{$ENDIF} |
2947 | 168 |
SDL_JOYAXISMOTION: ControllerAxisEvent(event.jaxis.which, event.jaxis.axis, event.jaxis.value); |
169 |
SDL_JOYHATMOTION: ControllerHatEvent(event.jhat.which, event.jhat.hat, event.jhat.value); |
|
170 |
SDL_JOYBUTTONDOWN: ControllerButtonEvent(event.jbutton.which, event.jbutton.button, true); |
|
171 |
SDL_JOYBUTTONUP: ControllerButtonEvent(event.jbutton.which, event.jbutton.button, false); |
|
172 |
SDL_QUITEV: isTerminated:= true |
|
3463 | 173 |
end; // end case event.type_ |
174 |
end; // end while SDL_PollEvent(@event) <> 0 |
|
175 |
||
3063 | 176 |
if isTerminated = false then |
2947 | 177 |
begin |
3063 | 178 |
CurrTime:= SDL_GetTicks; |
179 |
if PrevTime + cTimerInterval <= CurrTime then |
|
180 |
begin |
|
181 |
DoTimer(CurrTime - PrevTime); |
|
182 |
PrevTime:= CurrTime |
|
183 |
end |
|
184 |
else SDL_Delay(1); |
|
185 |
IPCCheckSock(); |
|
186 |
end; |
|
187 |
end; |
|
2698 | 188 |
end; |
189 |
||
190 |
///////////////////////// |
|
191 |
procedure ShowMainWindow; |
|
192 |
begin |
|
2947 | 193 |
if cFullScreen then ParseCommand('fullscr 1', true) |
194 |
else ParseCommand('fullscr 0', true); |
|
195 |
SDL_ShowCursor(0) |
|
2698 | 196 |
end; |
2591
c6597b65caea
other controls implementation + sdlh revisited (once again)
koda
parents:
2590
diff
changeset
|
197 |
|
2698 | 198 |
/////////////// |
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2800
diff
changeset
|
199 |
{$IFDEF HWLIBRARY} |
2702
48fc46a922fd
rewrite gamesetup to use less memory, rename effects to sound plus some nice actions, settings work in game again
koda
parents:
2699
diff
changeset
|
200 |
procedure Game(gameArgs: arrayofpchar); cdecl; export; |
3624 | 201 |
var tmp_quality: LongInt; |
2702
48fc46a922fd
rewrite gamesetup to use less memory, rename effects to sound plus some nice actions, settings work in game again
koda
parents:
2699
diff
changeset
|
202 |
{$ELSE} |
3064 | 203 |
procedure Game; |
2702
48fc46a922fd
rewrite gamesetup to use less memory, rename effects to sound plus some nice actions, settings work in game again
koda
parents:
2699
diff
changeset
|
204 |
{$ENDIF} |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
205 |
var p: TPathType; |
2947 | 206 |
s: shortstring; |
3611 | 207 |
{$IFDEF DEBUGFILE} |
208 |
i: LongInt; |
|
209 |
{$ENDIF} |
|
2698 | 210 |
begin |
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2800
diff
changeset
|
211 |
{$IFDEF HWLIBRARY} |
2947 | 212 |
cBits:= 32; |
213 |
cFullScreen:= false; |
|
214 |
cVSyncInUse:= true; |
|
215 |
cTimerInterval:= 8; |
|
216 |
PathPrefix:= 'Data'; |
|
3624 | 217 |
{$IFDEF DEBUGFILE} |
2947 | 218 |
cShowFPS:= true; |
3624 | 219 |
{$ELSE} |
3625 | 220 |
cShowFPS:= true; // update me at release time |
3624 | 221 |
{$ENDIF} |
2947 | 222 |
cInitVolume:= 100; |
2702
48fc46a922fd
rewrite gamesetup to use less memory, rename effects to sound plus some nice actions, settings work in game again
koda
parents:
2699
diff
changeset
|
223 |
|
2947 | 224 |
UserNick:= gameArgs[0]; |
225 |
val(gameArgs[1], ipcPort); |
|
3312 | 226 |
isSoundEnabled:= gameArgs[2] = '1'; |
227 |
isMusicEnabled:= gameArgs[3] = '1'; |
|
2947 | 228 |
cLocaleFName:= gameArgs[4]; |
229 |
cAltDamage:= gameArgs[5] = '1'; |
|
3021 | 230 |
val(gameArgs[6], cScreenHeight); |
231 |
val(gameArgs[7], cScreenWidth); |
|
3495
a6b4f351d400
now engine can be optionally built as library, there's an example wrapper of how to use it
koda
parents:
3492
diff
changeset
|
232 |
recordFileName:= gameArgs[8]; |
3613 | 233 |
|
3624 | 234 |
val(gameArgs[9], tmp_quality); |
235 |
case tmp_quality of |
|
236 |
0: cReducedQuality:= rqNone; |
|
237 |
1: cReducedQuality:= rqBlurryLand; |
|
238 |
2: cReducedQuality:= rqBlurryLand or rqKillFlakes; |
|
239 |
3: cReducedQuality:= rqBlurryLand or rqKillFlakes or rqLowRes; |
|
240 |
end; |
|
241 |
{$ENDIF} |
|
3613 | 242 |
|
3611 | 243 |
initEverything(true); |
244 |
WriteLnToConsole('Hedgewars ' + cVersionString + ' engine (network protocol: ' + inttostr(cNetProtoVersion) + ')'); |
|
245 |
{$IFDEF DEBUGFILE} |
|
246 |
AddFileLog('Prefix: "' + PathPrefix +'"'); |
|
247 |
for i:= 0 to ParamCount do |
|
248 |
AddFileLog(inttostr(i) + ': ' + ParamStr(i)); |
|
249 |
{$ENDIF} |
|
2698 | 250 |
|
2947 | 251 |
for p:= Succ(Low(TPathType)) to High(TPathType) do |
252 |
if p <> ptMapCurrent then Pathz[p]:= PathPrefix + '/' + Pathz[p]; |
|
253 |
||
254 |
WriteToConsole('Init SDL... '); |
|
255 |
SDLTry(SDL_Init(SDL_INIT_VIDEO) >= 0, true); |
|
256 |
WriteLnToConsole(msgOK); |
|
2698 | 257 |
|
2947 | 258 |
SDL_EnableUNICODE(1); |
2698 | 259 |
|
2947 | 260 |
WriteToConsole('Init SDL_ttf... '); |
261 |
SDLTry(TTF_Init() <> -1, true); |
|
262 |
WriteLnToConsole(msgOK); |
|
2698 | 263 |
|
3162 | 264 |
{$IFDEF WIN32} |
265 |
s:= SDL_getenv('SDL_VIDEO_CENTERED'); |
|
3153 | 266 |
SDL_putenv('SDL_VIDEO_CENTERED=1'); |
2947 | 267 |
ShowMainWindow(); |
3162 | 268 |
SDL_putenv(str2pchar('SDL_VIDEO_CENTERED=' + s)); |
269 |
{$ELSE} |
|
3154 | 270 |
ShowMainWindow(); |
3162 | 271 |
{$ENDIF} |
2698 | 272 |
|
2947 | 273 |
AddProgress(); |
2698 | 274 |
|
2947 | 275 |
ControllerInit(); // has to happen before InitKbdKeyTable to map keys |
276 |
InitKbdKeyTable(); |
|
2698 | 277 |
|
2947 | 278 |
if recordFileName = '' then |
279 |
InitIPC; |
|
280 |
WriteLnToConsole(msgGettingConfig); |
|
2698 | 281 |
|
2947 | 282 |
LoadLocale(Pathz[ptLocale] + '/en.txt'); // Do an initial load with english |
283 |
if cLocaleFName <> 'en.txt' then |
|
3615 | 284 |
begin |
2719 | 285 |
// Try two letter locale first before trying specific locale overrides |
2722 | 286 |
if (Length(cLocaleFName) > 6) and (Copy(cLocaleFName,1,2)+'.txt' <> 'en.txt') then |
287 |
LoadLocale(Pathz[ptLocale] + '/' + Copy(cLocaleFName,1,2)+'.txt'); |
|
2947 | 288 |
LoadLocale(Pathz[ptLocale] + '/' + cLocaleFName); |
3615 | 289 |
end; |
2698 | 290 |
|
2947 | 291 |
if recordFileName = '' then |
292 |
SendIPCAndWaitReply('C') // ask for game config |
|
293 |
else |
|
294 |
LoadRecordFromFile(recordFileName); |
|
2698 | 295 |
|
2947 | 296 |
ScriptOnGameInit; |
2786 | 297 |
|
2947 | 298 |
s:= 'eproto ' + inttostr(cNetProtoVersion); |
299 |
SendIPCRaw(@s[0], Length(s) + 1); // send proto version |
|
300 |
||
301 |
InitTeams(); |
|
302 |
AssignStores(); |
|
2698 | 303 |
|
2947 | 304 |
if isSoundEnabled then |
305 |
InitSound(); |
|
2590 | 306 |
|
2947 | 307 |
isDeveloperMode:= false; |
2698 | 308 |
|
2947 | 309 |
TryDo(InitStepsFlags = cifAllInited, 'Some parameters not set (flags = ' + inttostr(InitStepsFlags) + ')', true); |
2698 | 310 |
|
2947 | 311 |
ParseCommand('rotmask', true); |
2698 | 312 |
|
2947 | 313 |
MainLoop(); |
3615 | 314 |
// clean up SDL and GL context |
2947 | 315 |
OnDestroy(); |
3615 | 316 |
// clean up all the other memory allocated |
3611 | 317 |
freeEverything(true); |
3165
3ec07a7d8456
just some very sane stuff for the iphone port (plus some macro on pascal files)
koda
parents:
3162
diff
changeset
|
318 |
if alsoShutdownFrontend then halt; |
2698 | 319 |
end; |
2590 | 320 |
|
3525 | 321 |
procedure initEverything (complete:boolean); |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
322 |
begin |
3365
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
323 |
Randomize(); |
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
324 |
|
3038 | 325 |
uConsts.initModule; |
326 |
uMisc.initModule; |
|
327 |
uConsole.initModule; // MUST happen after uMisc |
|
3525 | 328 |
|
3038 | 329 |
uLand.initModule; |
3525 | 330 |
uIO.initModule; |
331 |
||
332 |
if complete then |
|
333 |
begin |
|
334 |
uAI.initModule; |
|
335 |
//uAIActions does not need initialization |
|
336 |
//uAIAmmoTests does not need initialization |
|
337 |
uAIMisc.initModule; |
|
338 |
uAmmos.initModule; |
|
339 |
uChat.initModule; |
|
340 |
uCollisions.initModule; |
|
341 |
//uFloat does not need initialization |
|
342 |
//uGame does not need initialization |
|
343 |
uGears.initModule; |
|
344 |
uKeys.initModule; |
|
345 |
//uLandGraphics does not need initialization |
|
346 |
//uLandObjects does not need initialization |
|
347 |
//uLandTemplates does not need initialization |
|
3612
b50215a8a43d
land arrays are allocated dynamically, so DOWNSCALE and LOWRES macros are now removed and replaced by run time flags rqBlurryLand and rqLowRes
koda
parents:
3611
diff
changeset
|
348 |
uLandTexture.initModule; |
3525 | 349 |
//uLocale does not need initialization |
350 |
uRandom.initModule; |
|
351 |
uScript.initModule; |
|
352 |
uSound.initModule; |
|
353 |
uStats.initModule; |
|
354 |
uStore.initModule; |
|
355 |
uTeams.initModule; |
|
356 |
uVisualGears.initModule; |
|
357 |
uWorld.initModule; |
|
358 |
end; |
|
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
359 |
end; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
360 |
|
3525 | 361 |
procedure freeEverything (complete:boolean); |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
362 |
begin |
3525 | 363 |
if complete then |
364 |
begin |
|
365 |
uWorld.freeModule; |
|
3615 | 366 |
uVisualGears.freeModule; |
3525 | 367 |
uTeams.freeModule; |
368 |
uStore.freeModule; //stub |
|
369 |
uStats.freeModule; //stub |
|
3615 | 370 |
uSound.freeModule; |
3525 | 371 |
uScript.freeModule; |
372 |
uRandom.freeModule; //stub |
|
373 |
//uLocale does not need to be freed |
|
374 |
//uLandTemplates does not need to be freed |
|
3612
b50215a8a43d
land arrays are allocated dynamically, so DOWNSCALE and LOWRES macros are now removed and replaced by run time flags rqBlurryLand and rqLowRes
koda
parents:
3611
diff
changeset
|
375 |
uLandTexture.freeModule; |
3525 | 376 |
//uLandObjects does not need to be freed |
377 |
//uLandGraphics does not need to be freed |
|
378 |
uKeys.freeModule; //stub |
|
379 |
uGears.freeModule; |
|
380 |
//uGame does not need to be freed |
|
381 |
//uFloat does not need to be freed |
|
382 |
uCollisions.freeModule; //stub |
|
383 |
uChat.freeModule; //stub |
|
384 |
uAmmos.freeModule; |
|
385 |
uAIMisc.freeModule; //stub |
|
386 |
//uAIAmmoTests does not need to be freed |
|
387 |
//uAIActions does not need to be freed |
|
3617 | 388 |
uAI.freeModule; //stub |
3525 | 389 |
end; |
390 |
||
391 |
uIO.freeModule; //stub |
|
3038 | 392 |
uLand.freeModule; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2715
diff
changeset
|
393 |
|
3038 | 394 |
uConsole.freeModule; |
3525 | 395 |
uMisc.freeModule; // uMisc closes the debug log. |
3038 | 396 |
uConsts.freeModule; //stub |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
397 |
end; |
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2800
diff
changeset
|
398 |
|
2698 | 399 |
///////////////////////// |
3610 | 400 |
procedure GenLandPreview{$IFDEF HWLIBRARY}(port: LongInt); cdecl; export{$ENDIF}; |
2698 | 401 |
var Preview: TPreview; |
402 |
begin |
|
3611 | 403 |
initEverything(false); |
3610 | 404 |
{$IFDEF HWLIBRARY} |
3365
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
405 |
WriteLnToConsole('Preview connecting on port ' + inttostr(port)); |
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
406 |
ipcPort:= port; |
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
407 |
{$ENDIF} |
2947 | 408 |
InitIPC; |
409 |
IPCWaitPongEvent; |
|
410 |
TryDo(InitStepsFlags = cifRandomize, 'Some parameters not set (flags = ' + inttostr(InitStepsFlags) + ')', true); |
|
2698 | 411 |
|
3365
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
412 |
Preview:= GenPreview(); |
2947 | 413 |
WriteLnToConsole('Sending preview...'); |
414 |
SendIPCRaw(@Preview, sizeof(Preview)); |
|
3365
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
415 |
SendIPCRaw(@MaxHedgehogs, sizeof(byte)); |
2947 | 416 |
WriteLnToConsole('Preview sent, disconnect'); |
417 |
CloseIPC(); |
|
3525 | 418 |
freeEverything(false); |
2698 | 419 |
end; |
420 |
||
3021 | 421 |
{$IFNDEF HWLIBRARY} |
2008 | 422 |
///////////////////// |
423 |
procedure DisplayUsage; |
|
2691 | 424 |
var i: LongInt; |
2008 | 425 |
begin |
2947 | 426 |
WriteLn('Wrong argument format: correct configurations is'); |
427 |
WriteLn(); |
|
428 |
WriteLn(' hwengine <path to data folder> <path to replay file> [option]'); |
|
429 |
WriteLn(); |
|
430 |
WriteLn('where [option] must be specified either as'); |
|
431 |
WriteLn(' --set-video [screen width] [screen height] [color dept]'); |
|
432 |
WriteLn(' --set-audio [volume] [enable music] [enable sounds]'); |
|
433 |
WriteLn(' --set-other [language file] [full screen] [show FPS]'); |
|
434 |
WriteLn(' --set-multimedia [screen height] [screen width] [color dept] [volume] [enable music] [enable sounds] [language file] [full screen]'); |
|
435 |
WriteLn(' --set-everything [screen height] [screen width] [color dept] [volume] [enable music] [enable sounds] [language file] [full screen] [show FPS] [alternate damage] [timer value] [reduced quality]'); |
|
436 |
WriteLn(); |
|
437 |
WriteLn('Read documentation online at http://www.hedgewars.org/node/1465 for more information'); |
|
438 |
Write('parsed command: '); |
|
439 |
for i:=0 to ParamCount do |
|
440 |
Write(ParamStr(i) + ' '); |
|
441 |
WriteLn(); |
|
2008 | 442 |
end; |
443 |
||
51 | 444 |
//////////////////// |
445 |
procedure GetParams; |
|
97
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
446 |
begin |
2947 | 447 |
case ParamCount of |
448 |
18: begin |
|
449 |
val(ParamStr(2), cScreenWidth); |
|
450 |
val(ParamStr(3), cScreenHeight); |
|
451 |
cBitsStr:= ParamStr(4); |
|
452 |
val(cBitsStr, cBits); |
|
453 |
val(ParamStr(5), ipcPort); |
|
454 |
cFullScreen:= ParamStr(6) = '1'; |
|
455 |
isSoundEnabled:= ParamStr(7) = '1'; |
|
3628
2b4d878ba565
enable tooltips on ipad (todo: disable them on iphone)
koda
parents:
3625
diff
changeset
|
456 |
cVSyncInUse:= ParamStr(8) = '1'; //unused |
2b4d878ba565
enable tooltips on ipad (todo: disable them on iphone)
koda
parents:
3625
diff
changeset
|
457 |
cWeaponTooltips:= ParamStr(9) = '1'; //should be merged with rqFlags |
2947 | 458 |
cLocaleFName:= ParamStr(10); |
459 |
val(ParamStr(11), cInitVolume); |
|
460 |
val(ParamStr(12), cTimerInterval); |
|
461 |
PathPrefix:= ParamStr(13); |
|
462 |
cShowFPS:= ParamStr(14) = '1'; |
|
463 |
cAltDamage:= ParamStr(15) = '1'; |
|
464 |
UserNick:= DecodeBase64(ParamStr(16)); |
|
465 |
isMusicEnabled:= ParamStr(17) = '1'; |
|
3594
aeca3d8f1b29
turn cReducedQuality into a LongInt and provide a series of quality flags (and best of all, this is still compatible with current frontend)
koda
parents:
3525
diff
changeset
|
466 |
|
aeca3d8f1b29
turn cReducedQuality into a LongInt and provide a series of quality flags (and best of all, this is still compatible with current frontend)
koda
parents:
3525
diff
changeset
|
467 |
if (ParamStr(18) = '1') then //HACK |
3612
b50215a8a43d
land arrays are allocated dynamically, so DOWNSCALE and LOWRES macros are now removed and replaced by run time flags rqBlurryLand and rqLowRes
koda
parents:
3611
diff
changeset
|
468 |
cReducedQuality:= $FFFFFFFF xor rqLowRes |
3594
aeca3d8f1b29
turn cReducedQuality into a LongInt and provide a series of quality flags (and best of all, this is still compatible with current frontend)
koda
parents:
3525
diff
changeset
|
469 |
else |
aeca3d8f1b29
turn cReducedQuality into a LongInt and provide a series of quality flags (and best of all, this is still compatible with current frontend)
koda
parents:
3525
diff
changeset
|
470 |
val(ParamStr(18), cReducedQuality); |
2947 | 471 |
end; |
472 |
3: begin |
|
473 |
val(ParamStr(2), ipcPort); |
|
474 |
GameType:= gmtLandPreview; |
|
475 |
if ParamStr(3) <> 'landpreview' then |
|
476 |
OutError(errmsgShouldntRun, true); |
|
477 |
end; |
|
478 |
2: begin |
|
479 |
PathPrefix:= ParamStr(1); |
|
480 |
recordFileName:= ParamStr(2); |
|
481 |
end; |
|
482 |
6: begin |
|
483 |
PathPrefix:= ParamStr(1); |
|
484 |
recordFileName:= ParamStr(2); |
|
2698 | 485 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
486 |
if ParamStr(3) = '--set-video' then |
2947 | 487 |
begin |
488 |
val(ParamStr(4), cScreenWidth); |
|
489 |
val(ParamStr(5), cScreenHeight); |
|
490 |
cBitsStr:= ParamStr(6); |
|
491 |
val(cBitsStr, cBits); |
|
492 |
end |
|
493 |
else |
|
494 |
begin |
|
495 |
if ParamStr(3) = '--set-audio' then |
|
496 |
begin |
|
497 |
val(ParamStr(4), cInitVolume); |
|
498 |
isMusicEnabled:= ParamStr(5) = '1'; |
|
499 |
isSoundEnabled:= ParamStr(6) = '1'; |
|
500 |
end |
|
501 |
else |
|
502 |
begin |
|
503 |
if ParamStr(3) = '--set-other' then |
|
504 |
begin |
|
505 |
cLocaleFName:= ParamStr(4); |
|
506 |
cFullScreen:= ParamStr(5) = '1'; |
|
507 |
cShowFPS:= ParamStr(6) = '1'; |
|
508 |
end |
|
509 |
else GameType:= gmtSyntax; |
|
510 |
end |
|
511 |
end; |
|
512 |
end; |
|
513 |
11: begin |
|
514 |
PathPrefix:= ParamStr(1); |
|
515 |
recordFileName:= ParamStr(2); |
|
2376 | 516 |
|
2947 | 517 |
if ParamStr(3) = '--set-multimedia' then |
518 |
begin |
|
519 |
val(ParamStr(4), cScreenWidth); |
|
520 |
val(ParamStr(5), cScreenHeight); |
|
521 |
cBitsStr:= ParamStr(6); |
|
522 |
val(cBitsStr, cBits); |
|
523 |
val(ParamStr(7), cInitVolume); |
|
524 |
isMusicEnabled:= ParamStr(8) = '1'; |
|
525 |
isSoundEnabled:= ParamStr(9) = '1'; |
|
526 |
cLocaleFName:= ParamStr(10); |
|
527 |
cFullScreen:= ParamStr(11) = '1'; |
|
528 |
end |
|
529 |
else GameType:= gmtSyntax; |
|
530 |
end; |
|
531 |
15: begin |
|
532 |
PathPrefix:= ParamStr(1); |
|
533 |
recordFileName:= ParamStr(2); |
|
534 |
if ParamStr(3) = '--set-everything' then |
|
535 |
begin |
|
536 |
val(ParamStr(4), cScreenWidth); |
|
537 |
val(ParamStr(5), cScreenHeight); |
|
538 |
cBitsStr:= ParamStr(6); |
|
539 |
val(cBitsStr, cBits); |
|
540 |
val(ParamStr(7), cInitVolume); |
|
541 |
isMusicEnabled:= ParamStr(8) = '1'; |
|
542 |
isSoundEnabled:= ParamStr(9) = '1'; |
|
543 |
cLocaleFName:= ParamStr(10); |
|
544 |
cFullScreen:= ParamStr(11) = '1'; |
|
545 |
cAltDamage:= ParamStr(12) = '1'; |
|
546 |
cShowFPS:= ParamStr(13) = '1'; |
|
547 |
val(ParamStr(14), cTimerInterval); |
|
3594
aeca3d8f1b29
turn cReducedQuality into a LongInt and provide a series of quality flags (and best of all, this is still compatible with current frontend)
koda
parents:
3525
diff
changeset
|
548 |
if (ParamStr(15) = '1') then //HACK |
3613 | 549 |
cReducedQuality:= $FFFFFFFF xor rqLowRes |
3594
aeca3d8f1b29
turn cReducedQuality into a LongInt and provide a series of quality flags (and best of all, this is still compatible with current frontend)
koda
parents:
3525
diff
changeset
|
550 |
else |
aeca3d8f1b29
turn cReducedQuality into a LongInt and provide a series of quality flags (and best of all, this is still compatible with current frontend)
koda
parents:
3525
diff
changeset
|
551 |
val(ParamStr(15), cReducedQuality); |
2947 | 552 |
end |
553 |
else GameType:= gmtSyntax; |
|
554 |
end; |
|
555 |
else GameType:= gmtSyntax; |
|
556 |
end; |
|
51 | 557 |
end; |
3021 | 558 |
|
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
559 |
//////////////////////////////////////////////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
560 |
/////////////////////////////// m a i n //////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
561 |
//////////////////////////////////////////////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
562 |
begin |
2947 | 563 |
GetParams(); |
2008 | 564 |
|
3078 | 565 |
if GameType = gmtLandPreview then GenLandPreview() |
2947 | 566 |
else if GameType = gmtSyntax then DisplayUsage() |
567 |
else Game(); |
|
568 |
||
569 |
if GameType = gmtSyntax then |
|
570 |
ExitCode:= 1 |
|
571 |
else |
|
572 |
ExitCode:= 0; |
|
2698 | 573 |
{$ENDIF} |
51 | 574 |
end. |