author | koda |
Thu, 05 Nov 2009 20:40:31 +0000 | |
changeset 2601 | 21ed7cec1fa2 |
parent 2600 | 7b21daf84933 |
child 2602 | 3deb9ff104da |
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 |
||
2599 | 23 |
{$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
|
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; |
2591
c6597b65caea
other controls implementation + sdlh revisited (once again)
koda
parents:
2590
diff
changeset
|
166 |
{$IFDEF TOUCHINPUT} |
2579 | 167 |
type TDirection = (nodir, left, right); |
2591
c6597b65caea
other controls implementation + sdlh revisited (once again)
koda
parents:
2590
diff
changeset
|
168 |
var x, y, dx, dy, mouseState: LongInt; |
c6597b65caea
other controls implementation + sdlh revisited (once again)
koda
parents:
2590
diff
changeset
|
169 |
tiltValue: LongInt; |
2590 | 170 |
direction: TDirection = nodir; |
2591
c6597b65caea
other controls implementation + sdlh revisited (once again)
koda
parents:
2590
diff
changeset
|
171 |
movedbybuttons: 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} |
2591
c6597b65caea
other controls implementation + sdlh revisited (once again)
koda
parents:
2590
diff
changeset
|
178 |
if (direction <> nodir) and (movedbybuttons = true) then |
2590 | 179 |
begin |
2600 | 180 |
WriteLnToConsole('* Hedgehog moving *'); |
2590 | 181 |
uKeys.isWalking:= true; |
182 |
if direction = left then uKeys.leftKey:= true |
|
183 |
else if direction = right then uKeys.rightKey:= true; |
|
184 |
end |
|
185 |
else uKeys.isWalking:= false; |
|
186 |
{$ENDIF} |
|
1120 | 187 |
case event.type_ of |
2586
204e6b2885bc
added little/big endian checks, added symbol for touch input, simplified iphoneos definitions
koda
parents:
2581
diff
changeset
|
188 |
{$IFDEF SDL13} |
2390 | 189 |
SDL_WINDOWEVENT: |
190 |
{$ELSE} |
|
1120 | 191 |
SDL_KEYDOWN: if GameState = gsChat then KeyPressChat(event.key.keysym.unicode); |
2390 | 192 |
SDL_ACTIVEEVENT: |
193 |
{$ENDIF} |
|
194 |
if (event.active.state and SDL_APPINPUTFOCUS) <> 0 then |
|
1120 | 195 |
cHasFocus:= event.active.gain = 1; |
1127 | 196 |
//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
|
197 |
{$IFDEF TOUCHINPUT} |
2590 | 198 |
SDL_MOUSEMOTION: begin |
2601 | 199 |
{$IFDEF DEBUGFILE} |
200 |
AddFileLog('********************************************* motion'); |
|
201 |
{$ENDIF} |
|
2590 | 202 |
mouseState:= SDL_GetMouseState(0, @x, @y); |
203 |
SDL_GetRelativeMouseState(0, @dx, @dy); |
|
204 |
||
205 |
direction:= nodir; |
|
206 |
||
207 |
if boolean(mouseState) then |
|
208 |
begin |
|
2600 | 209 |
{$IFDEF DEBUGFILE} |
2590 | 210 |
AddFileLog('x: ' + inttostr(x) + ' y: ' + inttostr(y) + ' dx: ' + inttostr(dx) + ' dy: ' + inttostr(dy)); |
2600 | 211 |
{$ENDIF} |
2590 | 212 |
|
213 |
{* zoom slider *} |
|
214 |
if (x <= 50) and (y <= 430) and (y > 50) then |
|
215 |
begin |
|
216 |
if (dy > 0) then uKeys.wheelDown:= true |
|
217 |
else if (dy < 0) then uKeys.wheelUp:= true; |
|
218 |
end; |
|
219 |
||
220 |
{* aim slider *} |
|
221 |
if (x > 270) and (y > 50) and (y <= 430) then |
|
222 |
begin |
|
223 |
if (dy > 0) then uKeys.downKey:= true |
|
224 |
else if (dy < 0) then uKeys.upKey:= true; |
|
225 |
end; |
|
226 |
||
227 |
{* switch *} |
|
228 |
if (x > 50) and (x <= 270) and (y > 400) then |
|
229 |
begin |
|
230 |
if (dy <> 0) then uKeys.tabKey:= true |
|
231 |
end; |
|
232 |
end; |
|
233 |
end; |
|
2567 | 234 |
{*MoveCamera is in uWord.pas -- conflicts with other commands*} |
235 |
SDL_MOUSEBUTTONDOWN: begin |
|
2601 | 236 |
{$IFDEF DEBUGFILE} |
237 |
AddFileLog('********************************************* touch down'); |
|
238 |
{$ENDIF} |
|
2590 | 239 |
mouseState:= SDL_GetMouseState(0, @x, @y); |
240 |
||
241 |
{* attack *} |
|
242 |
if (x > 50) and (x <= 270) and (y <= 50) then |
|
243 |
begin |
|
2600 | 244 |
WriteLnToConsole('Space DOWN -- x: ' + inttostr(x) + ' y: ' + inttostr(y)); |
2590 | 245 |
uKeys.spaceKey:= true; |
246 |
uKeys.isAttacking:= true; |
|
247 |
end; |
|
2579 | 248 |
|
2590 | 249 |
if (x <= 50) and (y <= 50) then |
250 |
begin |
|
2600 | 251 |
WriteLnToConsole('Left Arrow Key DOWN -- x: ' + inttostr(x) + ' y: ' + inttostr(y)); |
2590 | 252 |
direction:= left; |
2591
c6597b65caea
other controls implementation + sdlh revisited (once again)
koda
parents:
2590
diff
changeset
|
253 |
movedbybuttons:= true; |
2590 | 254 |
end; |
255 |
||
256 |
if (x > 270) and (y <= 50) then |
|
257 |
begin |
|
2600 | 258 |
WriteLnToConsole('Right Arrow Key DOWN -- x: ' + inttostr(x) + ' y: ' + inttostr(y)); |
2590 | 259 |
direction:= right; |
2591
c6597b65caea
other controls implementation + sdlh revisited (once again)
koda
parents:
2590
diff
changeset
|
260 |
movedbybuttons:= true; |
2590 | 261 |
end; |
262 |
||
263 |
{* high jump *} |
|
264 |
if (x > 160) and (x <= 270) and (y > 400) then |
|
2577 | 265 |
begin |
266 |
{$IFDEF DEBUGFILE} |
|
2590 | 267 |
AddFileLog('Backspace -- x: ' + inttostr(x) + ' y: ' + inttostr(y)); |
2577 | 268 |
{$ENDIF} |
2590 | 269 |
uKeys.backspaceKey:= true; |
2580
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
270 |
end; |
2590 | 271 |
end; |
272 |
SDL_MOUSEBUTTONUP: begin |
|
2601 | 273 |
{$IFDEF DEBUGFILE} |
2590 | 274 |
AddFileLog('********************************************* touch up'); |
2601 | 275 |
{$ENDIF} |
2590 | 276 |
|
277 |
mouseState:= SDL_GetMouseState(0, @x, @y); |
|
278 |
uKeys.leftClick:= true; |
|
279 |
||
280 |
{* open ammo menu *} |
|
281 |
if (y > 430) and (x > 270) then |
|
2580
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
282 |
begin |
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
283 |
{$IFDEF DEBUGFILE} |
2590 | 284 |
AddFileLog('Right Click -- x: ' + inttostr(x) + ' y: ' + inttostr(y) ); |
2580
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
285 |
{$ENDIF} |
2590 | 286 |
uKeys.rightClick:= true; |
2567 | 287 |
end; |
2590 | 288 |
|
289 |
{* long jump *} |
|
290 |
if (x > 50) and (x <= 160) and (y > 400) then |
|
2567 | 291 |
begin |
2580
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
292 |
{$IFDEF DEBUGFILE} |
2590 | 293 |
AddFileLog('Enter -- x: ' + inttostr(x) + ' y: ' + inttostr(y)); |
2580
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
294 |
{$ENDIF} |
2590 | 295 |
uKeys.enterKey:= true; |
2580
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
296 |
end; |
2590 | 297 |
|
2580
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
298 |
{* reset zoom *} |
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
299 |
if (x <= 50) and (y > 430) then |
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
300 |
begin |
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
301 |
{$IFDEF DEBUGFILE} |
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
302 |
AddFileLog('Middle Click -- x: ' + inttostr(x) + ' y: ' + inttostr(y)); |
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
303 |
{$ENDIF} |
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
304 |
uKeys.middleClick:= true; |
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
305 |
end; |
2579 | 306 |
|
2590 | 307 |
{* end movement and attack *} |
2577 | 308 |
{$IFDEF DEBUGFILE} |
2590 | 309 |
AddFileLog('Arrow Keys UP | Space UP -- x: ' + inttostr(x) + ' y: ' + inttostr(y) ); |
2577 | 310 |
{$ENDIF} |
2590 | 311 |
direction:= nodir; |
2591
c6597b65caea
other controls implementation + sdlh revisited (once again)
koda
parents:
2590
diff
changeset
|
312 |
movedbybuttons:= false; |
2590 | 313 |
uKeys.isAttacking:= false; |
2591
c6597b65caea
other controls implementation + sdlh revisited (once again)
koda
parents:
2590
diff
changeset
|
314 |
end; |
2586
204e6b2885bc
added little/big endian checks, added symbol for touch input, simplified iphoneos definitions
koda
parents:
2581
diff
changeset
|
315 |
{$ENDIF} |
204e6b2885bc
added little/big endian checks, added symbol for touch input, simplified iphoneos definitions
koda
parents:
2581
diff
changeset
|
316 |
{$IFDEF IPHONEOS} |
2591
c6597b65caea
other controls implementation + sdlh revisited (once again)
koda
parents:
2590
diff
changeset
|
317 |
SDL_JOYAXISMOTION: begin |
2580
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
318 |
{* axis 0 = left and right; |
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
319 |
axis 1 = up and down; |
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
320 |
axis 2 = back and forth; *} |
2591
c6597b65caea
other controls implementation + sdlh revisited (once again)
koda
parents:
2590
diff
changeset
|
321 |
|
2600 | 322 |
WriteLnToConsole('********************************************* accelerometer'); |
2591
c6597b65caea
other controls implementation + sdlh revisited (once again)
koda
parents:
2590
diff
changeset
|
323 |
|
c6597b65caea
other controls implementation + sdlh revisited (once again)
koda
parents:
2590
diff
changeset
|
324 |
tiltValue:= SDL_JoystickGetAxis(uKeys.theJoystick, 0); |
c6597b65caea
other controls implementation + sdlh revisited (once again)
koda
parents:
2590
diff
changeset
|
325 |
|
c6597b65caea
other controls implementation + sdlh revisited (once again)
koda
parents:
2590
diff
changeset
|
326 |
if (CurrentTeam <> nil) then |
2577 | 327 |
begin |
2600 | 328 |
{$IFDEF DEBUGFILE} |
2591
c6597b65caea
other controls implementation + sdlh revisited (once again)
koda
parents:
2590
diff
changeset
|
329 |
AddFileLog('Joystick: 0; Axis: 0; Value: ' + inttostr(tiltValue)); |
2600 | 330 |
{$ENDIF} |
2591
c6597b65caea
other controls implementation + sdlh revisited (once again)
koda
parents:
2590
diff
changeset
|
331 |
|
c6597b65caea
other controls implementation + sdlh revisited (once again)
koda
parents:
2590
diff
changeset
|
332 |
if tiltValue > 1500 then |
2577 | 333 |
begin |
2591
c6597b65caea
other controls implementation + sdlh revisited (once again)
koda
parents:
2590
diff
changeset
|
334 |
uKeys.rightKey:= true; |
c6597b65caea
other controls implementation + sdlh revisited (once again)
koda
parents:
2590
diff
changeset
|
335 |
uKeys.isWalking:= true; |
2580
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
336 |
end |
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
337 |
else |
2591
c6597b65caea
other controls implementation + sdlh revisited (once again)
koda
parents:
2590
diff
changeset
|
338 |
if tiltValue <= -1500 then |
2580
aeccc8f51d3f
completes touch input/control (problems with moving camera)
koda
parents:
2579
diff
changeset
|
339 |
begin |
2591
c6597b65caea
other controls implementation + sdlh revisited (once again)
koda
parents:
2590
diff
changeset
|
340 |
uKeys.leftKey:= true; |
c6597b65caea
other controls implementation + sdlh revisited (once again)
koda
parents:
2590
diff
changeset
|
341 |
uKeys.isWalking:= true; |
2579 | 342 |
end |
343 |
else |
|
2591
c6597b65caea
other controls implementation + sdlh revisited (once again)
koda
parents:
2590
diff
changeset
|
344 |
if (tiltValue > -1500) and (tiltValue <= 1500) and (movedbybuttons = false) then uKeys.isWalking:= false; |
2577 | 345 |
end; |
346 |
end; |
|
2567 | 347 |
{$ELSE} |
2379 | 348 |
SDL_MOUSEBUTTONDOWN: if event.button.button = SDL_BUTTON_WHEELDOWN then uKeys.wheelDown:= true; |
349 |
SDL_MOUSEBUTTONUP: if event.button.button = SDL_BUTTON_WHEELDUP then uKeys.wheelUp:= true; |
|
2591
c6597b65caea
other controls implementation + sdlh revisited (once again)
koda
parents:
2590
diff
changeset
|
350 |
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
|
351 |
SDL_JOYHATMOTION: ControllerHatEvent(event.jhat.which, event.jhat.hat, event.jhat.value); |
2428 | 352 |
SDL_JOYBUTTONDOWN: ControllerButtonEvent(event.jbutton.which, event.jbutton.button, true); |
353 |
SDL_JOYBUTTONUP: ControllerButtonEvent(event.jbutton.which, event.jbutton.button, false); |
|
2577 | 354 |
{$ENDIF} |
1120 | 355 |
SDL_QUITEV: isTerminated:= true |
2590 | 356 |
end; |
357 |
||
51 | 358 |
CurrTime:= SDL_GetTicks; |
359 |
if PrevTime + cTimerInterval <= CurrTime then |
|
360 |
begin |
|
361 |
DoTimer(CurrTime - PrevTime); |
|
362 |
PrevTime:= CurrTime |
|
434 | 363 |
end else SDL_Delay(1); |
51 | 364 |
IPCCheckSock |
365 |
until isTerminated |
|
2590 | 366 |
|
51 | 367 |
end; |
368 |
||
2008 | 369 |
///////////////////// |
370 |
procedure DisplayUsage; |
|
371 |
begin |
|
372 |
WriteLn('Wrong argument format: correct configurations is'); |
|
373 |
WriteLn(); |
|
374 |
WriteLn(' hwengine <path to data folder> <path to replay file> [option]'); |
|
375 |
WriteLn(); |
|
376 |
WriteLn('where [option] must be specified either as'); |
|
2264 | 377 |
WriteLn(' --set-video [screen width] [screen height] [color dept]'); |
2008 | 378 |
WriteLn(' --set-audio [volume] [enable music] [enable sounds]'); |
379 |
WriteLn(' --set-other [language file] [full screen] [show FPS]'); |
|
380 |
WriteLn(' --set-multimedia [screen height] [screen width] [color dept] [volume] [enable music] [enable sounds] [language file] [full screen]'); |
|
381 |
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]'); |
|
382 |
WriteLn(); |
|
2015 | 383 |
WriteLn('Read documentation online at http://www.hedgewars.org/node/1465 for more information'); |
384 |
halt(1); |
|
2008 | 385 |
end; |
386 |
||
51 | 387 |
//////////////////// |
388 |
procedure GetParams; |
|
889 | 389 |
var |
267 | 390 |
{$IFDEF DEBUGFILE} |
371 | 391 |
i: LongInt; |
267 | 392 |
{$ENDIF} |
97
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
393 |
p: TPathType; |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
394 |
begin |
51 | 395 |
{$IFDEF DEBUGFILE} |
97
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
396 |
AddFileLog('Prefix: "' + PathPrefix +'"'); |
51 | 397 |
for i:= 0 to ParamCount do |
398 |
AddFileLog(inttostr(i) + ': ' + ParamStr(i)); |
|
399 |
{$ENDIF} |
|
267 | 400 |
|
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
401 |
case ParamCount of |
2392
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2390
diff
changeset
|
402 |
17: begin |
498 | 403 |
val(ParamStr(2), cScreenWidth); |
404 |
val(ParamStr(3), cScreenHeight); |
|
1121
d595dc56b4f3
Remember initial resolution settings to use when switching to fullscreen mode
unc0rr
parents:
1120
diff
changeset
|
405 |
cInitWidth:= cScreenWidth; |
d595dc56b4f3
Remember initial resolution settings to use when switching to fullscreen mode
unc0rr
parents:
1120
diff
changeset
|
406 |
cInitHeight:= cScreenHeight; |
497 | 407 |
cBitsStr:= ParamStr(4); |
498 | 408 |
val(cBitsStr, cBits); |
409 |
val(ParamStr(5), ipcPort); |
|
497 | 410 |
cFullScreen:= ParamStr(6) = '1'; |
411 |
isSoundEnabled:= ParamStr(7) = '1'; |
|
2413
d921d13a8546
fix that nasty "Pascal Internal Error" when compiling
koda
parents:
2409
diff
changeset
|
412 |
isSoundHardware:= ParamStr(8) = '1'; |
2392
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2390
diff
changeset
|
413 |
cLocaleFName:= ParamStr(9); |
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2390
diff
changeset
|
414 |
val(ParamStr(10), cInitVolume); |
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2390
diff
changeset
|
415 |
val(ParamStr(11), cTimerInterval); |
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2390
diff
changeset
|
416 |
PathPrefix:= ParamStr(12); |
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2390
diff
changeset
|
417 |
cShowFPS:= ParamStr(13) = '1'; |
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2390
diff
changeset
|
418 |
cAltDamage:= ParamStr(14) = '1'; |
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2390
diff
changeset
|
419 |
UserNick:= DecodeBase64(ParamStr(15)); |
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2390
diff
changeset
|
420 |
isMusicEnabled:= ParamStr(16) = '1'; |
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2390
diff
changeset
|
421 |
cReducedQuality:= ParamStr(17) = '1'; |
267 | 422 |
for p:= Succ(Low(TPathType)) to High(TPathType) do |
949 | 423 |
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
|
424 |
end; |
2390 | 425 |
{$IFDEF IPHONEOS} |
2252 | 426 |
0: begin |
427 |
PathPrefix:= 'hedgewars/Data'; |
|
428 |
recordFileName:= 'hedgewars/save.hws'; |
|
429 |
val('320', cScreenWidth); |
|
430 |
val('480', cScreenHeight); |
|
431 |
cInitWidth:= cScreenWidth; |
|
432 |
cInitHeight:= cScreenHeight; |
|
433 |
cBitsStr:= '32'; |
|
434 |
val(cBitsStr, cBits); |
|
435 |
val('100', cInitVolume); |
|
436 |
isMusicEnabled:= false; |
|
437 |
isSoundEnabled:= false; |
|
438 |
cLocaleFName:= 'en.txt'; |
|
2409
dbf195c3e09c
fix a very rare bug in which CurSlot becomes greater than cMaxCurSlot
koda
parents:
2392
diff
changeset
|
439 |
cFullScreen:= true; //T or F is is the same here |
2252 | 440 |
cAltDamage:= false; |
2409
dbf195c3e09c
fix a very rare bug in which CurSlot becomes greater than cMaxCurSlot
koda
parents:
2392
diff
changeset
|
441 |
cShowFPS:= true; |
2252 | 442 |
val('8', cTimerInterval); |
2601 | 443 |
cReducedQuality:= false; |
2252 | 444 |
|
445 |
for p:= Succ(Low(TPathType)) to High(TPathType) do |
|
446 |
if p <> ptMapCurrent then Pathz[p]:= PathPrefix + '/' + Pathz[p] |
|
447 |
end; |
|
2390 | 448 |
{$ENDIF} |
497 | 449 |
3: begin |
498 | 450 |
val(ParamStr(2), ipcPort); |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
451 |
GameType:= gmtLandPreview; |
497 | 452 |
if ParamStr(3) <> 'landpreview' then OutError(errmsgShouldntRun, true); |
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1825
diff
changeset
|
453 |
end; |
2008 | 454 |
2: begin |
455 |
PathPrefix:= ParamStr(1); |
|
456 |
recordFileName:= ParamStr(2); |
|
2376 | 457 |
|
2008 | 458 |
for p:= Succ(Low(TPathType)) to High(TPathType) do |
459 |
if p <> ptMapCurrent then Pathz[p]:= PathPrefix + '/' + Pathz[p] |
|
460 |
end; |
|
461 |
6: begin |
|
462 |
PathPrefix:= ParamStr(1); |
|
463 |
recordFileName:= ParamStr(2); |
|
2376 | 464 |
|
2008 | 465 |
if ParamStr(3) = '--set-video' then |
466 |
begin |
|
467 |
val(ParamStr(4), cScreenWidth); |
|
468 |
val(ParamStr(5), cScreenHeight); |
|
469 |
cInitWidth:= cScreenWidth; |
|
470 |
cInitHeight:= cScreenHeight; |
|
471 |
cBitsStr:= ParamStr(6); |
|
472 |
val(cBitsStr, cBits); |
|
473 |
end |
|
474 |
else |
|
475 |
begin |
|
476 |
if ParamStr(3) = '--set-audio' then |
|
477 |
begin |
|
478 |
val(ParamStr(4), cInitVolume); |
|
479 |
isMusicEnabled:= ParamStr(5) = '1'; |
|
480 |
isSoundEnabled:= ParamStr(6) = '1'; |
|
481 |
end |
|
482 |
else |
|
483 |
begin |
|
484 |
if ParamStr(3) = '--set-other' then |
|
485 |
begin |
|
486 |
cLocaleFName:= ParamStr(4); |
|
487 |
cFullScreen:= ParamStr(5) = '1'; |
|
488 |
cShowFPS:= ParamStr(6) = '1'; |
|
489 |
end |
|
490 |
else DisplayUsage; |
|
491 |
end |
|
492 |
end; |
|
2376 | 493 |
|
2008 | 494 |
for p:= Succ(Low(TPathType)) to High(TPathType) do |
495 |
if p <> ptMapCurrent then Pathz[p]:= PathPrefix + '/' + Pathz[p] |
|
496 |
end; |
|
497 |
11: begin |
|
498 |
PathPrefix:= ParamStr(1); |
|
499 |
recordFileName:= ParamStr(2); |
|
2376 | 500 |
|
2008 | 501 |
if ParamStr(3) = '--set-multimedia' then |
502 |
begin |
|
503 |
val(ParamStr(4), cScreenWidth); |
|
504 |
val(ParamStr(5), cScreenHeight); |
|
505 |
cInitWidth:= cScreenWidth; |
|
506 |
cInitHeight:= cScreenHeight; |
|
507 |
cBitsStr:= ParamStr(6); |
|
508 |
val(cBitsStr, cBits); |
|
509 |
val(ParamStr(7), cInitVolume); |
|
510 |
isMusicEnabled:= ParamStr(8) = '1'; |
|
511 |
isSoundEnabled:= ParamStr(9) = '1'; |
|
512 |
cLocaleFName:= ParamStr(10); |
|
513 |
cFullScreen:= ParamStr(11) = '1'; |
|
514 |
end |
|
515 |
else DisplayUsage; |
|
2376 | 516 |
|
2008 | 517 |
for p:= Succ(Low(TPathType)) to High(TPathType) do |
518 |
if p <> ptMapCurrent then Pathz[p]:= PathPrefix + '/' + Pathz[p] |
|
519 |
end; |
|
520 |
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
|
521 |
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
|
522 |
recordFileName:= ParamStr(2); |
2008 | 523 |
if ParamStr(3) = '--set-everything' then |
524 |
begin |
|
525 |
val(ParamStr(4), cScreenWidth); |
|
526 |
val(ParamStr(5), cScreenHeight); |
|
527 |
cInitWidth:= cScreenWidth; |
|
528 |
cInitHeight:= cScreenHeight; |
|
529 |
cBitsStr:= ParamStr(6); |
|
530 |
val(cBitsStr, cBits); |
|
531 |
val(ParamStr(7), cInitVolume); |
|
532 |
isMusicEnabled:= ParamStr(8) = '1'; |
|
533 |
isSoundEnabled:= ParamStr(9) = '1'; |
|
534 |
cLocaleFName:= ParamStr(10); |
|
535 |
cFullScreen:= ParamStr(11) = '1'; |
|
536 |
cAltDamage:= ParamStr(12) = '1'; |
|
537 |
cShowFPS:= ParamStr(13) = '1'; |
|
538 |
val(ParamStr(14), cTimerInterval); |
|
539 |
cReducedQuality:= ParamStr(15) = '1'; |
|
540 |
end |
|
541 |
else DisplayUsage; |
|
2376 | 542 |
|
2008 | 543 |
for p:= Succ(Low(TPathType)) to High(TPathType) do |
544 |
if p <> ptMapCurrent then Pathz[p]:= PathPrefix + '/' + Pathz[p] |
|
545 |
end; |
|
546 |
else DisplayUsage; |
|
547 |
end; |
|
51 | 548 |
end; |
549 |
||
2016 | 550 |
///////////////////////// |
51 | 551 |
procedure ShowMainWindow; |
552 |
begin |
|
351 | 553 |
if cFullScreen then ParseCommand('fullscr 1', true) |
554 |
else ParseCommand('fullscr 0', true); |
|
281
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
271
diff
changeset
|
555 |
SDL_ShowCursor(0) |
51 | 556 |
end; |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
557 |
|
160 | 558 |
/////////////// |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
559 |
procedure Game; |
205 | 560 |
var s: shortstring; |
51 | 561 |
begin |
562 |
WriteToConsole('Init SDL... '); |
|
2428 | 563 |
SDLTry(SDL_Init(SDL_INIT_VIDEO or SDL_INIT_JOYSTICK) >= 0, true); |
51 | 564 |
WriteLnToConsole(msgOK); |
753 | 565 |
|
377 | 566 |
SDL_EnableUNICODE(1); |
51 | 567 |
|
568 |
WriteToConsole('Init SDL_ttf... '); |
|
200 | 569 |
SDLTry(TTF_Init <> -1, true); |
51 | 570 |
WriteLnToConsole(msgOK); |
571 |
||
572 |
ShowMainWindow; |
|
573 |
||
2428 | 574 |
ControllerInit; // has to happen before InitKbdKeyTable to map keys |
51 | 575 |
InitKbdKeyTable; |
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1825
diff
changeset
|
576 |
|
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1825
diff
changeset
|
577 |
if recordFileName = '' then InitIPC; |
51 | 578 |
WriteLnToConsole(msgGettingConfig); |
80 | 579 |
|
2039 | 580 |
if cLocaleFName <> 'en.txt' then |
581 |
LoadLocale(Pathz[ptLocale] + '/en.txt'); |
|
80 | 582 |
LoadLocale(Pathz[ptLocale] + '/' + cLocaleFName); |
583 |
||
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1825
diff
changeset
|
584 |
if recordFileName = '' then |
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1825
diff
changeset
|
585 |
SendIPCAndWaitReply('C') // ask for game config |
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1825
diff
changeset
|
586 |
else |
2600 | 587 |
LoadRecordFromFile(recordFileName); |
205 | 588 |
|
589 |
s:= 'eproto ' + inttostr(cNetProtoVersion); |
|
590 |
SendIPCRaw(@s[0], Length(s) + 1); // send proto version |
|
591 |
||
51 | 592 |
InitTeams; |
288 | 593 |
AssignStores; |
51 | 594 |
|
2600 | 595 |
if isSoundEnabled then |
596 |
InitSound; |
|
51 | 597 |
|
598 |
StoreInit; |
|
599 |
||
600 |
isDeveloperMode:= false; |
|
601 |
||
2600 | 602 |
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
|
603 |
|
2428 | 604 |
MainLoop; |
605 |
ControllerClose |
|
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
606 |
end; |
51 | 607 |
|
160 | 608 |
///////////////////////// |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
609 |
procedure GenLandPreview; |
566 | 610 |
var Preview: TPreview; |
1791
7c9d645d2591
Fix passing hedgehogs number from engine to frontend
unc0rr
parents:
1784
diff
changeset
|
611 |
h: byte; |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
612 |
begin |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
613 |
InitIPC; |
159 | 614 |
IPCWaitPongEvent; |
2600 | 615 |
TryDo(InitStepsFlags = cifRandomize, 'Some parameters not set (flags = ' + inttostr(InitStepsFlags) + ')', true); |
160 | 616 |
|
566 | 617 |
Preview:= GenPreview; |
159 | 618 |
WriteLnToConsole('Sending preview...'); |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
619 |
SendIPCRaw(@Preview, sizeof(Preview)); |
1791
7c9d645d2591
Fix passing hedgehogs number from engine to frontend
unc0rr
parents:
1784
diff
changeset
|
620 |
h:= MaxHedgehogs; |
7c9d645d2591
Fix passing hedgehogs number from engine to frontend
unc0rr
parents:
1784
diff
changeset
|
621 |
SendIPCRaw(@h, sizeof(h)); |
159 | 622 |
WriteLnToConsole('Preview sent, disconnect'); |
158 | 623 |
CloseIPC |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
624 |
end; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
625 |
|
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
626 |
//////////////////////////////////////////////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
627 |
/////////////////////////////// m a i n //////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
628 |
//////////////////////////////////////////////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
629 |
|
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
630 |
begin |
2006 | 631 |
WriteLnToConsole('Hedgewars ' + cVersionString + ' engine'); |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
632 |
GetParams; |
2145 | 633 |
// FIXME - hack in font with support for CJK |
2105 | 634 |
if (cLocaleFName = 'zh_CN.txt') or (cLocaleFName = 'zh_TW.txt') or (cLocaleFName = 'ja.txt') then |
635 |
Fontz:= FontzCJK; |
|
636 |
||
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
637 |
Randomize; |
2008 | 638 |
|
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
639 |
if GameType = gmtLandPreview then GenLandPreview |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
640 |
else Game |
51 | 641 |
end. |
2008 | 642 |