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