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