author | koda |
Mon, 25 Apr 2011 06:38:59 +0200 | |
changeset 5174 | f5294509783e |
parent 5167 | 7b515d0945b1 |
child 5217 | 5612e01252ce |
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; |
|
4454 | 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} |
4933 | 107 |
SDL_RenderPresent(SDLrender); |
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); |
|
116 |
WriteLnToConsole('Saving ' + s + '...'); |
|
4359 | 117 |
playSound(sndShutter); |
4939
6d512ba87f72
screenshot binding for library (on ios it just plays the sound)
koda
parents:
4935
diff
changeset
|
118 |
{$IFNDEF IPHONEOS}MakeScreenshot(s);{$ENDIF} |
2947 | 119 |
end; |
51 | 120 |
end; |
121 |
||
122 |
//////////////////// |
|
79 | 123 |
procedure OnDestroy; |
51 | 124 |
begin |
2947 | 125 |
WriteLnToConsole('Freeing resources...'); |
3617 | 126 |
FreeActionsList(); |
2947 | 127 |
StoreRelease(); |
128 |
ControllerClose(); |
|
129 |
CloseIPC(); |
|
130 |
TTF_Quit(); |
|
3598 | 131 |
{$IFDEF SDL13} |
4933 | 132 |
SDL_RenderClear(SDLrender); |
133 |
SDL_DestroyRenderer(SDLrender); |
|
3598 | 134 |
SDL_DestroyWindow(SDLwindow); |
5166
d1eb1560b4d5
and now for something completely different, overlay refactoring!
koda
parents:
5130
diff
changeset
|
135 |
SDLrender:= nil; |
d1eb1560b4d5
and now for something completely different, overlay refactoring!
koda
parents:
5130
diff
changeset
|
136 |
SDLwindow:= nil; |
3598 | 137 |
{$ENDIF} |
2947 | 138 |
SDL_Quit(); |
3063 | 139 |
isTerminated:= false; |
51 | 140 |
end; |
141 |
||
142 |
/////////////////// |
|
3697 | 143 |
procedure MainLoop; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2715
diff
changeset
|
144 |
var PrevTime, CurrTime: Longword; |
3463 | 145 |
event: TSDL_Event; |
2698 | 146 |
begin |
2947 | 147 |
PrevTime:= SDL_GetTicks; |
3063 | 148 |
while isTerminated = false do |
149 |
begin |
|
3523 | 150 |
|
2947 | 151 |
while SDL_PollEvent(@event) <> 0 do |
152 |
begin |
|
153 |
case event.type_ of |
|
3647
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3634
diff
changeset
|
154 |
SDL_KEYDOWN: if GameState = gsChat then |
4454 | 155 |
{$IFDEF SDL13} |
3647
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3634
diff
changeset
|
156 |
// 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
|
157 |
KeyPressChat(event.key.keysym.sym); |
4454 | 158 |
SDL_WINDOWEVENT: |
5052 | 159 |
if event.window.event = SDL_WINDOWEVENT_SHOWN then |
4454 | 160 |
cHasFocus:= true; |
3647
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3634
diff
changeset
|
161 |
{$ELSE} |
0d0df215fb52
making chat work... (keyboard support is heavily broken in sdl upstream)
koda
parents:
3634
diff
changeset
|
162 |
KeyPressChat(event.key.keysym.unicode); |
4744
ecc2c757d0df
general uKey refactor in preparaiton of two new shortcuts
koda
parents:
4490
diff
changeset
|
163 |
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
|
164 |
SDL_MOUSEBUTTONUP: if event.button.button = SDL_BUTTON_WHEELUP then wheelUp:= true; |
2947 | 165 |
SDL_ACTIVEEVENT: |
166 |
if (event.active.state and SDL_APPINPUTFOCUS) <> 0 then |
|
167 |
cHasFocus:= event.active.gain = 1; |
|
3463 | 168 |
{$ENDIF} |
2947 | 169 |
SDL_JOYAXISMOTION: ControllerAxisEvent(event.jaxis.which, event.jaxis.axis, event.jaxis.value); |
170 |
SDL_JOYHATMOTION: ControllerHatEvent(event.jhat.which, event.jhat.hat, event.jhat.value); |
|
171 |
SDL_JOYBUTTONDOWN: ControllerButtonEvent(event.jbutton.which, event.jbutton.button, true); |
|
172 |
SDL_JOYBUTTONUP: ControllerButtonEvent(event.jbutton.which, event.jbutton.button, false); |
|
173 |
SDL_QUITEV: isTerminated:= true |
|
4454 | 174 |
end; //end case event.type_ of |
175 |
end; //end while SDL_PollEvent(@event) <> 0 do |
|
3463 | 176 |
|
3063 | 177 |
if isTerminated = false then |
2947 | 178 |
begin |
3063 | 179 |
CurrTime:= SDL_GetTicks; |
3976 | 180 |
if PrevTime + longword(cTimerInterval) <= CurrTime then |
3063 | 181 |
begin |
182 |
DoTimer(CurrTime - PrevTime); |
|
183 |
PrevTime:= CurrTime |
|
3697 | 184 |
end |
3063 | 185 |
else SDL_Delay(1); |
186 |
IPCCheckSock(); |
|
187 |
end; |
|
188 |
end; |
|
2698 | 189 |
end; |
190 |
||
191 |
///////////////////////// |
|
192 |
procedure ShowMainWindow; |
|
193 |
begin |
|
2947 | 194 |
if cFullScreen then ParseCommand('fullscr 1', true) |
195 |
else ParseCommand('fullscr 0', true); |
|
196 |
SDL_ShowCursor(0) |
|
2698 | 197 |
end; |
2591
c6597b65caea
other controls implementation + sdlh revisited (once again)
koda
parents:
2590
diff
changeset
|
198 |
|
2698 | 199 |
/////////////// |
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2800
diff
changeset
|
200 |
{$IFDEF HWLIBRARY} |
3971 | 201 |
procedure Game(gameArgs: PPChar); cdecl; export; |
2702
48fc46a922fd
rewrite gamesetup to use less memory, rename effects to sound plus some nice actions, settings work in game again
koda
parents:
2699
diff
changeset
|
202 |
{$ELSE} |
3064 | 203 |
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
|
204 |
{$ENDIF} |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
205 |
var p: TPathType; |
2947 | 206 |
s: shortstring; |
3611 | 207 |
i: LongInt; |
2698 | 208 |
begin |
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2800
diff
changeset
|
209 |
{$IFDEF HWLIBRARY} |
2947 | 210 |
cBits:= 32; |
211 |
cFullScreen:= false; |
|
212 |
cTimerInterval:= 8; |
|
213 |
PathPrefix:= 'Data'; |
|
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
|
214 |
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
|
215 |
val(gameArgs[0], ipcPort); |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3914
diff
changeset
|
216 |
val(gameArgs[1], cScreenWidth); |
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3914
diff
changeset
|
217 |
val(gameArgs[2], cScreenHeight); |
3779
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3774
diff
changeset
|
218 |
val(gameArgs[3], cReducedQuality); |
2947 | 219 |
cLocaleFName:= gameArgs[4]; |
3779
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3774
diff
changeset
|
220 |
UserNick:= gameArgs[5]; |
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3774
diff
changeset
|
221 |
isSoundEnabled:= gameArgs[6] = '1'; |
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3774
diff
changeset
|
222 |
isMusicEnabled:= gameArgs[7] = '1'; |
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3774
diff
changeset
|
223 |
cAltDamage:= gameArgs[8] = '1'; |
3922
44804043b691
iPad Video Out support (+less warnings +code update for latest SDL)
koda
parents:
3914
diff
changeset
|
224 |
val(gameArgs[9], rotationQt); |
3779
3351a017d4ad
tap to dismiss 'get ready', add a toggle to enable/disable it
koda
parents:
3774
diff
changeset
|
225 |
recordFileName:= gameArgs[10]; |
4814
e19791f08443
smaller rearrangement of (non stereo related) variables
koda
parents:
4812
diff
changeset
|
226 |
cStereoMode:= smNone; |
3624 | 227 |
{$ENDIF} |
3613 | 228 |
|
3914 | 229 |
cLogfileBase:= 'game'; |
3611 | 230 |
initEverything(true); |
3691 | 231 |
|
3611 | 232 |
WriteLnToConsole('Hedgewars ' + cVersionString + ' engine (network protocol: ' + inttostr(cNetProtoVersion) + ')'); |
233 |
AddFileLog('Prefix: "' + PathPrefix +'"'); |
|
234 |
for i:= 0 to ParamCount do |
|
235 |
AddFileLog(inttostr(i) + ': ' + ParamStr(i)); |
|
2698 | 236 |
|
2947 | 237 |
for p:= Succ(Low(TPathType)) to High(TPathType) do |
238 |
if p <> ptMapCurrent then Pathz[p]:= PathPrefix + '/' + Pathz[p]; |
|
3697 | 239 |
|
2947 | 240 |
WriteToConsole('Init SDL... '); |
4773
69f8431a5d20
yay, sdl resumed development and accepted some of our patches in mainstream
koda
parents:
4744
diff
changeset
|
241 |
SDLTry(SDL_Init(SDL_INIT_VIDEO or SDL_INIT_NOPARACHUTE) >= 0, true); |
2947 | 242 |
WriteLnToConsole(msgOK); |
2698 | 243 |
|
2947 | 244 |
SDL_EnableUNICODE(1); |
2698 | 245 |
|
2947 | 246 |
WriteToConsole('Init SDL_ttf... '); |
247 |
SDLTry(TTF_Init() <> -1, true); |
|
248 |
WriteLnToConsole(msgOK); |
|
2698 | 249 |
|
3162 | 250 |
{$IFDEF WIN32} |
251 |
s:= SDL_getenv('SDL_VIDEO_CENTERED'); |
|
3153 | 252 |
SDL_putenv('SDL_VIDEO_CENTERED=1'); |
2947 | 253 |
ShowMainWindow(); |
3162 | 254 |
SDL_putenv(str2pchar('SDL_VIDEO_CENTERED=' + s)); |
255 |
{$ELSE} |
|
3154 | 256 |
ShowMainWindow(); |
3162 | 257 |
{$ENDIF} |
2698 | 258 |
|
2947 | 259 |
ControllerInit(); // has to happen before InitKbdKeyTable to map keys |
260 |
InitKbdKeyTable(); |
|
5174
f5294509783e
initial refactoring of ObjcExports and OverlayViewController
koda
parents:
5167
diff
changeset
|
261 |
AddProgress(); |
2698 | 262 |
|
2947 | 263 |
LoadLocale(Pathz[ptLocale] + '/en.txt'); // Do an initial load with english |
5110 | 264 |
if (Length(cLocaleFName) > 6) then cLocale := Copy(cLocaleFName,1,5) |
265 |
else cLocale := Copy(cLocaleFName,1,2); |
|
2947 | 266 |
if cLocaleFName <> 'en.txt' then |
4046
cfdbddc4b385
making indentation consistent (noticed while debugging)
nemo
parents:
3976
diff
changeset
|
267 |
begin |
2719 | 268 |
// Try two letter locale first before trying specific locale overrides |
5110 | 269 |
if (Length(cLocale) > 2) and (Copy(cLocale,1,2) <> 'en') then |
270 |
LoadLocale(Pathz[ptLocale] + '/' + Copy(cLocale,1,2)+'.txt'); |
|
2947 | 271 |
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
|
272 |
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
|
273 |
else cLocale := 'en'; |
2698 | 274 |
|
3904
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3843
diff
changeset
|
275 |
WriteLnToConsole(msgGettingConfig); |
4046
cfdbddc4b385
making indentation consistent (noticed while debugging)
nemo
parents:
3976
diff
changeset
|
276 |
|
2947 | 277 |
if recordFileName = '' then |
4046
cfdbddc4b385
making indentation consistent (noticed while debugging)
nemo
parents:
3976
diff
changeset
|
278 |
begin |
3904
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3843
diff
changeset
|
279 |
InitIPC; |
22e4d74240e5
finishing touches to save games handling (help label, dim on overlay, edit text only when table is editable)
koda
parents:
3843
diff
changeset
|
280 |
SendIPCAndWaitReply('C'); // ask for game config |
4046
cfdbddc4b385
making indentation consistent (noticed while debugging)
nemo
parents:
3976
diff
changeset
|
281 |
end |
2947 | 282 |
else |
283 |
LoadRecordFromFile(recordFileName); |
|
2698 | 284 |
|
2947 | 285 |
ScriptOnGameInit; |
2786 | 286 |
|
2947 | 287 |
s:= 'eproto ' + inttostr(cNetProtoVersion); |
288 |
SendIPCRaw(@s[0], Length(s) + 1); // send proto version |
|
289 |
||
290 |
InitTeams(); |
|
291 |
AssignStores(); |
|
2698 | 292 |
|
2947 | 293 |
if isSoundEnabled then |
294 |
InitSound(); |
|
2590 | 295 |
|
2947 | 296 |
isDeveloperMode:= false; |
2698 | 297 |
|
2947 | 298 |
TryDo(InitStepsFlags = cifAllInited, 'Some parameters not set (flags = ' + inttostr(InitStepsFlags) + ')', true); |
2698 | 299 |
|
2947 | 300 |
ParseCommand('rotmask', true); |
2698 | 301 |
|
2947 | 302 |
MainLoop(); |
3615 | 303 |
// clean up SDL and GL context |
2947 | 304 |
OnDestroy(); |
3615 | 305 |
// clean up all the other memory allocated |
3611 | 306 |
freeEverything(true); |
3165
3ec07a7d8456
just some very sane stuff for the iphone port (plus some macro on pascal files)
koda
parents:
3162
diff
changeset
|
307 |
if alsoShutdownFrontend then halt; |
2698 | 308 |
end; |
2590 | 309 |
|
3525 | 310 |
procedure initEverything (complete:boolean); |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
311 |
begin |
3365
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
312 |
Randomize(); |
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
313 |
|
3709 | 314 |
// uConsts does not need initialization as they are all consts |
4374 | 315 |
uUtils.initModule; |
3038 | 316 |
uMisc.initModule; |
4359 | 317 |
uVariables.initModule; |
3038 | 318 |
uConsole.initModule; // MUST happen after uMisc |
4373 | 319 |
uCommands.initModule; |
4413 | 320 |
uCommandHandlers.initModule; |
3525 | 321 |
|
3038 | 322 |
uLand.initModule; |
4490 | 323 |
uLandPainted.initModule; |
324 |
||
3525 | 325 |
uIO.initModule; |
3697 | 326 |
|
3525 | 327 |
if complete then |
328 |
begin |
|
329 |
uAI.initModule; |
|
330 |
//uAIActions does not need initialization |
|
331 |
//uAIAmmoTests does not need initialization |
|
332 |
uAIMisc.initModule; |
|
333 |
uAmmos.initModule; |
|
334 |
uChat.initModule; |
|
335 |
uCollisions.initModule; |
|
336 |
//uFloat does not need initialization |
|
337 |
//uGame does not need initialization |
|
338 |
uGears.initModule; |
|
339 |
uKeys.initModule; |
|
340 |
//uLandGraphics does not need initialization |
|
341 |
//uLandObjects does not need initialization |
|
342 |
//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
|
343 |
uLandTexture.initModule; |
3525 | 344 |
//uLocale does not need initialization |
3697 | 345 |
uRandom.initModule; |
3525 | 346 |
uScript.initModule; |
347 |
uSound.initModule; |
|
348 |
uStats.initModule; |
|
349 |
uStore.initModule; |
|
350 |
uTeams.initModule; |
|
351 |
uVisualGears.initModule; |
|
352 |
uWorld.initModule; |
|
4393 | 353 |
uCaptions.initModule; |
3525 | 354 |
end; |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
355 |
end; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
356 |
|
3525 | 357 |
procedure freeEverything (complete:boolean); |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
358 |
begin |
3525 | 359 |
if complete then |
360 |
begin |
|
4393 | 361 |
uCaptions.freeModule; |
3525 | 362 |
uWorld.freeModule; |
3615 | 363 |
uVisualGears.freeModule; |
3525 | 364 |
uTeams.freeModule; |
365 |
uStore.freeModule; //stub |
|
366 |
uStats.freeModule; //stub |
|
3615 | 367 |
uSound.freeModule; |
3525 | 368 |
uScript.freeModule; |
369 |
uRandom.freeModule; //stub |
|
370 |
//uLocale does not need to be freed |
|
371 |
//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
|
372 |
uLandTexture.freeModule; |
3525 | 373 |
//uLandObjects does not need to be freed |
374 |
//uLandGraphics does not need to be freed |
|
375 |
uKeys.freeModule; //stub |
|
376 |
uGears.freeModule; |
|
377 |
//uGame does not need to be freed |
|
378 |
//uFloat does not need to be freed |
|
379 |
uCollisions.freeModule; //stub |
|
4901 | 380 |
uChat.freeModule; |
3525 | 381 |
uAmmos.freeModule; |
382 |
uAIMisc.freeModule; //stub |
|
383 |
//uAIAmmoTests does not need to be freed |
|
384 |
//uAIActions does not need to be freed |
|
3617 | 385 |
uAI.freeModule; //stub |
3525 | 386 |
end; |
3697 | 387 |
|
3525 | 388 |
uIO.freeModule; //stub |
3038 | 389 |
uLand.freeModule; |
5066 | 390 |
uLandPainted.freeModule; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2715
diff
changeset
|
391 |
|
4413 | 392 |
uCommandHandlers.freeModule; |
4373 | 393 |
uCommands.freeModule; |
3038 | 394 |
uConsole.freeModule; |
4359 | 395 |
uVariables.freeModule; |
4374 | 396 |
uUtils.freeModule; |
3525 | 397 |
uMisc.freeModule; // uMisc closes the debug log. |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2698
diff
changeset
|
398 |
end; |
2803
1f446fc5c8ec
allow to compile engine as library with HWLIBRARY symbol
koda
parents:
2800
diff
changeset
|
399 |
|
2698 | 400 |
///////////////////////// |
3610 | 401 |
procedure GenLandPreview{$IFDEF HWLIBRARY}(port: LongInt); cdecl; export{$ENDIF}; |
2698 | 402 |
var Preview: TPreview; |
403 |
begin |
|
3914 | 404 |
cLogfileBase:= 'preview'; |
3611 | 405 |
initEverything(false); |
3610 | 406 |
{$IFDEF HWLIBRARY} |
3365
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
407 |
WriteLnToConsole('Preview connecting on port ' + inttostr(port)); |
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
408 |
ipcPort:= port; |
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
409 |
{$ENDIF} |
2947 | 410 |
InitIPC; |
411 |
IPCWaitPongEvent; |
|
412 |
TryDo(InitStepsFlags = cifRandomize, 'Some parameters not set (flags = ' + inttostr(InitStepsFlags) + ')', true); |
|
2698 | 413 |
|
3365
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
414 |
Preview:= GenPreview(); |
2947 | 415 |
WriteLnToConsole('Sending preview...'); |
416 |
SendIPCRaw(@Preview, sizeof(Preview)); |
|
3365
37ac593e9027
wow all these files only for land preview and seed generation
koda
parents:
3312
diff
changeset
|
417 |
SendIPCRaw(@MaxHedgehogs, sizeof(byte)); |
2947 | 418 |
WriteLnToConsole('Preview sent, disconnect'); |
419 |
CloseIPC(); |
|
3525 | 420 |
freeEverything(false); |
2698 | 421 |
end; |
422 |
||
3021 | 423 |
{$IFNDEF HWLIBRARY} |
2008 | 424 |
///////////////////// |
425 |
procedure DisplayUsage; |
|
2691 | 426 |
var i: LongInt; |
2008 | 427 |
begin |
2947 | 428 |
WriteLn('Wrong argument format: correct configurations is'); |
429 |
WriteLn(); |
|
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
430 |
WriteLn(' hwengine <path to data folder> <path to replay file> [options]'); |
2947 | 431 |
WriteLn(); |
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
432 |
WriteLn('where [options] must be specified either as:'); |
2947 | 433 |
WriteLn(' --set-video [screen width] [screen height] [color dept]'); |
434 |
WriteLn(' --set-audio [volume] [enable music] [enable sounds]'); |
|
435 |
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
|
436 |
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
|
437 |
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
|
438 |
WriteLn(' --stats-only'); |
2947 | 439 |
WriteLn(); |
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
440 |
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
|
441 |
WriteLn(); |
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
442 |
Write('PARSED COMMAND: '); |
2947 | 443 |
for i:=0 to ParamCount do |
444 |
Write(ParamStr(i) + ' '); |
|
445 |
WriteLn(); |
|
2008 | 446 |
end; |
447 |
||
51 | 448 |
//////////////////// |
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
449 |
{$INCLUDE "ArgParsers.inc"} |
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
450 |
|
51 | 451 |
procedure GetParams; |
97
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
452 |
begin |
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
453 |
if (ParamCount < 2) then |
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
454 |
GameType:= gmtSyntax |
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
455 |
else |
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
456 |
if (ParamCount = 3) then |
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
457 |
internalSetGameTypeLandPreviewFromParameters() |
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
458 |
else |
3709 | 459 |
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
|
460 |
internalStartGameWithParameters() |
2947 | 461 |
else |
3678
00428183300f
patch by lucass (polished by me) - command line parsing is now much more flexible
koda
parents:
3670
diff
changeset
|
462 |
playReplayFileWithParameters(); |
51 | 463 |
end; |
3021 | 464 |
|
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
465 |
//////////////////////////////////////////////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
466 |
/////////////////////////////// m a i n //////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
467 |
//////////////////////////////////////////////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
468 |
begin |
2947 | 469 |
GetParams(); |
2008 | 470 |
|
3078 | 471 |
if GameType = gmtLandPreview then GenLandPreview() |
2947 | 472 |
else if GameType = gmtSyntax then DisplayUsage() |
473 |
else Game(); |
|
3697 | 474 |
|
2947 | 475 |
if GameType = gmtSyntax then |
476 |
ExitCode:= 1 |
|
477 |
else |
|
478 |
ExitCode:= 0; |
|
2698 | 479 |
{$ENDIF} |
51 | 480 |
end. |