author | unc0rr |
Thu, 05 Oct 2006 20:07:04 +0000 | |
changeset 189 | 33d147c69a83 |
parent 188 | a7c2a61524c2 |
child 200 | a36102728776 |
permissions | -rw-r--r-- |
51 | 1 |
(* |
2 |
* Hedgewars, a worms-like game |
|
3 |
* Copyright (c) 2004, 2005, 2006 Andrey Korotaev <unC0Rr@gmail.com> |
|
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 |
||
19 |
program hwengine; |
|
20 |
{$APPTYPE CONSOLE} |
|
21 |
uses |
|
22 |
SDLh, |
|
23 |
uConsts in 'uConsts.pas', |
|
24 |
uGame in 'uGame.pas', |
|
25 |
uMisc in 'uMisc.pas', |
|
26 |
uStore in 'uStore.pas', |
|
27 |
uWorld in 'uWorld.pas', |
|
28 |
uIO in 'uIO.pas', |
|
29 |
uGears in 'uGears.pas', |
|
30 |
uConsole in 'uConsole.pas', |
|
31 |
uKeys in 'uKeys.pas', |
|
32 |
uTeams in 'uTeams.pas', |
|
33 |
uSound in 'uSound.pas', |
|
34 |
uRandom in 'uRandom.pas', |
|
35 |
uAI in 'uAI.pas', |
|
79 | 36 |
uAIMisc in 'uAIMisc.pas', |
37 |
uAIAmmoTests in 'uAIAmmoTests.pas', |
|
38 |
uAIActions in 'uAIActions.pas', |
|
51 | 39 |
uCollisions in 'uCollisions.pas', |
40 |
uLand in 'uLand.pas', |
|
41 |
uLandTemplates in 'uLandTemplates.pas', |
|
54 | 42 |
uLandObjects in 'uLandObjects.pas', |
80 | 43 |
uLandGraphics in 'uLandGraphics.pas', |
44 |
uLocale in 'uLocale.pas'; |
|
51 | 45 |
|
46 |
{$INCLUDE options.inc} |
|
47 |
||
48 |
// also: GSHandlers.inc |
|
49 |
// CCHandlers.inc |
|
50 |
// HHHandlers.inc |
|
51 |
||
52 |
||
53 |
procedure OnDestroy; forward; |
|
54 |
||
55 |
//////////////////////////////// |
|
79 | 56 |
procedure DoTimer(Lag: integer); |
51 | 57 |
var s: string; |
58 |
begin |
|
59 |
case GameState of |
|
60 |
gsLandGen: begin |
|
61 |
GenMap; |
|
62 |
GameState:= gsStart; |
|
63 |
end; |
|
64 |
gsStart: begin |
|
65 |
AssignHHCoords; |
|
66 |
AddMiscGears; |
|
67 |
AdjustColor(cColorNearBlack); |
|
56 | 68 |
AdjustColor(cWaterColor); |
51 | 69 |
AdjustColor(cWhiteColor); |
70 |
StoreLoad; |
|
71 |
AdjustColor(cConsoleSplitterColor); |
|
72 |
ResetKbd; |
|
73 |
SoundLoad; |
|
74 |
PlayMusic; |
|
72 | 75 |
if GameType = gmtSave then |
76 |
begin |
|
77 |
isSEBackup:= isSoundEnabled; |
|
78 |
isSoundEnabled:= false |
|
79 |
end; |
|
51 | 80 |
GameState:= gsGame |
81 |
end; |
|
82 |
gsGame : begin |
|
167 | 83 |
ProcessKbd; |
51 | 84 |
DoGameTick(Lag); |
85 |
DrawWorld(Lag, SDLPrimSurface); |
|
86 |
end; |
|
87 |
gsConsole: begin |
|
88 |
DoGameTick(Lag); |
|
89 |
DrawWorld(Lag, SDLPrimSurface); |
|
90 |
DrawConsole(SDLPrimSurface); |
|
91 |
end; |
|
92 |
gsExit : begin |
|
93 |
OnDestroy; |
|
94 |
end; |
|
95 |
end; |
|
96 |
SDL_Flip(SDLPrimSurface); |
|
97 |
if flagMakeCapture then |
|
98 |
begin |
|
99 |
flagMakeCapture:= false; |
|
81 | 100 |
s:= 'hw_' + cSeed + '_' + inttostr(GameTicks) + '.bmp'; |
51 | 101 |
WriteLnToConsole('Saving ' + s); |
102 |
SDL_SaveBMP_RW(SDLPrimSurface, SDL_RWFromFile(PChar(s), 'wb'), 1) |
|
103 |
end; |
|
104 |
end; |
|
105 |
||
106 |
//////////////////// |
|
79 | 107 |
procedure OnDestroy; |
51 | 108 |
begin |
109 |
{$IFDEF DEBUGFILE}AddFileLog('Freeing resources...');{$ENDIF} |
|
110 |
if isSoundEnabled then ReleaseSound; |
|
111 |
StoreRelease; |
|
112 |
CloseIPC; |
|
113 |
TTF_Quit; |
|
114 |
SDL_Quit; |
|
115 |
halt |
|
116 |
end; |
|
117 |
||
118 |
/////////////////// |
|
119 |
procedure MainLoop; |
|
120 |
var PrevTime, |
|
188 | 121 |
CurrTime: Longword; |
51 | 122 |
event: TSDL_Event; |
123 |
begin |
|
124 |
PrevTime:= SDL_GetTicks; |
|
125 |
repeat |
|
126 |
while SDL_PollEvent(@event) <> 0 do |
|
127 |
case event.type_ of |
|
128 |
SDL_KEYDOWN: case GameState of |
|
129 |
gsGame: if event.key.keysym.sym = 96 then |
|
130 |
begin |
|
131 |
cConsoleYAdd:= cConsoleHeight; |
|
132 |
GameState:= gsConsole |
|
133 |
end; |
|
134 |
gsConsole: KeyPressConsole(event.key.keysym.sym); |
|
135 |
end; |
|
136 |
SDL_QUITEV: isTerminated:= true |
|
137 |
end; |
|
138 |
CurrTime:= SDL_GetTicks; |
|
139 |
if PrevTime + cTimerInterval <= CurrTime then |
|
140 |
begin |
|
141 |
DoTimer(CurrTime - PrevTime); |
|
142 |
PrevTime:= CurrTime |
|
143 |
end else {sleep(1)}; |
|
144 |
IPCCheckSock |
|
145 |
until isTerminated |
|
146 |
end; |
|
147 |
||
148 |
//////////////////// |
|
149 |
procedure GetParams; |
|
150 |
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
|
151 |
i: integer; |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
152 |
p: TPathType; |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
153 |
begin |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
154 |
PathPrefix:= ParamStr(0); |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
155 |
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
|
156 |
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
|
157 |
i:= Length(PathPrefix); |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
158 |
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
|
159 |
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
|
160 |
dec(i); |
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
161 |
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
|
162 |
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
|
163 |
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
|
164 |
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
|
165 |
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
|
166 |
|
51 | 167 |
{$IFDEF DEBUGFILE} |
97
e7c1df9cce2c
- make the game be run from ${PREFIX}/bin with data in ${PREFIX}/share/hedgewars/Data
unc0rr
parents:
81
diff
changeset
|
168 |
AddFileLog('Prefix: "' + PathPrefix +'"'); |
51 | 169 |
for i:= 0 to ParamCount do |
170 |
AddFileLog(inttostr(i) + ': ' + ParamStr(i)); |
|
171 |
{$ENDIF} |
|
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
172 |
case ParamCount of |
174 | 173 |
8: begin |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
174 |
val(ParamStr(1), cScreenWidth, c); |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
175 |
val(ParamStr(2), cScreenHeight, c); |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
176 |
cBitsStr:= ParamStr(3); |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
177 |
val(cBitsStr, cBits, c); |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
178 |
val(ParamStr(4), ipcPort, c); |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
179 |
cFullScreen:= ParamStr(5) = '1'; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
180 |
isSoundEnabled:= ParamStr(6) = '1'; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
181 |
cLocaleFName:= ParamStr(7); |
174 | 182 |
val(ParamStr(8), cInitVolume, c); |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
183 |
end; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
184 |
2: begin |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
185 |
val(ParamStr(1), ipcPort, c); |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
186 |
GameType:= gmtLandPreview; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
187 |
if ParamStr(2) <> 'landpreview' then OutError(errmsgShouldntRun, true); |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
188 |
end |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
189 |
else |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
190 |
OutError(errmsgShouldntRun, true) |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
191 |
end |
51 | 192 |
end; |
193 |
||
194 |
procedure ShowMainWindow; |
|
195 |
begin |
|
166
2920ab2bf329
Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents:
161
diff
changeset
|
196 |
if cFullScreen then ParseCommand('fullscr 1') |
2920ab2bf329
Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents:
161
diff
changeset
|
197 |
else ParseCommand('fullscr 0') |
51 | 198 |
end; |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
199 |
|
160 | 200 |
/////////////// |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
201 |
procedure Game; |
51 | 202 |
begin |
203 |
WriteToConsole('Init SDL... '); |
|
204 |
SDLTry(SDL_Init(SDL_INIT_VIDEO) >= 0, true); |
|
205 |
WriteLnToConsole(msgOK); |
|
206 |
||
207 |
WriteToConsole('Init SDL_ttf... '); |
|
208 |
SDLTry(TTF_Init >= 0, true); |
|
209 |
WriteLnToConsole(msgOK); |
|
210 |
||
211 |
ShowMainWindow; |
|
212 |
||
213 |
InitKbdKeyTable; |
|
214 |
InitIPC; |
|
215 |
WriteLnToConsole(msgGettingConfig); |
|
80 | 216 |
|
217 |
LoadLocale(Pathz[ptLocale] + '/' + cLocaleFName); |
|
218 |
||
219 |
SendIPCAndWaitReply('C'); // ask for game config |
|
51 | 220 |
InitTeams; |
221 |
||
222 |
if isSoundEnabled then InitSound; |
|
223 |
InitWorld; |
|
224 |
||
225 |
StoreInit; |
|
226 |
||
227 |
isDeveloperMode:= false; |
|
228 |
||
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
54
diff
changeset
|
229 |
TryDo(InitStepsFlags = cifAllInited, |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
54
diff
changeset
|
230 |
'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
|
231 |
true); |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
54
diff
changeset
|
232 |
|
51 | 233 |
MainLoop |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
234 |
end; |
51 | 235 |
|
160 | 236 |
///////////////////////// |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
237 |
procedure GenLandPreview; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
238 |
begin |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
239 |
InitIPC; |
159 | 240 |
IPCWaitPongEvent; |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
241 |
TryDo(InitStepsFlags = cifRandomize, |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
242 |
'Some parameters not set (flags = ' + inttostr(InitStepsFlags) + ')', |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
243 |
true); |
160 | 244 |
|
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
245 |
GenPreview; |
159 | 246 |
WriteLnToConsole('Sending preview...'); |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
247 |
SendIPCRaw(@Preview, sizeof(Preview)); |
159 | 248 |
WriteLnToConsole('Preview sent, disconnect'); |
158 | 249 |
CloseIPC |
155
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
250 |
end; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
251 |
|
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
252 |
//////////////////////////////////////////////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
253 |
/////////////////////////////// m a i n //////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
254 |
//////////////////////////////////////////////////////////////////////////////// |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
255 |
|
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
256 |
begin |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
257 |
WriteLnToConsole('-= HedgeWars 0.2 =-'); |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
258 |
WriteLnToConsole(' -= by unC0Rr =- '); |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
259 |
GetParams; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
260 |
Randomize; |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
261 |
|
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
262 |
if GameType = gmtLandPreview then GenLandPreview |
401f4ea24715
Engine can generate land preview and send it via IPC
unc0rr
parents:
109
diff
changeset
|
263 |
else Game |
51 | 264 |
end. |