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