author | unc0rr |
Sat, 13 Jun 2009 15:30:40 +0000 | |
changeset 2161 | 0c8634241fa4 |
parent 2154 | 3d2917be12c3 |
child 2162 | 2bce91404d49 |
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); |
1080 | 75 |
var s: string; |
51 | 76 |
begin |
564 | 77 |
inc(RealTicks, Lag); |
78 |
||
51 | 79 |
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
|
80 |
gsLandGen: begin |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
81 |
GenMap; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
82 |
GameState:= gsStart; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
83 |
end; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
84 |
gsStart: begin |
1784 | 85 |
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
|
86 |
AddClouds; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
87 |
AssignHHCoords; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
88 |
AddMiscGears; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
89 |
StoreLoad; |
1825 | 90 |
InitWorld; |
1524
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
91 |
ResetKbd; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
92 |
SoundLoad; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
93 |
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
|
94 |
begin |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
95 |
isSEBackup:= isSoundEnabled; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
96 |
isSoundEnabled:= false |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
97 |
end; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
98 |
FinishProgress; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
99 |
PlayMusic; |
2161
0c8634241fa4
Some work on zooming. Hedgewars are now unplayable.
unc0rr
parents:
2154
diff
changeset
|
100 |
SetScale(1.5); |
1524
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
101 |
GameState:= gsGame |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
102 |
end; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
103 |
gsConfirm, |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
104 |
gsGame: begin |
1645 | 105 |
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
|
106 |
ProcessKbd; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
107 |
DoGameTick(Lag); |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
108 |
ProcessVisualGears(Lag); |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
109 |
end; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
110 |
gsChat: begin |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
111 |
DrawWorld(Lag); |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
112 |
DoGameTick(Lag); |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
113 |
ProcessVisualGears(Lag); |
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 |
gsExit: begin |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
116 |
OnDestroy; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
117 |
end; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
118 |
end; |
564 | 119 |
|
753 | 120 |
SDL_GL_SwapBuffers(); |
51 | 121 |
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
|
122 |
begin |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
123 |
flagMakeCapture:= false; |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
124 |
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
|
125 |
WriteLnToConsole('Saving ' + s); |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
126 |
MakeScreenshot(s); |
5a652a465559
Draw world before processing gears, as this should improve performance by introducing cpu-gpu parallelizm
unc0rr
parents:
1128
diff
changeset
|
127 |
// 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
|
128 |
end; |
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; |
161 |
begin |
|
162 |
PrevTime:= SDL_GetTicks; |
|
163 |
repeat |
|
164 |
while SDL_PollEvent(@event) <> 0 do |
|
1120 | 165 |
case event.type_ of |
166 |
SDL_KEYDOWN: if GameState = gsChat then KeyPressChat(event.key.keysym.unicode); |
|
167 |
SDL_ACTIVEEVENT: if (event.active.state and SDL_APPINPUTFOCUS) <> 0 then |
|
168 |
cHasFocus:= event.active.gain = 1; |
|
1127 | 169 |
//SDL_VIDEORESIZE: Resize(max(event.resize.w, 600), max(event.resize.h, 450)); |
1120 | 170 |
SDL_QUITEV: isTerminated:= true |
171 |
end; |
|
51 | 172 |
CurrTime:= SDL_GetTicks; |
173 |
if PrevTime + cTimerInterval <= CurrTime then |
|
174 |
begin |
|
175 |
DoTimer(CurrTime - PrevTime); |
|
176 |
PrevTime:= CurrTime |
|
434 | 177 |
end else SDL_Delay(1); |
51 | 178 |
IPCCheckSock |
179 |
until isTerminated |
|
180 |
end; |
|
181 |
||
2008 | 182 |
///////////////////// |
183 |
procedure DisplayUsage; |
|
184 |
begin |
|
185 |
WriteLn('Wrong argument format: correct configurations is'); |
|
186 |
WriteLn(); |
|
187 |
WriteLn(' hwengine <path to data folder> <path to replay file> [option]'); |
|
188 |
WriteLn(); |
|
189 |
WriteLn('where [option] must be specified either as'); |
|
190 |
WriteLn(' --set-video [screen height] [screen width] [color dept]'); |
|
191 |
WriteLn(' --set-audio [volume] [enable music] [enable sounds]'); |
|
192 |
WriteLn(' --set-other [language file] [full screen] [show FPS]'); |
|
193 |
WriteLn(' --set-multimedia [screen height] [screen width] [color dept] [volume] [enable music] [enable sounds] [language file] [full screen]'); |
|
194 |
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]'); |
|
195 |
WriteLn(); |
|
2015 | 196 |
WriteLn('Read documentation online at http://www.hedgewars.org/node/1465 for more information'); |
197 |
halt(1); |
|
2008 | 198 |
end; |
199 |
||
51 | 200 |
//////////////////// |
201 |
procedure GetParams; |
|
889 | 202 |
var |
267 | 203 |
{$IFDEF DEBUGFILE} |
371 | 204 |
i: LongInt; |
267 | 205 |
{$ENDIF} |
97
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
206 |
p: TPathType; |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
207 |
begin |
51 | 208 |
{$IFDEF DEBUGFILE} |
97
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
209 |
AddFileLog('Prefix: "' + PathPrefix +'"'); |
51 | 210 |
for i:= 0 to ParamCount do |
211 |
AddFileLog(inttostr(i) + ': ' + ParamStr(i)); |
|
212 |
{$ENDIF} |
|
267 | 213 |
|
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
214 |
case ParamCount of |
1892 | 215 |
16: begin |
498 | 216 |
val(ParamStr(2), cScreenWidth); |
217 |
val(ParamStr(3), cScreenHeight); |
|
1121
d595dc56b4f3
Remember initial resolution settings to use when switching to fullscreen mode
unc0rr
parents:
1120
diff
changeset
|
218 |
cInitWidth:= cScreenWidth; |
d595dc56b4f3
Remember initial resolution settings to use when switching to fullscreen mode
unc0rr
parents:
1120
diff
changeset
|
219 |
cInitHeight:= cScreenHeight; |
497 | 220 |
cBitsStr:= ParamStr(4); |
498 | 221 |
val(cBitsStr, cBits); |
222 |
val(ParamStr(5), ipcPort); |
|
497 | 223 |
cFullScreen:= ParamStr(6) = '1'; |
224 |
isSoundEnabled:= ParamStr(7) = '1'; |
|
225 |
cLocaleFName:= ParamStr(8); |
|
498 | 226 |
val(ParamStr(9), cInitVolume); |
227 |
val(ParamStr(10), cTimerInterval); |
|
497 | 228 |
PathPrefix:= ParamStr(11); |
229 |
cShowFPS:= ParamStr(12) = '1'; |
|
529 | 230 |
cAltDamage:= ParamStr(13) = '1'; |
949 | 231 |
UserNick:= DecodeBase64(ParamStr(14)); |
1128 | 232 |
isMusicEnabled:= ParamStr(15) = '1'; |
1812 | 233 |
cReducedQuality:= ParamStr(16) = '1'; |
267 | 234 |
for p:= Succ(Low(TPathType)) to High(TPathType) do |
949 | 235 |
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
|
236 |
end; |
497 | 237 |
3: begin |
498 | 238 |
val(ParamStr(2), ipcPort); |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
239 |
GameType:= gmtLandPreview; |
497 | 240 |
if ParamStr(3) <> 'landpreview' then OutError(errmsgShouldntRun, true); |
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1825
diff
changeset
|
241 |
end; |
2008 | 242 |
2: begin |
243 |
PathPrefix:= ParamStr(1); |
|
244 |
recordFileName:= ParamStr(2); |
|
245 |
||
246 |
for p:= Succ(Low(TPathType)) to High(TPathType) do |
|
247 |
if p <> ptMapCurrent then Pathz[p]:= PathPrefix + '/' + Pathz[p] |
|
248 |
end; |
|
249 |
6: begin |
|
250 |
PathPrefix:= ParamStr(1); |
|
251 |
recordFileName:= ParamStr(2); |
|
252 |
||
253 |
if ParamStr(3) = '--set-video' then |
|
254 |
begin |
|
255 |
val(ParamStr(4), cScreenWidth); |
|
256 |
val(ParamStr(5), cScreenHeight); |
|
257 |
cInitWidth:= cScreenWidth; |
|
258 |
cInitHeight:= cScreenHeight; |
|
259 |
cBitsStr:= ParamStr(6); |
|
260 |
val(cBitsStr, cBits); |
|
261 |
end |
|
262 |
else |
|
263 |
begin |
|
264 |
if ParamStr(3) = '--set-audio' then |
|
265 |
begin |
|
266 |
val(ParamStr(4), cInitVolume); |
|
267 |
isMusicEnabled:= ParamStr(5) = '1'; |
|
268 |
isSoundEnabled:= ParamStr(6) = '1'; |
|
269 |
end |
|
270 |
else |
|
271 |
begin |
|
272 |
if ParamStr(3) = '--set-other' then |
|
273 |
begin |
|
274 |
cLocaleFName:= ParamStr(4); |
|
275 |
cFullScreen:= ParamStr(5) = '1'; |
|
276 |
cShowFPS:= ParamStr(6) = '1'; |
|
277 |
end |
|
278 |
else DisplayUsage; |
|
279 |
end |
|
280 |
end; |
|
281 |
||
282 |
for p:= Succ(Low(TPathType)) to High(TPathType) do |
|
283 |
if p <> ptMapCurrent then Pathz[p]:= PathPrefix + '/' + Pathz[p] |
|
284 |
end; |
|
285 |
11: begin |
|
286 |
PathPrefix:= ParamStr(1); |
|
287 |
recordFileName:= ParamStr(2); |
|
288 |
||
289 |
if ParamStr(3) = '--set-multimedia' then |
|
290 |
begin |
|
291 |
val(ParamStr(4), cScreenWidth); |
|
292 |
val(ParamStr(5), cScreenHeight); |
|
293 |
cInitWidth:= cScreenWidth; |
|
294 |
cInitHeight:= cScreenHeight; |
|
295 |
cBitsStr:= ParamStr(6); |
|
296 |
val(cBitsStr, cBits); |
|
297 |
val(ParamStr(7), cInitVolume); |
|
298 |
isMusicEnabled:= ParamStr(8) = '1'; |
|
299 |
isSoundEnabled:= ParamStr(9) = '1'; |
|
300 |
cLocaleFName:= ParamStr(10); |
|
301 |
cFullScreen:= ParamStr(11) = '1'; |
|
302 |
end |
|
303 |
else DisplayUsage; |
|
304 |
||
305 |
for p:= Succ(Low(TPathType)) to High(TPathType) do |
|
306 |
if p <> ptMapCurrent then Pathz[p]:= PathPrefix + '/' + Pathz[p] |
|
307 |
end; |
|
308 |
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
|
309 |
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
|
310 |
recordFileName:= ParamStr(2); |
2008 | 311 |
if ParamStr(3) = '--set-everything' then |
312 |
begin |
|
313 |
val(ParamStr(4), cScreenWidth); |
|
314 |
val(ParamStr(5), cScreenHeight); |
|
315 |
cInitWidth:= cScreenWidth; |
|
316 |
cInitHeight:= cScreenHeight; |
|
317 |
cBitsStr:= ParamStr(6); |
|
318 |
val(cBitsStr, cBits); |
|
319 |
val(ParamStr(7), cInitVolume); |
|
320 |
isMusicEnabled:= ParamStr(8) = '1'; |
|
321 |
isSoundEnabled:= ParamStr(9) = '1'; |
|
322 |
cLocaleFName:= ParamStr(10); |
|
323 |
cFullScreen:= ParamStr(11) = '1'; |
|
324 |
cAltDamage:= ParamStr(12) = '1'; |
|
325 |
cShowFPS:= ParamStr(13) = '1'; |
|
326 |
val(ParamStr(14), cTimerInterval); |
|
327 |
cReducedQuality:= ParamStr(15) = '1'; |
|
328 |
end |
|
329 |
else DisplayUsage; |
|
330 |
||
331 |
for p:= Succ(Low(TPathType)) to High(TPathType) do |
|
332 |
if p <> ptMapCurrent then Pathz[p]:= PathPrefix + '/' + Pathz[p] |
|
333 |
end; |
|
334 |
else DisplayUsage; |
|
335 |
end; |
|
51 | 336 |
end; |
337 |
||
2016 | 338 |
///////////////////////// |
51 | 339 |
procedure ShowMainWindow; |
340 |
begin |
|
351 | 341 |
if cFullScreen then ParseCommand('fullscr 1', true) |
342 |
else ParseCommand('fullscr 0', true); |
|
281
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
271
diff
changeset
|
343 |
SDL_ShowCursor(0) |
51 | 344 |
end; |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
345 |
|
160 | 346 |
/////////////// |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
347 |
procedure Game; |
205 | 348 |
var s: shortstring; |
51 | 349 |
begin |
350 |
WriteToConsole('Init SDL... '); |
|
351 |
SDLTry(SDL_Init(SDL_INIT_VIDEO) >= 0, true); |
|
352 |
WriteLnToConsole(msgOK); |
|
753 | 353 |
|
377 | 354 |
SDL_EnableUNICODE(1); |
51 | 355 |
|
356 |
WriteToConsole('Init SDL_ttf... '); |
|
200 | 357 |
SDLTry(TTF_Init <> -1, true); |
51 | 358 |
WriteLnToConsole(msgOK); |
359 |
||
360 |
ShowMainWindow; |
|
361 |
||
362 |
InitKbdKeyTable; |
|
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1825
diff
changeset
|
363 |
|
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1825
diff
changeset
|
364 |
if recordFileName = '' then InitIPC; |
51 | 365 |
WriteLnToConsole(msgGettingConfig); |
80 | 366 |
|
2039 | 367 |
if cLocaleFName <> 'en.txt' then |
368 |
LoadLocale(Pathz[ptLocale] + '/en.txt'); |
|
80 | 369 |
LoadLocale(Pathz[ptLocale] + '/' + cLocaleFName); |
370 |
||
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1825
diff
changeset
|
371 |
if recordFileName = '' then |
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1825
diff
changeset
|
372 |
SendIPCAndWaitReply('C') // ask for game config |
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1825
diff
changeset
|
373 |
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
|
374 |
begin |
1888
e76274ce7365
Add an ability to run engine without IPC connection.
unc0rr
parents:
1825
diff
changeset
|
375 |
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
|
376 |
end; |
205 | 377 |
|
378 |
s:= 'eproto ' + inttostr(cNetProtoVersion); |
|
379 |
SendIPCRaw(@s[0], Length(s) + 1); // send proto version |
|
380 |
||
51 | 381 |
InitTeams; |
288 | 382 |
AssignStores; |
51 | 383 |
|
384 |
if isSoundEnabled then InitSound; |
|
385 |
||
386 |
StoreInit; |
|
387 |
||
388 |
isDeveloperMode:= false; |
|
389 |
||
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
54
diff
changeset
|
390 |
TryDo(InitStepsFlags = cifAllInited, |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
54
diff
changeset
|
391 |
'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
|
392 |
true); |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
54
diff
changeset
|
393 |
|
51 | 394 |
MainLoop |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
395 |
end; |
51 | 396 |
|
160 | 397 |
///////////////////////// |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
398 |
procedure GenLandPreview; |
566 | 399 |
var Preview: TPreview; |
1791
7c9d645d2591
Fix passing hedgehogs number from engine to frontend
unc0rr
parents:
1784
diff
changeset
|
400 |
h: byte; |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
401 |
begin |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
402 |
InitIPC; |
159 | 403 |
IPCWaitPongEvent; |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
404 |
TryDo(InitStepsFlags = cifRandomize, |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
405 |
'Some parameters not set (flags = ' + inttostr(InitStepsFlags) + ')', |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
406 |
true); |
160 | 407 |
|
566 | 408 |
Preview:= GenPreview; |
159 | 409 |
WriteLnToConsole('Sending preview...'); |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
410 |
SendIPCRaw(@Preview, sizeof(Preview)); |
1791
7c9d645d2591
Fix passing hedgehogs number from engine to frontend
unc0rr
parents:
1784
diff
changeset
|
411 |
h:= MaxHedgehogs; |
7c9d645d2591
Fix passing hedgehogs number from engine to frontend
unc0rr
parents:
1784
diff
changeset
|
412 |
SendIPCRaw(@h, sizeof(h)); |
159 | 413 |
WriteLnToConsole('Preview sent, disconnect'); |
158 | 414 |
CloseIPC |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
415 |
end; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
416 |
|
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
417 |
//////////////////////////////////////////////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
418 |
/////////////////////////////// m a i n //////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
419 |
//////////////////////////////////////////////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
420 |
|
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
421 |
begin |
2006 | 422 |
WriteLnToConsole('Hedgewars ' + cVersionString + ' engine'); |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
423 |
GetParams; |
2145 | 424 |
// FIXME - hack in font with support for CJK |
2105 | 425 |
if (cLocaleFName = 'zh_CN.txt') or (cLocaleFName = 'zh_TW.txt') or (cLocaleFName = 'ja.txt') then |
426 |
Fontz:= FontzCJK; |
|
427 |
||
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
428 |
Randomize; |
2008 | 429 |
|
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
430 |
if GameType = gmtLandPreview then GenLandPreview |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
431 |
else Game |
51 | 432 |
end. |
2008 | 433 |