author | koda |
Tue, 20 Oct 2009 17:55:11 +0000 | |
changeset 2567 | 02ff5f9510b5 |
parent 2428 | 6800f8aa0184 |
child 2568 | e654cbfb23ba |
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} |
20 |
WriteLn('Only Freepascal supported'); |
|
21 |
{$ENDIF} |
|
22 |
||
51 | 23 |
program hwengine; |
24 |
uses |
|
1947 | 25 |
SDLh in 'SDLh.pas', |
2152 | 26 |
{$IFDEF GLES11} |
1906 | 27 |
gles11, |
28 |
{$ELSE} |
|
1524
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
29 |
GL, |
1906 | 30 |
{$ENDIF} |
1524
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
31 |
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
|
32 |
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
|
33 |
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
|
34 |
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
|
35 |
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
|
36 |
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
|
37 |
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
|
38 |
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
|
39 |
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
|
40 |
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
|
41 |
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
|
42 |
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
|
43 |
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
|
44 |
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
|
45 |
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
|
46 |
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
|
47 |
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
|
48 |
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
|
49 |
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
|
50 |
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
|
51 |
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
|
52 |
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
|
53 |
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
|
54 |
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
|
55 |
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
|
56 |
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
|
57 |
uStats in 'uStats.pas', |
1807 | 58 |
uChat in 'uChat.pas', |
2008 | 59 |
uLandTexture in 'uLandTexture.pas'; |
51 | 60 |
|
61 |
{$INCLUDE options.inc} |
|
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; |
2567 | 166 |
mouseState, whichMouse: byte; |
167 |
x, y, x_up, y_up, x_down, y_down: LongInt; |
|
168 |
oldy: LongInt = 240; |
|
51 | 169 |
begin |
170 |
PrevTime:= SDL_GetTicks; |
|
171 |
repeat |
|
172 |
while SDL_PollEvent(@event) <> 0 do |
|
1120 | 173 |
case event.type_ of |
2390 | 174 |
{$IFDEF IPHONEOS} |
175 |
SDL_WINDOWEVENT: |
|
176 |
{$ELSE} |
|
1120 | 177 |
SDL_KEYDOWN: if GameState = gsChat then KeyPressChat(event.key.keysym.unicode); |
2390 | 178 |
SDL_ACTIVEEVENT: |
179 |
{$ENDIF} |
|
180 |
if (event.active.state and SDL_APPINPUTFOCUS) <> 0 then |
|
1120 | 181 |
cHasFocus:= event.active.gain = 1; |
1127 | 182 |
//SDL_VIDEORESIZE: Resize(max(event.resize.w, 600), max(event.resize.h, 450)); |
2567 | 183 |
{$IFDEF IPHONEOS} |
184 |
{*MoveCamera is in uWord.pas -- conflicts with other commands*} |
|
185 |
{*Keys are in uKeys.pas*} |
|
186 |
SDL_MOUSEBUTTONDOWN: begin |
|
187 |
mouseState:= SDL_GetMouseState(0, @x, @y); |
|
188 |
if x <= 50 then |
|
189 |
begin |
|
190 |
AddFileLog('Wheel -- x: ' + inttostr(x) + ' y: ' + inttostr(y)); |
|
191 |
{* sliding *} |
|
192 |
if oldy - y > 0 then uKeys.wheelUp:= true |
|
193 |
else uKeys.wheelDown:= true; |
|
194 |
{* update value only if movement is consistent *} |
|
195 |
// if (y > oldy - 10 ) or (y > oldy + 10 ) then oldy:= y |
|
196 |
// oldy:= y; |
|
197 |
end; |
|
198 |
||
199 |
{* keys *} |
|
200 |
{* if (x > 50) then |
|
201 |
begin |
|
202 |
AddFileLog('Arrow Key -- x: ' + inttostr(x) + ' y: ' + inttostr(y)); |
|
203 |
||
204 |
if (y <= 50) and (x > 135) and (x <= 185) then uKeys.upKey:= true; |
|
205 |
if (y > 430) and (x > 135) and (x <= 185) then uKeys.downKey:= true; |
|
206 |
if (x > 270) and (y > 215) and (y > 265) then uKeys.rightClick:= true; |
|
207 |
if (x <= 100) and (y > 215) and (y > 265) then uKeys.leftClick:= true; |
|
208 |
end; |
|
209 |
||
210 |
if (y > 430) and (x > 50) and (x <= 135) then |
|
211 |
begin |
|
212 |
AddFileLog('Space -- x: ' + inttostr(x) + ' y: ' + inttostr(y)); |
|
213 |
uKeys.spaceKey:= true; |
|
214 |
end; |
|
215 |
if (y > 430) and (x > 185) and (x <= 270) then |
|
216 |
begin |
|
217 |
AddFileLog('Enter -- x: ' + inttostr(x) + ' y: ' + inttostr(y)); |
|
218 |
uKeys.enterKey:= true; |
|
219 |
end;*} |
|
220 |
end; |
|
221 |
SDL_MOUSEBUTTONUP: begin |
|
222 |
mouseState:= SDL_GetMouseState(0, @x, @y); |
|
223 |
x_up:= x; |
|
224 |
y_up:= y; |
|
225 |
||
226 |
{* open ammo menu *} |
|
227 |
if (y > 430) and (x > 270) then |
|
228 |
begin |
|
229 |
AddFileLog('Right Click -- x: ' + inttostr(x) + ' y: ' + inttostr(y) ); |
|
230 |
uKeys.rightClick:= true; |
|
231 |
end; |
|
232 |
{* reset zoom *} |
|
233 |
if (x > 270) and (y <= 50) then |
|
234 |
begin |
|
235 |
AddFileLog('Middle Click -- x: ' + inttostr(x) + ' y: ' + inttostr(y)); |
|
236 |
uKeys.middleClick:= true; |
|
237 |
end; |
|
238 |
||
239 |
||
240 |
end; |
|
241 |
{$ELSE} |
|
2379 | 242 |
SDL_MOUSEBUTTONDOWN: if event.button.button = SDL_BUTTON_WHEELDOWN then uKeys.wheelDown:= true; |
243 |
SDL_MOUSEBUTTONUP: if event.button.button = SDL_BUTTON_WHEELDUP then uKeys.wheelUp:= true; |
|
2390 | 244 |
{$ENDIF} |
2428 | 245 |
SDL_JOYAXIS: ControllerAxisEvent(event.jaxis.which, event.jaxis.axis, event.jaxis.value); |
246 |
SDL_JOYHAT: ControllerHatEvent(event.jhat.which, event.jhat.hat, event.jhat.value); |
|
247 |
SDL_JOYBUTTONDOWN: ControllerButtonEvent(event.jbutton.which, event.jbutton.button, true); |
|
248 |
SDL_JOYBUTTONUP: ControllerButtonEvent(event.jbutton.which, event.jbutton.button, false); |
|
1120 | 249 |
SDL_QUITEV: isTerminated:= true |
250 |
end; |
|
51 | 251 |
CurrTime:= SDL_GetTicks; |
252 |
if PrevTime + cTimerInterval <= CurrTime then |
|
253 |
begin |
|
254 |
DoTimer(CurrTime - PrevTime); |
|
255 |
PrevTime:= CurrTime |
|
434 | 256 |
end else SDL_Delay(1); |
51 | 257 |
IPCCheckSock |
258 |
until isTerminated |
|
259 |
end; |
|
260 |
||
2008 | 261 |
///////////////////// |
262 |
procedure DisplayUsage; |
|
263 |
begin |
|
264 |
WriteLn('Wrong argument format: correct configurations is'); |
|
265 |
WriteLn(); |
|
266 |
WriteLn(' hwengine <path to data folder> <path to replay file> [option]'); |
|
267 |
WriteLn(); |
|
268 |
WriteLn('where [option] must be specified either as'); |
|
2264 | 269 |
WriteLn(' --set-video [screen width] [screen height] [color dept]'); |
2008 | 270 |
WriteLn(' --set-audio [volume] [enable music] [enable sounds]'); |
271 |
WriteLn(' --set-other [language file] [full screen] [show FPS]'); |
|
272 |
WriteLn(' --set-multimedia [screen height] [screen width] [color dept] [volume] [enable music] [enable sounds] [language file] [full screen]'); |
|
273 |
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]'); |
|
274 |
WriteLn(); |
|
2015 | 275 |
WriteLn('Read documentation online at http://www.hedgewars.org/node/1465 for more information'); |
276 |
halt(1); |
|
2008 | 277 |
end; |
278 |
||
51 | 279 |
//////////////////// |
280 |
procedure GetParams; |
|
889 | 281 |
var |
267 | 282 |
{$IFDEF DEBUGFILE} |
371 | 283 |
i: LongInt; |
267 | 284 |
{$ENDIF} |
97
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
285 |
p: TPathType; |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
286 |
begin |
51 | 287 |
{$IFDEF DEBUGFILE} |
97
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
288 |
AddFileLog('Prefix: "' + PathPrefix +'"'); |
51 | 289 |
for i:= 0 to ParamCount do |
290 |
AddFileLog(inttostr(i) + ': ' + ParamStr(i)); |
|
291 |
{$ENDIF} |
|
267 | 292 |
|
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
293 |
case ParamCount of |
2392
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2390
diff
changeset
|
294 |
17: begin |
498 | 295 |
val(ParamStr(2), cScreenWidth); |
296 |
val(ParamStr(3), cScreenHeight); |
|
1121
d595dc56b4f3
Remember initial resolution settings to use when switching to fullscreen mode
unc0rr
parents:
1120
diff
changeset
|
297 |
cInitWidth:= cScreenWidth; |
d595dc56b4f3
Remember initial resolution settings to use when switching to fullscreen mode
unc0rr
parents:
1120
diff
changeset
|
298 |
cInitHeight:= cScreenHeight; |
497 | 299 |
cBitsStr:= ParamStr(4); |
498 | 300 |
val(cBitsStr, cBits); |
301 |
val(ParamStr(5), ipcPort); |
|
497 | 302 |
cFullScreen:= ParamStr(6) = '1'; |
303 |
isSoundEnabled:= ParamStr(7) = '1'; |
|
2413
d921d13a8546
fix that nasty "Pascal Internal Error" when compiling
koda
parents:
2409
diff
changeset
|
304 |
isSoundHardware:= ParamStr(8) = '1'; |
2392
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2390
diff
changeset
|
305 |
cLocaleFName:= ParamStr(9); |
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2390
diff
changeset
|
306 |
val(ParamStr(10), cInitVolume); |
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2390
diff
changeset
|
307 |
val(ParamStr(11), cTimerInterval); |
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2390
diff
changeset
|
308 |
PathPrefix:= ParamStr(12); |
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2390
diff
changeset
|
309 |
cShowFPS:= ParamStr(13) = '1'; |
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2390
diff
changeset
|
310 |
cAltDamage:= ParamStr(14) = '1'; |
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2390
diff
changeset
|
311 |
UserNick:= DecodeBase64(ParamStr(15)); |
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2390
diff
changeset
|
312 |
isMusicEnabled:= ParamStr(16) = '1'; |
a55dbef5cf31
Smaxx's patch fixing openal sound issues with poor card drivers
koda
parents:
2390
diff
changeset
|
313 |
cReducedQuality:= ParamStr(17) = '1'; |
267 | 314 |
for p:= Succ(Low(TPathType)) to High(TPathType) do |
949 | 315 |
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
|
316 |
end; |
2390 | 317 |
{$IFDEF IPHONEOS} |
2252 | 318 |
0: begin |
319 |
PathPrefix:= 'hedgewars/Data'; |
|
320 |
recordFileName:= 'hedgewars/save.hws'; |
|
321 |
val('320', cScreenWidth); |
|
322 |
val('480', cScreenHeight); |
|
323 |
cInitWidth:= cScreenWidth; |
|
324 |
cInitHeight:= cScreenHeight; |
|
325 |
cBitsStr:= '32'; |
|
326 |
val(cBitsStr, cBits); |
|
327 |
val('100', cInitVolume); |
|
328 |
isMusicEnabled:= false; |
|
329 |
isSoundEnabled:= false; |
|
330 |
cLocaleFName:= 'en.txt'; |
|
2409
dbf195c3e09c
fix a very rare bug in which CurSlot becomes greater than cMaxCurSlot
koda
parents:
2392
diff
changeset
|
331 |
cFullScreen:= true; //T or F is is the same here |
2252 | 332 |
cAltDamage:= false; |
2409
dbf195c3e09c
fix a very rare bug in which CurSlot becomes greater than cMaxCurSlot
koda
parents:
2392
diff
changeset
|
333 |
cShowFPS:= true; |
2252 | 334 |
val('8', cTimerInterval); |
335 |
cReducedQuality:= false; |
|
336 |
||
337 |
for p:= Succ(Low(TPathType)) to High(TPathType) do |
|
338 |
if p <> ptMapCurrent then Pathz[p]:= PathPrefix + '/' + Pathz[p] |
|
339 |
end; |
|
2390 | 340 |
{$ENDIF} |
497 | 341 |
3: begin |
498 | 342 |
val(ParamStr(2), ipcPort); |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
343 |
GameType:= gmtLandPreview; |
497 | 344 |
if ParamStr(3) <> 'landpreview' then OutError(errmsgShouldntRun, true); |
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1825
diff
changeset
|
345 |
end; |
2008 | 346 |
2: begin |
347 |
PathPrefix:= ParamStr(1); |
|
348 |
recordFileName:= ParamStr(2); |
|
2376 | 349 |
|
2008 | 350 |
for p:= Succ(Low(TPathType)) to High(TPathType) do |
351 |
if p <> ptMapCurrent then Pathz[p]:= PathPrefix + '/' + Pathz[p] |
|
352 |
end; |
|
353 |
6: begin |
|
354 |
PathPrefix:= ParamStr(1); |
|
355 |
recordFileName:= ParamStr(2); |
|
2376 | 356 |
|
2008 | 357 |
if ParamStr(3) = '--set-video' then |
358 |
begin |
|
359 |
val(ParamStr(4), cScreenWidth); |
|
360 |
val(ParamStr(5), cScreenHeight); |
|
361 |
cInitWidth:= cScreenWidth; |
|
362 |
cInitHeight:= cScreenHeight; |
|
363 |
cBitsStr:= ParamStr(6); |
|
364 |
val(cBitsStr, cBits); |
|
365 |
end |
|
366 |
else |
|
367 |
begin |
|
368 |
if ParamStr(3) = '--set-audio' then |
|
369 |
begin |
|
370 |
val(ParamStr(4), cInitVolume); |
|
371 |
isMusicEnabled:= ParamStr(5) = '1'; |
|
372 |
isSoundEnabled:= ParamStr(6) = '1'; |
|
373 |
end |
|
374 |
else |
|
375 |
begin |
|
376 |
if ParamStr(3) = '--set-other' then |
|
377 |
begin |
|
378 |
cLocaleFName:= ParamStr(4); |
|
379 |
cFullScreen:= ParamStr(5) = '1'; |
|
380 |
cShowFPS:= ParamStr(6) = '1'; |
|
381 |
end |
|
382 |
else DisplayUsage; |
|
383 |
end |
|
384 |
end; |
|
2376 | 385 |
|
2008 | 386 |
for p:= Succ(Low(TPathType)) to High(TPathType) do |
387 |
if p <> ptMapCurrent then Pathz[p]:= PathPrefix + '/' + Pathz[p] |
|
388 |
end; |
|
389 |
11: begin |
|
390 |
PathPrefix:= ParamStr(1); |
|
391 |
recordFileName:= ParamStr(2); |
|
2376 | 392 |
|
2008 | 393 |
if ParamStr(3) = '--set-multimedia' then |
394 |
begin |
|
395 |
val(ParamStr(4), cScreenWidth); |
|
396 |
val(ParamStr(5), cScreenHeight); |
|
397 |
cInitWidth:= cScreenWidth; |
|
398 |
cInitHeight:= cScreenHeight; |
|
399 |
cBitsStr:= ParamStr(6); |
|
400 |
val(cBitsStr, cBits); |
|
401 |
val(ParamStr(7), cInitVolume); |
|
402 |
isMusicEnabled:= ParamStr(8) = '1'; |
|
403 |
isSoundEnabled:= ParamStr(9) = '1'; |
|
404 |
cLocaleFName:= ParamStr(10); |
|
405 |
cFullScreen:= ParamStr(11) = '1'; |
|
406 |
end |
|
407 |
else DisplayUsage; |
|
2376 | 408 |
|
2008 | 409 |
for p:= Succ(Low(TPathType)) to High(TPathType) do |
410 |
if p <> ptMapCurrent then Pathz[p]:= PathPrefix + '/' + Pathz[p] |
|
411 |
end; |
|
412 |
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
|
413 |
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
|
414 |
recordFileName:= ParamStr(2); |
2008 | 415 |
if ParamStr(3) = '--set-everything' then |
416 |
begin |
|
417 |
val(ParamStr(4), cScreenWidth); |
|
418 |
val(ParamStr(5), cScreenHeight); |
|
419 |
cInitWidth:= cScreenWidth; |
|
420 |
cInitHeight:= cScreenHeight; |
|
421 |
cBitsStr:= ParamStr(6); |
|
422 |
val(cBitsStr, cBits); |
|
423 |
val(ParamStr(7), cInitVolume); |
|
424 |
isMusicEnabled:= ParamStr(8) = '1'; |
|
425 |
isSoundEnabled:= ParamStr(9) = '1'; |
|
426 |
cLocaleFName:= ParamStr(10); |
|
427 |
cFullScreen:= ParamStr(11) = '1'; |
|
428 |
cAltDamage:= ParamStr(12) = '1'; |
|
429 |
cShowFPS:= ParamStr(13) = '1'; |
|
430 |
val(ParamStr(14), cTimerInterval); |
|
431 |
cReducedQuality:= ParamStr(15) = '1'; |
|
432 |
end |
|
433 |
else DisplayUsage; |
|
2376 | 434 |
|
2008 | 435 |
for p:= Succ(Low(TPathType)) to High(TPathType) do |
436 |
if p <> ptMapCurrent then Pathz[p]:= PathPrefix + '/' + Pathz[p] |
|
437 |
end; |
|
438 |
else DisplayUsage; |
|
439 |
end; |
|
51 | 440 |
end; |
441 |
||
2016 | 442 |
///////////////////////// |
51 | 443 |
procedure ShowMainWindow; |
444 |
begin |
|
351 | 445 |
if cFullScreen then ParseCommand('fullscr 1', true) |
446 |
else ParseCommand('fullscr 0', true); |
|
281
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
271
diff
changeset
|
447 |
SDL_ShowCursor(0) |
51 | 448 |
end; |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
449 |
|
160 | 450 |
/////////////// |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
451 |
procedure Game; |
205 | 452 |
var s: shortstring; |
51 | 453 |
begin |
454 |
WriteToConsole('Init SDL... '); |
|
2428 | 455 |
SDLTry(SDL_Init(SDL_INIT_VIDEO or SDL_INIT_JOYSTICK) >= 0, true); |
51 | 456 |
WriteLnToConsole(msgOK); |
753 | 457 |
|
377 | 458 |
SDL_EnableUNICODE(1); |
51 | 459 |
|
460 |
WriteToConsole('Init SDL_ttf... '); |
|
200 | 461 |
SDLTry(TTF_Init <> -1, true); |
51 | 462 |
WriteLnToConsole(msgOK); |
463 |
||
464 |
ShowMainWindow; |
|
465 |
||
2428 | 466 |
ControllerInit; // has to happen before InitKbdKeyTable to map keys |
51 | 467 |
InitKbdKeyTable; |
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1825
diff
changeset
|
468 |
|
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1825
diff
changeset
|
469 |
if recordFileName = '' then InitIPC; |
51 | 470 |
WriteLnToConsole(msgGettingConfig); |
80 | 471 |
|
2039 | 472 |
if cLocaleFName <> 'en.txt' then |
473 |
LoadLocale(Pathz[ptLocale] + '/en.txt'); |
|
80 | 474 |
LoadLocale(Pathz[ptLocale] + '/' + cLocaleFName); |
475 |
||
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1825
diff
changeset
|
476 |
if recordFileName = '' then |
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1825
diff
changeset
|
477 |
SendIPCAndWaitReply('C') // ask for game config |
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1825
diff
changeset
|
478 |
else |
2154
3d2917be12c3
Change default output to stderr since /tmp doesn't exist under windows and is useless under iphoneos, add a couple of extra parameters
nemo
parents:
2152
diff
changeset
|
479 |
begin |
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1825
diff
changeset
|
480 |
LoadRecordFromFile(recordFileName); |
2154
3d2917be12c3
Change default output to stderr since /tmp doesn't exist under windows and is useless under iphoneos, add a couple of extra parameters
nemo
parents:
2152
diff
changeset
|
481 |
end; |
205 | 482 |
|
483 |
s:= 'eproto ' + inttostr(cNetProtoVersion); |
|
484 |
SendIPCRaw(@s[0], Length(s) + 1); // send proto version |
|
485 |
||
51 | 486 |
InitTeams; |
288 | 487 |
AssignStores; |
51 | 488 |
|
489 |
if isSoundEnabled then InitSound; |
|
490 |
||
491 |
StoreInit; |
|
492 |
||
493 |
isDeveloperMode:= false; |
|
494 |
||
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
54
diff
changeset
|
495 |
TryDo(InitStepsFlags = cifAllInited, |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
54
diff
changeset
|
496 |
'Some parameters not set (flags = ' + inttostr(InitStepsFlags) + ')', |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
54
diff
changeset
|
497 |
true); |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
54
diff
changeset
|
498 |
|
2428 | 499 |
MainLoop; |
500 |
ControllerClose |
|
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
501 |
end; |
51 | 502 |
|
160 | 503 |
///////////////////////// |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
504 |
procedure GenLandPreview; |
566 | 505 |
var Preview: TPreview; |
1791
7c9d645d2591
Fix passing hedgehogs number from engine to frontend
unc0rr
parents:
1784
diff
changeset
|
506 |
h: byte; |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
507 |
begin |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
508 |
InitIPC; |
159 | 509 |
IPCWaitPongEvent; |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
510 |
TryDo(InitStepsFlags = cifRandomize, |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
511 |
'Some parameters not set (flags = ' + inttostr(InitStepsFlags) + ')', |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
512 |
true); |
160 | 513 |
|
566 | 514 |
Preview:= GenPreview; |
159 | 515 |
WriteLnToConsole('Sending preview...'); |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
516 |
SendIPCRaw(@Preview, sizeof(Preview)); |
1791
7c9d645d2591
Fix passing hedgehogs number from engine to frontend
unc0rr
parents:
1784
diff
changeset
|
517 |
h:= MaxHedgehogs; |
7c9d645d2591
Fix passing hedgehogs number from engine to frontend
unc0rr
parents:
1784
diff
changeset
|
518 |
SendIPCRaw(@h, sizeof(h)); |
159 | 519 |
WriteLnToConsole('Preview sent, disconnect'); |
158 | 520 |
CloseIPC |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
521 |
end; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
522 |
|
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
523 |
//////////////////////////////////////////////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
524 |
/////////////////////////////// m a i n //////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
525 |
//////////////////////////////////////////////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
526 |
|
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
527 |
begin |
2006 | 528 |
WriteLnToConsole('Hedgewars ' + cVersionString + ' engine'); |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
529 |
GetParams; |
2145 | 530 |
// FIXME - hack in font with support for CJK |
2105 | 531 |
if (cLocaleFName = 'zh_CN.txt') or (cLocaleFName = 'zh_TW.txt') or (cLocaleFName = 'ja.txt') then |
532 |
Fontz:= FontzCJK; |
|
533 |
||
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
534 |
Randomize; |
2008 | 535 |
|
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
536 |
if GameType = gmtLandPreview then GenLandPreview |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
537 |
else Game |
51 | 538 |
end. |
2008 | 539 |