author | unc0rr |
Fri, 07 May 2010 04:52:46 +0000 | |
changeset 3442 | 69898c6ede14 |
parent 3432 | 83cef0f08a86 |
child 3444 | 9d501dc22f71 |
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 |
|
3153 | 32 |
uses |
33 |
SDLh in 'SDLh.pas', |
|
2947 | 34 |
uConsts in 'uConsts.pas', |
35 |
uGame in 'uGame.pas', |
|
36 |
uMisc in 'uMisc.pas', |
|
37 |
uStore in 'uStore.pas', |
|
38 |
uWorld in 'uWorld.pas', |
|
39 |
uIO in 'uIO.pas', |
|
40 |
uGears in 'uGears.pas', |
|
41 |
uVisualGears in 'uVisualGears.pas', |
|
42 |
uConsole in 'uConsole.pas', |
|
43 |
uKeys in 'uKeys.pas', |
|
44 |
uTeams in 'uTeams.pas', |
|
45 |
uSound in 'uSound.pas', |
|
46 |
uRandom in 'uRandom.pas', |
|
47 |
uAI in 'uAI.pas', |
|
48 |
uAIMisc in 'uAIMisc.pas', |
|
3432
83cef0f08a86
* get rid of some fpc hints (redundant/superfluous includes)
sheepluva
parents:
3407
diff
changeset
|
49 |
// uAIAmmoTests in 'uAIAmmoTests.pas', |
83cef0f08a86
* get rid of some fpc hints (redundant/superfluous includes)
sheepluva
parents:
3407
diff
changeset
|
50 |
// uAIActions in 'uAIActions.pas', |
2947 | 51 |
uCollisions in 'uCollisions.pas', |
52 |
uLand in 'uLand.pas', |
|
3432
83cef0f08a86
* get rid of some fpc hints (redundant/superfluous includes)
sheepluva
parents:
3407
diff
changeset
|
53 |
// uLandTemplates in 'uLandTemplates.pas', |
83cef0f08a86
* get rid of some fpc hints (redundant/superfluous includes)
sheepluva
parents:
3407
diff
changeset
|
54 |
// uLandObjects in 'uLandObjects.pas', |
83cef0f08a86
* get rid of some fpc hints (redundant/superfluous includes)
sheepluva
parents:
3407
diff
changeset
|
55 |
// uLandGraphics in 'uLandGraphics.pas', |
2947 | 56 |
uLocale in 'uLocale.pas', |
57 |
uAmmos in 'uAmmos.pas', |
|
3432
83cef0f08a86
* get rid of some fpc hints (redundant/superfluous includes)
sheepluva
parents:
3407
diff
changeset
|
58 |
// uSHA in 'uSHA.pas', |
83cef0f08a86
* get rid of some fpc hints (redundant/superfluous includes)
sheepluva
parents:
3407
diff
changeset
|
59 |
// uFloat in 'uFloat.pas', |
2947 | 60 |
uStats in 'uStats.pas', |
61 |
uChat in 'uChat.pas', |
|
62 |
uLandTexture in 'uLandTexture.pas', |
|
63 |
uScript in 'uScript.pas', |
|
64 |
sysutils; |
|
51 | 65 |
|
66 |
// also: GSHandlers.inc |
|
3387
733f4001b8b9
Break out DrawHH/DrawGear to reduce scrolling in uGears.pas, add portal graphics
nemo
parents:
3369
diff
changeset
|
67 |
// GearDrawing.inc |
51 | 68 |
// CCHandlers.inc |
69 |
// HHHandlers.inc |
|
357 | 70 |
// SinTable.inc |
271 | 71 |
// proto.inc |
51 | 72 |
|
3064 | 73 |
var isTerminated: boolean = false; |
74 |
alsoShutdownFrontend: boolean = false; |
|
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2800
diff
changeset
|
75 |
{$IFDEF HWLIBRARY} |
3021 | 76 |
type arrayofpchar = array[0..7] of PChar; |
77 |
||
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
78 |
procedure initEverything; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
79 |
procedure freeEverything; |
51 | 80 |
|
2698 | 81 |
implementation |
82 |
{$ELSE} |
|
51 | 83 |
procedure OnDestroy; forward; |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
84 |
procedure freeEverything; forward; |
2698 | 85 |
{$ENDIF} |
51 | 86 |
|
87 |
//////////////////////////////// |
|
371 | 88 |
procedure DoTimer(Lag: LongInt); |
2243
b4764993f833
additional touch support and nemo's reduced land array size
koda
parents:
2191
diff
changeset
|
89 |
{$IFNDEF IPHONEOS} |
2905 | 90 |
var s: shortstring; |
2243
b4764993f833
additional touch support and nemo's reduced land array size
koda
parents:
2191
diff
changeset
|
91 |
{$ENDIF} |
51 | 92 |
begin |
2947 | 93 |
inc(RealTicks, Lag); |
564 | 94 |
|
2947 | 95 |
case GameState of |
96 |
gsLandGen: begin |
|
97 |
GenMap; |
|
98 |
GameState:= gsStart; |
|
99 |
end; |
|
100 |
gsStart: begin |
|
101 |
if HasBorder then DisableSomeWeapons; |
|
102 |
AddClouds; |
|
103 |
AssignHHCoords; |
|
104 |
AddMiscGears; |
|
105 |
StoreLoad; |
|
106 |
InitWorld; |
|
107 |
ResetKbd; |
|
108 |
SoundLoad; |
|
109 |
if GameType = gmtSave then |
|
110 |
begin |
|
111 |
isSEBackup:= isSoundEnabled; |
|
112 |
isSoundEnabled:= false |
|
113 |
end; |
|
114 |
FinishProgress; |
|
115 |
PlayMusic; |
|
116 |
SetScale(zoom); |
|
117 |
ScriptCall('onGameStart'); |
|
118 |
GameState:= gsGame; |
|
119 |
end; |
|
120 |
gsConfirm, |
|
121 |
gsGame: begin |
|
122 |
DrawWorld(Lag); // never place between ProcessKbd and DoGameTick - bugs due to /put cmd and isCursorVisible |
|
123 |
ProcessKbd; |
|
124 |
DoGameTick(Lag); |
|
125 |
ProcessVisualGears(Lag); |
|
126 |
end; |
|
127 |
gsChat: begin |
|
128 |
DrawWorld(Lag); |
|
129 |
DoGameTick(Lag); |
|
130 |
ProcessVisualGears(Lag); |
|
131 |
end; |
|
132 |
gsExit: begin |
|
133 |
isTerminated:= true; |
|
134 |
end; |
|
135 |
end; |
|
564 | 136 |
|
2947 | 137 |
SDL_GL_SwapBuffers(); |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2715
diff
changeset
|
138 |
{$IFDEF SDL13} |
2947 | 139 |
SDL_RenderPresent(); |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2715
diff
changeset
|
140 |
{$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
|
141 |
{$IFNDEF IPHONEOS} |
2947 | 142 |
// not going to make captures on the iPhone |
143 |
if flagMakeCapture then |
|
144 |
begin |
|
145 |
flagMakeCapture:= false; |
|
146 |
s:= 'hw_' + FormatDateTime('YYYY-MM-DD_HH-mm-ss', Now()) + inttostr(GameTicks); |
|
147 |
WriteLnToConsole('Saving ' + s + '...'); |
|
148 |
MakeScreenshot(s); |
|
149 |
//SDL_SaveBMP_RW(SDLPrimSurface, SDL_RWFromFile(Str2PChar(s), 'wb'), 1) |
|
150 |
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
|
151 |
{$ENDIF} |
51 | 152 |
end; |
153 |
||
154 |
//////////////////// |
|
79 | 155 |
procedure OnDestroy; |
51 | 156 |
begin |
2947 | 157 |
WriteLnToConsole('Freeing resources...'); |
158 |
if isSoundEnabled then ReleaseSound(); |
|
159 |
StoreRelease(); |
|
3045 | 160 |
FreeGearsList(); |
3053 | 161 |
FreeVisualGears(); |
2947 | 162 |
FreeLand(); |
163 |
ControllerClose(); |
|
164 |
SendKB(); |
|
165 |
CloseIPC(); |
|
166 |
TTF_Quit(); |
|
167 |
SDL_Quit(); |
|
3063 | 168 |
isTerminated:= false; |
51 | 169 |
end; |
170 |
||
171 |
/////////////////// |
|
2698 | 172 |
procedure MainLoop; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2715
diff
changeset
|
173 |
var PrevTime, CurrTime: Longword; |
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
|
174 |
{$IFNDEF IPHONEOS}event: TSDL_Event;{$ENDIF} |
2698 | 175 |
begin |
2947 | 176 |
PrevTime:= SDL_GetTicks; |
3063 | 177 |
while isTerminated = false do |
178 |
begin |
|
2698 | 179 |
{$IFNDEF IPHONEOS} |
180 |
// have to remove this cycle because otherwise it segfaults at exit |
|
2947 | 181 |
while SDL_PollEvent(@event) <> 0 do |
182 |
begin |
|
183 |
case event.type_ of |
|
184 |
SDL_KEYDOWN: if GameState = gsChat then KeyPressChat(event.key.keysym.unicode); |
|
2698 | 185 |
{$IFDEF SDL13} |
2947 | 186 |
SDL_WINDOWEVENT: |
2698 | 187 |
{$ELSE} |
2947 | 188 |
SDL_ACTIVEEVENT: |
2569 | 189 |
{$ENDIF} |
2947 | 190 |
if (event.active.state and SDL_APPINPUTFOCUS) <> 0 then |
191 |
cHasFocus:= event.active.gain = 1; |
|
192 |
//SDL_VIDEORESIZE: Resize(max(event.resize.w, 600), max(event.resize.h, 450)); |
|
193 |
SDL_MOUSEBUTTONDOWN: if event.button.button = SDL_BUTTON_WHEELDOWN then uKeys.wheelDown:= true; |
|
194 |
SDL_MOUSEBUTTONUP: if event.button.button = SDL_BUTTON_WHEELUP then uKeys.wheelUp:= true; |
|
195 |
SDL_JOYAXISMOTION: ControllerAxisEvent(event.jaxis.which, event.jaxis.axis, event.jaxis.value); |
|
196 |
SDL_JOYHATMOTION: ControllerHatEvent(event.jhat.which, event.jhat.hat, event.jhat.value); |
|
197 |
SDL_JOYBUTTONDOWN: ControllerButtonEvent(event.jbutton.which, event.jbutton.button, true); |
|
198 |
SDL_JOYBUTTONUP: ControllerButtonEvent(event.jbutton.which, event.jbutton.button, false); |
|
199 |
SDL_QUITEV: isTerminated:= true |
|
200 |
end; // end case event.type_ of |
|
201 |
end; // end while SDL_PollEvent(@event) <> 0 do |
|
2390 | 202 |
{$ENDIF} |
3063 | 203 |
if isTerminated = false then |
2947 | 204 |
begin |
3063 | 205 |
CurrTime:= SDL_GetTicks; |
206 |
if PrevTime + cTimerInterval <= CurrTime then |
|
207 |
begin |
|
208 |
DoTimer(CurrTime - PrevTime); |
|
209 |
PrevTime:= CurrTime |
|
210 |
end |
|
211 |
else SDL_Delay(1); |
|
212 |
IPCCheckSock(); |
|
213 |
end; |
|
214 |
end; |
|
2698 | 215 |
end; |
216 |
||
217 |
///////////////////////// |
|
218 |
procedure ShowMainWindow; |
|
219 |
begin |
|
2947 | 220 |
if cFullScreen then ParseCommand('fullscr 1', true) |
221 |
else ParseCommand('fullscr 0', true); |
|
222 |
SDL_ShowCursor(0) |
|
2698 | 223 |
end; |
2591
c6597b65caea
other controls implementation + sdlh revisited (once again)
koda
parents:
2590
diff
changeset
|
224 |
|
2698 | 225 |
/////////////// |
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2800
diff
changeset
|
226 |
{$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
|
227 |
procedure Game(gameArgs: arrayofpchar); cdecl; export; |
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
|
228 |
{$ELSE} |
3064 | 229 |
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
|
230 |
{$ENDIF} |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
231 |
var p: TPathType; |
2947 | 232 |
s: shortstring; |
2698 | 233 |
begin |
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2800
diff
changeset
|
234 |
{$IFDEF HWLIBRARY} |
3049 | 235 |
initEverything(); |
2947 | 236 |
Randomize(); |
2591
c6597b65caea
other controls implementation + sdlh revisited (once again)
koda
parents:
2590
diff
changeset
|
237 |
|
2947 | 238 |
cBits:= 32; |
239 |
cFullScreen:= false; |
|
240 |
cVSyncInUse:= true; |
|
241 |
cTimerInterval:= 8; |
|
242 |
PathPrefix:= 'Data'; |
|
243 |
cReducedQuality:= false; |
|
244 |
cShowFPS:= true; |
|
245 |
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
|
246 |
|
2947 | 247 |
UserNick:= gameArgs[0]; |
248 |
val(gameArgs[1], ipcPort); |
|
3312 | 249 |
isSoundEnabled:= gameArgs[2] = '1'; |
250 |
isMusicEnabled:= gameArgs[3] = '1'; |
|
2947 | 251 |
cLocaleFName:= gameArgs[4]; |
252 |
cAltDamage:= gameArgs[5] = '1'; |
|
3021 | 253 |
val(gameArgs[6], cScreenHeight); |
254 |
val(gameArgs[7], cScreenWidth); |
|
255 |
cInitHeight:= cScreenHeight; |
|
256 |
cInitWidth:= cScreenWidth; |
|
2600 | 257 |
{$ENDIF} |
2698 | 258 |
|
2947 | 259 |
for p:= Succ(Low(TPathType)) to High(TPathType) do |
260 |
if p <> ptMapCurrent then Pathz[p]:= PathPrefix + '/' + Pathz[p]; |
|
261 |
||
262 |
WriteToConsole('Init SDL... '); |
|
263 |
SDLTry(SDL_Init(SDL_INIT_VIDEO) >= 0, true); |
|
264 |
WriteLnToConsole(msgOK); |
|
2698 | 265 |
|
2947 | 266 |
SDL_EnableUNICODE(1); |
2698 | 267 |
|
2947 | 268 |
WriteToConsole('Init SDL_ttf... '); |
269 |
SDLTry(TTF_Init() <> -1, true); |
|
270 |
WriteLnToConsole(msgOK); |
|
2698 | 271 |
|
3162 | 272 |
{$IFDEF WIN32} |
273 |
s:= SDL_getenv('SDL_VIDEO_CENTERED'); |
|
3153 | 274 |
SDL_putenv('SDL_VIDEO_CENTERED=1'); |
2947 | 275 |
ShowMainWindow(); |
3162 | 276 |
SDL_putenv(str2pchar('SDL_VIDEO_CENTERED=' + s)); |
277 |
{$ELSE} |
|
3154 | 278 |
ShowMainWindow(); |
3162 | 279 |
{$ENDIF} |
2698 | 280 |
|
2947 | 281 |
AddProgress(); |
2698 | 282 |
|
2947 | 283 |
ControllerInit(); // has to happen before InitKbdKeyTable to map keys |
284 |
InitKbdKeyTable(); |
|
2698 | 285 |
|
2947 | 286 |
if recordFileName = '' then |
287 |
InitIPC; |
|
288 |
WriteLnToConsole(msgGettingConfig); |
|
2698 | 289 |
|
2947 | 290 |
LoadLocale(Pathz[ptLocale] + '/en.txt'); // Do an initial load with english |
291 |
if cLocaleFName <> 'en.txt' then |
|
2719 | 292 |
begin |
293 |
// Try two letter locale first before trying specific locale overrides |
|
2722 | 294 |
if (Length(cLocaleFName) > 6) and (Copy(cLocaleFName,1,2)+'.txt' <> 'en.txt') then |
295 |
LoadLocale(Pathz[ptLocale] + '/' + Copy(cLocaleFName,1,2)+'.txt'); |
|
2947 | 296 |
LoadLocale(Pathz[ptLocale] + '/' + cLocaleFName); |
2719 | 297 |
end; |
2698 | 298 |
|
2947 | 299 |
if recordFileName = '' then |
300 |
SendIPCAndWaitReply('C') // ask for game config |
|
301 |
else |
|
302 |
LoadRecordFromFile(recordFileName); |
|
2698 | 303 |
|
2947 | 304 |
ScriptOnGameInit; |
2786 | 305 |
|
2947 | 306 |
s:= 'eproto ' + inttostr(cNetProtoVersion); |
307 |
SendIPCRaw(@s[0], Length(s) + 1); // send proto version |
|
308 |
||
309 |
InitTeams(); |
|
310 |
AssignStores(); |
|
2698 | 311 |
|
2947 | 312 |
if isSoundEnabled then |
313 |
InitSound(); |
|
2590 | 314 |
|
2947 | 315 |
isDeveloperMode:= false; |
2698 | 316 |
|
2947 | 317 |
TryDo(InitStepsFlags = cifAllInited, 'Some parameters not set (flags = ' + inttostr(InitStepsFlags) + ')', true); |
2698 | 318 |
|
2947 | 319 |
ParseCommand('rotmask', true); |
2698 | 320 |
|
2947 | 321 |
MainLoop(); |
322 |
OnDestroy(); |
|
3165
3ec07a7d8456
just some very sane stuff for the iphone port (plus some macro on pascal files)
koda
parents:
3162
diff
changeset
|
323 |
{$IFDEF HWLIBRARY}freeEverything();{$ENDIF} |
3ec07a7d8456
just some very sane stuff for the iphone port (plus some macro on pascal files)
koda
parents:
3162
diff
changeset
|
324 |
if alsoShutdownFrontend then halt; |
2698 | 325 |
end; |
2590 | 326 |
|
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
327 |
procedure initEverything; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
328 |
begin |
3365
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
329 |
Randomize(); |
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
330 |
|
3038 | 331 |
uConsts.initModule; |
332 |
uMisc.initModule; |
|
333 |
uConsole.initModule; // MUST happen after uMisc |
|
2947 | 334 |
|
3038 | 335 |
uAI.initModule; |
2947 | 336 |
//uAIActions does not need initialization |
337 |
//uAIAmmoTests does not need initialization |
|
3038 | 338 |
uAIMisc.initModule; |
339 |
uAmmos.initModule; |
|
340 |
uChat.initModule; |
|
341 |
uCollisions.initModule; |
|
2947 | 342 |
//uFloat does not need initialization |
343 |
//uGame does not need initialization |
|
3038 | 344 |
uGears.initModule; |
345 |
uIO.initModule; |
|
346 |
uKeys.initModule; |
|
347 |
uLand.initModule; |
|
2947 | 348 |
//uLandGraphics does not need initialization |
349 |
//uLandObjects does not need initialization |
|
350 |
//uLandTemplates does not need initialization |
|
351 |
//uLandTexture does not need initialization |
|
352 |
//uLocale does not need initialization |
|
3038 | 353 |
uRandom.initModule; |
3369
c7289e42f0ee
add other controls for map preview, also fix a bug in digest
koda
parents:
3365
diff
changeset
|
354 |
//uSHA is initialized internally |
3038 | 355 |
uSound.initModule; |
356 |
uStats.initModule; |
|
357 |
uStore.initModule; |
|
358 |
uTeams.initModule; |
|
359 |
uVisualGears.initModule; |
|
360 |
uWorld.initModule; |
|
361 |
uScript.initModule; |
|
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
362 |
end; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
363 |
|
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
364 |
procedure freeEverything; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
365 |
begin |
3038 | 366 |
uWorld.freeModule; |
367 |
uVisualGears.freeModule; //stub |
|
368 |
uTeams.freeModule; |
|
3043
3acdb4dac6eb
Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents:
3038
diff
changeset
|
369 |
uStore.freeModule; //stub |
3038 | 370 |
uStats.freeModule; //stub |
371 |
uSound.freeModule; //stub |
|
2947 | 372 |
//uSHA does not need to be freed |
3043
3acdb4dac6eb
Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents:
3038
diff
changeset
|
373 |
uRandom.freeModule; //stub |
2947 | 374 |
//uLocale does not need to be freed |
375 |
//uLandTemplates does not need to be freed |
|
376 |
//uLandTexture does not need to be freed |
|
377 |
//uLandObjects does not need to be freed |
|
378 |
//uLandGraphics does not need to be freed |
|
3038 | 379 |
uLand.freeModule; |
380 |
uKeys.freeModule; //stub |
|
3043
3acdb4dac6eb
Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents:
3038
diff
changeset
|
381 |
uIO.freeModule; //stub |
3038 | 382 |
uGears.freeModule; |
2947 | 383 |
//uGame does not need to be freed |
384 |
//uFloat does not need to be freed |
|
3043
3acdb4dac6eb
Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents:
3038
diff
changeset
|
385 |
uCollisions.freeModule; //stub |
3acdb4dac6eb
Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents:
3038
diff
changeset
|
386 |
uChat.freeModule; //stub |
3038 | 387 |
uAmmos.freeModule; |
388 |
uAIMisc.freeModule; //stub |
|
2947 | 389 |
//uAIAmmoTests does not need to be freed |
390 |
//uAIActions does not need to be freed |
|
3038 | 391 |
uAI.freeModule; //stub |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2715
diff
changeset
|
392 |
|
3038 | 393 |
uConsole.freeModule; |
394 |
uConsts.freeModule; //stub |
|
395 |
uScript.freeModule; |
|
3369
c7289e42f0ee
add other controls for map preview, also fix a bug in digest
koda
parents:
3365
diff
changeset
|
396 |
// uMisc closes the debug log. |
3043
3acdb4dac6eb
Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents:
3038
diff
changeset
|
397 |
uMisc.freeModule; |
3acdb4dac6eb
Just tidying up a bit. Comments, moving uMisc to end of frees in case ones above it need logging
nemo
parents:
3038
diff
changeset
|
398 |
|
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
399 |
end; |
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2800
diff
changeset
|
400 |
|
2698 | 401 |
///////////////////////// |
3365
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
402 |
procedure GenLandPreview{$IFDEF IPHONEOS}(port: LongInt){$ENDIF}; {$IFDEF HWLIBRARY}cdecl; export;{$ENDIF} |
2698 | 403 |
var Preview: TPreview; |
404 |
begin |
|
3365
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
405 |
{$IFDEF IPHONEOS} |
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
406 |
initEverything(); |
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
407 |
WriteLnToConsole('Preview connecting on port ' + inttostr(port)); |
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
408 |
ipcPort:= port; |
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
409 |
{$ENDIF} |
2947 | 410 |
InitIPC; |
411 |
IPCWaitPongEvent; |
|
412 |
TryDo(InitStepsFlags = cifRandomize, 'Some parameters not set (flags = ' + inttostr(InitStepsFlags) + ')', true); |
|
2698 | 413 |
|
3365
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
414 |
Preview:= GenPreview(); |
2947 | 415 |
WriteLnToConsole('Sending preview...'); |
416 |
SendIPCRaw(@Preview, sizeof(Preview)); |
|
3365
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
417 |
SendIPCRaw(@MaxHedgehogs, sizeof(byte)); |
2947 | 418 |
WriteLnToConsole('Preview sent, disconnect'); |
419 |
CloseIPC(); |
|
3365
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
420 |
{$IFDEF IPHONEOS} |
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
421 |
freeEverything(); |
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
422 |
{$ENDIF} |
2698 | 423 |
end; |
424 |
||
3021 | 425 |
{$IFNDEF HWLIBRARY} |
2698 | 426 |
//////////////////////////////// |
3407 | 427 |
(*procedure Resize(w, h: LongInt); |
2698 | 428 |
begin |
2947 | 429 |
cScreenWidth:= w; |
430 |
cScreenHeight:= h; |
|
431 |
if cFullScreen then |
|
432 |
ParseCommand('/fullscr 1', true) |
|
433 |
else |
|
434 |
ParseCommand('/fullscr 0', true); |
|
3407 | 435 |
end;*) |
51 | 436 |
|
2008 | 437 |
///////////////////// |
438 |
procedure DisplayUsage; |
|
2691 | 439 |
var i: LongInt; |
2008 | 440 |
begin |
2947 | 441 |
WriteLn('Wrong argument format: correct configurations is'); |
442 |
WriteLn(); |
|
443 |
WriteLn(' hwengine <path to data folder> <path to replay file> [option]'); |
|
444 |
WriteLn(); |
|
445 |
WriteLn('where [option] must be specified either as'); |
|
446 |
WriteLn(' --set-video [screen width] [screen height] [color dept]'); |
|
447 |
WriteLn(' --set-audio [volume] [enable music] [enable sounds]'); |
|
448 |
WriteLn(' --set-other [language file] [full screen] [show FPS]'); |
|
449 |
WriteLn(' --set-multimedia [screen height] [screen width] [color dept] [volume] [enable music] [enable sounds] [language file] [full screen]'); |
|
450 |
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]'); |
|
451 |
WriteLn(); |
|
452 |
WriteLn('Read documentation online at http://www.hedgewars.org/node/1465 for more information'); |
|
453 |
Write('parsed command: '); |
|
454 |
for i:=0 to ParamCount do |
|
455 |
Write(ParamStr(i) + ' '); |
|
456 |
WriteLn(); |
|
2008 | 457 |
end; |
458 |
||
51 | 459 |
//////////////////// |
460 |
procedure GetParams; |
|
267 | 461 |
{$IFDEF DEBUGFILE} |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
462 |
var i: LongInt; |
267 | 463 |
{$ENDIF} |
97
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
464 |
begin |
267 | 465 |
|
2947 | 466 |
case ParamCount of |
467 |
18: begin |
|
468 |
val(ParamStr(2), cScreenWidth); |
|
469 |
val(ParamStr(3), cScreenHeight); |
|
470 |
cInitWidth:= cScreenWidth; |
|
471 |
cInitHeight:= cScreenHeight; |
|
472 |
cBitsStr:= ParamStr(4); |
|
473 |
val(cBitsStr, cBits); |
|
474 |
val(ParamStr(5), ipcPort); |
|
475 |
cFullScreen:= ParamStr(6) = '1'; |
|
476 |
isSoundEnabled:= ParamStr(7) = '1'; |
|
477 |
cVSyncInUse:= ParamStr(8) = '1'; |
|
478 |
cWeaponTooltips:= ParamStr(9) = '1'; |
|
479 |
cLocaleFName:= ParamStr(10); |
|
480 |
val(ParamStr(11), cInitVolume); |
|
481 |
val(ParamStr(12), cTimerInterval); |
|
482 |
PathPrefix:= ParamStr(13); |
|
483 |
cShowFPS:= ParamStr(14) = '1'; |
|
484 |
cAltDamage:= ParamStr(15) = '1'; |
|
485 |
UserNick:= DecodeBase64(ParamStr(16)); |
|
486 |
isMusicEnabled:= ParamStr(17) = '1'; |
|
487 |
cReducedQuality:= ParamStr(18) = '1'; |
|
488 |
end; |
|
489 |
3: begin |
|
490 |
val(ParamStr(2), ipcPort); |
|
491 |
GameType:= gmtLandPreview; |
|
492 |
if ParamStr(3) <> 'landpreview' then |
|
493 |
OutError(errmsgShouldntRun, true); |
|
494 |
end; |
|
495 |
2: begin |
|
496 |
PathPrefix:= ParamStr(1); |
|
497 |
recordFileName:= ParamStr(2); |
|
498 |
end; |
|
499 |
6: begin |
|
500 |
PathPrefix:= ParamStr(1); |
|
501 |
recordFileName:= ParamStr(2); |
|
2698 | 502 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
503 |
if ParamStr(3) = '--set-video' then |
2947 | 504 |
begin |
505 |
val(ParamStr(4), cScreenWidth); |
|
506 |
val(ParamStr(5), cScreenHeight); |
|
507 |
cInitWidth:= cScreenWidth; |
|
508 |
cInitHeight:= cScreenHeight; |
|
509 |
cBitsStr:= ParamStr(6); |
|
510 |
val(cBitsStr, cBits); |
|
511 |
end |
|
512 |
else |
|
513 |
begin |
|
514 |
if ParamStr(3) = '--set-audio' then |
|
515 |
begin |
|
516 |
val(ParamStr(4), cInitVolume); |
|
517 |
isMusicEnabled:= ParamStr(5) = '1'; |
|
518 |
isSoundEnabled:= ParamStr(6) = '1'; |
|
519 |
end |
|
520 |
else |
|
521 |
begin |
|
522 |
if ParamStr(3) = '--set-other' then |
|
523 |
begin |
|
524 |
cLocaleFName:= ParamStr(4); |
|
525 |
cFullScreen:= ParamStr(5) = '1'; |
|
526 |
cShowFPS:= ParamStr(6) = '1'; |
|
527 |
end |
|
528 |
else GameType:= gmtSyntax; |
|
529 |
end |
|
530 |
end; |
|
531 |
end; |
|
532 |
11: begin |
|
533 |
PathPrefix:= ParamStr(1); |
|
534 |
recordFileName:= ParamStr(2); |
|
2376 | 535 |
|
2947 | 536 |
if ParamStr(3) = '--set-multimedia' then |
537 |
begin |
|
538 |
val(ParamStr(4), cScreenWidth); |
|
539 |
val(ParamStr(5), cScreenHeight); |
|
540 |
cInitWidth:= cScreenWidth; |
|
541 |
cInitHeight:= cScreenHeight; |
|
542 |
cBitsStr:= ParamStr(6); |
|
543 |
val(cBitsStr, cBits); |
|
544 |
val(ParamStr(7), cInitVolume); |
|
545 |
isMusicEnabled:= ParamStr(8) = '1'; |
|
546 |
isSoundEnabled:= ParamStr(9) = '1'; |
|
547 |
cLocaleFName:= ParamStr(10); |
|
548 |
cFullScreen:= ParamStr(11) = '1'; |
|
549 |
end |
|
550 |
else GameType:= gmtSyntax; |
|
551 |
end; |
|
552 |
15: begin |
|
553 |
PathPrefix:= ParamStr(1); |
|
554 |
recordFileName:= ParamStr(2); |
|
555 |
if ParamStr(3) = '--set-everything' then |
|
556 |
begin |
|
557 |
val(ParamStr(4), cScreenWidth); |
|
558 |
val(ParamStr(5), cScreenHeight); |
|
559 |
cInitWidth:= cScreenWidth; |
|
560 |
cInitHeight:= cScreenHeight; |
|
561 |
cBitsStr:= ParamStr(6); |
|
562 |
val(cBitsStr, cBits); |
|
563 |
val(ParamStr(7), cInitVolume); |
|
564 |
isMusicEnabled:= ParamStr(8) = '1'; |
|
565 |
isSoundEnabled:= ParamStr(9) = '1'; |
|
566 |
cLocaleFName:= ParamStr(10); |
|
567 |
cFullScreen:= ParamStr(11) = '1'; |
|
568 |
cAltDamage:= ParamStr(12) = '1'; |
|
569 |
cShowFPS:= ParamStr(13) = '1'; |
|
570 |
val(ParamStr(14), cTimerInterval); |
|
571 |
cReducedQuality:= ParamStr(15) = '1'; |
|
572 |
end |
|
573 |
else GameType:= gmtSyntax; |
|
574 |
end; |
|
575 |
else GameType:= gmtSyntax; |
|
576 |
end; |
|
2630 | 577 |
|
578 |
{$IFDEF DEBUGFILE} |
|
2947 | 579 |
AddFileLog('Prefix: "' + PathPrefix +'"'); |
580 |
for i:= 0 to ParamCount do |
|
581 |
AddFileLog(inttostr(i) + ': ' + ParamStr(i)); |
|
2630 | 582 |
{$ENDIF} |
51 | 583 |
end; |
3021 | 584 |
|
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
585 |
//////////////////////////////////////////////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
586 |
/////////////////////////////// m a i n //////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
587 |
//////////////////////////////////////////////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
588 |
begin |
2947 | 589 |
initEverything(); |
590 |
WriteLnToConsole('Hedgewars ' + cVersionString + ' engine (network protocol: ' + inttostr(cNetProtoVersion) + ')'); |
|
591 |
||
592 |
GetParams(); |
|
2008 | 593 |
|
3078 | 594 |
if GameType = gmtLandPreview then GenLandPreview() |
2947 | 595 |
else if GameType = gmtSyntax then DisplayUsage() |
596 |
else Game(); |
|
597 |
||
3078 | 598 |
freeEverything(); |
2947 | 599 |
if GameType = gmtSyntax then |
600 |
ExitCode:= 1 |
|
601 |
else |
|
602 |
ExitCode:= 0; |
|
2698 | 603 |
{$ENDIF} |
51 | 604 |
end. |