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