author | unc0rr |
Fri, 14 Sep 2007 20:51:40 +0000 | |
changeset 593 | 1f5e66379a43 |
parent 589 | f382c41f658a |
child 594 | 221ffeb92f30 |
permissions | -rw-r--r-- |
4 | 1 |
(* |
2 |
* Hedgewars, a worms-like game |
|
393 | 3 |
* Copyright (c) 2004-2007 Andrey Korotaev <unC0Rr@gmail.com> |
4 | 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 |
|
4 | 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. |
|
4 | 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 |
|
4 | 17 |
*) |
18 |
||
19 |
function CheckNoTeamOrHH: boolean; |
|
351 | 20 |
var Result: boolean; |
4 | 21 |
begin |
351 | 22 |
Result:= (CurrentTeam = nil) or (CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog].Gear = nil); |
4 | 23 |
{$IFDEF DEBUGFILE} |
24 |
if Result then |
|
25 |
if CurrentTeam = nil then AddFileLog('CONSOLE: CurTeam = nil') |
|
351 | 26 |
else AddFileLog('CONSOLE: CurTeam <> nil, Gear = nil'); |
4 | 27 |
{$ENDIF} |
351 | 28 |
CheckNoTeamOrHH:= Result |
4 | 29 |
end; |
30 |
//////////////////////////////////////////////////////////////////////////////// |
|
31 |
procedure chQuit(var s: shortstring); |
|
32 |
begin |
|
324
f4c109c82a0c
Don't show game stats in case of interrupted by command '/quit' game
unc0rr
parents:
312
diff
changeset
|
33 |
SendIPC('Q'); |
4 | 34 |
GameState:= gsExit |
35 |
end; |
|
36 |
||
205 | 37 |
procedure chCheckProto(var s: shortstring); |
371 | 38 |
var i, c: LongInt; |
205 | 39 |
begin |
40 |
if isDeveloperMode then |
|
41 |
begin |
|
42 |
val(s, i, c); |
|
43 |
if (c <> 0) or (i = 0) then exit; |
|
44 |
TryDo(i <= cNetProtoVersion, 'Protocol version mismatch: engine is too old', true); |
|
45 |
TryDo(i >= cNetProtoVersion, 'Protocol version mismatch: engine is too new', true) |
|
46 |
end |
|
47 |
end; |
|
48 |
||
4 | 49 |
procedure chAddTeam(var s: shortstring); |
549 | 50 |
var Color: Longword; |
4 | 51 |
begin |
145 | 52 |
if isDeveloperMode then |
53 |
begin |
|
534 | 54 |
ParseCommand('ammstore 93919294221912103323', true); |
549 | 55 |
val(s, Color); |
56 |
TryDo(Color <> 0, 'Error: black team color', true); |
|
351 | 57 |
|
549 | 58 |
AddTeam(Color); |
59 |
||
60 |
if GameType in [gmtDemo, gmtSave] then CurrentTeam^.ExtDriven:= true |
|
546 | 61 |
end |
4 | 62 |
end; |
63 |
||
64 |
procedure chTeamLocal(var s: shortstring); |
|
65 |
begin |
|
66 |
if not isDeveloperMode then exit; |
|
67 |
if CurrentTeam = nil then OutError(errmsgIncorrectUse + ' "/rdriven"', true); |
|
351 | 68 |
CurrentTeam^.ExtDriven:= true |
4 | 69 |
end; |
70 |
||
71 |
procedure chName(var id: shortstring); |
|
72 |
var s: shortstring; |
|
73 |
begin |
|
74 |
if CurrentTeam = nil then OutError(errmsgIncorrectUse + ' "/name"', true); |
|
75 |
SplitBySpace(id, s); |
|
76 |
if s[1]='"' then Delete(s, 1, 1); |
|
77 |
if s[byte(s[0])]='"' then Delete(s, byte(s[0]), 1); |
|
351 | 78 |
if id = 'team' then CurrentTeam^.TeamName:= s |
83 | 79 |
else if (id[1] = 'h') and (id[2] = 'h') |
80 |
and (id[3] >= '0') and (id[3] <= chr(ord('0')+cMaxHHIndex)) then |
|
351 | 81 |
CurrentTeam^.Hedgehogs[byte(id[3])-48].Name:= s |
82 |
else OutError(errmsgUnknownVariable + ' "' + id + '"', false) |
|
4 | 83 |
end; |
84 |
||
85 |
procedure chGrave(var s: shortstring); |
|
86 |
begin |
|
87 |
if CurrentTeam = nil then OutError(errmsgIncorrectUse + ' "/grave"', true); |
|
88 |
if s[1]='"' then Delete(s, 1, 1); |
|
89 |
if s[byte(s[0])]='"' then Delete(s, byte(s[0]), 1); |
|
351 | 90 |
CurrentTeam^.GraveName:= s |
4 | 91 |
end; |
92 |
||
93 |
procedure chFort(var s: shortstring); |
|
94 |
begin |
|
95 |
if CurrentTeam = nil then OutError(errmsgIncorrectUse + ' "/grave"', true); |
|
96 |
if s[1]='"' then Delete(s, 1, 1); |
|
97 |
if s[byte(s[0])]='"' then Delete(s, byte(s[0]), 1); |
|
351 | 98 |
CurrentTeam^.FortName:= s |
4 | 99 |
end; |
100 |
||
312 | 101 |
procedure chAddHH(var id: shortstring); |
4 | 102 |
var s: shortstring; |
103 |
Gear: PGear; |
|
104 |
begin |
|
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
105 |
if (not isDeveloperMode) or (CurrentTeam = nil) then exit; |
312 | 106 |
with CurrentTeam^ do |
107 |
begin |
|
108 |
SplitBySpace(id, s); |
|
495 | 109 |
val(id, Hedgehogs[HedgehogsNumber].BotLevel); |
498 | 110 |
Gear:= AddGear(0, 0, gtHedgehog, 0, _0, _0, 0); |
351 | 111 |
Gear^.Hedgehog:= @Hedgehogs[HedgehogsNumber]; |
495 | 112 |
val(s, Gear^.Health); |
351 | 113 |
TryDo(Gear^.Health > 0, 'Invalid hedgehog health', true); |
114 |
PHedgehog(Gear^.Hedgehog)^.Team:= CurrentTeam; |
|
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
115 |
Hedgehogs[HedgehogsNumber].AmmoStore:= TeamsCount - 1; |
312 | 116 |
Hedgehogs[HedgehogsNumber].Gear:= Gear; |
117 |
inc(HedgehogsNumber) |
|
118 |
end |
|
4 | 119 |
end; |
120 |
||
288 | 121 |
procedure chAddAmmoStore(var descr: shortstring); |
122 |
begin |
|
123 |
AddAmmoStore(descr) |
|
124 |
end; |
|
125 |
||
4 | 126 |
procedure chBind(var id: shortstring); |
127 |
var s: shortstring; |
|
371 | 128 |
b: LongInt; |
4 | 129 |
begin |
130 |
if CurrentTeam = nil then exit; |
|
131 |
SplitBySpace(id, s); |
|
132 |
if s[1]='"' then Delete(s, 1, 1); |
|
133 |
if s[byte(s[0])]='"' then Delete(s, byte(s[0]), 1); |
|
134 |
b:= KeyNameToCode(id); |
|
351 | 135 |
if b = 0 then OutError(errmsgUnknownVariable + ' "' + id + '"', false) |
136 |
else CurrentTeam^.Binds[b]:= s |
|
4 | 137 |
end; |
138 |
||
139 |
procedure chLeft_p(var s: shortstring); |
|
140 |
begin |
|
141 |
if CheckNoTeamOrHH then exit; |
|
176 | 142 |
bShowFinger:= false; |
351 | 143 |
if not CurrentTeam^.ExtDriven then SendIPC('L'); |
144 |
with CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog].Gear^ do |
|
4 | 145 |
Message:= Message or gm_Left |
146 |
end; |
|
147 |
||
148 |
procedure chLeft_m(var s: shortstring); |
|
149 |
begin |
|
150 |
if CheckNoTeamOrHH then exit; |
|
351 | 151 |
if not CurrentTeam^.ExtDriven then SendIPC('l'); |
152 |
with CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog].Gear^ do |
|
4 | 153 |
Message:= Message and not gm_Left |
154 |
end; |
|
155 |
||
156 |
procedure chRight_p(var s: shortstring); |
|
157 |
begin |
|
158 |
if CheckNoTeamOrHH then exit; |
|
176 | 159 |
bShowFinger:= false; |
351 | 160 |
if not CurrentTeam^.ExtDriven then SendIPC('R'); |
161 |
with CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog].Gear^ do |
|
4 | 162 |
Message:= Message or gm_Right |
163 |
end; |
|
164 |
||
165 |
procedure chRight_m(var s: shortstring); |
|
166 |
begin |
|
167 |
if CheckNoTeamOrHH then exit; |
|
351 | 168 |
if not CurrentTeam^.ExtDriven then SendIPC('r'); |
169 |
with CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog].Gear^ do |
|
4 | 170 |
Message:= Message and not gm_Right |
171 |
end; |
|
172 |
||
173 |
procedure chUp_p(var s: shortstring); |
|
174 |
begin |
|
175 |
if CheckNoTeamOrHH then exit; |
|
176 | 176 |
bShowFinger:= false; |
351 | 177 |
if not CurrentTeam^.ExtDriven then SendIPC('U'); |
178 |
with CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog].Gear^ do |
|
4 | 179 |
Message:= Message or gm_Up |
180 |
end; |
|
181 |
||
182 |
procedure chUp_m(var s: shortstring); |
|
183 |
begin |
|
184 |
if CheckNoTeamOrHH then exit; |
|
351 | 185 |
if not CurrentTeam^.ExtDriven then SendIPC('u'); |
186 |
with CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog].Gear^ do |
|
4 | 187 |
Message:= Message and not gm_Up |
188 |
end; |
|
189 |
||
190 |
procedure chDown_p(var s: shortstring); |
|
191 |
begin |
|
192 |
if CheckNoTeamOrHH then exit; |
|
176 | 193 |
bShowFinger:= false; |
351 | 194 |
if not CurrentTeam^.ExtDriven then SendIPC('D'); |
195 |
with CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog].Gear^ do |
|
4 | 196 |
Message:= Message or gm_Down |
197 |
end; |
|
198 |
||
199 |
procedure chDown_m(var s: shortstring); |
|
200 |
begin |
|
201 |
if CheckNoTeamOrHH then exit; |
|
351 | 202 |
if not CurrentTeam^.ExtDriven then SendIPC('d'); |
203 |
with CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog].Gear^ do |
|
4 | 204 |
Message:= Message and not gm_Down |
205 |
end; |
|
206 |
||
207 |
procedure chLJump(var s: shortstring); |
|
208 |
begin |
|
209 |
if CheckNoTeamOrHH then exit; |
|
176 | 210 |
bShowFinger:= false; |
351 | 211 |
if not CurrentTeam^.ExtDriven then SendIPC('j'); |
212 |
with CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog].Gear^ do |
|
4 | 213 |
Message:= Message or gm_LJump |
214 |
end; |
|
215 |
||
216 |
procedure chHJump(var s: shortstring); |
|
217 |
begin |
|
218 |
if CheckNoTeamOrHH then exit; |
|
176 | 219 |
bShowFinger:= false; |
351 | 220 |
if not CurrentTeam^.ExtDriven then SendIPC('J'); |
221 |
with CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog].Gear^ do |
|
4 | 222 |
Message:= Message or gm_HJump |
223 |
end; |
|
224 |
||
225 |
procedure chAttack_p(var s: shortstring); |
|
226 |
begin |
|
227 |
if CheckNoTeamOrHH then exit; |
|
176 | 228 |
bShowFinger:= false; |
351 | 229 |
with CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog].Gear^ do |
4 | 230 |
begin |
351 | 231 |
{$IFDEF DEBUGFILE}AddFileLog('/+attack: Gear^.State = '+inttostr(State));{$ENDIF} |
542 | 232 |
if ((State and gstHHDriven) <> 0) and |
233 |
((State and (gstAttacked or gstHHChooseTarget)) = 0) then |
|
4 | 234 |
begin |
351 | 235 |
FollowGear:= CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog].Gear; |
236 |
if not CurrentTeam^.ExtDriven then SendIPC('A'); |
|
4 | 237 |
Message:= Message or gm_Attack |
238 |
end |
|
239 |
end |
|
240 |
end; |
|
241 |
||
242 |
procedure chAttack_m(var s: shortstring); |
|
243 |
begin |
|
244 |
if CheckNoTeamOrHH then exit; |
|
351 | 245 |
with CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog].Gear^ do |
4 | 246 |
begin |
351 | 247 |
if not CurrentTeam^.ExtDriven and |
95 | 248 |
((Message and gm_Attack) <> 0) then SendIPC('a'); |
249 |
Message:= Message and not gm_Attack |
|
4 | 250 |
end |
251 |
end; |
|
252 |
||
253 |
procedure chSwitch(var s: shortstring); |
|
254 |
begin |
|
255 |
if CheckNoTeamOrHH then exit; |
|
351 | 256 |
if not CurrentTeam^.ExtDriven then SendIPC('S'); |
257 |
with CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog].Gear^ do |
|
4 | 258 |
Message:= Message or gm_Switch |
259 |
end; |
|
260 |
||
261 |
procedure chNextTurn(var s: shortstring); |
|
262 |
begin |
|
263 |
if AllInactive then |
|
264 |
begin |
|
351 | 265 |
if not CurrentTeam^.ExtDriven then SendIPC('N'); |
593 | 266 |
TickTrigger(trigTurns); |
4 | 267 |
{$IFDEF DEBUGFILE}AddFileLog('Doing SwitchHedgehog: time '+inttostr(GameTicks));{$ENDIF} |
268 |
SwitchHedgehog; |
|
269 |
end |
|
270 |
end; |
|
271 |
||
272 |
procedure chSay(var s: shortstring); |
|
273 |
begin |
|
274 |
WriteLnToConsole('> ' + s); |
|
275 |
SendIPC('s'+s) |
|
276 |
end; |
|
277 |
||
278 |
procedure chTimer(var s: shortstring); |
|
279 |
begin |
|
280 |
if (s[0] <> #1) or (s[1] < '1') or (s[1] > '5') or (CurrentTeam = nil) then exit; |
|
176 | 281 |
bShowFinger:= false; |
351 | 282 |
with CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog] do |
283 |
if (Ammo^[CurSlot, CurAmmo].Propz and ammoprop_Timerable) <> 0 then |
|
4 | 284 |
begin |
351 | 285 |
Ammo^[CurSlot, CurAmmo].Timer:= 1000 * (byte(s[1]) - 48); |
4 | 286 |
with CurrentTeam^ do |
70 | 287 |
ApplyAmmoChanges(Hedgehogs[CurrHedgehog]); |
351 | 288 |
if not CurrentTeam^.ExtDriven then SendIPC(s); |
4 | 289 |
end |
290 |
end; |
|
291 |
||
292 |
procedure chSlot(var s: shortstring); |
|
293 |
var slot: LongWord; |
|
294 |
caSlot, caAmmo: PLongword; |
|
295 |
begin |
|
95 | 296 |
if (s[0] <> #1) or CheckNoTeamOrHH then exit; |
176 | 297 |
bShowFinger:= false; |
4 | 298 |
slot:= byte(s[1]) - 49; |
10 | 299 |
if slot > cMaxSlotIndex then exit; |
351 | 300 |
if not CurrentTeam^.ExtDriven then SendIPC(char(byte(s[1]) + 79)); |
4 | 301 |
with CurrentTeam^ do |
302 |
begin |
|
303 |
with Hedgehogs[CurrHedgehog] do |
|
304 |
begin |
|
351 | 305 |
if ((Gear^.State and (gstAttacking or gstAttacked)) <> 0) or (AttacksNum > 0) |
431 | 306 |
or ((Gear^.State and gstHHDriven) = 0) then exit; |
307 |
Gear^.Message:= Gear^.Message and not (gm_LJump or gm_HJump); |
|
4 | 308 |
if CurAmmoGear = nil then begin caSlot:= @CurSlot; caAmmo:= @CurAmmo end |
309 |
else begin caSlot:= @AltSlot; caAmmo:= @AltAmmo end; |
|
310 |
if caSlot^ = slot then |
|
311 |
begin |
|
312 |
inc(caAmmo^); |
|
351 | 313 |
if (caAmmo^ > cMaxSlotAmmoIndex) or (Ammo^[slot, caAmmo^].Count = 0) then caAmmo^:= 0 |
4 | 314 |
end else |
351 | 315 |
if Ammo^[slot, 0].Count > 0 then |
4 | 316 |
begin |
317 |
caSlot^:= slot; |
|
318 |
caAmmo^:= 0; |
|
319 |
end; |
|
320 |
end; |
|
70 | 321 |
ApplyAmmoChanges(Hedgehogs[CurrHedgehog]) |
4 | 322 |
end |
323 |
end; |
|
324 |
||
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
325 |
procedure doPut(putX, putY: LongInt; fromAI: boolean); |
4 | 326 |
begin |
327 |
if CheckNoTeamOrHH then exit; |
|
162 | 328 |
if bShowAmmoMenu then |
329 |
begin |
|
330 |
bSelected:= true; |
|
331 |
exit |
|
332 |
end; |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
333 |
|
351 | 334 |
with CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog].Gear^, |
335 |
CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog] do |
|
4 | 336 |
if (State and gstHHChooseTarget) <> 0 then |
337 |
begin |
|
338 |
isCursorVisible:= false; |
|
351 | 339 |
if not CurrentTeam^.ExtDriven then |
4 | 340 |
begin |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
341 |
if fromAI then |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
342 |
begin |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
343 |
TargetPoint.X:= putX; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
344 |
TargetPoint.Y:= putY |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
345 |
end else |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
346 |
begin |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
347 |
SDL_GetMouseState(@TargetPoint.X, @TargetPoint.Y); |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
348 |
dec(TargetPoint.X, WorldDx); |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
349 |
dec(TargetPoint.Y, WorldDy) |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
350 |
end; |
154
5667e6f38704
Network protocol uses integers in network byte order
unc0rr
parents:
145
diff
changeset
|
351 |
SendIPCXY('p', TargetPoint.X, TargetPoint.Y); |
4 | 352 |
end; |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
353 |
State:= State and not gstHHChooseTarget; |
351 | 354 |
if (Ammo^[CurSlot, CurAmmo].Propz and ammoprop_AttackingPut) <> 0 then |
263 | 355 |
Message:= Message or gm_Attack; |
351 | 356 |
end else if CurrentTeam^.ExtDriven then OutError('got /put while not being in choose target mode', false) |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
357 |
|
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
358 |
end; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
359 |
|
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
360 |
procedure chPut(var s: shortstring); |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
361 |
begin |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
362 |
doPut(0, 0, false) |
4 | 363 |
end; |
364 |
||
365 |
procedure chCapture(var s: shortstring); |
|
366 |
begin |
|
367 |
flagMakeCapture:= true |
|
368 |
end; |
|
369 |
||
48 | 370 |
procedure chSkip(var s: shortstring); |
371 |
begin |
|
351 | 372 |
if not CurrentTeam^.ExtDriven then SendIPC(','); |
48 | 373 |
TurnTimeLeft:= 0 |
374 |
end; |
|
375 |
||
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
376 |
procedure chSetMap(var s: shortstring); |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
377 |
begin |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
378 |
if isDeveloperMode then |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
379 |
begin |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
380 |
Pathz[ptMapCurrent]:= Pathz[ptMaps] + '/' + s; |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
381 |
InitStepsFlags:= InitStepsFlags or cifMap |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
382 |
end |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
383 |
end; |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
384 |
|
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
385 |
procedure chSetTheme(var s: shortstring); |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
386 |
begin |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
387 |
if isDeveloperMode then |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
388 |
begin |
80 | 389 |
Pathz[ptCurrTheme]:= Pathz[ptThemes] + '/' + s; |
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
390 |
InitStepsFlags:= InitStepsFlags or cifTheme |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
391 |
end |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
392 |
end; |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
393 |
|
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
394 |
procedure chSetSeed(var s: shortstring); |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
395 |
begin |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
396 |
if isDeveloperMode then |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
397 |
begin |
102 | 398 |
SetRandomSeed(s); |
81 | 399 |
cSeed:= s; |
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
400 |
InitStepsFlags:= InitStepsFlags or cifRandomize |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
401 |
end |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
402 |
end; |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
403 |
|
161 | 404 |
procedure chAmmoMenu(var s: shortstring); |
405 |
begin |
|
406 |
if CheckNoTeamOrHH then exit; |
|
407 |
with CurrentTeam^ do |
|
408 |
with Hedgehogs[CurrHedgehog] do |
|
409 |
begin |
|
162 | 410 |
bSelected:= false; |
161 | 411 |
if bShowAmmoMenu then bShowAmmoMenu:= false |
351 | 412 |
else if ((Gear^.State and (gstAttacking or gstAttacked)) <> 0) or (AttacksNum > 0) |
413 |
or ((Gear^.State and gstHHDriven) = 0) then else bShowAmmoMenu:= true |
|
161 | 414 |
end |
415 |
end; |
|
416 |
||
166
2920ab2bf329
Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents:
162
diff
changeset
|
417 |
procedure chFullScr(var s: shortstring); |
2920ab2bf329
Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents:
162
diff
changeset
|
418 |
var flags: Longword; |
192 | 419 |
{$IFDEF DEBUGFILE} |
420 |
buf: array[byte] of char; |
|
421 |
{$ENDIF} |
|
166
2920ab2bf329
Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents:
162
diff
changeset
|
422 |
begin |
2920ab2bf329
Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents:
162
diff
changeset
|
423 |
if Length(s) = 0 then cFullScreen:= not cFullScreen |
2920ab2bf329
Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents:
162
diff
changeset
|
424 |
else cFullScreen:= s = '1'; |
192 | 425 |
|
358 | 426 |
flags:= SDL_HWSURFACE or SDL_DOUBLEBUF or SDL_HWACCEL; |
166
2920ab2bf329
Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents:
162
diff
changeset
|
427 |
if cFullScreen then flags:= flags or SDL_FULLSCREEN |
2920ab2bf329
Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents:
162
diff
changeset
|
428 |
else SDL_WM_SetCaption('Hedgewars', nil); |
2920ab2bf329
Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents:
162
diff
changeset
|
429 |
SDL_FreeSurface(SDLPrimSurface); |
2920ab2bf329
Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents:
162
diff
changeset
|
430 |
SDLPrimSurface:= SDL_SetVideoMode(cScreenWidth, cScreenHeight, cBits, flags); |
192 | 431 |
|
432 |
{$IFDEF DEBUGFILE} |
|
433 |
AddFileLog('SDL video driver: ' + string(SDL_VideoDriverName(buf, sizeof(buf)))); |
|
434 |
{$ENDIF} |
|
166
2920ab2bf329
Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents:
162
diff
changeset
|
435 |
TryDo(SDLPrimSurface <> nil, errmsgCreateSurface, true); |
351 | 436 |
PixelFormat:= SDLPrimSurface^.format |
166
2920ab2bf329
Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents:
162
diff
changeset
|
437 |
end; |
161 | 438 |
|
175 | 439 |
procedure chVol_p(var s: shortstring); |
174 | 440 |
begin |
175 | 441 |
inc(cVolumeDelta, 3) |
174 | 442 |
end; |
443 |
||
175 | 444 |
procedure chVol_m(var s: shortstring); |
174 | 445 |
begin |
175 | 446 |
dec(cVolumeDelta, 3) |
174 | 447 |
end; |
448 |
||
176 | 449 |
procedure chFindhh(var s: shortstring); |
450 |
begin |
|
451 |
if CheckNoTeamOrHH then exit; |
|
452 |
bShowFinger:= true; |
|
351 | 453 |
FollowGear:= CurrentTeam^.Hedgehogs[CurrentTeam^.CurrHedgehog].Gear |
176 | 454 |
end; |
455 |
||
281
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
263
diff
changeset
|
456 |
procedure chPause(var s: shortstring); |
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
263
diff
changeset
|
457 |
begin |
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
263
diff
changeset
|
458 |
isPaused:= not isPaused; |
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
263
diff
changeset
|
459 |
SDL_ShowCursor(ord(isPaused)) |
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
263
diff
changeset
|
460 |
end; |
539
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
534
diff
changeset
|
461 |
|
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
534
diff
changeset
|
462 |
procedure chRotateMask(var s: shortstring); |
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
534
diff
changeset
|
463 |
const map: array[0..7] of byte = (7,4,0,5,2,1,0,3); |
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
534
diff
changeset
|
464 |
begin |
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
534
diff
changeset
|
465 |
cTagsMask:= map[cTagsMask] |
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
534
diff
changeset
|
466 |
end; |
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
534
diff
changeset
|
467 |
|
589 | 468 |
procedure chAddTrigger(var s: shortstring); |
593 | 469 |
var t: LongWord; |
589 | 470 |
begin |
471 |
val(s, t); |
|
593 | 472 |
AddTrigger(t, 1) |
589 | 473 |
end; |