author | koda |
Sun, 25 Oct 2009 23:52:36 +0000 | |
changeset 2590 | e7e87e3c67db |
parent 2587 | 0dfa56a8513c |
child 2591 | c6597b65caea |
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 |
||
355 | 19 |
{$IFNDEF FPC} |
2568
e654cbfb23ba
Bunch of neat stuff by Smaxx. ATI check, translucent name tags to reduce terrain fail, disabling health crates on invulnerable hogs. Also tweaks to prior stuff.
nemo
parents:
2567
diff
changeset
|
20 |
{$ERROR Only Free Pascal supported!} |
355 | 21 |
{$ENDIF} |
22 |
||
2587
0dfa56a8513c
fix a segfault in the iphone simulator by moving options.inc at the beginning of the file
koda
parents:
2586
diff
changeset
|
23 |
{$INCLUDE options.inc} |
0dfa56a8513c
fix a segfault in the iphone simulator by moving options.inc at the beginning of the file
koda
parents:
2586
diff
changeset
|
24 |
|
51 | 25 |
program hwengine; |
26 |
uses |
|
1947 | 27 |
SDLh in 'SDLh.pas', |
2152 | 28 |
{$IFDEF GLES11} |
1906 | 29 |
gles11, |
30 |
{$ELSE} |
|
1524
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
31 |
GL, |
1906 | 32 |
{$ENDIF} |
1524
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
33 |
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
|
34 |
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
|
35 |
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
|
36 |
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
|
37 |
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
|
38 |
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
|
39 |
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
|
40 |
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
|
41 |
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
|
42 |
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
|
43 |
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
|
44 |
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
|
45 |
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
|
46 |
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
|
47 |
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
|
48 |
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
|
49 |
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
|
50 |
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
|
51 |
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
|
52 |
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
|
53 |
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
|
54 |
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
|
55 |
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
|
56 |
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
|
57 |
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
|
58 |
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
|
59 |
uStats in 'uStats.pas', |
1807 | 60 |
uChat in 'uChat.pas', |
2008 | 61 |
uLandTexture in 'uLandTexture.pas'; |
51 | 62 |
|
63 |
// also: GSHandlers.inc |
|
64 |
// CCHandlers.inc |
|
65 |
// HHHandlers.inc |
|
357 | 66 |
// SinTable.inc |
271 | 67 |
// proto.inc |
51 | 68 |
|
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1825
diff
changeset
|
69 |
var recordFileName : shortstring = ''; |
51 | 70 |
|
71 |
procedure OnDestroy; forward; |
|
72 |
||
73 |
//////////////////////////////// |
|
371 | 74 |
procedure DoTimer(Lag: LongInt); |
2243
b4764993f833
additional touch support and nemo's reduced land array size
koda
parents:
2191
diff
changeset
|
75 |
{$IFNDEF IPHONEOS} |
1080 | 76 |
var s: string; |
2243
b4764993f833
additional touch support and nemo's reduced land array size
koda
parents:
2191
diff
changeset
|
77 |
{$ENDIF} |
51 | 78 |
begin |
564 | 79 |
inc(RealTicks, Lag); |
80 |
||
51 | 81 |
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
|
82 |
gsLandGen: begin |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
83 |
GenMap; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
84 |
GameState:= gsStart; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
85 |
end; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
86 |
gsStart: begin |
1784 | 87 |
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
|
88 |
AddClouds; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
89 |
AssignHHCoords; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
90 |
AddMiscGears; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
91 |
StoreLoad; |
2428 | 92 |
InitWorld; |
1524
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
93 |
ResetKbd; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
94 |
SoundLoad; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
95 |
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
|
96 |
begin |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
97 |
isSEBackup:= isSoundEnabled; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
98 |
isSoundEnabled:= false |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
99 |
end; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
100 |
FinishProgress; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
101 |
PlayMusic; |
2162 | 102 |
SetScale(zoom); |
1524
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
103 |
GameState:= gsGame |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
104 |
end; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
105 |
gsConfirm, |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
106 |
gsGame: begin |
1645 | 107 |
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
|
108 |
ProcessKbd; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
109 |
DoGameTick(Lag); |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
110 |
ProcessVisualGears(Lag); |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
111 |
end; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
112 |
gsChat: begin |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
113 |
DrawWorld(Lag); |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
114 |
DoGameTick(Lag); |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
115 |
ProcessVisualGears(Lag); |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
116 |
end; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
117 |
gsExit: begin |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
118 |
OnDestroy; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
119 |
end; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
120 |
end; |
564 | 121 |
|
753 | 122 |
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
|
123 |
{$IFNDEF IPHONEOS} |
8208946331ba
Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents:
2162
diff
changeset
|
124 |
//not going to make captures on the iPhone |
51 | 125 |
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
|
126 |
begin |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
127 |
flagMakeCapture:= false; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
128 |
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
|
129 |
WriteLnToConsole('Saving ' + s); |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
130 |
MakeScreenshot(s); |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
131 |
// 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
|
132 |
end; |
2171
8208946331ba
Smaxx refactor of LoadImage to use flags, iphone changes by koda (mostly use of rgba instead of rgb)
nemo
parents:
2162
diff
changeset
|
133 |
{$ENDIF} |
51 | 134 |
end; |
135 |
||
136 |
//////////////////// |
|
79 | 137 |
procedure OnDestroy; |
51 | 138 |
begin |
139 |
{$IFDEF DEBUGFILE}AddFileLog('Freeing resources...');{$ENDIF} |
|
140 |
if isSoundEnabled then ReleaseSound; |
|
619 | 141 |
StoreRelease; |
1807 | 142 |
FreeLand; |
619 | 143 |
SendKB; |
51 | 144 |
CloseIPC; |
145 |
TTF_Quit; |
|
146 |
SDL_Quit; |
|
147 |
halt |
|
148 |
end; |
|
149 |
||
1120 | 150 |
//////////////////////////////// |
151 |
procedure Resize(w, h: LongInt); |
|
152 |
begin |
|
153 |
cScreenWidth:= w; |
|
154 |
cScreenHeight:= h; |
|
155 |
if cFullScreen then |
|
156 |
ParseCommand('/fullscr 1', true) |
|
157 |
else |
|
158 |
ParseCommand('/fullscr 0', true); |
|
159 |
end; |
|
160 |
||
51 | 161 |
/////////////////// |
162 |
procedure MainLoop; |
|
163 |
var PrevTime, |
|
188 | 164 |
CurrTime: Longword; |
51 | 165 |
event: TSDL_Event; |
2569 | 166 |
{$IFDEF IPHONEOS} |
2579 | 167 |
type TDirection = (nodir, left, right); |
2580
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
168 |
var x, y: LongInt; |
2590 | 169 |
dx, dy, mouseState: LongInt; |
170 |
direction: TDirection = nodir; |
|
171 |
havetrace: boolean = false; |
|
2569 | 172 |
{$ENDIF} |
51 | 173 |
begin |
174 |
PrevTime:= SDL_GetTicks; |
|
175 |
repeat |
|
176 |
while SDL_PollEvent(@event) <> 0 do |
|
2590 | 177 |
{$IFDEF TOUCHINPUT} |
178 |
if direction <> nodir then |
|
179 |
begin |
|
180 |
uKeys.isWalking:= true; |
|
181 |
if direction = left then uKeys.leftKey:= true |
|
182 |
else if direction = right then uKeys.rightKey:= true; |
|
183 |
end |
|
184 |
else uKeys.isWalking:= false; |
|
185 |
{$ENDIF} |
|
1120 | 186 |
case event.type_ of |
2586
204e6b2885bc
added little/big endian checks, added symbol for touch input, simplified iphoneos definitions
koda
parents:
2581
diff
changeset
|
187 |
{$IFDEF SDL13} |
2390 | 188 |
SDL_WINDOWEVENT: |
189 |
{$ELSE} |
|
1120 | 190 |
SDL_KEYDOWN: if GameState = gsChat then KeyPressChat(event.key.keysym.unicode); |
2390 | 191 |
SDL_ACTIVEEVENT: |
192 |
{$ENDIF} |
|
193 |
if (event.active.state and SDL_APPINPUTFOCUS) <> 0 then |
|
1120 | 194 |
cHasFocus:= event.active.gain = 1; |
1127 | 195 |
//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
|
196 |
{$IFDEF TOUCHINPUT} |
2590 | 197 |
SDL_MOUSEMOTION: begin |
198 |
AddFileLog('********************************************* motion'); |
|
199 |
mouseState:= SDL_GetMouseState(0, @x, @y); |
|
200 |
SDL_GetRelativeMouseState(0, @dx, @dy); |
|
201 |
||
202 |
direction:= nodir; |
|
203 |
||
204 |
if boolean(mouseState) then |
|
205 |
begin |
|
206 |
AddFileLog('x: ' + inttostr(x) + ' y: ' + inttostr(y) + ' dx: ' + inttostr(dx) + ' dy: ' + inttostr(dy)); |
|
207 |
||
208 |
{* zoom slider *} |
|
209 |
if (x <= 50) and (y <= 430) and (y > 50) then |
|
210 |
begin |
|
211 |
if (dy > 0) then uKeys.wheelDown:= true |
|
212 |
else if (dy < 0) then uKeys.wheelUp:= true; |
|
213 |
end; |
|
214 |
||
215 |
{* aim slider *} |
|
216 |
if (x > 270) and (y > 50) and (y <= 430) then |
|
217 |
begin |
|
218 |
if (dy > 0) then uKeys.downKey:= true |
|
219 |
else if (dy < 0) then uKeys.upKey:= true; |
|
220 |
end; |
|
221 |
||
222 |
{* switch *} |
|
223 |
if (x > 50) and (x <= 270) and (y > 400) then |
|
224 |
begin |
|
225 |
if (dy <> 0) then uKeys.tabKey:= true |
|
226 |
end; |
|
227 |
end; |
|
228 |
end; |
|
2567 | 229 |
{*MoveCamera is in uWord.pas -- conflicts with other commands*} |
230 |
SDL_MOUSEBUTTONDOWN: begin |
|
2580
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
231 |
AddFileLog('********************************************* touch down'); |
2579 | 232 |
|
2590 | 233 |
mouseState:= SDL_GetMouseState(0, @x, @y); |
234 |
||
235 |
{* attack *} |
|
236 |
if (x > 50) and (x <= 270) and (y <= 50) then |
|
237 |
begin |
|
238 |
AddFileLog('Space DOWN -- x: ' + inttostr(x) + ' y: ' + inttostr(y)); |
|
239 |
uKeys.spaceKey:= true; |
|
240 |
uKeys.isAttacking:= true; |
|
241 |
end; |
|
2579 | 242 |
|
2590 | 243 |
if (x <= 50) and (y <= 50) then |
244 |
begin |
|
245 |
AddFileLog('Left Arrow Key DOWN -- x: ' + inttostr(x) + ' y: ' + inttostr(y)); |
|
246 |
// uKeys.leftKey:= true; |
|
247 |
// uKeys.isWalking:= true; |
|
248 |
direction:= left; |
|
249 |
end; |
|
250 |
||
251 |
if (x > 270) and (y <= 50) then |
|
252 |
begin |
|
253 |
AddFileLog('Right Arrow Key DOWN -- x: ' + inttostr(x) + ' y: ' + inttostr(y)); |
|
254 |
// uKeys.rightKey:= true; |
|
255 |
// uKeys.isWalking:= true; |
|
256 |
direction:= right; |
|
257 |
end; |
|
258 |
||
259 |
{* high jump *} |
|
260 |
if (x > 160) and (x <= 270) and (y > 400) then |
|
2577 | 261 |
begin |
262 |
{$IFDEF DEBUGFILE} |
|
2590 | 263 |
AddFileLog('Backspace -- x: ' + inttostr(x) + ' y: ' + inttostr(y)); |
2577 | 264 |
{$ENDIF} |
2590 | 265 |
uKeys.backspaceKey:= true; |
2580
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
266 |
end; |
2590 | 267 |
end; |
268 |
SDL_MOUSEBUTTONUP: begin |
|
269 |
AddFileLog('********************************************* touch up'); |
|
270 |
||
271 |
mouseState:= SDL_GetMouseState(0, @x, @y); |
|
272 |
uKeys.leftClick:= true; |
|
273 |
||
274 |
{* open ammo menu *} |
|
275 |
if (y > 430) and (x > 270) then |
|
2580
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
276 |
begin |
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
277 |
{$IFDEF DEBUGFILE} |
2590 | 278 |
AddFileLog('Right Click -- x: ' + inttostr(x) + ' y: ' + inttostr(y) ); |
2580
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
279 |
{$ENDIF} |
2590 | 280 |
uKeys.rightClick:= true; |
2567 | 281 |
end; |
2590 | 282 |
|
283 |
{* long jump *} |
|
284 |
if (x > 50) and (x <= 160) and (y > 400) then |
|
2567 | 285 |
begin |
2580
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
286 |
{$IFDEF DEBUGFILE} |
2590 | 287 |
AddFileLog('Enter -- x: ' + inttostr(x) + ' y: ' + inttostr(y)); |
2580
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
288 |
{$ENDIF} |
2590 | 289 |
uKeys.enterKey:= true; |
2580
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
290 |
end; |
2590 | 291 |
|
2580
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
292 |
{* reset zoom *} |
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
293 |
if (x <= 50) and (y > 430) then |
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
294 |
begin |
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
295 |
{$IFDEF DEBUGFILE} |
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
296 |
AddFileLog('Middle Click -- x: ' + inttostr(x) + ' y: ' + inttostr(y)); |
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
297 |
{$ENDIF} |
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
298 |
uKeys.middleClick:= true; |
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
299 |
end; |
2579 | 300 |
|
2590 | 301 |
{* end movement and attack *} |
2577 | 302 |
{$IFDEF DEBUGFILE} |
2590 | 303 |
AddFileLog('Arrow Keys UP | Space UP -- x: ' + inttostr(x) + ' y: ' + inttostr(y) ); |
2577 | 304 |
{$ENDIF} |
2590 | 305 |
direction:= nodir; |
306 |
uKeys.isAttacking:= false; |
|
2577 | 307 |
end; |
2586
204e6b2885bc
added little/big endian checks, added symbol for touch input, simplified iphoneos definitions
koda
parents:
2581
diff
changeset
|
308 |
{$ENDIF} |
204e6b2885bc
added little/big endian checks, added symbol for touch input, simplified iphoneos definitions
koda
parents:
2581
diff
changeset
|
309 |
{$IFDEF IPHONEOS} |
2590 | 310 |
{* might be masked by above events |
2577 | 311 |
SDL_JOYAXIS: begin |
2580
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
312 |
{* axis 0 = left and right; |
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
313 |
axis 1 = up and down; |
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
314 |
axis 2 = back and forth; *} |
2577 | 315 |
if (event.jaxis.axis = 0) and (CurrentTeam <> nil) then |
316 |
begin |
|
2580
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
317 |
if event.jaxis.value > 1500 then |
2577 | 318 |
begin |
2590 | 319 |
direction:= right; |
2580
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
320 |
end |
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
321 |
else |
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
322 |
if event.jaxis.value <= -1500 then |
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
323 |
begin |
2590 | 324 |
direction:= left |
2579 | 325 |
end |
326 |
else |
|
2590 | 327 |
if (event.jaxis.value > -1500) and (event.jaxis.value <= 1500) then direction:= nodir; |
2577 | 328 |
{$IFDEF DEBUGFILE} |
2580
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
329 |
AddFileLog('Joystick value: ' + inttostr(event.jaxis.value)); |
2577 | 330 |
{$ENDIF} |
331 |
end; |
|
332 |
||
333 |
end; |
|
2590 | 334 |
*} |
2567 | 335 |
{$ELSE} |
2379 | 336 |
SDL_MOUSEBUTTONDOWN: if event.button.button = SDL_BUTTON_WHEELDOWN then uKeys.wheelDown:= true; |
337 |
SDL_MOUSEBUTTONUP: if event.button.button = SDL_BUTTON_WHEELDUP then uKeys.wheelUp:= true; |
|
2428 | 338 |
SDL_JOYAXIS: ControllerAxisEvent(event.jaxis.which, event.jaxis.axis, event.jaxis.value); |
339 |
SDL_JOYHAT: ControllerHatEvent(event.jhat.which, event.jhat.hat, event.jhat.value); |
|
340 |
SDL_JOYBUTTONDOWN: ControllerButtonEvent(event.jbutton.which, event.jbutton.button, true); |
|
341 |
SDL_JOYBUTTONUP: ControllerButtonEvent(event.jbutton.which, event.jbutton.button, false); |
|
2577 | 342 |
{$ENDIF} |
1120 | 343 |
SDL_QUITEV: isTerminated:= true |
2590 | 344 |
end; |
345 |
||
51 | 346 |
CurrTime:= SDL_GetTicks; |
347 |
if PrevTime + cTimerInterval <= CurrTime then |
|
348 |
begin |
|
349 |
DoTimer(CurrTime - PrevTime); |
|
350 |
PrevTime:= CurrTime |
|
434 | 351 |
end else SDL_Delay(1); |
51 | 352 |
IPCCheckSock |
353 |
until isTerminated |
|
2590 | 354 |
|
51 | 355 |
end; |
356 |
||
2008 | 357 |
///////////////////// |
358 |
procedure DisplayUsage; |
|
359 |
begin |
|
360 |
WriteLn('Wrong argument format: correct configurations is'); |
|
361 |
WriteLn(); |
|
362 |
WriteLn(' hwengine <path to data folder> <path to replay file> [option]'); |
|
363 |
WriteLn(); |
|
364 |
WriteLn('where [option] must be specified either as'); |
|
2264 | 365 |
WriteLn(' --set-video [screen width] [screen height] [color dept]'); |
2008 | 366 |
WriteLn(' --set-audio [volume] [enable music] [enable sounds]'); |
367 |
WriteLn(' --set-other [language file] [full screen] [show FPS]'); |
|
368 |
WriteLn(' --set-multimedia [screen height] [screen width] [color dept] [volume] [enable music] [enable sounds] [language file] [full screen]'); |
|
369 |
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]'); |
|
370 |
WriteLn(); |
|
2015 | 371 |
WriteLn('Read documentation online at http://www.hedgewars.org/node/1465 for more information'); |
372 |
halt(1); |
|
2008 | 373 |
end; |
374 |
||
51 | 375 |
//////////////////// |
376 |
procedure GetParams; |
|
889 | 377 |
var |
267 | 378 |
{$IFDEF DEBUGFILE} |
371 | 379 |
i: LongInt; |
267 | 380 |
{$ENDIF} |
97
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
381 |
p: TPathType; |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
382 |
begin |
51 | 383 |
{$IFDEF DEBUGFILE} |
97
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
384 |
AddFileLog('Prefix: "' + PathPrefix +'"'); |
51 | 385 |
for i:= 0 to ParamCount do |
386 |
AddFileLog(inttostr(i) + ': ' + ParamStr(i)); |
|
387 |
{$ENDIF} |
|
267 | 388 |
|
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
389 |
case ParamCount of |
2392
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2390
diff
changeset
|
390 |
17: begin |
498 | 391 |
val(ParamStr(2), cScreenWidth); |
392 |
val(ParamStr(3), cScreenHeight); |
|
1121
d595dc56b4f3
Remember initial resolution settings to use when switching to fullscreen mode
unc0rr
parents:
1120
diff
changeset
|
393 |
cInitWidth:= cScreenWidth; |
d595dc56b4f3
Remember initial resolution settings to use when switching to fullscreen mode
unc0rr
parents:
1120
diff
changeset
|
394 |
cInitHeight:= cScreenHeight; |
497 | 395 |
cBitsStr:= ParamStr(4); |
498 | 396 |
val(cBitsStr, cBits); |
397 |
val(ParamStr(5), ipcPort); |
|
497 | 398 |
cFullScreen:= ParamStr(6) = '1'; |
399 |
isSoundEnabled:= ParamStr(7) = '1'; |
|
2413
d921d13a8546
fix that nasty "Pascal Internal Error" when compiling
koda
parents:
2409
diff
changeset
|
400 |
isSoundHardware:= ParamStr(8) = '1'; |
2392
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2390
diff
changeset
|
401 |
cLocaleFName:= ParamStr(9); |
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2390
diff
changeset
|
402 |
val(ParamStr(10), cInitVolume); |
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2390
diff
changeset
|
403 |
val(ParamStr(11), cTimerInterval); |
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2390
diff
changeset
|
404 |
PathPrefix:= ParamStr(12); |
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2390
diff
changeset
|
405 |
cShowFPS:= ParamStr(13) = '1'; |
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2390
diff
changeset
|
406 |
cAltDamage:= ParamStr(14) = '1'; |
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2390
diff
changeset
|
407 |
UserNick:= DecodeBase64(ParamStr(15)); |
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2390
diff
changeset
|
408 |
isMusicEnabled:= ParamStr(16) = '1'; |
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2390
diff
changeset
|
409 |
cReducedQuality:= ParamStr(17) = '1'; |
267 | 410 |
for p:= Succ(Low(TPathType)) to High(TPathType) do |
949 | 411 |
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
|
412 |
end; |
2390 | 413 |
{$IFDEF IPHONEOS} |
2252 | 414 |
0: begin |
415 |
PathPrefix:= 'hedgewars/Data'; |
|
416 |
recordFileName:= 'hedgewars/save.hws'; |
|
417 |
val('320', cScreenWidth); |
|
418 |
val('480', cScreenHeight); |
|
419 |
cInitWidth:= cScreenWidth; |
|
420 |
cInitHeight:= cScreenHeight; |
|
421 |
cBitsStr:= '32'; |
|
422 |
val(cBitsStr, cBits); |
|
423 |
val('100', cInitVolume); |
|
424 |
isMusicEnabled:= false; |
|
425 |
isSoundEnabled:= false; |
|
426 |
cLocaleFName:= 'en.txt'; |
|
2409
dbf195c3e09c
fix a very rare bug in which CurSlot becomes greater than cMaxCurSlot
koda
parents:
2392
diff
changeset
|
427 |
cFullScreen:= true; //T or F is is the same here |
2252 | 428 |
cAltDamage:= false; |
2409
dbf195c3e09c
fix a very rare bug in which CurSlot becomes greater than cMaxCurSlot
koda
parents:
2392
diff
changeset
|
429 |
cShowFPS:= true; |
2252 | 430 |
val('8', cTimerInterval); |
2581 | 431 |
cReducedQuality:= true; |
2252 | 432 |
|
433 |
for p:= Succ(Low(TPathType)) to High(TPathType) do |
|
434 |
if p <> ptMapCurrent then Pathz[p]:= PathPrefix + '/' + Pathz[p] |
|
435 |
end; |
|
2390 | 436 |
{$ENDIF} |
497 | 437 |
3: begin |
498 | 438 |
val(ParamStr(2), ipcPort); |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
439 |
GameType:= gmtLandPreview; |
497 | 440 |
if ParamStr(3) <> 'landpreview' then OutError(errmsgShouldntRun, true); |
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1825
diff
changeset
|
441 |
end; |
2008 | 442 |
2: begin |
443 |
PathPrefix:= ParamStr(1); |
|
444 |
recordFileName:= ParamStr(2); |
|
2376 | 445 |
|
2008 | 446 |
for p:= Succ(Low(TPathType)) to High(TPathType) do |
447 |
if p <> ptMapCurrent then Pathz[p]:= PathPrefix + '/' + Pathz[p] |
|
448 |
end; |
|
449 |
6: begin |
|
450 |
PathPrefix:= ParamStr(1); |
|
451 |
recordFileName:= ParamStr(2); |
|
2376 | 452 |
|
2008 | 453 |
if ParamStr(3) = '--set-video' then |
454 |
begin |
|
455 |
val(ParamStr(4), cScreenWidth); |
|
456 |
val(ParamStr(5), cScreenHeight); |
|
457 |
cInitWidth:= cScreenWidth; |
|
458 |
cInitHeight:= cScreenHeight; |
|
459 |
cBitsStr:= ParamStr(6); |
|
460 |
val(cBitsStr, cBits); |
|
461 |
end |
|
462 |
else |
|
463 |
begin |
|
464 |
if ParamStr(3) = '--set-audio' then |
|
465 |
begin |
|
466 |
val(ParamStr(4), cInitVolume); |
|
467 |
isMusicEnabled:= ParamStr(5) = '1'; |
|
468 |
isSoundEnabled:= ParamStr(6) = '1'; |
|
469 |
end |
|
470 |
else |
|
471 |
begin |
|
472 |
if ParamStr(3) = '--set-other' then |
|
473 |
begin |
|
474 |
cLocaleFName:= ParamStr(4); |
|
475 |
cFullScreen:= ParamStr(5) = '1'; |
|
476 |
cShowFPS:= ParamStr(6) = '1'; |
|
477 |
end |
|
478 |
else DisplayUsage; |
|
479 |
end |
|
480 |
end; |
|
2376 | 481 |
|
2008 | 482 |
for p:= Succ(Low(TPathType)) to High(TPathType) do |
483 |
if p <> ptMapCurrent then Pathz[p]:= PathPrefix + '/' + Pathz[p] |
|
484 |
end; |
|
485 |
11: begin |
|
486 |
PathPrefix:= ParamStr(1); |
|
487 |
recordFileName:= ParamStr(2); |
|
2376 | 488 |
|
2008 | 489 |
if ParamStr(3) = '--set-multimedia' then |
490 |
begin |
|
491 |
val(ParamStr(4), cScreenWidth); |
|
492 |
val(ParamStr(5), cScreenHeight); |
|
493 |
cInitWidth:= cScreenWidth; |
|
494 |
cInitHeight:= cScreenHeight; |
|
495 |
cBitsStr:= ParamStr(6); |
|
496 |
val(cBitsStr, cBits); |
|
497 |
val(ParamStr(7), cInitVolume); |
|
498 |
isMusicEnabled:= ParamStr(8) = '1'; |
|
499 |
isSoundEnabled:= ParamStr(9) = '1'; |
|
500 |
cLocaleFName:= ParamStr(10); |
|
501 |
cFullScreen:= ParamStr(11) = '1'; |
|
502 |
end |
|
503 |
else DisplayUsage; |
|
2376 | 504 |
|
2008 | 505 |
for p:= Succ(Low(TPathType)) to High(TPathType) do |
506 |
if p <> ptMapCurrent then Pathz[p]:= PathPrefix + '/' + Pathz[p] |
|
507 |
end; |
|
508 |
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
|
509 |
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
|
510 |
recordFileName:= ParamStr(2); |
2008 | 511 |
if ParamStr(3) = '--set-everything' then |
512 |
begin |
|
513 |
val(ParamStr(4), cScreenWidth); |
|
514 |
val(ParamStr(5), cScreenHeight); |
|
515 |
cInitWidth:= cScreenWidth; |
|
516 |
cInitHeight:= cScreenHeight; |
|
517 |
cBitsStr:= ParamStr(6); |
|
518 |
val(cBitsStr, cBits); |
|
519 |
val(ParamStr(7), cInitVolume); |
|
520 |
isMusicEnabled:= ParamStr(8) = '1'; |
|
521 |
isSoundEnabled:= ParamStr(9) = '1'; |
|
522 |
cLocaleFName:= ParamStr(10); |
|
523 |
cFullScreen:= ParamStr(11) = '1'; |
|
524 |
cAltDamage:= ParamStr(12) = '1'; |
|
525 |
cShowFPS:= ParamStr(13) = '1'; |
|
526 |
val(ParamStr(14), cTimerInterval); |
|
527 |
cReducedQuality:= ParamStr(15) = '1'; |
|
528 |
end |
|
529 |
else DisplayUsage; |
|
2376 | 530 |
|
2008 | 531 |
for p:= Succ(Low(TPathType)) to High(TPathType) do |
532 |
if p <> ptMapCurrent then Pathz[p]:= PathPrefix + '/' + Pathz[p] |
|
533 |
end; |
|
534 |
else DisplayUsage; |
|
535 |
end; |
|
51 | 536 |
end; |
537 |
||
2016 | 538 |
///////////////////////// |
51 | 539 |
procedure ShowMainWindow; |
540 |
begin |
|
351 | 541 |
if cFullScreen then ParseCommand('fullscr 1', true) |
542 |
else ParseCommand('fullscr 0', true); |
|
281
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
271
diff
changeset
|
543 |
SDL_ShowCursor(0) |
51 | 544 |
end; |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
545 |
|
160 | 546 |
/////////////// |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
547 |
procedure Game; |
205 | 548 |
var s: shortstring; |
51 | 549 |
begin |
550 |
WriteToConsole('Init SDL... '); |
|
2428 | 551 |
SDLTry(SDL_Init(SDL_INIT_VIDEO or SDL_INIT_JOYSTICK) >= 0, true); |
51 | 552 |
WriteLnToConsole(msgOK); |
753 | 553 |
|
377 | 554 |
SDL_EnableUNICODE(1); |
51 | 555 |
|
556 |
WriteToConsole('Init SDL_ttf... '); |
|
200 | 557 |
SDLTry(TTF_Init <> -1, true); |
51 | 558 |
WriteLnToConsole(msgOK); |
559 |
||
560 |
ShowMainWindow; |
|
561 |
||
2428 | 562 |
ControllerInit; // has to happen before InitKbdKeyTable to map keys |
51 | 563 |
InitKbdKeyTable; |
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1825
diff
changeset
|
564 |
|
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1825
diff
changeset
|
565 |
if recordFileName = '' then InitIPC; |
51 | 566 |
WriteLnToConsole(msgGettingConfig); |
80 | 567 |
|
2039 | 568 |
if cLocaleFName <> 'en.txt' then |
569 |
LoadLocale(Pathz[ptLocale] + '/en.txt'); |
|
80 | 570 |
LoadLocale(Pathz[ptLocale] + '/' + cLocaleFName); |
571 |
||
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1825
diff
changeset
|
572 |
if recordFileName = '' then |
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1825
diff
changeset
|
573 |
SendIPCAndWaitReply('C') // ask for game config |
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1825
diff
changeset
|
574 |
else |
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
|
575 |
begin |
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1825
diff
changeset
|
576 |
LoadRecordFromFile(recordFileName); |
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
|
577 |
end; |
205 | 578 |
|
579 |
s:= 'eproto ' + inttostr(cNetProtoVersion); |
|
580 |
SendIPCRaw(@s[0], Length(s) + 1); // send proto version |
|
581 |
||
51 | 582 |
InitTeams; |
288 | 583 |
AssignStores; |
51 | 584 |
|
585 |
if isSoundEnabled then InitSound; |
|
586 |
||
587 |
StoreInit; |
|
588 |
||
589 |
isDeveloperMode:= false; |
|
590 |
||
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
54
diff
changeset
|
591 |
TryDo(InitStepsFlags = cifAllInited, |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
54
diff
changeset
|
592 |
'Some parameters not set (flags = ' + inttostr(InitStepsFlags) + ')', |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
54
diff
changeset
|
593 |
true); |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
54
diff
changeset
|
594 |
|
2428 | 595 |
MainLoop; |
596 |
ControllerClose |
|
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
597 |
end; |
51 | 598 |
|
160 | 599 |
///////////////////////// |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
600 |
procedure GenLandPreview; |
566 | 601 |
var Preview: TPreview; |
1791
7c9d645d2591
Fix passing hedgehogs number from engine to frontend
unc0rr
parents:
1784
diff
changeset
|
602 |
h: byte; |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
603 |
begin |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
604 |
InitIPC; |
159 | 605 |
IPCWaitPongEvent; |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
606 |
TryDo(InitStepsFlags = cifRandomize, |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
607 |
'Some parameters not set (flags = ' + inttostr(InitStepsFlags) + ')', |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
608 |
true); |
160 | 609 |
|
566 | 610 |
Preview:= GenPreview; |
159 | 611 |
WriteLnToConsole('Sending preview...'); |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
612 |
SendIPCRaw(@Preview, sizeof(Preview)); |
1791
7c9d645d2591
Fix passing hedgehogs number from engine to frontend
unc0rr
parents:
1784
diff
changeset
|
613 |
h:= MaxHedgehogs; |
7c9d645d2591
Fix passing hedgehogs number from engine to frontend
unc0rr
parents:
1784
diff
changeset
|
614 |
SendIPCRaw(@h, sizeof(h)); |
159 | 615 |
WriteLnToConsole('Preview sent, disconnect'); |
158 | 616 |
CloseIPC |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
617 |
end; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
618 |
|
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
619 |
//////////////////////////////////////////////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
620 |
/////////////////////////////// m a i n //////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
621 |
//////////////////////////////////////////////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
622 |
|
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
623 |
begin |
2006 | 624 |
WriteLnToConsole('Hedgewars ' + cVersionString + ' engine'); |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
625 |
GetParams; |
2145 | 626 |
// FIXME - hack in font with support for CJK |
2105 | 627 |
if (cLocaleFName = 'zh_CN.txt') or (cLocaleFName = 'zh_TW.txt') or (cLocaleFName = 'ja.txt') then |
628 |
Fontz:= FontzCJK; |
|
629 |
||
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
630 |
Randomize; |
2008 | 631 |
|
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
632 |
if GameType = gmtLandPreview then GenLandPreview |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
633 |
else Game |
51 | 634 |
end. |
2008 | 635 |