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