author | koda |
Sun, 10 Jan 2010 00:52:20 +0000 | |
changeset 2691 | c0da3a98c01c |
parent 2690 | 8e83c7e31720 |
child 2692 | ce9992075118 |
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 |
|
51 | 21 |
program hwengine; |
2690 | 22 |
uses SDLh in 'SDLh.pas', |
2152 | 23 |
{$IFDEF GLES11} |
1906 | 24 |
gles11, |
25 |
{$ELSE} |
|
1524
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
26 |
GL, |
1906 | 27 |
{$ENDIF} |
1524
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
28 |
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
|
29 |
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
|
30 |
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
|
31 |
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
|
32 |
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
|
33 |
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
|
34 |
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
|
35 |
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
|
36 |
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
|
37 |
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
|
38 |
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
|
39 |
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
|
40 |
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
|
41 |
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
|
42 |
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
|
43 |
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
|
44 |
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
|
45 |
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
|
46 |
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
|
47 |
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
|
48 |
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
|
49 |
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
|
50 |
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
|
51 |
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
|
52 |
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
|
53 |
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
|
54 |
uStats in 'uStats.pas', |
1807 | 55 |
uChat in 'uChat.pas', |
2690 | 56 |
uLandTexture in 'uLandTexture.pas' |
57 |
{$IFDEF IPHONEOS} |
|
58 |
, PascalExports in 'PascalExports.pas' |
|
59 |
{$ENDIF} |
|
60 |
; |
|
51 | 61 |
|
62 |
// also: GSHandlers.inc |
|
63 |
// CCHandlers.inc |
|
64 |
// HHHandlers.inc |
|
357 | 65 |
// SinTable.inc |
271 | 66 |
// proto.inc |
51 | 67 |
|
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1825
diff
changeset
|
68 |
var recordFileName : shortstring = ''; |
51 | 69 |
|
70 |
procedure OnDestroy; forward; |
|
71 |
||
72 |
//////////////////////////////// |
|
371 | 73 |
procedure DoTimer(Lag: LongInt); |
2243
b4764993f833
additional touch support and nemo's reduced land array size
koda
parents:
2191
diff
changeset
|
74 |
{$IFNDEF IPHONEOS} |
1080 | 75 |
var s: string; |
2243
b4764993f833
additional touch support and nemo's reduced land array size
koda
parents:
2191
diff
changeset
|
76 |
{$ENDIF} |
51 | 77 |
begin |
564 | 78 |
inc(RealTicks, Lag); |
79 |
||
51 | 80 |
case GameState of |
1524
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
81 |
gsLandGen: begin |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
82 |
GenMap; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
83 |
GameState:= gsStart; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
84 |
end; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
85 |
gsStart: begin |
1784 | 86 |
if HasBorder then DisableSomeWeapons; |
1524
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
87 |
AddClouds; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
88 |
AssignHHCoords; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
89 |
AddMiscGears; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
90 |
StoreLoad; |
2428 | 91 |
InitWorld; |
1524
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
92 |
ResetKbd; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
93 |
SoundLoad; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
94 |
if GameType = gmtSave then |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
95 |
begin |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
96 |
isSEBackup:= isSoundEnabled; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
97 |
isSoundEnabled:= false |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
98 |
end; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
99 |
FinishProgress; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
100 |
PlayMusic; |
2162 | 101 |
SetScale(zoom); |
2689 | 102 |
GameState:= gsGame; |
1524
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
103 |
end; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
104 |
gsConfirm, |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
105 |
gsGame: begin |
1645 | 106 |
DrawWorld(Lag); // never place between ProcessKbd and DoGameTick - bugs due to /put cmd and isCursorVisible |
1524
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
107 |
ProcessKbd; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
108 |
DoGameTick(Lag); |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
109 |
ProcessVisualGears(Lag); |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
110 |
end; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
111 |
gsChat: begin |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
112 |
DrawWorld(Lag); |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
113 |
DoGameTick(Lag); |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
114 |
ProcessVisualGears(Lag); |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
115 |
end; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
116 |
gsExit: begin |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
117 |
OnDestroy; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
118 |
end; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
119 |
end; |
564 | 120 |
|
753 | 121 |
SDL_GL_SwapBuffers(); |
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
|
122 |
{$IFNDEF IPHONEOS} |
2678
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
2677
diff
changeset
|
123 |
// not going to make captures on the iPhone (nor resizing) |
51 | 124 |
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
|
125 |
begin |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
126 |
flagMakeCapture:= false; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
127 |
s:= 'hw_' + cSeed + '_' + inttostr(GameTicks) + '.tga'; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
128 |
WriteLnToConsole('Saving ' + s); |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
129 |
MakeScreenshot(s); |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
130 |
// SDL_SaveBMP_RW(SDLPrimSurface, SDL_RWFromFile(Str2PChar(s), 'wb'), 1) |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
131 |
end; |
2678
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
2677
diff
changeset
|
132 |
end; |
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
2677
diff
changeset
|
133 |
|
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
2677
diff
changeset
|
134 |
//////////////////////////////// |
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
2677
diff
changeset
|
135 |
procedure Resize(w, h: LongInt); |
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
2677
diff
changeset
|
136 |
begin |
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
2677
diff
changeset
|
137 |
cScreenWidth:= w; |
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
2677
diff
changeset
|
138 |
cScreenHeight:= h; |
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
2677
diff
changeset
|
139 |
if cFullScreen then |
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
2677
diff
changeset
|
140 |
ParseCommand('/fullscr 1', true) |
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
2677
diff
changeset
|
141 |
else |
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
2677
diff
changeset
|
142 |
ParseCommand('/fullscr 0', true); |
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 |
{$ENDIF} |
51 | 144 |
end; |
145 |
||
146 |
//////////////////// |
|
79 | 147 |
procedure OnDestroy; |
51 | 148 |
begin |
149 |
{$IFDEF DEBUGFILE}AddFileLog('Freeing resources...');{$ENDIF} |
|
2688 | 150 |
if isSoundEnabled then ReleaseSound(); |
151 |
StoreRelease(); |
|
152 |
FreeLand(); |
|
153 |
SendKB(); |
|
154 |
CloseIPC(); |
|
155 |
TTF_Quit(); |
|
156 |
//{$IFNDEF IPHONEOS} |
|
157 |
// TODO: don't halt and don't clean, return to the previous view |
|
158 |
SDL_Quit(); |
|
159 |
halt(); |
|
160 |
//{$ENDIF} |
|
51 | 161 |
end; |
162 |
||
163 |
/////////////////// |
|
164 |
procedure MainLoop; |
|
165 |
var PrevTime, |
|
188 | 166 |
CurrTime: Longword; |
51 | 167 |
event: TSDL_Event; |
2591
c6597b65caea
other controls implementation + sdlh revisited (once again)
koda
parents:
2590
diff
changeset
|
168 |
{$IFDEF TOUCHINPUT} |
2690 | 169 |
//var tiltValue: LongInt; |
2569 | 170 |
{$ENDIF} |
51 | 171 |
begin |
172 |
PrevTime:= SDL_GetTicks; |
|
173 |
repeat |
|
174 |
while SDL_PollEvent(@event) <> 0 do |
|
1120 | 175 |
case event.type_ of |
2586
204e6b2885bc
added little/big endian checks, added symbol for touch input, simplified iphoneos definitions
koda
parents:
2581
diff
changeset
|
176 |
{$IFDEF SDL13} |
2678
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
2677
diff
changeset
|
177 |
SDL_WINDOWEVENT: |
2390 | 178 |
{$ELSE} |
1120 | 179 |
SDL_KEYDOWN: if GameState = gsChat then KeyPressChat(event.key.keysym.unicode); |
2678
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
2677
diff
changeset
|
180 |
SDL_ACTIVEEVENT: |
2390 | 181 |
{$ENDIF} |
2678
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
2677
diff
changeset
|
182 |
if (event.active.state and SDL_APPINPUTFOCUS) <> 0 then |
1120 | 183 |
cHasFocus:= event.active.gain = 1; |
1127 | 184 |
//SDL_VIDEORESIZE: Resize(max(event.resize.w, 600), max(event.resize.h, 450)); |
2586
204e6b2885bc
added little/big endian checks, added symbol for touch input, simplified iphoneos definitions
koda
parents:
2581
diff
changeset
|
185 |
{$IFDEF IPHONEOS} |
2630 | 186 |
(* SDL_JOYAXISMOTION: begin |
2580
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
187 |
{* axis 0 = left and right; |
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
188 |
axis 1 = up and down; |
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
189 |
axis 2 = back and forth; *} |
2591
c6597b65caea
other controls implementation + sdlh revisited (once again)
koda
parents:
2590
diff
changeset
|
190 |
|
2678
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
2677
diff
changeset
|
191 |
WriteLnToConsole('********************************************* accelerometer'); |
2591
c6597b65caea
other controls implementation + sdlh revisited (once again)
koda
parents:
2590
diff
changeset
|
192 |
|
2633 | 193 |
tiltValue:= SDL_JoystickGetAxis(uKeys.theJoystick, 0); |
2591
c6597b65caea
other controls implementation + sdlh revisited (once again)
koda
parents:
2590
diff
changeset
|
194 |
|
2678
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
2677
diff
changeset
|
195 |
if (CurrentTeam <> nil) then |
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
2677
diff
changeset
|
196 |
begin |
2600 | 197 |
{$IFDEF DEBUGFILE} |
2591
c6597b65caea
other controls implementation + sdlh revisited (once again)
koda
parents:
2590
diff
changeset
|
198 |
AddFileLog('Joystick: 0; Axis: 0; Value: ' + inttostr(tiltValue)); |
2600 | 199 |
{$ENDIF} |
2678
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
2677
diff
changeset
|
200 |
if tiltValue > 1500 then |
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
2677
diff
changeset
|
201 |
begin |
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
2677
diff
changeset
|
202 |
uKeys.rightKey:= true; |
2591
c6597b65caea
other controls implementation + sdlh revisited (once again)
koda
parents:
2590
diff
changeset
|
203 |
uKeys.isWalking:= true; |
2678
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
2677
diff
changeset
|
204 |
end |
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
2677
diff
changeset
|
205 |
else |
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
2677
diff
changeset
|
206 |
if tiltValue <= -1500 then |
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
2677
diff
changeset
|
207 |
begin |
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
2677
diff
changeset
|
208 |
uKeys.leftKey:= true; |
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
2677
diff
changeset
|
209 |
uKeys.isWalking:= true; |
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
2677
diff
changeset
|
210 |
end |
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
2677
diff
changeset
|
211 |
else |
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
2677
diff
changeset
|
212 |
if (tiltValue > -1500) and (tiltValue <= 1500) and (movedbybuttons = false) then uKeys.isWalking:= false; |
2577 | 213 |
end; |
2678
334016e8d895
injection of custom code in SDL for iPhone in order to implement our frontend
koda
parents:
2677
diff
changeset
|
214 |
end;*) |
2567 | 215 |
{$ELSE} |
2379 | 216 |
SDL_MOUSEBUTTONDOWN: if event.button.button = SDL_BUTTON_WHEELDOWN then uKeys.wheelDown:= true; |
2667 | 217 |
SDL_MOUSEBUTTONUP: if event.button.button = SDL_BUTTON_WHEELUP then uKeys.wheelUp:= true; |
2591
c6597b65caea
other controls implementation + sdlh revisited (once again)
koda
parents:
2590
diff
changeset
|
218 |
SDL_JOYAXISMOTION: ControllerAxisEvent(event.jaxis.which, event.jaxis.axis, event.jaxis.value); |
c6597b65caea
other controls implementation + sdlh revisited (once again)
koda
parents:
2590
diff
changeset
|
219 |
SDL_JOYHATMOTION: ControllerHatEvent(event.jhat.which, event.jhat.hat, event.jhat.value); |
2428 | 220 |
SDL_JOYBUTTONDOWN: ControllerButtonEvent(event.jbutton.which, event.jbutton.button, true); |
221 |
SDL_JOYBUTTONUP: ControllerButtonEvent(event.jbutton.which, event.jbutton.button, false); |
|
2577 | 222 |
{$ENDIF} |
1120 | 223 |
SDL_QUITEV: isTerminated:= true |
2590 | 224 |
end; |
225 |
||
51 | 226 |
CurrTime:= SDL_GetTicks; |
227 |
if PrevTime + cTimerInterval <= CurrTime then |
|
228 |
begin |
|
229 |
DoTimer(CurrTime - PrevTime); |
|
230 |
PrevTime:= CurrTime |
|
434 | 231 |
end else SDL_Delay(1); |
51 | 232 |
IPCCheckSock |
233 |
until isTerminated |
|
2590 | 234 |
|
51 | 235 |
end; |
236 |
||
2008 | 237 |
///////////////////// |
238 |
procedure DisplayUsage; |
|
2691 | 239 |
var i: LongInt; |
2008 | 240 |
begin |
241 |
WriteLn('Wrong argument format: correct configurations is'); |
|
242 |
WriteLn(); |
|
243 |
WriteLn(' hwengine <path to data folder> <path to replay file> [option]'); |
|
244 |
WriteLn(); |
|
245 |
WriteLn('where [option] must be specified either as'); |
|
2264 | 246 |
WriteLn(' --set-video [screen width] [screen height] [color dept]'); |
2008 | 247 |
WriteLn(' --set-audio [volume] [enable music] [enable sounds]'); |
248 |
WriteLn(' --set-other [language file] [full screen] [show FPS]'); |
|
249 |
WriteLn(' --set-multimedia [screen height] [screen width] [color dept] [volume] [enable music] [enable sounds] [language file] [full screen]'); |
|
250 |
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]'); |
|
251 |
WriteLn(); |
|
2015 | 252 |
WriteLn('Read documentation online at http://www.hedgewars.org/node/1465 for more information'); |
2691 | 253 |
Write('parsed command: '); |
254 |
for i:=0 to ParamCount do Write(ParamStr(i) + ' '); |
|
255 |
WriteLn(); |
|
2015 | 256 |
halt(1); |
2008 | 257 |
end; |
258 |
||
51 | 259 |
//////////////////// |
260 |
procedure GetParams; |
|
889 | 261 |
var |
267 | 262 |
{$IFDEF DEBUGFILE} |
371 | 263 |
i: LongInt; |
267 | 264 |
{$ENDIF} |
97
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
265 |
p: TPathType; |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
266 |
begin |
267 | 267 |
|
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
268 |
case ParamCount of |
2392
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2390
diff
changeset
|
269 |
17: begin |
498 | 270 |
val(ParamStr(2), cScreenWidth); |
271 |
val(ParamStr(3), cScreenHeight); |
|
1121
d595dc56b4f3
Remember initial resolution settings to use when switching to fullscreen mode
unc0rr
parents:
1120
diff
changeset
|
272 |
cInitWidth:= cScreenWidth; |
d595dc56b4f3
Remember initial resolution settings to use when switching to fullscreen mode
unc0rr
parents:
1120
diff
changeset
|
273 |
cInitHeight:= cScreenHeight; |
497 | 274 |
cBitsStr:= ParamStr(4); |
498 | 275 |
val(cBitsStr, cBits); |
276 |
val(ParamStr(5), ipcPort); |
|
497 | 277 |
cFullScreen:= ParamStr(6) = '1'; |
278 |
isSoundEnabled:= ParamStr(7) = '1'; |
|
2671
7e0f88013fe8
smaller patches, one missing Sky-lowres, IMG_Init and Mix_Init (might require newer libraries), updates to SDL bindings, code cleanup, new compile flags
koda
parents:
2669
diff
changeset
|
279 |
cVSyncInUse:= ParamStr(8) = '1'; |
2392
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2390
diff
changeset
|
280 |
cLocaleFName:= ParamStr(9); |
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2390
diff
changeset
|
281 |
val(ParamStr(10), cInitVolume); |
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2390
diff
changeset
|
282 |
val(ParamStr(11), cTimerInterval); |
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2390
diff
changeset
|
283 |
PathPrefix:= ParamStr(12); |
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2390
diff
changeset
|
284 |
cShowFPS:= ParamStr(13) = '1'; |
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2390
diff
changeset
|
285 |
cAltDamage:= ParamStr(14) = '1'; |
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2390
diff
changeset
|
286 |
UserNick:= DecodeBase64(ParamStr(15)); |
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2390
diff
changeset
|
287 |
isMusicEnabled:= ParamStr(16) = '1'; |
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2390
diff
changeset
|
288 |
cReducedQuality:= ParamStr(17) = '1'; |
267 | 289 |
for p:= Succ(Low(TPathType)) to High(TPathType) do |
949 | 290 |
if p <> ptMapCurrent then Pathz[p]:= PathPrefix + '/' + Pathz[p] |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
291 |
end; |
2390 | 292 |
{$IFDEF IPHONEOS} |
2252 | 293 |
0: begin |
2663 | 294 |
PathPrefix:= 'Data'; |
295 |
recordFileName:= 'save.hws'; |
|
2630 | 296 |
val('320', cScreenWidth); |
297 |
val('480', cScreenHeight); |
|
298 |
cInitWidth:= cScreenWidth; |
|
299 |
cInitHeight:= cScreenHeight; |
|
300 |
cBitsStr:= '32'; |
|
301 |
val(cBitsStr, cBits); |
|
302 |
val('100', cInitVolume); |
|
303 |
isMusicEnabled:= false; |
|
304 |
isSoundEnabled:= false; |
|
305 |
cLocaleFName:= 'en.txt'; |
|
306 |
cFullScreen:= true; //T or F is is the same here |
|
307 |
cAltDamage:= false; |
|
308 |
cShowFPS:= true; |
|
309 |
val('8', cTimerInterval); |
|
310 |
cReducedQuality:= false; |
|
2252 | 311 |
|
312 |
for p:= Succ(Low(TPathType)) to High(TPathType) do |
|
2630 | 313 |
if p <> ptMapCurrent then Pathz[p]:= PathPrefix + '/' + Pathz[p] |
2252 | 314 |
end; |
2390 | 315 |
{$ENDIF} |
497 | 316 |
3: begin |
498 | 317 |
val(ParamStr(2), ipcPort); |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
318 |
GameType:= gmtLandPreview; |
497 | 319 |
if ParamStr(3) <> 'landpreview' then OutError(errmsgShouldntRun, true); |
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1825
diff
changeset
|
320 |
end; |
2008 | 321 |
2: begin |
322 |
PathPrefix:= ParamStr(1); |
|
323 |
recordFileName:= ParamStr(2); |
|
2376 | 324 |
|
2008 | 325 |
for p:= Succ(Low(TPathType)) to High(TPathType) do |
326 |
if p <> ptMapCurrent then Pathz[p]:= PathPrefix + '/' + Pathz[p] |
|
2630 | 327 |
end; |
2008 | 328 |
6: begin |
329 |
PathPrefix:= ParamStr(1); |
|
330 |
recordFileName:= ParamStr(2); |
|
2376 | 331 |
|
2008 | 332 |
if ParamStr(3) = '--set-video' then |
333 |
begin |
|
334 |
val(ParamStr(4), cScreenWidth); |
|
335 |
val(ParamStr(5), cScreenHeight); |
|
336 |
cInitWidth:= cScreenWidth; |
|
337 |
cInitHeight:= cScreenHeight; |
|
338 |
cBitsStr:= ParamStr(6); |
|
339 |
val(cBitsStr, cBits); |
|
340 |
end |
|
341 |
else |
|
342 |
begin |
|
343 |
if ParamStr(3) = '--set-audio' then |
|
344 |
begin |
|
345 |
val(ParamStr(4), cInitVolume); |
|
346 |
isMusicEnabled:= ParamStr(5) = '1'; |
|
347 |
isSoundEnabled:= ParamStr(6) = '1'; |
|
348 |
end |
|
349 |
else |
|
350 |
begin |
|
351 |
if ParamStr(3) = '--set-other' then |
|
352 |
begin |
|
353 |
cLocaleFName:= ParamStr(4); |
|
354 |
cFullScreen:= ParamStr(5) = '1'; |
|
355 |
cShowFPS:= ParamStr(6) = '1'; |
|
356 |
end |
|
357 |
else DisplayUsage; |
|
358 |
end |
|
359 |
end; |
|
2376 | 360 |
|
2008 | 361 |
for p:= Succ(Low(TPathType)) to High(TPathType) do |
362 |
if p <> ptMapCurrent then Pathz[p]:= PathPrefix + '/' + Pathz[p] |
|
363 |
end; |
|
364 |
11: begin |
|
365 |
PathPrefix:= ParamStr(1); |
|
366 |
recordFileName:= ParamStr(2); |
|
2376 | 367 |
|
2008 | 368 |
if ParamStr(3) = '--set-multimedia' then |
369 |
begin |
|
370 |
val(ParamStr(4), cScreenWidth); |
|
371 |
val(ParamStr(5), cScreenHeight); |
|
372 |
cInitWidth:= cScreenWidth; |
|
373 |
cInitHeight:= cScreenHeight; |
|
374 |
cBitsStr:= ParamStr(6); |
|
375 |
val(cBitsStr, cBits); |
|
376 |
val(ParamStr(7), cInitVolume); |
|
377 |
isMusicEnabled:= ParamStr(8) = '1'; |
|
378 |
isSoundEnabled:= ParamStr(9) = '1'; |
|
379 |
cLocaleFName:= ParamStr(10); |
|
380 |
cFullScreen:= ParamStr(11) = '1'; |
|
381 |
end |
|
382 |
else DisplayUsage; |
|
2376 | 383 |
|
2008 | 384 |
for p:= Succ(Low(TPathType)) to High(TPathType) do |
385 |
if p <> ptMapCurrent then Pathz[p]:= PathPrefix + '/' + Pathz[p] |
|
386 |
end; |
|
387 |
15: begin |
|
2154
3d2917be12c3
Change default output to stderr since /tmp doesn't exist under windows and is useless under iphoneos, add a couple of extra parameters
nemo
parents:
2152
diff
changeset
|
388 |
PathPrefix:= ParamStr(1); |
3d2917be12c3
Change default output to stderr since /tmp doesn't exist under windows and is useless under iphoneos, add a couple of extra parameters
nemo
parents:
2152
diff
changeset
|
389 |
recordFileName:= ParamStr(2); |
2008 | 390 |
if ParamStr(3) = '--set-everything' then |
391 |
begin |
|
392 |
val(ParamStr(4), cScreenWidth); |
|
393 |
val(ParamStr(5), cScreenHeight); |
|
394 |
cInitWidth:= cScreenWidth; |
|
395 |
cInitHeight:= cScreenHeight; |
|
396 |
cBitsStr:= ParamStr(6); |
|
397 |
val(cBitsStr, cBits); |
|
398 |
val(ParamStr(7), cInitVolume); |
|
399 |
isMusicEnabled:= ParamStr(8) = '1'; |
|
400 |
isSoundEnabled:= ParamStr(9) = '1'; |
|
401 |
cLocaleFName:= ParamStr(10); |
|
402 |
cFullScreen:= ParamStr(11) = '1'; |
|
403 |
cAltDamage:= ParamStr(12) = '1'; |
|
404 |
cShowFPS:= ParamStr(13) = '1'; |
|
405 |
val(ParamStr(14), cTimerInterval); |
|
406 |
cReducedQuality:= ParamStr(15) = '1'; |
|
407 |
end |
|
408 |
else DisplayUsage; |
|
2376 | 409 |
|
2008 | 410 |
for p:= Succ(Low(TPathType)) to High(TPathType) do |
411 |
if p <> ptMapCurrent then Pathz[p]:= PathPrefix + '/' + Pathz[p] |
|
412 |
end; |
|
413 |
else DisplayUsage; |
|
414 |
end; |
|
2630 | 415 |
|
416 |
{$IFDEF DEBUGFILE} |
|
417 |
AddFileLog('Prefix: "' + PathPrefix +'"'); |
|
418 |
for i:= 0 to ParamCount do |
|
419 |
AddFileLog(inttostr(i) + ': ' + ParamStr(i)); |
|
420 |
{$IFDEF IPHONEOS} |
|
2690 | 421 |
WriteLnToConsole('Saving debug file at: ' + IPH_getDocumentsPath()); |
2630 | 422 |
{$ENDIF} |
423 |
{$ENDIF} |
|
51 | 424 |
end; |
425 |
||
2016 | 426 |
///////////////////////// |
51 | 427 |
procedure ShowMainWindow; |
428 |
begin |
|
2633 | 429 |
if cFullScreen then ParseCommand('fullscr 1', true) |
430 |
else ParseCommand('fullscr 0', true); |
|
431 |
SDL_ShowCursor(0) |
|
51 | 432 |
end; |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
433 |
|
160 | 434 |
/////////////// |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
435 |
procedure Game; |
205 | 436 |
var s: shortstring; |
51 | 437 |
begin |
438 |
WriteToConsole('Init SDL... '); |
|
2674
2fce032f2f95
lupdate + Palewolf's updated spanish translation + other patches of mine
koda
parents:
2671
diff
changeset
|
439 |
SDLTry(SDL_Init(SDL_INIT_VIDEO) >= 0, true); |
51 | 440 |
WriteLnToConsole(msgOK); |
753 | 441 |
|
377 | 442 |
SDL_EnableUNICODE(1); |
51 | 443 |
|
444 |
WriteToConsole('Init SDL_ttf... '); |
|
200 | 445 |
SDLTry(TTF_Init <> -1, true); |
51 | 446 |
WriteLnToConsole(msgOK); |
447 |
||
448 |
ShowMainWindow; |
|
449 |
||
2671
7e0f88013fe8
smaller patches, one missing Sky-lowres, IMG_Init and Mix_Init (might require newer libraries), updates to SDL bindings, code cleanup, new compile flags
koda
parents:
2669
diff
changeset
|
450 |
AddProgress; |
7e0f88013fe8
smaller patches, one missing Sky-lowres, IMG_Init and Mix_Init (might require newer libraries), updates to SDL bindings, code cleanup, new compile flags
koda
parents:
2669
diff
changeset
|
451 |
|
2428 | 452 |
ControllerInit; // has to happen before InitKbdKeyTable to map keys |
51 | 453 |
InitKbdKeyTable; |
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1825
diff
changeset
|
454 |
|
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1825
diff
changeset
|
455 |
if recordFileName = '' then InitIPC; |
51 | 456 |
WriteLnToConsole(msgGettingConfig); |
80 | 457 |
|
2039 | 458 |
if cLocaleFName <> 'en.txt' then |
459 |
LoadLocale(Pathz[ptLocale] + '/en.txt'); |
|
80 | 460 |
LoadLocale(Pathz[ptLocale] + '/' + cLocaleFName); |
461 |
||
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1825
diff
changeset
|
462 |
if recordFileName = '' then |
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1825
diff
changeset
|
463 |
SendIPCAndWaitReply('C') // ask for game config |
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1825
diff
changeset
|
464 |
else |
2600 | 465 |
LoadRecordFromFile(recordFileName); |
205 | 466 |
|
467 |
s:= 'eproto ' + inttostr(cNetProtoVersion); |
|
468 |
SendIPCRaw(@s[0], Length(s) + 1); // send proto version |
|
469 |
||
51 | 470 |
InitTeams; |
288 | 471 |
AssignStores; |
51 | 472 |
|
2600 | 473 |
if isSoundEnabled then |
474 |
InitSound; |
|
51 | 475 |
|
476 |
isDeveloperMode:= false; |
|
477 |
||
2600 | 478 |
TryDo(InitStepsFlags = cifAllInited, 'Some parameters not set (flags = ' + inttostr(InitStepsFlags) + ')', true); |
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
54
diff
changeset
|
479 |
|
2428 | 480 |
MainLoop; |
481 |
ControllerClose |
|
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
482 |
end; |
51 | 483 |
|
160 | 484 |
///////////////////////// |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
485 |
procedure GenLandPreview; |
566 | 486 |
var Preview: TPreview; |
1791
7c9d645d2591
Fix passing hedgehogs number from engine to frontend
unc0rr
parents:
1784
diff
changeset
|
487 |
h: byte; |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
488 |
begin |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
489 |
InitIPC; |
159 | 490 |
IPCWaitPongEvent; |
2600 | 491 |
TryDo(InitStepsFlags = cifRandomize, 'Some parameters not set (flags = ' + inttostr(InitStepsFlags) + ')', true); |
160 | 492 |
|
566 | 493 |
Preview:= GenPreview; |
159 | 494 |
WriteLnToConsole('Sending preview...'); |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
495 |
SendIPCRaw(@Preview, sizeof(Preview)); |
1791
7c9d645d2591
Fix passing hedgehogs number from engine to frontend
unc0rr
parents:
1784
diff
changeset
|
496 |
h:= MaxHedgehogs; |
7c9d645d2591
Fix passing hedgehogs number from engine to frontend
unc0rr
parents:
1784
diff
changeset
|
497 |
SendIPCRaw(@h, sizeof(h)); |
159 | 498 |
WriteLnToConsole('Preview sent, disconnect'); |
158 | 499 |
CloseIPC |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
500 |
end; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
501 |
|
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
502 |
//////////////////////////////////////////////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
503 |
/////////////////////////////// m a i n //////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
504 |
//////////////////////////////////////////////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
505 |
|
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
506 |
begin |
2667 | 507 |
WriteLnToConsole('Hedgewars ' + cVersionString + ' engine (network protocol: ' + inttostr(cNetProtoVersion) + ')'); |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
508 |
GetParams; |
2105 | 509 |
|
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
510 |
Randomize; |
2008 | 511 |
|
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
512 |
if GameType = gmtLandPreview then GenLandPreview |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
513 |
else Game |
51 | 514 |
end. |
2008 | 515 |