author | unc0rr |
Wed, 16 Nov 2011 20:42:45 +0300 | |
changeset 6387 | 3dcb839b5904 |
parent 6329 | 9eb6c4a8d633 |
child 6334 | b05d3af9a58e |
permissions | -rw-r--r-- |
2947 | 1 |
(* |
2 |
* Hedgewars, a free turn based strategy game |
|
4976 | 3 |
* Copyright (c) 2004-2011 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, |
5174
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5167
diff
changeset
|
33 |
uScript, uTeams, uStats, uIO, uLocale, uChat, uAI, uAIMisc, uRandom, uLandTexture, uCollisions, |
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); |
|
4929
3dca560e6510
I need this export in order to not have the wrapper.c fail to find Game() on linux
sheepluva
parents:
4901
diff
changeset
|
39 |
procedure Game(gameArgs: PPChar); cdecl; export; |
51 | 40 |
|
2698 | 41 |
implementation |
42 |
{$ELSE} |
|
51 | 43 |
procedure OnDestroy; forward; |
3611 | 44 |
procedure initEverything(complete:boolean); forward; |
3525 | 45 |
procedure freeEverything(complete:boolean); forward; |
2698 | 46 |
{$ENDIF} |
51 | 47 |
|
48 |
//////////////////////////////// |
|
371 | 49 |
procedure DoTimer(Lag: LongInt); |
2905 | 50 |
var s: shortstring; |
51 | 51 |
begin |
4454 | 52 |
if isPaused = false then |
53 |
inc(RealTicks, Lag); |
|
564 | 54 |
|
2947 | 55 |
case GameState of |
56 |
gsLandGen: begin |
|
57 |
GenMap; |
|
4389 | 58 |
ParseCommand('sendlanddigest', true); |
2947 | 59 |
GameState:= gsStart; |
60 |
end; |
|
61 |
gsStart: begin |
|
62 |
if HasBorder then DisableSomeWeapons; |
|
63 |
AddClouds; |
|
4806
48c1a395f0a7
added flake configuration also in sudden death and SDClouds for underwater
Henek
parents:
4490
diff
changeset
|
64 |
AddFlakes; |
2947 | 65 |
AssignHHCoords; |
66 |
AddMiscGears; |
|
67 |
StoreLoad; |
|
68 |
InitWorld; |
|
69 |
ResetKbd; |
|
70 |
SoundLoad; |
|
71 |
if GameType = gmtSave then |
|
72 |
begin |
|
73 |
isSEBackup:= isSoundEnabled; |
|
74 |
isSoundEnabled:= false |
|
75 |
end; |
|
76 |
FinishProgress; |
|
77 |
PlayMusic; |
|
78 |
SetScale(zoom); |
|
79 |
ScriptCall('onGameStart'); |
|
80 |
GameState:= gsGame; |
|
81 |
end; |
|
82 |
gsConfirm, |
|
83 |
gsGame: begin |
|
84 |
DrawWorld(Lag); // never place between ProcessKbd and DoGameTick - bugs due to /put cmd and isCursorVisible |
|
85 |
ProcessKbd; |
|
3449
033e4a8a9c74
wait for AI thread to finish before freeing ressources (to avoid segfaults on game exit)
sheepluva
parents:
3444
diff
changeset
|
86 |
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
|
87 |
begin |
3799 | 88 |
DoGameTick(Lag); |
3449
033e4a8a9c74
wait for AI thread to finish before freeing ressources (to avoid segfaults on game exit)
sheepluva
parents:
3444
diff
changeset
|
89 |
ProcessVisualGears(Lag); |
033e4a8a9c74
wait for AI thread to finish before freeing ressources (to avoid segfaults on game exit)
sheepluva
parents:
3444
diff
changeset
|
90 |
end; |
2947 | 91 |
end; |
92 |
gsChat: begin |
|
93 |
DrawWorld(Lag); |
|
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 |
033e4a8a9c74
wait for AI thread to finish before freeing ressources (to avoid segfaults on game exit)
sheepluva
parents:
3444
diff
changeset
|
95 |
begin |
3843 | 96 |
DoGameTick(Lag); |
3449
033e4a8a9c74
wait for AI thread to finish before freeing ressources (to avoid segfaults on game exit)
sheepluva
parents:
3444
diff
changeset
|
97 |
ProcessVisualGears(Lag); |
033e4a8a9c74
wait for AI thread to finish before freeing ressources (to avoid segfaults on game exit)
sheepluva
parents:
3444
diff
changeset
|
98 |
end; |
2947 | 99 |
end; |
100 |
gsExit: begin |
|
101 |
isTerminated:= true; |
|
102 |
end; |
|
5968
4e8bb227be9a
this reintroduces the gsSuspend state to fix multitasking on ios
koda
parents:
5912
diff
changeset
|
103 |
gsSuspend: exit; |
2947 | 104 |
end; |
564 | 105 |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2715
diff
changeset
|
106 |
{$IFDEF SDL13} |
5505
a55aab592950
Ditch the renderer system in sdl1.3 and use the 'old fashioned' sdl/opengl context. This gives us more flexibility and less problem in receiving video events (expecially on mobile platform) as well as not having to care to reset the gl context every time sdl interferes.
koda
parents:
5242
diff
changeset
|
107 |
SDL_GL_SwapWindow(SDLwindow); |
3523 | 108 |
{$ELSE} |
109 |
SDL_GL_SwapBuffers(); |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2715
diff
changeset
|
110 |
{$ENDIF} |
4454 | 111 |
|
2947 | 112 |
if flagMakeCapture then |
113 |
begin |
|
114 |
flagMakeCapture:= false; |
|
115 |
s:= 'hw_' + FormatDateTime('YYYY-MM-DD_HH-mm-ss', Now()) + inttostr(GameTicks); |
|
5912
d31eba29e706
screenshots: display a msg on failure and log causative error
sheepluva
parents:
5825
diff
changeset
|
116 |
|
4359 | 117 |
playSound(sndShutter); |
6267
be5d40bb1e86
make screenshots with 32bits of depths, so that they are more opengles friendly
koda
parents:
6219
diff
changeset
|
118 |
if MakeScreenshot(s) then WriteLnToConsole('Screenshot saved: ' + s) |
be5d40bb1e86
make screenshots with 32bits of depths, so that they are more opengles friendly
koda
parents:
6219
diff
changeset
|
119 |
else begin |
5912
d31eba29e706
screenshots: display a msg on failure and log causative error
sheepluva
parents:
5825
diff
changeset
|
120 |
WriteLnToConsole('Screenshot failed.'); |
d31eba29e706
screenshots: display a msg on failure and log causative error
sheepluva
parents:
5825
diff
changeset
|
121 |
AddChatString(#5 + 'screen capture failed (lack of memory or write permissions)'); |
6267
be5d40bb1e86
make screenshots with 32bits of depths, so that they are more opengles friendly
koda
parents:
6219
diff
changeset
|
122 |
end |
2947 | 123 |
end; |
51 | 124 |
end; |
125 |
||
126 |
//////////////////// |
|
79 | 127 |
procedure OnDestroy; |
51 | 128 |
begin |
2947 | 129 |
WriteLnToConsole('Freeing resources...'); |
3617 | 130 |
FreeActionsList(); |
2947 | 131 |
StoreRelease(); |
132 |
ControllerClose(); |
|
133 |
CloseIPC(); |
|
134 |
TTF_Quit(); |
|
3598 | 135 |
{$IFDEF SDL13} |
5505
a55aab592950
Ditch the renderer system in sdl1.3 and use the 'old fashioned' sdl/opengl context. This gives us more flexibility and less problem in receiving video events (expecially on mobile platform) as well as not having to care to reset the gl context every time sdl interferes.
koda
parents:
5242
diff
changeset
|
136 |
SDL_GL_DeleteContext(SDLGLcontext); |
3598 | 137 |
SDL_DestroyWindow(SDLwindow); |
5505
a55aab592950
Ditch the renderer system in sdl1.3 and use the 'old fashioned' sdl/opengl context. This gives us more flexibility and less problem in receiving video events (expecially on mobile platform) as well as not having to care to reset the gl context every time sdl interferes.
koda
parents:
5242
diff
changeset
|
138 |
SDLGLcontext:= nil; |
5166
d1eb1560b4d5
and now for something completely different, overlay refactoring!
koda
parents:
5130
diff
changeset
|
139 |
SDLwindow:= nil; |
3598 | 140 |
{$ENDIF} |
2947 | 141 |
SDL_Quit(); |
3063 | 142 |
isTerminated:= false; |
51 | 143 |
end; |
144 |
||
145 |
/////////////////// |
|
3697 | 146 |
procedure MainLoop; |
6267
be5d40bb1e86
make screenshots with 32bits of depths, so that they are more opengles friendly
koda
parents:
6219
diff
changeset
|
147 |
var event: TSDL_Event; |
be5d40bb1e86
make screenshots with 32bits of depths, so that they are more opengles friendly
koda
parents:
6219
diff
changeset
|
148 |
PrevTime, CurrTime: Longword; |
6013 | 149 |
{$IFDEF SDL13} |
5975 | 150 |
previousGameState: TGameState; |
6019 | 151 |
{$ELSE} |
5521 | 152 |
prevFocusState: boolean; |
6013 | 153 |
{$ENDIF} |
2698 | 154 |
begin |
2947 | 155 |
PrevTime:= SDL_GetTicks; |
3063 | 156 |
while isTerminated = false do |
157 |
begin |
|
5724 | 158 |
SDL_PumpEvents(); |
6329
9eb6c4a8d633
Eh. n/m. Even when I did 1 shl, didn't seem right, and anyway, it isn't much of a mask if there are 16 categories and we use 10, of which those are the most common.
nemo
parents:
6327
diff
changeset
|
159 |
while SDL_PeepEvents(@event, 1, SDL_GETEVENT, {$IFDEF SDL13}SDL_FIRSTEVENT, SDL_LASTEVENT{$ELSE}SDL_ALLEVENTS{$ENDIF}) > 0 do |
2947 | 160 |
begin |
161 |
case event.type_ of |
|
6072 | 162 |
{$IFDEF SDL13} |
3647
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3634
diff
changeset
|
163 |
SDL_KEYDOWN: if GameState = gsChat then |
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3634
diff
changeset
|
164 |
// 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
|
165 |
KeyPressChat(event.key.keysym.sym); |
4454 | 166 |
SDL_WINDOWEVENT: |
5052 | 167 |
if event.window.event = SDL_WINDOWEVENT_SHOWN then |
5521 | 168 |
begin |
4454 | 169 |
cHasFocus:= true; |
5521 | 170 |
onFocusStateChanged() |
5975 | 171 |
end |
172 |
else if event.window.event = SDL_WINDOWEVENT_MINIMIZED then |
|
173 |
begin |
|
174 |
previousGameState:= GameState; |
|
175 |
GameState:= gsSuspend; |
|
176 |
end |
|
177 |
else if event.window.event = SDL_WINDOWEVENT_RESTORED then |
|
178 |
begin |
|
179 |
GameState:= previousGameState; |
|
6021 | 180 |
end |
181 |
else if event.window.event = SDL_WINDOWEVENT_RESIZED then |
|
182 |
begin |
|
6219 | 183 |
// way too broken right now |
184 |
(* |
|
6021 | 185 |
cNewScreenWidth:= max(2 * (event.window.data1 div 2), cMinScreenWidth); |
186 |
cNewScreenHeight:= max(2 * (event.window.data2 div 2), cMinScreenHeight); |
|
187 |
cScreenResizeDelay:= RealTicks+500; |
|
6219 | 188 |
*) |
5521 | 189 |
end; |
3647
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3634
diff
changeset
|
190 |
{$ELSE} |
6072 | 191 |
SDL_KEYDOWN: if GameState = gsChat then |
3647
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3634
diff
changeset
|
192 |
KeyPressChat(event.key.keysym.unicode); |
4744
ecc2c757d0df
general uKey refactor in preparaiton of two new shortcuts
koda
parents:
4490
diff
changeset
|
193 |
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
|
194 |
SDL_MOUSEBUTTONUP: if event.button.button = SDL_BUTTON_WHEELUP then wheelUp:= true; |
2947 | 195 |
SDL_ACTIVEEVENT: |
196 |
if (event.active.state and SDL_APPINPUTFOCUS) <> 0 then |
|
5521 | 197 |
begin |
198 |
prevFocusState:= cHasFocus; |
|
2947 | 199 |
cHasFocus:= event.active.gain = 1; |
5521 | 200 |
if prevFocusState xor cHasFocus then |
201 |
onFocusStateChanged() |
|
202 |
end; |
|
5670
e01f0b6f1969
enable window resizing (tested only on linux) - fix issue 103
koda
parents:
5662
diff
changeset
|
203 |
SDL_VIDEORESIZE: begin |
5816
ceb522b0f7d5
"fix" for a screen scaling problem I had after resizing to odd width number values
sheepluva
parents:
5815
diff
changeset
|
204 |
// using lower values than cMinScreenWidth or cMinScreenHeight causes widget overlap and off-screen widget parts |
ceb522b0f7d5
"fix" for a screen scaling problem I had after resizing to odd width number values
sheepluva
parents:
5815
diff
changeset
|
205 |
// Change by sheepluva: |
ceb522b0f7d5
"fix" for a screen scaling problem I had after resizing to odd width number values
sheepluva
parents:
5815
diff
changeset
|
206 |
// Let's only use even numbers for custom width/height since I ran into scaling issues with odd width values. |
ceb522b0f7d5
"fix" for a screen scaling problem I had after resizing to odd width number values
sheepluva
parents:
5815
diff
changeset
|
207 |
// Maybe just fixes the symptom not the actual cause(?), I'm too tired to find out :P |
ceb522b0f7d5
"fix" for a screen scaling problem I had after resizing to odd width number values
sheepluva
parents:
5815
diff
changeset
|
208 |
cNewScreenWidth:= max(2 * (event.resize.w div 2), cMinScreenWidth); |
ceb522b0f7d5
"fix" for a screen scaling problem I had after resizing to odd width number values
sheepluva
parents:
5815
diff
changeset
|
209 |
cNewScreenHeight:= max(2 * (event.resize.h div 2), cMinScreenHeight); |
5732
f3f381011728
Add a delay before applying screen resize to cut down on resize events (especially bad on OSes that need texture recreation)
nemo
parents:
5730
diff
changeset
|
210 |
cScreenResizeDelay:= RealTicks+500; |
5670
e01f0b6f1969
enable window resizing (tested only on linux) - fix issue 103
koda
parents:
5662
diff
changeset
|
211 |
end; |
3463 | 212 |
{$ENDIF} |
2947 | 213 |
SDL_JOYAXISMOTION: ControllerAxisEvent(event.jaxis.which, event.jaxis.axis, event.jaxis.value); |
214 |
SDL_JOYHATMOTION: ControllerHatEvent(event.jhat.which, event.jhat.hat, event.jhat.value); |
|
215 |
SDL_JOYBUTTONDOWN: ControllerButtonEvent(event.jbutton.which, event.jbutton.button, true); |
|
216 |
SDL_JOYBUTTONUP: ControllerButtonEvent(event.jbutton.which, event.jbutton.button, false); |
|
217 |
SDL_QUITEV: isTerminated:= true |
|
4454 | 218 |
end; //end case event.type_ of |
219 |
end; //end while SDL_PollEvent(@event) <> 0 do |
|
6072 | 220 |
|
5732
f3f381011728
Add a delay before applying screen resize to cut down on resize events (especially bad on OSes that need texture recreation)
nemo
parents:
5730
diff
changeset
|
221 |
if (cScreenResizeDelay <> 0) and (cScreenResizeDelay < RealTicks) and ((cNewScreenWidth <> cScreenWidth) or (cNewScreenHeight <> cScreenHeight)) then |
f3f381011728
Add a delay before applying screen resize to cut down on resize events (especially bad on OSes that need texture recreation)
nemo
parents:
5730
diff
changeset
|
222 |
begin |
f3f381011728
Add a delay before applying screen resize to cut down on resize events (especially bad on OSes that need texture recreation)
nemo
parents:
5730
diff
changeset
|
223 |
cScreenResizeDelay:= 0; |
f3f381011728
Add a delay before applying screen resize to cut down on resize events (especially bad on OSes that need texture recreation)
nemo
parents:
5730
diff
changeset
|
224 |
cScreenWidth:= cNewScreenWidth; |
f3f381011728
Add a delay before applying screen resize to cut down on resize events (especially bad on OSes that need texture recreation)
nemo
parents:
5730
diff
changeset
|
225 |
cScreenHeight:= cNewScreenHeight; |
f3f381011728
Add a delay before applying screen resize to cut down on resize events (especially bad on OSes that need texture recreation)
nemo
parents:
5730
diff
changeset
|
226 |
|
f3f381011728
Add a delay before applying screen resize to cut down on resize events (especially bad on OSes that need texture recreation)
nemo
parents:
5730
diff
changeset
|
227 |
ParseCommand('fullscr '+intToStr(LongInt(cFullScreen)), true); |
5815
d9b50fef5164
* ShoppaKing/TrophyRace maps updated by wolfmarc
sheepluva
parents:
5814
diff
changeset
|
228 |
WriteLnToConsole('window resize: ' + IntToStr(cScreenWidth) + ' x ' + IntToStr(cScreenHeight)); |
5825
a6eab1b7c00d
Scripting: Update screen dimensions on screen resize and introduce onScreenResize() event.
sheepluva
parents:
5816
diff
changeset
|
229 |
ScriptOnScreenResize(); |
5732
f3f381011728
Add a delay before applying screen resize to cut down on resize events (especially bad on OSes that need texture recreation)
nemo
parents:
5730
diff
changeset
|
230 |
InitCameraBorders() |
f3f381011728
Add a delay before applying screen resize to cut down on resize events (especially bad on OSes that need texture recreation)
nemo
parents:
5730
diff
changeset
|
231 |
end; |
3463 | 232 |
|
3063 | 233 |
if isTerminated = false then |
6072 | 234 |
begin |
3063 | 235 |
CurrTime:= SDL_GetTicks; |
3976 | 236 |
if PrevTime + longword(cTimerInterval) <= CurrTime then |
6072 | 237 |
begin |
3063 | 238 |
DoTimer(CurrTime - PrevTime); |
239 |
PrevTime:= CurrTime |
|
6072 | 240 |
end |
3063 | 241 |
else SDL_Delay(1); |
242 |
IPCCheckSock(); |
|
6072 | 243 |
end; |
3063 | 244 |
end; |
2698 | 245 |
end; |
246 |
||
247 |
/////////////// |
|
6072 | 248 |
procedure Game{$IFDEF HWLIBRARY}(gameArgs: PPChar); cdecl; export{$ENDIF}; |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
249 |
var p: TPathType; |
2947 | 250 |
s: shortstring; |
3611 | 251 |
i: LongInt; |
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 |
cTimerInterval:= 8; |
|
257 |
PathPrefix:= 'Data'; |
|
6268
d773867f93db
double two finger tap to make screenshot on ios (though folder is not yet accessible)
koda
parents:
6267
diff
changeset
|
258 |
UserPathPrefix:= '../Documents'; |
5109
6d2e8a24277e
strangely enough, the new sdl rotation code is incompatible with our system... this is a workaround that should hold up until their code becomes more stable
koda
parents:
5066
diff
changeset
|
259 |
cShowFPS:= {$IFDEF DEBUGFILE}true{$ELSE}false{$ENDIF}; |
3779
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3774
diff
changeset
|
260 |
val(gameArgs[0], ipcPort); |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3914
diff
changeset
|
261 |
val(gameArgs[1], cScreenWidth); |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3914
diff
changeset
|
262 |
val(gameArgs[2], cScreenHeight); |
3779
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3774
diff
changeset
|
263 |
val(gameArgs[3], cReducedQuality); |
2947 | 264 |
cLocaleFName:= gameArgs[4]; |
5616 | 265 |
if (Length(cLocaleFName) > 6) then cLocale := Copy(cLocaleFName,1,5) |
266 |
else cLocale := Copy(cLocaleFName,1,2); |
|
3779
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3774
diff
changeset
|
267 |
UserNick:= gameArgs[5]; |
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3774
diff
changeset
|
268 |
isSoundEnabled:= gameArgs[6] = '1'; |
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3774
diff
changeset
|
269 |
isMusicEnabled:= gameArgs[7] = '1'; |
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3774
diff
changeset
|
270 |
cAltDamage:= gameArgs[8] = '1'; |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3914
diff
changeset
|
271 |
val(gameArgs[9], rotationQt); |
3779
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3774
diff
changeset
|
272 |
recordFileName:= gameArgs[10]; |
4814
e19791f08443
smaller rearrangement of (non stereo related) variables
koda
parents:
4812
diff
changeset
|
273 |
cStereoMode:= smNone; |
3624 | 274 |
{$ENDIF} |
5814
9ac119696510
change minimum resolution back to 640x480 (full weapon menu too big for smaller screens)
sheepluva
parents:
5732
diff
changeset
|
275 |
cMinScreenWidth:= min(cScreenWidth, cMinScreenWidth); |
9ac119696510
change minimum resolution back to 640x480 (full weapon menu too big for smaller screens)
sheepluva
parents:
5732
diff
changeset
|
276 |
cMinScreenHeight:= min(cScreenHeight, cMinScreenHeight); |
5686 | 277 |
cOrigScreenWidth:= cScreenWidth; |
278 |
cOrigScreenHeight:= cScreenHeight; |
|
3613 | 279 |
|
3611 | 280 |
initEverything(true); |
3691 | 281 |
|
3611 | 282 |
WriteLnToConsole('Hedgewars ' + cVersionString + ' engine (network protocol: ' + inttostr(cNetProtoVersion) + ')'); |
283 |
AddFileLog('Prefix: "' + PathPrefix +'"'); |
|
5238
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5217
diff
changeset
|
284 |
AddFileLog('UserPrefix: "' + UserPathPrefix +'"'); |
3611 | 285 |
for i:= 0 to ParamCount do |
286 |
AddFileLog(inttostr(i) + ': ' + ParamStr(i)); |
|
2698 | 287 |
|
2947 | 288 |
for p:= Succ(Low(TPathType)) to High(TPathType) do |
5242 | 289 |
if (p <> ptMapCurrent) and (p <> ptData) then UserPathz[p]:= UserPathPrefix + '/Data/' + Pathz[p]; |
290 |
||
291 |
UserPathz[ptData]:= UserPathPrefix + '/Data'; |
|
5238
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5217
diff
changeset
|
292 |
|
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5217
diff
changeset
|
293 |
for p:= Succ(Low(TPathType)) to High(TPathType) do |
2947 | 294 |
if p <> ptMapCurrent then Pathz[p]:= PathPrefix + '/' + Pathz[p]; |
3697 | 295 |
|
2947 | 296 |
WriteToConsole('Init SDL... '); |
4773
69f8431a5d20
yay, sdl resumed development and accepted some of our patches in mainstream
koda
parents:
4744
diff
changeset
|
297 |
SDLTry(SDL_Init(SDL_INIT_VIDEO or SDL_INIT_NOPARACHUTE) >= 0, true); |
2947 | 298 |
WriteLnToConsole(msgOK); |
2698 | 299 |
|
2947 | 300 |
SDL_EnableUNICODE(1); |
5565 | 301 |
SDL_ShowCursor(0); |
2698 | 302 |
|
2947 | 303 |
WriteToConsole('Init SDL_ttf... '); |
304 |
SDLTry(TTF_Init() <> -1, true); |
|
305 |
WriteLnToConsole(msgOK); |
|
2698 | 306 |
|
5565 | 307 |
// show main window |
308 |
if cFullScreen then ParseCommand('fullscr 1', true) |
|
309 |
else ParseCommand('fullscr 0', true); |
|
2698 | 310 |
|
2947 | 311 |
ControllerInit(); // has to happen before InitKbdKeyTable to map keys |
312 |
InitKbdKeyTable(); |
|
5174
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5167
diff
changeset
|
313 |
AddProgress(); |
2698 | 314 |
|
5238
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5217
diff
changeset
|
315 |
LoadLocale(UserPathz[ptLocale] + '/en.txt'); // Do an initial load with english |
2947 | 316 |
LoadLocale(Pathz[ptLocale] + '/en.txt'); // Do an initial load with english |
317 |
if cLocaleFName <> 'en.txt' then |
|
4046
cfdbddc4b385
making indentation consistent (noticed while debugging)
nemo
parents:
3976
diff
changeset
|
318 |
begin |
2719 | 319 |
// Try two letter locale first before trying specific locale overrides |
5110 | 320 |
if (Length(cLocale) > 2) and (Copy(cLocale,1,2) <> 'en') then |
5238
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5217
diff
changeset
|
321 |
begin |
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5217
diff
changeset
|
322 |
LoadLocale(UserPathz[ptLocale] + '/' + Copy(cLocale,1,2)+'.txt'); |
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5217
diff
changeset
|
323 |
LoadLocale(Pathz[ptLocale] + '/' + Copy(cLocale,1,2)+'.txt') |
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5217
diff
changeset
|
324 |
end; |
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5217
diff
changeset
|
325 |
LoadLocale(UserPathz[ptLocale] + '/' + cLocaleFName); |
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5217
diff
changeset
|
326 |
LoadLocale(Pathz[ptLocale] + '/' + cLocaleFName) |
5107
d7fc678d78f4
Allow override of voicepack with a locale voicepack. Untested, but should mean that a Default voice should use the Ukranian version if that is their locale.
nemo
parents:
5066
diff
changeset
|
327 |
end |
d7fc678d78f4
Allow override of voicepack with a locale voicepack. Untested, but should mean that a Default voice should use the Ukranian version if that is their locale.
nemo
parents:
5066
diff
changeset
|
328 |
else cLocale := 'en'; |
2698 | 329 |
|
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
|
330 |
WriteLnToConsole(msgGettingConfig); |
4046
cfdbddc4b385
making indentation consistent (noticed while debugging)
nemo
parents:
3976
diff
changeset
|
331 |
|
2947 | 332 |
if recordFileName = '' then |
4046
cfdbddc4b385
making indentation consistent (noticed while debugging)
nemo
parents:
3976
diff
changeset
|
333 |
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
|
334 |
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
|
335 |
SendIPCAndWaitReply('C'); // ask for game config |
4046
cfdbddc4b385
making indentation consistent (noticed while debugging)
nemo
parents:
3976
diff
changeset
|
336 |
end |
2947 | 337 |
else |
338 |
LoadRecordFromFile(recordFileName); |
|
2698 | 339 |
|
2947 | 340 |
ScriptOnGameInit; |
2786 | 341 |
|
2947 | 342 |
s:= 'eproto ' + inttostr(cNetProtoVersion); |
343 |
SendIPCRaw(@s[0], Length(s) + 1); // send proto version |
|
344 |
||
345 |
InitTeams(); |
|
346 |
AssignStores(); |
|
2698 | 347 |
|
2947 | 348 |
if isSoundEnabled then |
349 |
InitSound(); |
|
2590 | 350 |
|
2947 | 351 |
isDeveloperMode:= false; |
2698 | 352 |
|
2947 | 353 |
TryDo(InitStepsFlags = cifAllInited, 'Some parameters not set (flags = ' + inttostr(InitStepsFlags) + ')', true); |
2698 | 354 |
|
2947 | 355 |
ParseCommand('rotmask', true); |
2698 | 356 |
|
2947 | 357 |
MainLoop(); |
3615 | 358 |
// clean up SDL and GL context |
2947 | 359 |
OnDestroy(); |
3615 | 360 |
// clean up all the other memory allocated |
3611 | 361 |
freeEverything(true); |
3165
3ec07a7d8456
just some very sane stuff for the iphone port (plus some macro on pascal files)
koda
parents:
3162
diff
changeset
|
362 |
if alsoShutdownFrontend then halt; |
2698 | 363 |
end; |
2590 | 364 |
|
3525 | 365 |
procedure initEverything (complete:boolean); |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
366 |
begin |
3365
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
367 |
Randomize(); |
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
368 |
|
5565 | 369 |
if complete then cLogfileBase:= 'game' |
370 |
else cLogfileBase:= 'preview'; |
|
371 |
||
3709 | 372 |
// uConsts does not need initialization as they are all consts |
4374 | 373 |
uUtils.initModule; |
3038 | 374 |
uMisc.initModule; |
4359 | 375 |
uVariables.initModule; |
3038 | 376 |
uConsole.initModule; // MUST happen after uMisc |
4373 | 377 |
uCommands.initModule; |
4413 | 378 |
uCommandHandlers.initModule; |
3525 | 379 |
|
3038 | 380 |
uLand.initModule; |
4490 | 381 |
uLandPainted.initModule; |
382 |
||
3525 | 383 |
uIO.initModule; |
3697 | 384 |
|
3525 | 385 |
if complete then |
386 |
begin |
|
387 |
uAI.initModule; |
|
388 |
//uAIActions does not need initialization |
|
389 |
//uAIAmmoTests does not need initialization |
|
390 |
uAIMisc.initModule; |
|
391 |
uAmmos.initModule; |
|
392 |
uChat.initModule; |
|
393 |
uCollisions.initModule; |
|
394 |
//uFloat does not need initialization |
|
395 |
//uGame does not need initialization |
|
396 |
uGears.initModule; |
|
397 |
uKeys.initModule; |
|
398 |
//uLandGraphics does not need initialization |
|
399 |
//uLandObjects does not need initialization |
|
400 |
//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
|
401 |
uLandTexture.initModule; |
3525 | 402 |
//uLocale does not need initialization |
3697 | 403 |
uRandom.initModule; |
3525 | 404 |
uScript.initModule; |
405 |
uSound.initModule; |
|
406 |
uStats.initModule; |
|
407 |
uStore.initModule; |
|
408 |
uTeams.initModule; |
|
409 |
uVisualGears.initModule; |
|
410 |
uWorld.initModule; |
|
4393 | 411 |
uCaptions.initModule; |
3525 | 412 |
end; |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
413 |
end; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
414 |
|
3525 | 415 |
procedure freeEverything (complete:boolean); |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
416 |
begin |
3525 | 417 |
if complete then |
418 |
begin |
|
4393 | 419 |
uCaptions.freeModule; |
3525 | 420 |
uWorld.freeModule; |
3615 | 421 |
uVisualGears.freeModule; |
3525 | 422 |
uTeams.freeModule; |
423 |
uStore.freeModule; //stub |
|
424 |
uStats.freeModule; //stub |
|
3615 | 425 |
uSound.freeModule; |
3525 | 426 |
uScript.freeModule; |
427 |
uRandom.freeModule; //stub |
|
428 |
//uLocale does not need to be freed |
|
429 |
//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
|
430 |
uLandTexture.freeModule; |
3525 | 431 |
//uLandObjects does not need to be freed |
432 |
//uLandGraphics does not need to be freed |
|
433 |
uKeys.freeModule; //stub |
|
434 |
uGears.freeModule; |
|
435 |
//uGame does not need to be freed |
|
436 |
//uFloat does not need to be freed |
|
437 |
uCollisions.freeModule; //stub |
|
4901 | 438 |
uChat.freeModule; |
3525 | 439 |
uAmmos.freeModule; |
440 |
uAIMisc.freeModule; //stub |
|
441 |
//uAIAmmoTests does not need to be freed |
|
442 |
//uAIActions does not need to be freed |
|
3617 | 443 |
uAI.freeModule; //stub |
3525 | 444 |
end; |
3697 | 445 |
|
3525 | 446 |
uIO.freeModule; //stub |
3038 | 447 |
uLand.freeModule; |
5066 | 448 |
uLandPainted.freeModule; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2715
diff
changeset
|
449 |
|
4413 | 450 |
uCommandHandlers.freeModule; |
4373 | 451 |
uCommands.freeModule; |
3038 | 452 |
uConsole.freeModule; |
4359 | 453 |
uVariables.freeModule; |
4374 | 454 |
uUtils.freeModule; |
3525 | 455 |
uMisc.freeModule; // uMisc closes the debug log. |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
456 |
end; |
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2800
diff
changeset
|
457 |
|
2698 | 458 |
///////////////////////// |
3610 | 459 |
procedure GenLandPreview{$IFDEF HWLIBRARY}(port: LongInt); cdecl; export{$ENDIF}; |
2698 | 460 |
var Preview: TPreview; |
461 |
begin |
|
3611 | 462 |
initEverything(false); |
3610 | 463 |
{$IFDEF HWLIBRARY} |
3365
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
464 |
WriteLnToConsole('Preview connecting on port ' + inttostr(port)); |
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
465 |
ipcPort:= port; |
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
466 |
{$ENDIF} |
2947 | 467 |
InitIPC; |
468 |
IPCWaitPongEvent; |
|
469 |
TryDo(InitStepsFlags = cifRandomize, 'Some parameters not set (flags = ' + inttostr(InitStepsFlags) + ')', true); |
|
2698 | 470 |
|
3365
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
471 |
Preview:= GenPreview(); |
2947 | 472 |
WriteLnToConsole('Sending preview...'); |
473 |
SendIPCRaw(@Preview, sizeof(Preview)); |
|
3365
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
474 |
SendIPCRaw(@MaxHedgehogs, sizeof(byte)); |
2947 | 475 |
WriteLnToConsole('Preview sent, disconnect'); |
476 |
CloseIPC(); |
|
3525 | 477 |
freeEverything(false); |
2698 | 478 |
end; |
479 |
||
3021 | 480 |
{$IFNDEF HWLIBRARY} |
2008 | 481 |
///////////////////// |
482 |
procedure DisplayUsage; |
|
2691 | 483 |
var i: LongInt; |
2008 | 484 |
begin |
2947 | 485 |
WriteLn('Wrong argument format: correct configurations is'); |
486 |
WriteLn(); |
|
5238
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5217
diff
changeset
|
487 |
WriteLn(' hwengine <path to user hedgewars folder> <path to global data folder> <path to replay file> [options]'); |
2947 | 488 |
WriteLn(); |
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
489 |
WriteLn('where [options] must be specified either as:'); |
2947 | 490 |
WriteLn(' --set-video [screen width] [screen height] [color dept]'); |
491 |
WriteLn(' --set-audio [volume] [enable music] [enable sounds]'); |
|
492 |
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
|
493 |
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
|
494 |
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]'); |
5130
3602ede67ec5
Add a parameter for game simulation with no gui/sound enabled, just to get statistics
unc0rr
parents:
5111
diff
changeset
|
495 |
WriteLn(' --stats-only'); |
2947 | 496 |
WriteLn(); |
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
497 |
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
|
498 |
WriteLn(); |
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
499 |
Write('PARSED COMMAND: '); |
2947 | 500 |
for i:=0 to ParamCount do |
501 |
Write(ParamStr(i) + ' '); |
|
502 |
WriteLn(); |
|
2008 | 503 |
end; |
504 |
||
51 | 505 |
//////////////////// |
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
506 |
{$INCLUDE "ArgParsers.inc"} |
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
507 |
|
51 | 508 |
procedure GetParams; |
97
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
509 |
begin |
5238
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5217
diff
changeset
|
510 |
if (ParamCount < 3) then |
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
511 |
GameType:= gmtSyntax |
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
512 |
else |
5238
46ddaf14509d
Enable ~/.hedgewars/Data (or platform equivalent) to override/extend pretty much everything in system Data dir. Obviously desyncing can occur, so this is at user's own risk. Should simplify map etc install. Needs testing.
nemo
parents:
5217
diff
changeset
|
513 |
if (ParamCount = 3) and ((ParamStr(3) = '--stats-only') or (ParamStr(3) = 'landpreview')) then |
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
514 |
internalSetGameTypeLandPreviewFromParameters() |
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
515 |
else |
3709 | 516 |
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
|
517 |
internalStartGameWithParameters() |
2947 | 518 |
else |
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
519 |
playReplayFileWithParameters(); |
51 | 520 |
end; |
3021 | 521 |
|
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
522 |
//////////////////////////////////////////////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
523 |
/////////////////////////////// m a i n //////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
524 |
//////////////////////////////////////////////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
525 |
begin |
2947 | 526 |
GetParams(); |
5616 | 527 |
if (Length(cLocaleFName) > 6) then cLocale := Copy(cLocaleFName,1,5) |
528 |
else cLocale := Copy(cLocaleFName,1,2); |
|
2008 | 529 |
|
3078 | 530 |
if GameType = gmtLandPreview then GenLandPreview() |
2947 | 531 |
else if GameType = gmtSyntax then DisplayUsage() |
532 |
else Game(); |
|
3697 | 533 |
|
5565 | 534 |
// return 1 when engine is not called correctly |
535 |
ExitCode:= LongInt(GameType = gmtSyntax); |
|
2698 | 536 |
{$ENDIF} |
51 | 537 |
end. |