author | unc0rr |
Mon, 24 Mar 2008 20:27:12 +0000 | |
changeset 822 | 2ae8fd8ef804 |
parent 814 | 7fb4417b7bc1 |
child 887 | cfed7e92afd7 |
permissions | -rw-r--r-- |
498 | 1 |
(* |
51 | 2 |
* Hedgewars, a worms-like 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 |
|
25 |
SDLh, |
|
753 | 26 |
GL, |
51 | 27 |
uConsts in 'uConsts.pas', |
28 |
uGame in 'uGame.pas', |
|
29 |
uMisc in 'uMisc.pas', |
|
30 |
uStore in 'uStore.pas', |
|
31 |
uWorld in 'uWorld.pas', |
|
32 |
uIO in 'uIO.pas', |
|
33 |
uGears in 'uGears.pas', |
|
802
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
771
diff
changeset
|
34 |
uVisualGears in 'uVisualGears.pas', |
51 | 35 |
uConsole in 'uConsole.pas', |
36 |
uKeys in 'uKeys.pas', |
|
37 |
uTeams in 'uTeams.pas', |
|
38 |
uSound in 'uSound.pas', |
|
39 |
uRandom in 'uRandom.pas', |
|
40 |
uAI in 'uAI.pas', |
|
79 | 41 |
uAIMisc in 'uAIMisc.pas', |
42 |
uAIAmmoTests in 'uAIAmmoTests.pas', |
|
43 |
uAIActions in 'uAIActions.pas', |
|
51 | 44 |
uCollisions in 'uCollisions.pas', |
45 |
uLand in 'uLand.pas', |
|
46 |
uLandTemplates in 'uLandTemplates.pas', |
|
54 | 47 |
uLandObjects in 'uLandObjects.pas', |
80 | 48 |
uLandGraphics in 'uLandGraphics.pas', |
288 | 49 |
uLocale in 'uLocale.pas', |
316 | 50 |
uAmmos in 'uAmmos.pas', |
351 | 51 |
uSHA in 'uSHA.pas', |
814
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
803
diff
changeset
|
52 |
uFloat in 'uFloat.pas', |
7fb4417b7bc1
Start implementing better statistics implementation (does nothing yet)
unc0rr
parents:
803
diff
changeset
|
53 |
uStats in 'uStats.pas'; |
51 | 54 |
|
55 |
{$INCLUDE options.inc} |
|
56 |
||
57 |
// also: GSHandlers.inc |
|
58 |
// CCHandlers.inc |
|
59 |
// HHHandlers.inc |
|
357 | 60 |
// SinTable.inc |
271 | 61 |
// proto.inc |
51 | 62 |
|
63 |
||
64 |
procedure OnDestroy; forward; |
|
65 |
||
66 |
//////////////////////////////// |
|
371 | 67 |
procedure DoTimer(Lag: LongInt); |
564 | 68 |
const MusicTimerTicks: Longword = 0; |
51 | 69 |
var s: string; |
70 |
begin |
|
564 | 71 |
inc(RealTicks, Lag); |
72 |
||
73 |
inc(MusicTimerTicks, Lag); |
|
565 | 74 |
if (MusicTimerTicks > 3000) and (GameState > gsStart) then |
564 | 75 |
begin |
76 |
PlayMusic; |
|
77 |
MusicTimerTicks:= 0 |
|
78 |
end; |
|
79 |
||
51 | 80 |
case GameState of |
81 |
gsLandGen: begin |
|
82 |
GenMap; |
|
83 |
GameState:= gsStart; |
|
84 |
end; |
|
85 |
gsStart: begin |
|
565 | 86 |
InitPlaylistChunk(GetRandom(High(LongWord))); |
51 | 87 |
AssignHHCoords; |
88 |
AddMiscGears; |
|
89 |
StoreLoad; |
|
90 |
AdjustColor(cConsoleSplitterColor); |
|
91 |
ResetKbd; |
|
92 |
SoundLoad; |
|
72 | 93 |
if GameType = gmtSave then |
94 |
begin |
|
95 |
isSEBackup:= isSoundEnabled; |
|
96 |
isSoundEnabled:= false |
|
97 |
end; |
|
510 | 98 |
FinishProgress; |
51 | 99 |
GameState:= gsGame |
100 |
end; |
|
101 |
gsGame : begin |
|
167 | 102 |
ProcessKbd; |
51 | 103 |
DoGameTick(Lag); |
803 | 104 |
ProcessVisualGears(Lag); |
51 | 105 |
DrawWorld(Lag, SDLPrimSurface); |
106 |
end; |
|
107 |
gsConsole: begin |
|
108 |
DoGameTick(Lag); |
|
803 | 109 |
ProcessVisualGears(Lag); |
771 | 110 |
DrawWorld(Lag, SDLPrimSurface); |
111 |
DrawConsole(SDLPrimSurface); |
|
51 | 112 |
end; |
113 |
gsExit : begin |
|
114 |
OnDestroy; |
|
115 |
end; |
|
116 |
end; |
|
564 | 117 |
|
753 | 118 |
SDL_GL_SwapBuffers(); |
51 | 119 |
if flagMakeCapture then |
120 |
begin |
|
121 |
flagMakeCapture:= false; |
|
81 | 122 |
s:= 'hw_' + cSeed + '_' + inttostr(GameTicks) + '.bmp'; |
51 | 123 |
WriteLnToConsole('Saving ' + s); |
489 | 124 |
SDL_SaveBMP_RW(SDLPrimSurface, SDL_RWFromFile(Str2PChar(s), 'wb'), 1) |
51 | 125 |
end; |
126 |
end; |
|
127 |
||
128 |
//////////////////// |
|
79 | 129 |
procedure OnDestroy; |
51 | 130 |
begin |
131 |
{$IFDEF DEBUGFILE}AddFileLog('Freeing resources...');{$ENDIF} |
|
132 |
if isSoundEnabled then ReleaseSound; |
|
619 | 133 |
StoreRelease; |
134 |
SendKB; |
|
51 | 135 |
CloseIPC; |
136 |
TTF_Quit; |
|
137 |
SDL_Quit; |
|
138 |
halt |
|
139 |
end; |
|
140 |
||
141 |
/////////////////// |
|
142 |
procedure MainLoop; |
|
143 |
var PrevTime, |
|
188 | 144 |
CurrTime: Longword; |
51 | 145 |
event: TSDL_Event; |
146 |
begin |
|
147 |
PrevTime:= SDL_GetTicks; |
|
148 |
repeat |
|
149 |
while SDL_PollEvent(@event) <> 0 do |
|
150 |
case event.type_ of |
|
151 |
SDL_KEYDOWN: case GameState of |
|
152 |
gsGame: if event.key.keysym.sym = 96 then |
|
153 |
begin |
|
154 |
cConsoleYAdd:= cConsoleHeight; |
|
155 |
GameState:= gsConsole |
|
156 |
end; |
|
415 | 157 |
gsConsole: if event.key.keysym.sym = 96 then |
158 |
begin |
|
159 |
GameState:= gsGame; |
|
160 |
cConsoleYAdd:= 0; |
|
161 |
ResetKbd |
|
162 |
end else KeyPressConsole(event.key.keysym.unicode); |
|
51 | 163 |
end; |
308 | 164 |
SDL_ACTIVEEVENT: if (event.active.state and SDL_APPINPUTFOCUS) <> 0 then |
165 |
cHasFocus:= event.active.gain = 1; |
|
51 | 166 |
SDL_QUITEV: isTerminated:= true |
167 |
end; |
|
168 |
CurrTime:= SDL_GetTicks; |
|
169 |
if PrevTime + cTimerInterval <= CurrTime then |
|
170 |
begin |
|
171 |
DoTimer(CurrTime - PrevTime); |
|
172 |
PrevTime:= CurrTime |
|
434 | 173 |
end else SDL_Delay(1); |
51 | 174 |
IPCCheckSock |
175 |
until isTerminated |
|
176 |
end; |
|
177 |
||
178 |
//////////////////// |
|
179 |
procedure GetParams; |
|
498 | 180 |
var |
267 | 181 |
{$IFDEF DEBUGFILE} |
371 | 182 |
i: LongInt; |
267 | 183 |
{$ENDIF} |
97
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
184 |
p: TPathType; |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
185 |
begin |
51 | 186 |
{$IFDEF DEBUGFILE} |
97
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
187 |
AddFileLog('Prefix: "' + PathPrefix +'"'); |
51 | 188 |
for i:= 0 to ParamCount do |
189 |
AddFileLog(inttostr(i) + ': ' + ParamStr(i)); |
|
190 |
{$ENDIF} |
|
267 | 191 |
|
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
192 |
case ParamCount of |
529 | 193 |
13: begin |
498 | 194 |
val(ParamStr(2), cScreenWidth); |
195 |
val(ParamStr(3), cScreenHeight); |
|
497 | 196 |
cBitsStr:= ParamStr(4); |
498 | 197 |
val(cBitsStr, cBits); |
198 |
val(ParamStr(5), ipcPort); |
|
497 | 199 |
cFullScreen:= ParamStr(6) = '1'; |
200 |
isSoundEnabled:= ParamStr(7) = '1'; |
|
201 |
cLocaleFName:= ParamStr(8); |
|
498 | 202 |
val(ParamStr(9), cInitVolume); |
203 |
val(ParamStr(10), cTimerInterval); |
|
497 | 204 |
PathPrefix:= ParamStr(11); |
205 |
cShowFPS:= ParamStr(12) = '1'; |
|
529 | 206 |
cAltDamage:= ParamStr(13) = '1'; |
267 | 207 |
for p:= Succ(Low(TPathType)) to High(TPathType) do |
208 |
if p <> ptMapCurrent then Pathz[p]:= PathPrefix + '/' + Pathz[p]; |
|
293 | 209 |
AddClouds |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
210 |
end; |
497 | 211 |
3: begin |
498 | 212 |
val(ParamStr(2), ipcPort); |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
213 |
GameType:= gmtLandPreview; |
497 | 214 |
if ParamStr(3) <> 'landpreview' then OutError(errmsgShouldntRun, true); |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
215 |
end |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
216 |
else |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
217 |
OutError(errmsgShouldntRun, true) |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
218 |
end |
51 | 219 |
end; |
220 |
||
221 |
procedure ShowMainWindow; |
|
222 |
begin |
|
351 | 223 |
if cFullScreen then ParseCommand('fullscr 1', true) |
224 |
else ParseCommand('fullscr 0', true); |
|
281
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
271
diff
changeset
|
225 |
SDL_ShowCursor(0) |
51 | 226 |
end; |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
227 |
|
160 | 228 |
/////////////// |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
229 |
procedure Game; |
205 | 230 |
var s: shortstring; |
51 | 231 |
begin |
232 |
WriteToConsole('Init SDL... '); |
|
233 |
SDLTry(SDL_Init(SDL_INIT_VIDEO) >= 0, true); |
|
234 |
WriteLnToConsole(msgOK); |
|
753 | 235 |
|
377 | 236 |
SDL_EnableUNICODE(1); |
51 | 237 |
|
238 |
WriteToConsole('Init SDL_ttf... '); |
|
200 | 239 |
SDLTry(TTF_Init <> -1, true); |
51 | 240 |
WriteLnToConsole(msgOK); |
241 |
||
242 |
ShowMainWindow; |
|
243 |
||
244 |
InitKbdKeyTable; |
|
245 |
InitIPC; |
|
246 |
WriteLnToConsole(msgGettingConfig); |
|
80 | 247 |
|
248 |
LoadLocale(Pathz[ptLocale] + '/' + cLocaleFName); |
|
249 |
||
250 |
SendIPCAndWaitReply('C'); // ask for game config |
|
205 | 251 |
|
252 |
s:= 'eproto ' + inttostr(cNetProtoVersion); |
|
253 |
SendIPCRaw(@s[0], Length(s) + 1); // send proto version |
|
254 |
||
51 | 255 |
InitTeams; |
288 | 256 |
AssignStores; |
51 | 257 |
|
258 |
if isSoundEnabled then InitSound; |
|
259 |
InitWorld; |
|
260 |
||
261 |
StoreInit; |
|
262 |
||
263 |
isDeveloperMode:= false; |
|
264 |
||
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
54
diff
changeset
|
265 |
TryDo(InitStepsFlags = cifAllInited, |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
54
diff
changeset
|
266 |
'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
|
267 |
true); |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
54
diff
changeset
|
268 |
|
51 | 269 |
MainLoop |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
270 |
end; |
51 | 271 |
|
160 | 272 |
///////////////////////// |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
273 |
procedure GenLandPreview; |
566 | 274 |
var Preview: TPreview; |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
275 |
begin |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
276 |
InitIPC; |
159 | 277 |
IPCWaitPongEvent; |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
278 |
TryDo(InitStepsFlags = cifRandomize, |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
279 |
'Some parameters not set (flags = ' + inttostr(InitStepsFlags) + ')', |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
280 |
true); |
160 | 281 |
|
566 | 282 |
Preview:= GenPreview; |
159 | 283 |
WriteLnToConsole('Sending preview...'); |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
284 |
SendIPCRaw(@Preview, sizeof(Preview)); |
159 | 285 |
WriteLnToConsole('Preview sent, disconnect'); |
158 | 286 |
CloseIPC |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
287 |
end; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
288 |
|
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
289 |
//////////////////////////////////////////////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
290 |
/////////////////////////////// m a i n //////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
291 |
//////////////////////////////////////////////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
292 |
|
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
293 |
begin |
720 | 294 |
WriteLnToConsole('-= HedgeWars 0.9.2 =-'); |
295 |
WriteLnToConsole(' -= by unC0Rr =- '); |
|
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
296 |
GetParams; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
297 |
Randomize; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
298 |
|
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
299 |
if GameType = gmtLandPreview then GenLandPreview |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
300 |
else Game |
51 | 301 |
end. |