author | unc0rr |
Sat, 23 Sep 2006 19:26:07 +0000 | |
changeset 161 | d8870bbf960e |
parent 160 | 207f520b9e83 |
child 166 | 2920ab2bf329 |
permissions | -rw-r--r-- |
51 | 1 |
(* |
2 |
* Hedgewars, a worms-like game |
|
3 |
* Copyright (c) 2004, 2005, 2006 Andrey Korotaev <unC0Rr@gmail.com> |
|
4 |
* |
|
5 |
* Distributed under the terms of the BSD-modified licence: |
|
6 |
* |
|
7 |
* Permission is hereby granted, free of charge, to any person obtaining a copy |
|
8 |
* of this software and associated documentation files (the "Software"), to deal |
|
9 |
* with the Software without restriction, including without limitation the |
|
10 |
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or |
|
11 |
* sell copies of the Software, and to permit persons to whom the Software is |
|
12 |
* furnished to do so, subject to the following conditions: |
|
13 |
* |
|
14 |
* 1. Redistributions of source code must retain the above copyright notice, |
|
15 |
* this list of conditions and the following disclaimer. |
|
16 |
* 2. Redistributions in binary form must reproduce the above copyright notice, |
|
17 |
* this list of conditions and the following disclaimer in the documentation |
|
18 |
* and/or other materials provided with the distribution. |
|
19 |
* 3. The name of the author may not be used to endorse or promote products |
|
20 |
* derived from this software without specific prior written permission. |
|
21 |
* |
|
22 |
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED |
|
23 |
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
|
24 |
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO |
|
25 |
* EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
|
26 |
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
|
27 |
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
|
28 |
* OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
|
29 |
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
|
30 |
* OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
|
31 |
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|
32 |
*) |
|
33 |
||
34 |
program hwengine; |
|
35 |
{$APPTYPE CONSOLE} |
|
36 |
uses |
|
37 |
SDLh, |
|
38 |
uConsts in 'uConsts.pas', |
|
39 |
uGame in 'uGame.pas', |
|
40 |
uMisc in 'uMisc.pas', |
|
41 |
uStore in 'uStore.pas', |
|
42 |
uWorld in 'uWorld.pas', |
|
43 |
uIO in 'uIO.pas', |
|
44 |
uGears in 'uGears.pas', |
|
45 |
uConsole in 'uConsole.pas', |
|
46 |
uKeys in 'uKeys.pas', |
|
47 |
uTeams in 'uTeams.pas', |
|
48 |
uSound in 'uSound.pas', |
|
49 |
uRandom in 'uRandom.pas', |
|
50 |
uAI in 'uAI.pas', |
|
79 | 51 |
uAIMisc in 'uAIMisc.pas', |
52 |
uAIAmmoTests in 'uAIAmmoTests.pas', |
|
53 |
uAIActions in 'uAIActions.pas', |
|
51 | 54 |
uCollisions in 'uCollisions.pas', |
55 |
uLand in 'uLand.pas', |
|
56 |
uLandTemplates in 'uLandTemplates.pas', |
|
54 | 57 |
uLandObjects in 'uLandObjects.pas', |
80 | 58 |
uLandGraphics in 'uLandGraphics.pas', |
59 |
uLocale in 'uLocale.pas'; |
|
51 | 60 |
|
61 |
{$INCLUDE options.inc} |
|
62 |
||
63 |
// also: GSHandlers.inc |
|
64 |
// CCHandlers.inc |
|
65 |
// HHHandlers.inc |
|
66 |
||
67 |
||
68 |
procedure OnDestroy; forward; |
|
69 |
||
70 |
//////////////////////////////// |
|
79 | 71 |
procedure DoTimer(Lag: integer); |
51 | 72 |
var s: string; |
73 |
begin |
|
74 |
case GameState of |
|
75 |
gsLandGen: begin |
|
76 |
GenMap; |
|
77 |
GameState:= gsStart; |
|
78 |
end; |
|
79 |
gsStart: begin |
|
80 |
AssignHHCoords; |
|
81 |
AddMiscGears; |
|
82 |
AdjustColor(cColorNearBlack); |
|
56 | 83 |
AdjustColor(cWaterColor); |
51 | 84 |
AdjustColor(cWhiteColor); |
85 |
StoreLoad; |
|
86 |
AdjustColor(cConsoleSplitterColor); |
|
87 |
ResetKbd; |
|
88 |
SoundLoad; |
|
89 |
PlayMusic; |
|
72 | 90 |
if GameType = gmtSave then |
91 |
begin |
|
92 |
isSEBackup:= isSoundEnabled; |
|
93 |
isSoundEnabled:= false |
|
94 |
end; |
|
51 | 95 |
GameState:= gsGame |
96 |
end; |
|
97 |
gsGame : begin |
|
98 |
DoGameTick(Lag); |
|
99 |
DrawWorld(Lag, SDLPrimSurface); |
|
100 |
end; |
|
101 |
gsConsole: begin |
|
102 |
DoGameTick(Lag); |
|
103 |
DrawWorld(Lag, SDLPrimSurface); |
|
104 |
DrawConsole(SDLPrimSurface); |
|
105 |
end; |
|
106 |
gsExit : begin |
|
107 |
OnDestroy; |
|
108 |
end; |
|
109 |
end; |
|
110 |
SDL_Flip(SDLPrimSurface); |
|
111 |
if flagMakeCapture then |
|
112 |
begin |
|
113 |
flagMakeCapture:= false; |
|
81 | 114 |
s:= 'hw_' + cSeed + '_' + inttostr(GameTicks) + '.bmp'; |
51 | 115 |
WriteLnToConsole('Saving ' + s); |
116 |
SDL_SaveBMP_RW(SDLPrimSurface, SDL_RWFromFile(PChar(s), 'wb'), 1) |
|
117 |
end; |
|
118 |
end; |
|
119 |
||
120 |
//////////////////// |
|
79 | 121 |
procedure OnDestroy; |
51 | 122 |
begin |
123 |
{$IFDEF DEBUGFILE}AddFileLog('Freeing resources...');{$ENDIF} |
|
124 |
if isSoundEnabled then ReleaseSound; |
|
125 |
StoreRelease; |
|
126 |
CloseIPC; |
|
127 |
TTF_Quit; |
|
128 |
SDL_Quit; |
|
129 |
halt |
|
130 |
end; |
|
131 |
||
132 |
/////////////////// |
|
133 |
procedure MainLoop; |
|
134 |
var PrevTime, |
|
135 |
CurrTime: Cardinal; |
|
136 |
event: TSDL_Event; |
|
137 |
begin |
|
138 |
PrevTime:= SDL_GetTicks; |
|
139 |
repeat |
|
140 |
while SDL_PollEvent(@event) <> 0 do |
|
141 |
case event.type_ of |
|
142 |
SDL_KEYDOWN: case GameState of |
|
143 |
gsGame: if event.key.keysym.sym = 96 then |
|
144 |
begin |
|
145 |
cConsoleYAdd:= cConsoleHeight; |
|
146 |
GameState:= gsConsole |
|
147 |
end; |
|
148 |
gsConsole: KeyPressConsole(event.key.keysym.sym); |
|
149 |
end; |
|
150 |
SDL_QUITEV: isTerminated:= true |
|
151 |
end; |
|
152 |
CurrTime:= SDL_GetTicks; |
|
153 |
if PrevTime + cTimerInterval <= CurrTime then |
|
154 |
begin |
|
155 |
DoTimer(CurrTime - PrevTime); |
|
156 |
PrevTime:= CurrTime |
|
157 |
end else {sleep(1)}; |
|
158 |
IPCCheckSock |
|
159 |
until isTerminated |
|
160 |
end; |
|
161 |
||
162 |
//////////////////// |
|
163 |
procedure GetParams; |
|
164 |
var c: integer; |
|
97
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
165 |
i: integer; |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
166 |
p: TPathType; |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
167 |
begin |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
168 |
PathPrefix:= ParamStr(0); |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
169 |
for i:= 1 to Length(PathPrefix) do |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
170 |
if PathPrefix[i] = '\' then PathPrefix[i]:= '/'; |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
171 |
i:= Length(PathPrefix); |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
172 |
while (i > 0) and not (PathPrefix[i] = '/') do dec(i); |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
173 |
Delete(PathPrefix, i, Length(PathPrefix) - i + 1); |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
174 |
dec(i); |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
175 |
while (i > 0) and not (PathPrefix[i] = '/') do dec(i); |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
176 |
Delete(PathPrefix, i, Length(PathPrefix) - i + 1); |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
177 |
PathPrefix:= PathPrefix + '/share/hedgewars/'; |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
178 |
for p:= Low(TPathType) to High(TPathType) do |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
179 |
if p <> ptMapCurrent then Pathz[p]:= PathPrefix + Pathz[p]; |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
180 |
|
51 | 181 |
{$IFDEF DEBUGFILE} |
97
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
182 |
AddFileLog('Prefix: "' + PathPrefix +'"'); |
51 | 183 |
for i:= 0 to ParamCount do |
184 |
AddFileLog(inttostr(i) + ': ' + ParamStr(i)); |
|
185 |
{$ENDIF} |
|
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
186 |
case ParamCount of |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
187 |
7: begin |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
188 |
val(ParamStr(1), cScreenWidth, c); |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
189 |
val(ParamStr(2), cScreenHeight, c); |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
190 |
cBitsStr:= ParamStr(3); |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
191 |
val(cBitsStr, cBits, c); |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
192 |
val(ParamStr(4), ipcPort, c); |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
193 |
cFullScreen:= ParamStr(5) = '1'; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
194 |
isSoundEnabled:= ParamStr(6) = '1'; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
195 |
cLocaleFName:= ParamStr(7); |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
196 |
end; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
197 |
2: begin |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
198 |
val(ParamStr(1), ipcPort, c); |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
199 |
GameType:= gmtLandPreview; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
200 |
if ParamStr(2) <> 'landpreview' then OutError(errmsgShouldntRun, true); |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
201 |
end |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
202 |
else |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
203 |
OutError(errmsgShouldntRun, true) |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
204 |
end |
51 | 205 |
end; |
206 |
||
207 |
procedure ShowMainWindow; |
|
208 |
var flags: Longword; |
|
209 |
begin |
|
210 |
flags:= SDL_HWSURFACE or SDL_DOUBLEBUF or SDL_HWACCEL; |
|
211 |
if cFullScreen then flags:= flags or SDL_FULLSCREEN |
|
212 |
else SDL_WM_SetCaption('Hedgewars', nil); |
|
213 |
SDLPrimSurface:= SDL_SetVideoMode(cScreenWidth, cScreenHeight, cBits, flags); |
|
214 |
TryDo(SDLPrimSurface <> nil, errmsgCreateSurface, true); |
|
215 |
PixelFormat:= SDLPrimSurface.format; |
|
216 |
SDL_ShowCursor(0); |
|
217 |
end; |
|
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
218 |
|
160 | 219 |
/////////////// |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
220 |
procedure Game; |
51 | 221 |
begin |
222 |
WriteToConsole('Init SDL... '); |
|
223 |
SDLTry(SDL_Init(SDL_INIT_VIDEO) >= 0, true); |
|
224 |
WriteLnToConsole(msgOK); |
|
225 |
||
226 |
WriteToConsole('Init SDL_ttf... '); |
|
227 |
SDLTry(TTF_Init >= 0, true); |
|
228 |
WriteLnToConsole(msgOK); |
|
229 |
||
230 |
ShowMainWindow; |
|
231 |
||
232 |
InitKbdKeyTable; |
|
233 |
InitIPC; |
|
234 |
WriteLnToConsole(msgGettingConfig); |
|
80 | 235 |
|
236 |
LoadLocale(Pathz[ptLocale] + '/' + cLocaleFName); |
|
237 |
||
238 |
SendIPCAndWaitReply('C'); // ask for game config |
|
51 | 239 |
InitTeams; |
240 |
||
241 |
if isSoundEnabled then InitSound; |
|
242 |
InitWorld; |
|
243 |
||
244 |
StoreInit; |
|
245 |
||
246 |
isDeveloperMode:= false; |
|
247 |
||
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
54
diff
changeset
|
248 |
TryDo(InitStepsFlags = cifAllInited, |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
54
diff
changeset
|
249 |
'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
|
250 |
true); |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
54
diff
changeset
|
251 |
|
51 | 252 |
MainLoop |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
253 |
end; |
51 | 254 |
|
160 | 255 |
///////////////////////// |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
256 |
procedure GenLandPreview; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
257 |
begin |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
258 |
InitIPC; |
159 | 259 |
IPCWaitPongEvent; |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
260 |
TryDo(InitStepsFlags = cifRandomize, |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
261 |
'Some parameters not set (flags = ' + inttostr(InitStepsFlags) + ')', |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
262 |
true); |
160 | 263 |
|
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
264 |
GenPreview; |
159 | 265 |
WriteLnToConsole('Sending preview...'); |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
266 |
SendIPCRaw(@Preview, sizeof(Preview)); |
159 | 267 |
WriteLnToConsole('Preview sent, disconnect'); |
158 | 268 |
CloseIPC |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
269 |
end; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
270 |
|
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
271 |
//////////////////////////////////////////////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
272 |
/////////////////////////////// m a i n //////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
273 |
//////////////////////////////////////////////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
274 |
|
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 |
WriteLnToConsole('-= HedgeWars 0.2 =-'); |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
277 |
WriteLnToConsole(' -= by unC0Rr =- '); |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
278 |
GetParams; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
279 |
Randomize; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
280 |
|
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
281 |
if GameType = gmtLandPreview then GenLandPreview |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
282 |
else Game |
51 | 283 |
end. |