author | koda |
Sat, 15 Jan 2011 21:32:44 +0100 | |
branch | 0.9.15 |
changeset 4751 | 849740a91d36 |
parent 4744 | ecc2c757d0df |
child 4773 | 69f8431a5d20 |
child 4845 | 9a0f5377c529 |
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 |
|
3697 | 32 |
uses SDLh, uMisc, uConsole, uGame, uConsts, uLand, uAmmos, uVisualGears, uGears, uStore, uWorld, uKeys, uSound, |
4357
a1fcfc341a52
Introduce unit uTypes in order to remove some cyclic unit dependencies
unC0Rr
parents:
4046
diff
changeset
|
33 |
uScript, uTeams, uStats, uIO, uLocale, uChat, uAI, uAIMisc, uRandom, uLandTexture, uCollisions, uMobile, |
4490 | 34 |
sysutils, uTypes, uVariables, uCommands, uUtils, uCaptions, uDebug, uCommandHandlers, uLandPainted; |
3697 | 35 |
|
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2800
diff
changeset
|
36 |
{$IFDEF HWLIBRARY} |
3525 | 37 |
procedure initEverything(complete:boolean); |
38 |
procedure freeEverything(complete:boolean); |
|
51 | 39 |
|
2698 | 40 |
implementation |
41 |
{$ELSE} |
|
51 | 42 |
procedure OnDestroy; forward; |
3611 | 43 |
procedure initEverything(complete:boolean); forward; |
3525 | 44 |
procedure freeEverything(complete:boolean); forward; |
2698 | 45 |
{$ENDIF} |
51 | 46 |
|
47 |
//////////////////////////////// |
|
371 | 48 |
procedure DoTimer(Lag: LongInt); |
2905 | 49 |
var s: shortstring; |
51 | 50 |
begin |
4454 | 51 |
if isPaused = false then |
52 |
inc(RealTicks, Lag); |
|
564 | 53 |
|
2947 | 54 |
case GameState of |
55 |
gsLandGen: begin |
|
56 |
GenMap; |
|
4389 | 57 |
ParseCommand('sendlanddigest', true); |
2947 | 58 |
GameState:= gsStart; |
59 |
end; |
|
60 |
gsStart: begin |
|
61 |
if HasBorder then DisableSomeWeapons; |
|
62 |
AddClouds; |
|
63 |
AssignHHCoords; |
|
64 |
AddMiscGears; |
|
65 |
StoreLoad; |
|
66 |
InitWorld; |
|
67 |
ResetKbd; |
|
68 |
SoundLoad; |
|
69 |
if GameType = gmtSave then |
|
70 |
begin |
|
71 |
isSEBackup:= isSoundEnabled; |
|
72 |
isSoundEnabled:= false |
|
73 |
end; |
|
74 |
FinishProgress; |
|
75 |
PlayMusic; |
|
76 |
SetScale(zoom); |
|
77 |
ScriptCall('onGameStart'); |
|
78 |
GameState:= gsGame; |
|
79 |
end; |
|
80 |
gsConfirm, |
|
81 |
gsGame: begin |
|
82 |
DrawWorld(Lag); // never place between ProcessKbd and DoGameTick - bugs due to /put cmd and isCursorVisible |
|
83 |
ProcessKbd; |
|
3449
033e4a8a9c74
wait for AI thread to finish before freeing ressources (to avoid segfaults on game exit)
sheepluva
parents:
3444
diff
changeset
|
84 |
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
|
85 |
begin |
3799 | 86 |
DoGameTick(Lag); |
3449
033e4a8a9c74
wait for AI thread to finish before freeing ressources (to avoid segfaults on game exit)
sheepluva
parents:
3444
diff
changeset
|
87 |
ProcessVisualGears(Lag); |
033e4a8a9c74
wait for AI thread to finish before freeing ressources (to avoid segfaults on game exit)
sheepluva
parents:
3444
diff
changeset
|
88 |
end; |
2947 | 89 |
end; |
90 |
gsChat: begin |
|
91 |
DrawWorld(Lag); |
|
3449
033e4a8a9c74
wait for AI thread to finish before freeing ressources (to avoid segfaults on game exit)
sheepluva
parents:
3444
diff
changeset
|
92 |
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
|
93 |
begin |
3843 | 94 |
DoGameTick(Lag); |
3449
033e4a8a9c74
wait for AI thread to finish before freeing ressources (to avoid segfaults on game exit)
sheepluva
parents:
3444
diff
changeset
|
95 |
ProcessVisualGears(Lag); |
033e4a8a9c74
wait for AI thread to finish before freeing ressources (to avoid segfaults on game exit)
sheepluva
parents:
3444
diff
changeset
|
96 |
end; |
2947 | 97 |
end; |
98 |
gsExit: begin |
|
99 |
isTerminated:= true; |
|
100 |
end; |
|
4454 | 101 |
gsSuspend: exit; |
2947 | 102 |
end; |
564 | 103 |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2715
diff
changeset
|
104 |
{$IFDEF SDL13} |
2947 | 105 |
SDL_RenderPresent(); |
3523 | 106 |
{$ELSE} |
107 |
SDL_GL_SwapBuffers(); |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2715
diff
changeset
|
108 |
{$ENDIF} |
4454 | 109 |
|
2947 | 110 |
if flagMakeCapture then |
111 |
begin |
|
112 |
flagMakeCapture:= false; |
|
113 |
s:= 'hw_' + FormatDateTime('YYYY-MM-DD_HH-mm-ss', Now()) + inttostr(GameTicks); |
|
114 |
WriteLnToConsole('Saving ' + s + '...'); |
|
4359 | 115 |
playSound(sndShutter); |
2947 | 116 |
MakeScreenshot(s); |
117 |
//SDL_SaveBMP_RW(SDLPrimSurface, SDL_RWFromFile(Str2PChar(s), 'wb'), 1) |
|
118 |
end; |
|
51 | 119 |
end; |
120 |
||
121 |
//////////////////// |
|
79 | 122 |
procedure OnDestroy; |
51 | 123 |
begin |
2947 | 124 |
WriteLnToConsole('Freeing resources...'); |
3617 | 125 |
FreeActionsList(); |
2947 | 126 |
StoreRelease(); |
127 |
ControllerClose(); |
|
128 |
CloseIPC(); |
|
129 |
TTF_Quit(); |
|
3598 | 130 |
{$IFDEF SDL13} |
131 |
SDL_DestroyRenderer(SDLwindow); |
|
132 |
SDL_DestroyWindow(SDLwindow); |
|
133 |
{$ENDIF} |
|
2947 | 134 |
SDL_Quit(); |
3063 | 135 |
isTerminated:= false; |
51 | 136 |
end; |
137 |
||
138 |
/////////////////// |
|
3697 | 139 |
procedure MainLoop; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2715
diff
changeset
|
140 |
var PrevTime, CurrTime: Longword; |
3463 | 141 |
event: TSDL_Event; |
2698 | 142 |
begin |
2947 | 143 |
PrevTime:= SDL_GetTicks; |
3063 | 144 |
while isTerminated = false do |
145 |
begin |
|
3523 | 146 |
|
2947 | 147 |
while SDL_PollEvent(@event) <> 0 do |
148 |
begin |
|
149 |
case event.type_ of |
|
3647
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3634
diff
changeset
|
150 |
SDL_KEYDOWN: if GameState = gsChat then |
4454 | 151 |
{$IFDEF SDL13} |
3647
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3634
diff
changeset
|
152 |
// sdl on iphone supports only ashii keyboards and the unicode field is deprecated in sdl 1.3 |
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3634
diff
changeset
|
153 |
KeyPressChat(event.key.keysym.sym); |
4454 | 154 |
SDL_WINDOWEVENT: |
155 |
if event.wevent.event = SDL_WINDOWEVENT_SHOWN then |
|
156 |
cHasFocus:= true; |
|
3647
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3634
diff
changeset
|
157 |
{$ELSE} |
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3634
diff
changeset
|
158 |
KeyPressChat(event.key.keysym.unicode); |
4744
ecc2c757d0df
general uKey refactor in preparaiton of two new shortcuts
koda
parents:
4490
diff
changeset
|
159 |
SDL_MOUSEBUTTONDOWN: if event.button.button = SDL_BUTTON_WHEELDOWN then wheelDown:= true; |
ecc2c757d0df
general uKey refactor in preparaiton of two new shortcuts
koda
parents:
4490
diff
changeset
|
160 |
SDL_MOUSEBUTTONUP: if event.button.button = SDL_BUTTON_WHEELUP then wheelUp:= true; |
2947 | 161 |
SDL_ACTIVEEVENT: |
162 |
if (event.active.state and SDL_APPINPUTFOCUS) <> 0 then |
|
163 |
cHasFocus:= event.active.gain = 1; |
|
3463 | 164 |
{$ENDIF} |
2947 | 165 |
SDL_JOYAXISMOTION: ControllerAxisEvent(event.jaxis.which, event.jaxis.axis, event.jaxis.value); |
166 |
SDL_JOYHATMOTION: ControllerHatEvent(event.jhat.which, event.jhat.hat, event.jhat.value); |
|
167 |
SDL_JOYBUTTONDOWN: ControllerButtonEvent(event.jbutton.which, event.jbutton.button, true); |
|
168 |
SDL_JOYBUTTONUP: ControllerButtonEvent(event.jbutton.which, event.jbutton.button, false); |
|
169 |
SDL_QUITEV: isTerminated:= true |
|
4454 | 170 |
end; //end case event.type_ of |
171 |
end; //end while SDL_PollEvent(@event) <> 0 do |
|
3463 | 172 |
|
3063 | 173 |
if isTerminated = false then |
2947 | 174 |
begin |
3063 | 175 |
CurrTime:= SDL_GetTicks; |
3976 | 176 |
if PrevTime + longword(cTimerInterval) <= CurrTime then |
3063 | 177 |
begin |
178 |
DoTimer(CurrTime - PrevTime); |
|
179 |
PrevTime:= CurrTime |
|
3697 | 180 |
end |
3063 | 181 |
else SDL_Delay(1); |
182 |
IPCCheckSock(); |
|
183 |
end; |
|
184 |
end; |
|
2698 | 185 |
end; |
186 |
||
187 |
///////////////////////// |
|
188 |
procedure ShowMainWindow; |
|
189 |
begin |
|
2947 | 190 |
if cFullScreen then ParseCommand('fullscr 1', true) |
191 |
else ParseCommand('fullscr 0', true); |
|
192 |
SDL_ShowCursor(0) |
|
2698 | 193 |
end; |
2591
c6597b65caea
other controls implementation + sdlh revisited (once again)
koda
parents:
2590
diff
changeset
|
194 |
|
2698 | 195 |
/////////////// |
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2800
diff
changeset
|
196 |
{$IFDEF HWLIBRARY} |
3971 | 197 |
procedure Game(gameArgs: PPChar); cdecl; export; |
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
|
198 |
{$ELSE} |
3064 | 199 |
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
|
200 |
{$ENDIF} |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
201 |
var p: TPathType; |
2947 | 202 |
s: shortstring; |
3611 | 203 |
{$IFDEF DEBUGFILE} |
204 |
i: LongInt; |
|
205 |
{$ENDIF} |
|
2698 | 206 |
begin |
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2800
diff
changeset
|
207 |
{$IFDEF HWLIBRARY} |
2947 | 208 |
cBits:= 32; |
209 |
cFullScreen:= false; |
|
210 |
cTimerInterval:= 8; |
|
211 |
PathPrefix:= 'Data'; |
|
3624 | 212 |
{$IFDEF DEBUGFILE} |
2947 | 213 |
cShowFPS:= true; |
3624 | 214 |
{$ELSE} |
3971 | 215 |
cShowFPS:= false; |
3624 | 216 |
{$ENDIF} |
3779
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3774
diff
changeset
|
217 |
val(gameArgs[0], ipcPort); |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3914
diff
changeset
|
218 |
val(gameArgs[1], cScreenWidth); |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3914
diff
changeset
|
219 |
val(gameArgs[2], cScreenHeight); |
3779
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3774
diff
changeset
|
220 |
val(gameArgs[3], cReducedQuality); |
2947 | 221 |
cLocaleFName:= gameArgs[4]; |
3779
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3774
diff
changeset
|
222 |
UserNick:= gameArgs[5]; |
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3774
diff
changeset
|
223 |
isSoundEnabled:= gameArgs[6] = '1'; |
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3774
diff
changeset
|
224 |
isMusicEnabled:= gameArgs[7] = '1'; |
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3774
diff
changeset
|
225 |
cAltDamage:= gameArgs[8] = '1'; |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3914
diff
changeset
|
226 |
val(gameArgs[9], rotationQt); |
3779
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3774
diff
changeset
|
227 |
recordFileName:= gameArgs[10]; |
3624 | 228 |
{$ENDIF} |
3613 | 229 |
|
3914 | 230 |
cLogfileBase:= 'game'; |
3611 | 231 |
initEverything(true); |
232 |
WriteLnToConsole('Hedgewars ' + cVersionString + ' engine (network protocol: ' + inttostr(cNetProtoVersion) + ')'); |
|
233 |
{$IFDEF DEBUGFILE} |
|
234 |
AddFileLog('Prefix: "' + PathPrefix +'"'); |
|
235 |
for i:= 0 to ParamCount do |
|
236 |
AddFileLog(inttostr(i) + ': ' + ParamStr(i)); |
|
237 |
{$ENDIF} |
|
2698 | 238 |
|
2947 | 239 |
for p:= Succ(Low(TPathType)) to High(TPathType) do |
240 |
if p <> ptMapCurrent then Pathz[p]:= PathPrefix + '/' + Pathz[p]; |
|
3697 | 241 |
|
2947 | 242 |
WriteToConsole('Init SDL... '); |
243 |
SDLTry(SDL_Init(SDL_INIT_VIDEO) >= 0, true); |
|
244 |
WriteLnToConsole(msgOK); |
|
2698 | 245 |
|
2947 | 246 |
SDL_EnableUNICODE(1); |
2698 | 247 |
|
2947 | 248 |
WriteToConsole('Init SDL_ttf... '); |
249 |
SDLTry(TTF_Init() <> -1, true); |
|
250 |
WriteLnToConsole(msgOK); |
|
2698 | 251 |
|
3162 | 252 |
{$IFDEF WIN32} |
253 |
s:= SDL_getenv('SDL_VIDEO_CENTERED'); |
|
3153 | 254 |
SDL_putenv('SDL_VIDEO_CENTERED=1'); |
2947 | 255 |
ShowMainWindow(); |
3162 | 256 |
SDL_putenv(str2pchar('SDL_VIDEO_CENTERED=' + s)); |
257 |
{$ELSE} |
|
3154 | 258 |
ShowMainWindow(); |
3162 | 259 |
{$ENDIF} |
2698 | 260 |
|
2947 | 261 |
AddProgress(); |
2698 | 262 |
|
2947 | 263 |
ControllerInit(); // has to happen before InitKbdKeyTable to map keys |
264 |
InitKbdKeyTable(); |
|
2698 | 265 |
|
2947 | 266 |
LoadLocale(Pathz[ptLocale] + '/en.txt'); // Do an initial load with english |
267 |
if cLocaleFName <> 'en.txt' then |
|
4046
cfdbddc4b385
making indentation consistent (noticed while debugging)
nemo
parents:
3976
diff
changeset
|
268 |
begin |
2719 | 269 |
// Try two letter locale first before trying specific locale overrides |
3697 | 270 |
if (Length(cLocaleFName) > 6) and (Copy(cLocaleFName,1,2)+'.txt' <> 'en.txt') then |
2722 | 271 |
LoadLocale(Pathz[ptLocale] + '/' + Copy(cLocaleFName,1,2)+'.txt'); |
2947 | 272 |
LoadLocale(Pathz[ptLocale] + '/' + cLocaleFName); |
4046
cfdbddc4b385
making indentation consistent (noticed while debugging)
nemo
parents:
3976
diff
changeset
|
273 |
end; |
2698 | 274 |
|
3904
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3843
diff
changeset
|
275 |
WriteLnToConsole(msgGettingConfig); |
4046
cfdbddc4b385
making indentation consistent (noticed while debugging)
nemo
parents:
3976
diff
changeset
|
276 |
|
2947 | 277 |
if recordFileName = '' then |
4046
cfdbddc4b385
making indentation consistent (noticed while debugging)
nemo
parents:
3976
diff
changeset
|
278 |
begin |
3904
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3843
diff
changeset
|
279 |
InitIPC; |
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3843
diff
changeset
|
280 |
SendIPCAndWaitReply('C'); // ask for game config |
4046
cfdbddc4b385
making indentation consistent (noticed while debugging)
nemo
parents:
3976
diff
changeset
|
281 |
end |
2947 | 282 |
else |
4046
cfdbddc4b385
making indentation consistent (noticed while debugging)
nemo
parents:
3976
diff
changeset
|
283 |
begin |
2947 | 284 |
LoadRecordFromFile(recordFileName); |
3935 | 285 |
perfExt_SaveBeganSynching(); |
4046
cfdbddc4b385
making indentation consistent (noticed while debugging)
nemo
parents:
3976
diff
changeset
|
286 |
end; |
2698 | 287 |
|
2947 | 288 |
ScriptOnGameInit; |
2786 | 289 |
|
2947 | 290 |
s:= 'eproto ' + inttostr(cNetProtoVersion); |
291 |
SendIPCRaw(@s[0], Length(s) + 1); // send proto version |
|
292 |
||
293 |
InitTeams(); |
|
294 |
AssignStores(); |
|
2698 | 295 |
|
2947 | 296 |
if isSoundEnabled then |
297 |
InitSound(); |
|
2590 | 298 |
|
2947 | 299 |
isDeveloperMode:= false; |
2698 | 300 |
|
2947 | 301 |
TryDo(InitStepsFlags = cifAllInited, 'Some parameters not set (flags = ' + inttostr(InitStepsFlags) + ')', true); |
2698 | 302 |
|
2947 | 303 |
ParseCommand('rotmask', true); |
2698 | 304 |
|
2947 | 305 |
MainLoop(); |
3615 | 306 |
// clean up SDL and GL context |
2947 | 307 |
OnDestroy(); |
3615 | 308 |
// clean up all the other memory allocated |
3611 | 309 |
freeEverything(true); |
3165
3ec07a7d8456
just some very sane stuff for the iphone port (plus some macro on pascal files)
koda
parents:
3162
diff
changeset
|
310 |
if alsoShutdownFrontend then halt; |
2698 | 311 |
end; |
2590 | 312 |
|
3525 | 313 |
procedure initEverything (complete:boolean); |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
314 |
begin |
3365
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
315 |
Randomize(); |
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
316 |
|
3709 | 317 |
// uConsts does not need initialization as they are all consts |
4374 | 318 |
uUtils.initModule; |
3038 | 319 |
uMisc.initModule; |
4359 | 320 |
uVariables.initModule; |
3038 | 321 |
uConsole.initModule; // MUST happen after uMisc |
4373 | 322 |
uCommands.initModule; |
4413 | 323 |
uCommandHandlers.initModule; |
3525 | 324 |
|
3038 | 325 |
uLand.initModule; |
4490 | 326 |
uLandPainted.initModule; |
327 |
||
3525 | 328 |
uIO.initModule; |
3697 | 329 |
|
3525 | 330 |
if complete then |
331 |
begin |
|
332 |
uAI.initModule; |
|
333 |
//uAIActions does not need initialization |
|
334 |
//uAIAmmoTests does not need initialization |
|
335 |
uAIMisc.initModule; |
|
336 |
uAmmos.initModule; |
|
337 |
uChat.initModule; |
|
338 |
uCollisions.initModule; |
|
339 |
//uFloat does not need initialization |
|
340 |
//uGame does not need initialization |
|
341 |
uGears.initModule; |
|
342 |
uKeys.initModule; |
|
343 |
//uLandGraphics does not need initialization |
|
344 |
//uLandObjects does not need initialization |
|
345 |
//uLandTemplates does not need initialization |
|
3612
b50215a8a43d
land arrays are allocated dynamically, so DOWNSCALE and LOWRES macros are now removed and replaced by run time flags rqBlurryLand and rqLowRes
koda
parents:
3611
diff
changeset
|
346 |
uLandTexture.initModule; |
3525 | 347 |
//uLocale does not need initialization |
3697 | 348 |
uRandom.initModule; |
3525 | 349 |
uScript.initModule; |
350 |
uSound.initModule; |
|
351 |
uStats.initModule; |
|
352 |
uStore.initModule; |
|
353 |
uTeams.initModule; |
|
354 |
uVisualGears.initModule; |
|
355 |
uWorld.initModule; |
|
4393 | 356 |
uCaptions.initModule; |
3525 | 357 |
end; |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
358 |
end; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
359 |
|
3525 | 360 |
procedure freeEverything (complete:boolean); |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
361 |
begin |
3525 | 362 |
if complete then |
363 |
begin |
|
4393 | 364 |
uCaptions.freeModule; |
3525 | 365 |
uWorld.freeModule; |
3615 | 366 |
uVisualGears.freeModule; |
3525 | 367 |
uTeams.freeModule; |
368 |
uStore.freeModule; //stub |
|
369 |
uStats.freeModule; //stub |
|
3615 | 370 |
uSound.freeModule; |
3525 | 371 |
uScript.freeModule; |
372 |
uRandom.freeModule; //stub |
|
373 |
//uLocale does not need to be freed |
|
374 |
//uLandTemplates does not need to be freed |
|
3612
b50215a8a43d
land arrays are allocated dynamically, so DOWNSCALE and LOWRES macros are now removed and replaced by run time flags rqBlurryLand and rqLowRes
koda
parents:
3611
diff
changeset
|
375 |
uLandTexture.freeModule; |
3525 | 376 |
//uLandObjects does not need to be freed |
377 |
//uLandGraphics does not need to be freed |
|
378 |
uKeys.freeModule; //stub |
|
379 |
uGears.freeModule; |
|
380 |
//uGame does not need to be freed |
|
381 |
//uFloat does not need to be freed |
|
382 |
uCollisions.freeModule; //stub |
|
383 |
uChat.freeModule; //stub |
|
384 |
uAmmos.freeModule; |
|
385 |
uAIMisc.freeModule; //stub |
|
386 |
//uAIAmmoTests does not need to be freed |
|
387 |
//uAIActions does not need to be freed |
|
3617 | 388 |
uAI.freeModule; //stub |
3525 | 389 |
end; |
3697 | 390 |
|
3525 | 391 |
uIO.freeModule; //stub |
3038 | 392 |
uLand.freeModule; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2715
diff
changeset
|
393 |
|
4413 | 394 |
uCommandHandlers.freeModule; |
4373 | 395 |
uCommands.freeModule; |
3038 | 396 |
uConsole.freeModule; |
4359 | 397 |
uVariables.freeModule; |
4374 | 398 |
uUtils.freeModule; |
3525 | 399 |
uMisc.freeModule; // uMisc closes the debug log. |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
400 |
end; |
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2800
diff
changeset
|
401 |
|
2698 | 402 |
///////////////////////// |
3610 | 403 |
procedure GenLandPreview{$IFDEF HWLIBRARY}(port: LongInt); cdecl; export{$ENDIF}; |
2698 | 404 |
var Preview: TPreview; |
405 |
begin |
|
3914 | 406 |
cLogfileBase:= 'preview'; |
3611 | 407 |
initEverything(false); |
3610 | 408 |
{$IFDEF HWLIBRARY} |
3365
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
409 |
WriteLnToConsole('Preview connecting on port ' + inttostr(port)); |
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
410 |
ipcPort:= port; |
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
411 |
{$ENDIF} |
2947 | 412 |
InitIPC; |
413 |
IPCWaitPongEvent; |
|
414 |
TryDo(InitStepsFlags = cifRandomize, 'Some parameters not set (flags = ' + inttostr(InitStepsFlags) + ')', true); |
|
2698 | 415 |
|
3365
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
416 |
Preview:= GenPreview(); |
2947 | 417 |
WriteLnToConsole('Sending preview...'); |
418 |
SendIPCRaw(@Preview, sizeof(Preview)); |
|
3365
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
419 |
SendIPCRaw(@MaxHedgehogs, sizeof(byte)); |
2947 | 420 |
WriteLnToConsole('Preview sent, disconnect'); |
421 |
CloseIPC(); |
|
3525 | 422 |
freeEverything(false); |
2698 | 423 |
end; |
424 |
||
3021 | 425 |
{$IFNDEF HWLIBRARY} |
2008 | 426 |
///////////////////// |
427 |
procedure DisplayUsage; |
|
2691 | 428 |
var i: LongInt; |
2008 | 429 |
begin |
2947 | 430 |
WriteLn('Wrong argument format: correct configurations is'); |
431 |
WriteLn(); |
|
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
432 |
WriteLn(' hwengine <path to data folder> <path to replay file> [options]'); |
2947 | 433 |
WriteLn(); |
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
434 |
WriteLn('where [options] must be specified either as:'); |
2947 | 435 |
WriteLn(' --set-video [screen width] [screen height] [color dept]'); |
436 |
WriteLn(' --set-audio [volume] [enable music] [enable sounds]'); |
|
437 |
WriteLn(' --set-other [language file] [full screen] [show FPS]'); |
|
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
438 |
WriteLn(' --set-multimedia [screen width] [screen height] [color dept] [volume] [enable music] [enable sounds] [language file] [full screen]'); |
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
439 |
WriteLn(' --set-everything [screen width] [screen height] [color dept] [volume] [enable music] [enable sounds] [language file] [full screen] [show FPS] [alternate damage] [timer value] [reduced quality]'); |
2947 | 440 |
WriteLn(); |
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
441 |
WriteLn('Read documentation online at http://code.google.com/p/hedgewars/wiki/CommandLineOptions for more information'); |
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
442 |
WriteLn(); |
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
443 |
Write('PARSED COMMAND: '); |
2947 | 444 |
for i:=0 to ParamCount do |
445 |
Write(ParamStr(i) + ' '); |
|
446 |
WriteLn(); |
|
2008 | 447 |
end; |
448 |
||
51 | 449 |
//////////////////// |
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
450 |
{$INCLUDE "ArgParsers.inc"} |
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
451 |
|
51 | 452 |
procedure GetParams; |
97
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
453 |
begin |
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
454 |
if (ParamCount < 2) then |
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
455 |
GameType:= gmtSyntax |
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
456 |
else |
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
457 |
if (ParamCount = 3) then |
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
458 |
internalSetGameTypeLandPreviewFromParameters() |
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
459 |
else |
3709 | 460 |
if (ParamCount = cDefaultParamNum) then |
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
461 |
internalStartGameWithParameters() |
2947 | 462 |
else |
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
463 |
playReplayFileWithParameters(); |
51 | 464 |
end; |
3021 | 465 |
|
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
466 |
//////////////////////////////////////////////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
467 |
/////////////////////////////// m a i n //////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
468 |
//////////////////////////////////////////////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
469 |
begin |
2947 | 470 |
GetParams(); |
2008 | 471 |
|
3078 | 472 |
if GameType = gmtLandPreview then GenLandPreview() |
2947 | 473 |
else if GameType = gmtSyntax then DisplayUsage() |
474 |
else Game(); |
|
3697 | 475 |
|
2947 | 476 |
if GameType = gmtSyntax then |
477 |
ExitCode:= 1 |
|
478 |
else |
|
479 |
ExitCode:= 0; |
|
2698 | 480 |
{$ENDIF} |
51 | 481 |
end. |