author | unc0rr |
Wed, 07 Oct 2009 17:01:40 +0000 | |
changeset 2408 | 41ebdb5f1e6e |
parent 2407 | 9f413bd5150e |
child 2428 | 6800f8aa0184 |
permissions | -rw-r--r-- |
4 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
1656
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
3 |
* Copyright (c) 2004-2009 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 |
602 | 22 |
Result:= (CurrentTeam = nil) or (CurrentHedgehog^.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); |
|
1022 | 32 |
const prevGState: TGameState = gsConfirm; |
4 | 33 |
begin |
1022 | 34 |
if GameState <> gsConfirm then |
35 |
begin |
|
36 |
prevGState:= GameState; |
|
37 |
GameState:= gsConfirm |
|
38 |
end else |
|
39 |
GameState:= prevGState |
|
40 |
end; |
|
41 |
||
42 |
procedure chConfirm(var s: shortstring); |
|
43 |
begin |
|
44 |
if GameState = gsConfirm then |
|
45 |
begin |
|
46 |
SendIPC('Q'); |
|
47 |
GameState:= gsExit |
|
48 |
end |
|
2130
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
49 |
else |
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
50 |
begin |
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
51 |
GameState:= gsChat; |
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
52 |
KeyPressChat(27); |
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
53 |
KeyPressChat(47); |
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
54 |
KeyPressChat(116); |
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
55 |
KeyPressChat(101); |
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
56 |
KeyPressChat(97); |
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
57 |
KeyPressChat(109); |
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
58 |
KeyPressChat(32) |
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
59 |
end |
4 | 60 |
end; |
61 |
||
205 | 62 |
procedure chCheckProto(var s: shortstring); |
371 | 63 |
var i, c: LongInt; |
205 | 64 |
begin |
65 |
if isDeveloperMode then |
|
66 |
begin |
|
67 |
val(s, i, c); |
|
68 |
if (c <> 0) or (i = 0) then exit; |
|
69 |
TryDo(i <= cNetProtoVersion, 'Protocol version mismatch: engine is too old', true); |
|
70 |
TryDo(i >= cNetProtoVersion, 'Protocol version mismatch: engine is too new', true) |
|
71 |
end |
|
72 |
end; |
|
73 |
||
4 | 74 |
procedure chAddTeam(var s: shortstring); |
549 | 75 |
var Color: Longword; |
605 | 76 |
ts: shortstring; |
4 | 77 |
begin |
145 | 78 |
if isDeveloperMode then |
79 |
begin |
|
605 | 80 |
SplitBySpace(s, ts); |
549 | 81 |
val(s, Color); |
82 |
TryDo(Color <> 0, 'Error: black team color', true); |
|
351 | 83 |
|
764
7513452b1d51
Now game looks almost like it did before switching to OpenGL
unc0rr
parents:
753
diff
changeset
|
84 |
Color:= Color or $FF000000; |
7513452b1d51
Now game looks almost like it did before switching to OpenGL
unc0rr
parents:
753
diff
changeset
|
85 |
|
549 | 86 |
AddTeam(Color); |
605 | 87 |
CurrentTeam^.TeamName:= ts; |
1654 | 88 |
if GameType in [gmtDemo, gmtSave] then CurrentTeam^.ExtDriven:= true; |
89 |
||
90 |
CurrentTeam^.voicepack:= AskForVoicepack('Default') |
|
546 | 91 |
end |
4 | 92 |
end; |
93 |
||
94 |
procedure chTeamLocal(var s: shortstring); |
|
95 |
begin |
|
96 |
if not isDeveloperMode then exit; |
|
97 |
if CurrentTeam = nil then OutError(errmsgIncorrectUse + ' "/rdriven"', true); |
|
351 | 98 |
CurrentTeam^.ExtDriven:= true |
4 | 99 |
end; |
100 |
||
101 |
procedure chGrave(var s: shortstring); |
|
102 |
begin |
|
103 |
if CurrentTeam = nil then OutError(errmsgIncorrectUse + ' "/grave"', true); |
|
104 |
if s[1]='"' then Delete(s, 1, 1); |
|
105 |
if s[byte(s[0])]='"' then Delete(s, byte(s[0]), 1); |
|
351 | 106 |
CurrentTeam^.GraveName:= s |
4 | 107 |
end; |
108 |
||
109 |
procedure chFort(var s: shortstring); |
|
110 |
begin |
|
764
7513452b1d51
Now game looks almost like it did before switching to OpenGL
unc0rr
parents:
753
diff
changeset
|
111 |
if CurrentTeam = nil then OutError(errmsgIncorrectUse + ' "/fort"', true); |
4 | 112 |
if s[1]='"' then Delete(s, 1, 1); |
113 |
if s[byte(s[0])]='"' then Delete(s, byte(s[0]), 1); |
|
351 | 114 |
CurrentTeam^.FortName:= s |
4 | 115 |
end; |
116 |
||
1654 | 117 |
procedure chVoicepack(var s: shortstring); |
118 |
begin |
|
119 |
if CurrentTeam = nil then OutError(errmsgIncorrectUse + ' "/voicepack"', true); |
|
120 |
if s[1]='"' then Delete(s, 1, 1); |
|
121 |
if s[byte(s[0])]='"' then Delete(s, byte(s[0]), 1); |
|
122 |
CurrentTeam^.voicepack:= AskForVoicepack(s) |
|
123 |
end; |
|
124 |
||
312 | 125 |
procedure chAddHH(var id: shortstring); |
4 | 126 |
var s: shortstring; |
127 |
Gear: PGear; |
|
128 |
begin |
|
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
129 |
if (not isDeveloperMode) or (CurrentTeam = nil) then exit; |
312 | 130 |
with CurrentTeam^ do |
1242 | 131 |
begin |
132 |
SplitBySpace(id, s); |
|
133 |
CurrentHedgehog:= @Hedgehogs[HedgehogsNumber]; |
|
134 |
val(id, CurrentHedgehog^.BotLevel); |
|
135 |
Gear:= AddGear(0, 0, gtHedgehog, 0, _0, _0, 0); |
|
136 |
SplitBySpace(s, id); |
|
137 |
val(s, Gear^.Health); |
|
138 |
TryDo(Gear^.Health > 0, 'Invalid hedgehog health', true); |
|
139 |
PHedgehog(Gear^.Hedgehog)^.Team:= CurrentTeam; |
|
140 |
CurrentHedgehog^.AmmoStore:= TeamsCount - 1; // FIXME HACK to get ammostores work |
|
141 |
CurrentHedgehog^.Gear:= Gear; |
|
142 |
CurrentHedgehog^.Name:= id; |
|
143 |
inc(HedgehogsNumber) |
|
144 |
end |
|
145 |
end; |
|
146 |
||
147 |
procedure chSetHat(var s: shortstring); |
|
148 |
begin |
|
149 |
if (not isDeveloperMode) or (CurrentTeam = nil) then exit; |
|
150 |
with CurrentTeam^ do |
|
151 |
if s = '' then |
|
152 |
CurrentHedgehog^.Hat:= 'NoHat' |
|
153 |
else |
|
154 |
CurrentHedgehog^.Hat:= s |
|
4 | 155 |
end; |
156 |
||
604
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
157 |
procedure chSetHHCoords(var x: shortstring); |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
158 |
var y: shortstring; |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
159 |
t: Longint; |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
160 |
begin |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
161 |
if (not isDeveloperMode) or (CurrentHedgehog = nil) or (CurrentHedgehog^.Gear = nil) then exit; |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
162 |
SplitBySpace(x, y); |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
163 |
val(x, t); |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
164 |
CurrentHedgehog^.Gear^.X:= int2hwFloat(t); |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
165 |
val(y, t); |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
166 |
CurrentHedgehog^.Gear^.Y:= int2hwFloat(t) |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
167 |
end; |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
168 |
|
288 | 169 |
procedure chAddAmmoStore(var descr: shortstring); |
170 |
begin |
|
171 |
AddAmmoStore(descr) |
|
172 |
end; |
|
173 |
||
4 | 174 |
procedure chBind(var id: shortstring); |
175 |
var s: shortstring; |
|
371 | 176 |
b: LongInt; |
4 | 177 |
begin |
178 |
if CurrentTeam = nil then exit; |
|
179 |
SplitBySpace(id, s); |
|
180 |
if s[1]='"' then Delete(s, 1, 1); |
|
181 |
if s[byte(s[0])]='"' then Delete(s, byte(s[0]), 1); |
|
182 |
b:= KeyNameToCode(id); |
|
351 | 183 |
if b = 0 then OutError(errmsgUnknownVariable + ' "' + id + '"', false) |
184 |
else CurrentTeam^.Binds[b]:= s |
|
4 | 185 |
end; |
186 |
||
187 |
procedure chLeft_p(var s: shortstring); |
|
188 |
begin |
|
189 |
if CheckNoTeamOrHH then exit; |
|
176 | 190 |
bShowFinger:= false; |
351 | 191 |
if not CurrentTeam^.ExtDriven then SendIPC('L'); |
602 | 192 |
with CurrentHedgehog^.Gear^ do |
4 | 193 |
Message:= Message or gm_Left |
194 |
end; |
|
195 |
||
196 |
procedure chLeft_m(var s: shortstring); |
|
197 |
begin |
|
198 |
if CheckNoTeamOrHH then exit; |
|
351 | 199 |
if not CurrentTeam^.ExtDriven then SendIPC('l'); |
602 | 200 |
with CurrentHedgehog^.Gear^ do |
4 | 201 |
Message:= Message and not gm_Left |
202 |
end; |
|
203 |
||
204 |
procedure chRight_p(var s: shortstring); |
|
205 |
begin |
|
206 |
if CheckNoTeamOrHH then exit; |
|
176 | 207 |
bShowFinger:= false; |
351 | 208 |
if not CurrentTeam^.ExtDriven then SendIPC('R'); |
602 | 209 |
with CurrentHedgehog^.Gear^ do |
4 | 210 |
Message:= Message or gm_Right |
211 |
end; |
|
212 |
||
213 |
procedure chRight_m(var s: shortstring); |
|
214 |
begin |
|
215 |
if CheckNoTeamOrHH then exit; |
|
351 | 216 |
if not CurrentTeam^.ExtDriven then SendIPC('r'); |
602 | 217 |
with CurrentHedgehog^.Gear^ do |
4 | 218 |
Message:= Message and not gm_Right |
219 |
end; |
|
220 |
||
221 |
procedure chUp_p(var s: shortstring); |
|
222 |
begin |
|
223 |
if CheckNoTeamOrHH then exit; |
|
176 | 224 |
bShowFinger:= false; |
351 | 225 |
if not CurrentTeam^.ExtDriven then SendIPC('U'); |
602 | 226 |
with CurrentHedgehog^.Gear^ do |
4 | 227 |
Message:= Message or gm_Up |
228 |
end; |
|
229 |
||
230 |
procedure chUp_m(var s: shortstring); |
|
231 |
begin |
|
232 |
if CheckNoTeamOrHH then exit; |
|
351 | 233 |
if not CurrentTeam^.ExtDriven then SendIPC('u'); |
602 | 234 |
with CurrentHedgehog^.Gear^ do |
4 | 235 |
Message:= Message and not gm_Up |
236 |
end; |
|
237 |
||
238 |
procedure chDown_p(var s: shortstring); |
|
239 |
begin |
|
240 |
if CheckNoTeamOrHH then exit; |
|
176 | 241 |
bShowFinger:= false; |
351 | 242 |
if not CurrentTeam^.ExtDriven then SendIPC('D'); |
602 | 243 |
with CurrentHedgehog^.Gear^ do |
4 | 244 |
Message:= Message or gm_Down |
245 |
end; |
|
246 |
||
247 |
procedure chDown_m(var s: shortstring); |
|
248 |
begin |
|
249 |
if CheckNoTeamOrHH then exit; |
|
351 | 250 |
if not CurrentTeam^.ExtDriven then SendIPC('d'); |
602 | 251 |
with CurrentHedgehog^.Gear^ do |
4 | 252 |
Message:= Message and not gm_Down |
253 |
end; |
|
254 |
||
1639 | 255 |
procedure chPrecise_p(var s: shortstring); |
256 |
begin |
|
257 |
if CheckNoTeamOrHH then exit; |
|
258 |
bShowFinger:= false; |
|
259 |
if not CurrentTeam^.ExtDriven then SendIPC('Z'); |
|
260 |
with CurrentHedgehog^.Gear^ do |
|
261 |
Message:= Message or gm_Precise |
|
262 |
end; |
|
263 |
||
264 |
procedure chPrecise_m(var s: shortstring); |
|
265 |
begin |
|
266 |
if CheckNoTeamOrHH then exit; |
|
267 |
if not CurrentTeam^.ExtDriven then SendIPC('z'); |
|
268 |
with CurrentHedgehog^.Gear^ do |
|
269 |
Message:= Message and not gm_Precise |
|
270 |
end; |
|
271 |
||
4 | 272 |
procedure chLJump(var s: shortstring); |
273 |
begin |
|
274 |
if CheckNoTeamOrHH then exit; |
|
176 | 275 |
bShowFinger:= false; |
351 | 276 |
if not CurrentTeam^.ExtDriven then SendIPC('j'); |
602 | 277 |
with CurrentHedgehog^.Gear^ do |
4 | 278 |
Message:= Message or gm_LJump |
279 |
end; |
|
280 |
||
281 |
procedure chHJump(var s: shortstring); |
|
282 |
begin |
|
283 |
if CheckNoTeamOrHH then exit; |
|
176 | 284 |
bShowFinger:= false; |
351 | 285 |
if not CurrentTeam^.ExtDriven then SendIPC('J'); |
602 | 286 |
with CurrentHedgehog^.Gear^ do |
4 | 287 |
Message:= Message or gm_HJump |
288 |
end; |
|
289 |
||
290 |
procedure chAttack_p(var s: shortstring); |
|
291 |
begin |
|
292 |
if CheckNoTeamOrHH then exit; |
|
176 | 293 |
bShowFinger:= false; |
602 | 294 |
with CurrentHedgehog^.Gear^ do |
4 | 295 |
begin |
2079 | 296 |
{$IFDEF DEBUGFILE}AddFileLog('/+attack: hedgehog''s Gear^.State = '+inttostr(State));{$ENDIF} |
929
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
927
diff
changeset
|
297 |
if ((State and gstHHDriven) <> 0) then |
4 | 298 |
begin |
602 | 299 |
FollowGear:= CurrentHedgehog^.Gear; |
351 | 300 |
if not CurrentTeam^.ExtDriven then SendIPC('A'); |
4 | 301 |
Message:= Message or gm_Attack |
302 |
end |
|
303 |
end |
|
304 |
end; |
|
305 |
||
306 |
procedure chAttack_m(var s: shortstring); |
|
307 |
begin |
|
308 |
if CheckNoTeamOrHH then exit; |
|
602 | 309 |
with CurrentHedgehog^.Gear^ do |
4 | 310 |
begin |
351 | 311 |
if not CurrentTeam^.ExtDriven and |
95 | 312 |
((Message and gm_Attack) <> 0) then SendIPC('a'); |
313 |
Message:= Message and not gm_Attack |
|
4 | 314 |
end |
315 |
end; |
|
316 |
||
317 |
procedure chSwitch(var s: shortstring); |
|
318 |
begin |
|
319 |
if CheckNoTeamOrHH then exit; |
|
351 | 320 |
if not CurrentTeam^.ExtDriven then SendIPC('S'); |
602 | 321 |
with CurrentHedgehog^.Gear^ do |
4 | 322 |
Message:= Message or gm_Switch |
323 |
end; |
|
324 |
||
325 |
procedure chNextTurn(var s: shortstring); |
|
326 |
begin |
|
2045
b0588498bc3a
- Fix network (my crappy fault, triggered by nemo's patch)
unc0rr
parents:
2042
diff
changeset
|
327 |
TryDo(AllInactive, '/nextturn called when not all gears are inactive', true); |
2046 | 328 |
|
2045
b0588498bc3a
- Fix network (my crappy fault, triggered by nemo's patch)
unc0rr
parents:
2042
diff
changeset
|
329 |
if not CurrentTeam^.ExtDriven then SendIPC('N'); |
b0588498bc3a
- Fix network (my crappy fault, triggered by nemo's patch)
unc0rr
parents:
2042
diff
changeset
|
330 |
TickTrigger(trigTurns); |
b0588498bc3a
- Fix network (my crappy fault, triggered by nemo's patch)
unc0rr
parents:
2042
diff
changeset
|
331 |
{$IFDEF DEBUGFILE}AddFileLog('Doing SwitchHedgehog: time '+inttostr(GameTicks));{$ENDIF} |
4 | 332 |
end; |
333 |
||
334 |
procedure chSay(var s: shortstring); |
|
335 |
begin |
|
1356 | 336 |
SendIPC('s' + s); |
1378 | 337 |
|
338 |
if copy(s, 1, 4) = '/me ' then |
|
2396 | 339 |
s:= #2'* ' + UserNick + ' ' + copy(s, 5, Length(s) - 4) |
1378 | 340 |
else |
2396 | 341 |
s:= #1 + UserNick + ': ' + s; |
1378 | 342 |
|
1356 | 343 |
AddChatString(s) |
4 | 344 |
end; |
345 |
||
2124 | 346 |
procedure chTeamSay(var s: shortstring); |
347 |
begin |
|
348 |
SendIPC('b' + s); |
|
349 |
||
2403 | 350 |
s:= #4 + UserNick + '(team): ' + s; |
2124 | 351 |
|
2396 | 352 |
AddChatString(s) |
2124 | 353 |
end; |
354 |
||
4 | 355 |
procedure chTimer(var s: shortstring); |
356 |
begin |
|
2314 | 357 |
if (s[0] <> #1) or (s[1] < '1') or (s[1] > '5') or CheckNoTeamOrHH then exit; |
176 | 358 |
bShowFinger:= false; |
2314 | 359 |
|
926
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
917
diff
changeset
|
360 |
if not CurrentTeam^.ExtDriven then SendIPC(s); |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
917
diff
changeset
|
361 |
with CurrentHedgehog^.Gear^ do |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
917
diff
changeset
|
362 |
begin |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
917
diff
changeset
|
363 |
Message:= Message or gm_Timer; |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
917
diff
changeset
|
364 |
MsgParam:= byte(s[1]) - ord('0') |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
917
diff
changeset
|
365 |
end |
4 | 366 |
end; |
367 |
||
368 |
procedure chSlot(var s: shortstring); |
|
369 |
var slot: LongWord; |
|
370 |
begin |
|
95 | 371 |
if (s[0] <> #1) or CheckNoTeamOrHH then exit; |
176 | 372 |
bShowFinger:= false; |
4 | 373 |
slot:= byte(s[1]) - 49; |
10 | 374 |
if slot > cMaxSlotIndex then exit; |
351 | 375 |
if not CurrentTeam^.ExtDriven then SendIPC(char(byte(s[1]) + 79)); |
783 | 376 |
with CurrentHedgehog^.Gear^ do |
4 | 377 |
begin |
783 | 378 |
Message:= Message or gm_Slot; |
379 |
MsgParam:= slot |
|
380 |
end |
|
381 |
end; |
|
382 |
||
383 |
procedure chSetWeapon(var s: shortstring); |
|
384 |
begin |
|
385 |
if (s[0] <> #1) or CheckNoTeamOrHH then exit; |
|
784 | 386 |
|
1850 | 387 |
if TAmmoType(s[1]) > High(TAmmoType) then exit; |
784 | 388 |
|
389 |
if not CurrentTeam^.ExtDriven then SendIPC('w' + s); |
|
390 |
||
783 | 391 |
with CurrentHedgehog^.Gear^ do |
392 |
begin |
|
393 |
Message:= Message or gm_Weapon; |
|
1850 | 394 |
MsgParam:= byte(s[1]) |
4 | 395 |
end |
396 |
end; |
|
397 |
||
1035 | 398 |
procedure chTaunt(var s: shortstring); |
399 |
begin |
|
400 |
if (s[0] <> #1) or CheckNoTeamOrHH then exit; |
|
401 |
||
402 |
if TWave(s[1]) > High(TWave) then exit; |
|
403 |
||
404 |
if not CurrentTeam^.ExtDriven then SendIPC('t' + s); |
|
405 |
||
406 |
with CurrentHedgehog^.Gear^ do |
|
407 |
begin |
|
408 |
Message:= Message or gm_Animate; |
|
409 |
MsgParam:= byte(s[1]) |
|
410 |
end |
|
411 |
end; |
|
412 |
||
2017 | 413 |
procedure chHogSay(var s: shortstring); |
2042
905c554d62e6
Move Speech to visual gears. This checkin CRASHES on deletion of visual gear outside the doStep
nemo
parents:
2022
diff
changeset
|
414 |
var Gear: PVisualGear; |
2017 | 415 |
text: shortstring; |
416 |
begin |
|
417 |
text:= copy(s, 2, Length(s)-1); |
|
2110 | 418 |
if CheckNoTeamOrHH |
2111 | 419 |
or ((CurrentHedgehog^.Gear^.State and gstHHDriven) = 0) then |
2017 | 420 |
begin |
421 |
chSay(text); |
|
422 |
exit |
|
423 |
end; |
|
424 |
||
425 |
if not CurrentTeam^.ExtDriven then SendIPC('h' + s); |
|
2042
905c554d62e6
Move Speech to visual gears. This checkin CRASHES on deletion of visual gear outside the doStep
nemo
parents:
2022
diff
changeset
|
426 |
|
2017 | 427 |
if byte(s[1]) < 4 then |
428 |
begin |
|
2042
905c554d62e6
Move Speech to visual gears. This checkin CRASHES on deletion of visual gear outside the doStep
nemo
parents:
2022
diff
changeset
|
429 |
Gear:= AddVisualGear(0, 0, vgtSpeechBubble); |
2114
9a8ccc7bc3d8
Fix crash caused by speechbubbles when restoring from save or joining already started net game
unc0rr
parents:
2111
diff
changeset
|
430 |
if Gear <> nil then |
9a8ccc7bc3d8
Fix crash caused by speechbubbles when restoring from save or joining already started net game
unc0rr
parents:
2111
diff
changeset
|
431 |
begin |
9a8ccc7bc3d8
Fix crash caused by speechbubbles when restoring from save or joining already started net game
unc0rr
parents:
2111
diff
changeset
|
432 |
Gear^.Hedgehog:= CurrentHedgehog; |
9a8ccc7bc3d8
Fix crash caused by speechbubbles when restoring from save or joining already started net game
unc0rr
parents:
2111
diff
changeset
|
433 |
Gear^.Text:= text; |
9a8ccc7bc3d8
Fix crash caused by speechbubbles when restoring from save or joining already started net game
unc0rr
parents:
2111
diff
changeset
|
434 |
Gear^.FrameTicks:= byte(s[1]) |
9a8ccc7bc3d8
Fix crash caused by speechbubbles when restoring from save or joining already started net game
unc0rr
parents:
2111
diff
changeset
|
435 |
end |
2017 | 436 |
end |
437 |
else |
|
438 |
begin |
|
2022 | 439 |
SpeechType:= byte(s[1])-3; |
2017 | 440 |
SpeechText:= text |
441 |
end; |
|
2042
905c554d62e6
Move Speech to visual gears. This checkin CRASHES on deletion of visual gear outside the doStep
nemo
parents:
2022
diff
changeset
|
442 |
|
2017 | 443 |
end; |
444 |
||
1821
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
445 |
procedure chNewGrave; |
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
446 |
begin |
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
447 |
if CheckNoTeamOrHH then exit; |
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
448 |
|
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
449 |
if not CurrentTeam^.ExtDriven then SendIPC('g'); |
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
450 |
|
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
451 |
AddGear(hwRound(CurrentHedgehog^.Gear^.X), hwRound(CurrentHedgehog^.Gear^.Y), gtGrave, 0, _0, _0, 0) |
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
452 |
end; |
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
453 |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
454 |
procedure doPut(putX, putY: LongInt; fromAI: boolean); |
4 | 455 |
begin |
456 |
if CheckNoTeamOrHH then exit; |
|
162 | 457 |
if bShowAmmoMenu then |
2407
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
458 |
begin |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
459 |
bSelected:= true; |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
460 |
exit |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
461 |
end; |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
462 |
|
602 | 463 |
with CurrentHedgehog^.Gear^, |
2407
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
464 |
CurrentHedgehog^ do |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
465 |
if (State and gstHHChooseTarget) <> 0 then |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
466 |
begin |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
467 |
isCursorVisible:= false; |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
468 |
if not CurrentTeam^.ExtDriven then |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
469 |
begin |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
470 |
if fromAI then |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
471 |
begin |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
472 |
TargetPoint.X:= putX; |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
473 |
TargetPoint.Y:= putY |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
474 |
end else |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
475 |
begin |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
476 |
TargetPoint.X:= CursorPoint.X - WorldDx; |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
477 |
TargetPoint.Y:= cScreenHeight - CursorPoint.Y - WorldDy; |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
478 |
end; |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
479 |
SendIPCXY('p', TargetPoint.X, TargetPoint.Y); |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
480 |
end; |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
481 |
State:= State and not gstHHChooseTarget; |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
482 |
if (Ammo^[CurSlot, CurAmmo].Propz and ammoprop_AttackingPut) <> 0 then |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
483 |
Message:= Message or gm_Attack; |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
484 |
end |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
485 |
else |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
486 |
if CurrentTeam^.ExtDriven then |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
487 |
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
|
488 |
end; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
489 |
|
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
490 |
procedure chPut(var s: shortstring); |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
491 |
begin |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
492 |
doPut(0, 0, false) |
4 | 493 |
end; |
494 |
||
495 |
procedure chCapture(var s: shortstring); |
|
496 |
begin |
|
497 |
flagMakeCapture:= true |
|
498 |
end; |
|
499 |
||
48 | 500 |
procedure chSkip(var s: shortstring); |
501 |
begin |
|
351 | 502 |
if not CurrentTeam^.ExtDriven then SendIPC(','); |
871 | 503 |
uStats.Skipped; |
917 | 504 |
skipFlag:= true |
48 | 505 |
end; |
506 |
||
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
507 |
procedure chSetMap(var s: shortstring); |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
508 |
begin |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
509 |
if isDeveloperMode then |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
510 |
begin |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
511 |
Pathz[ptMapCurrent]:= Pathz[ptMaps] + '/' + s; |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
512 |
InitStepsFlags:= InitStepsFlags or cifMap |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
513 |
end |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
514 |
end; |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
515 |
|
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
516 |
procedure chSetTheme(var s: shortstring); |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
517 |
begin |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
518 |
if isDeveloperMode then |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
519 |
begin |
80 | 520 |
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
|
521 |
InitStepsFlags:= InitStepsFlags or cifTheme |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
522 |
end |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
523 |
end; |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
524 |
|
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
525 |
procedure chSetSeed(var s: shortstring); |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
526 |
begin |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
527 |
if isDeveloperMode then |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
528 |
begin |
102 | 529 |
SetRandomSeed(s); |
81 | 530 |
cSeed:= s; |
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
531 |
InitStepsFlags:= InitStepsFlags or cifRandomize |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
532 |
end |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
533 |
end; |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
534 |
|
161 | 535 |
procedure chAmmoMenu(var s: shortstring); |
536 |
begin |
|
537 |
if CheckNoTeamOrHH then exit; |
|
538 |
with CurrentTeam^ do |
|
539 |
with Hedgehogs[CurrHedgehog] do |
|
540 |
begin |
|
162 | 541 |
bSelected:= false; |
682 | 542 |
|
161 | 543 |
if bShowAmmoMenu then bShowAmmoMenu:= false |
351 | 544 |
else if ((Gear^.State and (gstAttacking or gstAttacked)) <> 0) or (AttacksNum > 0) |
545 |
or ((Gear^.State and gstHHDriven) = 0) then else bShowAmmoMenu:= true |
|
161 | 546 |
end |
547 |
end; |
|
548 |
||
166
2920ab2bf329
Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents:
162
diff
changeset
|
549 |
procedure chFullScr(var s: shortstring); |
2920ab2bf329
Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents:
162
diff
changeset
|
550 |
var flags: Longword; |
192 | 551 |
{$IFDEF DEBUGFILE} |
552 |
buf: array[byte] of char; |
|
553 |
{$ENDIF} |
|
166
2920ab2bf329
Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents:
162
diff
changeset
|
554 |
begin |
1051
dfdd5dfe97d4
Enable fullscreen switching back, now it's bound on F12
unc0rr
parents:
1035
diff
changeset
|
555 |
if Length(s) = 0 then cFullScreen:= not cFullScreen |
166
2920ab2bf329
Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents:
162
diff
changeset
|
556 |
else cFullScreen:= s = '1'; |
192 | 557 |
|
905 | 558 |
{$IFDEF DEBUGFILE} |
559 |
AddFileLog('Prepare to change video parameters...'); |
|
560 |
{$ENDIF} |
|
2253 | 561 |
|
753 | 562 |
SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1); |
2253 | 563 |
{$IFDEF IPHONEOS} |
564 |
//remove these if they cause incompatibility |
|
565 |
SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 0); |
|
566 |
SDL_GL_SetAttribute(SDL_GL_RETAINED_BACKING, 1); |
|
567 |
SDL_GL_SetAttribute(SDL_GL_DEPTH_SIZE, 0); |
|
568 |
{$ENDIF} |
|
753 | 569 |
|
1127 | 570 |
flags:= SDL_OPENGL;// or SDL_RESIZABLE; |
1121
d595dc56b4f3
Remember initial resolution settings to use when switching to fullscreen mode
unc0rr
parents:
1120
diff
changeset
|
571 |
if cFullScreen then |
d595dc56b4f3
Remember initial resolution settings to use when switching to fullscreen mode
unc0rr
parents:
1120
diff
changeset
|
572 |
begin |
d595dc56b4f3
Remember initial resolution settings to use when switching to fullscreen mode
unc0rr
parents:
1120
diff
changeset
|
573 |
flags:= flags or SDL_FULLSCREEN; |
d595dc56b4f3
Remember initial resolution settings to use when switching to fullscreen mode
unc0rr
parents:
1120
diff
changeset
|
574 |
cScreenWidth:= cInitWidth; |
d595dc56b4f3
Remember initial resolution settings to use when switching to fullscreen mode
unc0rr
parents:
1120
diff
changeset
|
575 |
cScreenHeight:= cInitHeight |
2351
a4a17b8df591
Set window caption even in fullscreen mode (suggested by Smaxx)
unc0rr
parents:
2314
diff
changeset
|
576 |
end; |
a4a17b8df591
Set window caption even in fullscreen mode (suggested by Smaxx)
unc0rr
parents:
2314
diff
changeset
|
577 |
|
a4a17b8df591
Set window caption even in fullscreen mode (suggested by Smaxx)
unc0rr
parents:
2314
diff
changeset
|
578 |
SDL_WM_SetCaption('Hedgewars', nil); |
905 | 579 |
{$IFDEF DEBUGFILE} |
580 |
AddFileLog('Freeing old primary surface...'); |
|
581 |
{$ENDIF} |
|
1525 | 582 |
if SDLPrimSurface <> nil then SDL_FreeSurface(SDLPrimSurface); |
904 | 583 |
|
1836 | 584 |
{$IFDEF DARWIN} |
2240
7ce9e6b7be3b
-Removal of older WAV files, now useless thanks to OpenAL
koda
parents:
2205
diff
changeset
|
585 |
//remove the topbar from Mac and iPhone |
1836 | 586 |
flags:= flags or SDL_NOFRAME; |
587 |
{$ENDIF} |
|
2240
7ce9e6b7be3b
-Removal of older WAV files, now useless thanks to OpenAL
koda
parents:
2205
diff
changeset
|
588 |
|
166
2920ab2bf329
Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents:
162
diff
changeset
|
589 |
SDLPrimSurface:= SDL_SetVideoMode(cScreenWidth, cScreenHeight, cBits, flags); |
904 | 590 |
SDLTry(SDLPrimSurface <> nil, true); |
192 | 591 |
|
905 | 592 |
{$IFDEF DEBUGFILE} |
593 |
AddFileLog('Setting up OpenGL...'); |
|
594 |
{$ENDIF} |
|
753 | 595 |
SetupOpenGL(); |
596 |
||
192 | 597 |
{$IFDEF DEBUGFILE} |
598 |
AddFileLog('SDL video driver: ' + string(SDL_VideoDriverName(buf, sizeof(buf)))); |
|
599 |
{$ENDIF} |
|
351 | 600 |
PixelFormat:= SDLPrimSurface^.format |
166
2920ab2bf329
Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents:
162
diff
changeset
|
601 |
end; |
161 | 602 |
|
175 | 603 |
procedure chVol_p(var s: shortstring); |
174 | 604 |
begin |
175 | 605 |
inc(cVolumeDelta, 3) |
174 | 606 |
end; |
607 |
||
175 | 608 |
procedure chVol_m(var s: shortstring); |
174 | 609 |
begin |
175 | 610 |
dec(cVolumeDelta, 3) |
174 | 611 |
end; |
612 |
||
176 | 613 |
procedure chFindhh(var s: shortstring); |
614 |
begin |
|
615 |
if CheckNoTeamOrHH then exit; |
|
616 |
bShowFinger:= true; |
|
602 | 617 |
FollowGear:= CurrentHedgehog^.Gear |
176 | 618 |
end; |
619 |
||
281
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
263
diff
changeset
|
620 |
procedure chPause(var s: shortstring); |
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
263
diff
changeset
|
621 |
begin |
1743 | 622 |
if gameType <> gmtNet then |
623 |
isPaused:= not isPaused; |
|
281
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
263
diff
changeset
|
624 |
SDL_ShowCursor(ord(isPaused)) |
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
263
diff
changeset
|
625 |
end; |
539
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
534
diff
changeset
|
626 |
|
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
534
diff
changeset
|
627 |
procedure chRotateMask(var s: shortstring); |
691 | 628 |
const map: array[0..7] of byte = (7,4,0,1,2,3,0,5); |
539
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
534
diff
changeset
|
629 |
begin |
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
534
diff
changeset
|
630 |
cTagsMask:= map[cTagsMask] |
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
534
diff
changeset
|
631 |
end; |
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
534
diff
changeset
|
632 |
|
589 | 633 |
procedure chAddTrigger(var s: shortstring); |
615 | 634 |
const MAXPARAMS = 16; |
635 |
var params: array[0..Pred(MAXPARAMS)] of Longword; |
|
636 |
i: LongInt; |
|
595
5ee863f2f568
Triggers PoC: targets are spawned right after the previous damaged
unc0rr
parents:
594
diff
changeset
|
637 |
c: char; |
5ee863f2f568
Triggers PoC: targets are spawned right after the previous damaged
unc0rr
parents:
594
diff
changeset
|
638 |
tmp: shortstring; |
589 | 639 |
begin |
595
5ee863f2f568
Triggers PoC: targets are spawned right after the previous damaged
unc0rr
parents:
594
diff
changeset
|
640 |
c:= s[1]; |
5ee863f2f568
Triggers PoC: targets are spawned right after the previous damaged
unc0rr
parents:
594
diff
changeset
|
641 |
Delete(s, 1, 1); |
615 | 642 |
|
643 |
i:= 0; |
|
644 |
while (i < MAXPARAMS) and |
|
645 |
(Length(s) > 0) do |
|
646 |
begin |
|
647 |
SplitBySpace(s, tmp); |
|
648 |
val(s, params[i]); |
|
649 |
s:= tmp; |
|
650 |
inc(i) |
|
651 |
end; |
|
652 |
||
595
5ee863f2f568
Triggers PoC: targets are spawned right after the previous damaged
unc0rr
parents:
594
diff
changeset
|
653 |
case c of |
613 | 654 |
's': begin // sTYPE TICKS LIVES GEARTYPE X Y GEARTRIGGER |
615 | 655 |
TryDo(i = 7, errmsgWrongNumber, true); |
656 |
AddTriggerSpawner(params[0], params[1], params[2], TGearType(params[3]), params[4], params[5], params[6]); |
|
595
5ee863f2f568
Triggers PoC: targets are spawned right after the previous damaged
unc0rr
parents:
594
diff
changeset
|
657 |
end; |
613 | 658 |
'C': begin |
615 | 659 |
TryDo(i = 3, errmsgWrongNumber, true); |
660 |
AddTriggerSuccess(params[0], params[1], params[2]); |
|
661 |
end; |
|
662 |
'F': begin |
|
663 |
TryDo(i = 3, errmsgWrongNumber, true); |
|
664 |
AddTriggerFail(params[0], params[1], params[2]); |
|
613 | 665 |
end; |
595
5ee863f2f568
Triggers PoC: targets are spawned right after the previous damaged
unc0rr
parents:
594
diff
changeset
|
666 |
end |
589 | 667 |
end; |
626 | 668 |
|
669 |
procedure chSpeedup_p(var s: shortstring); |
|
670 |
begin |
|
671 |
isSpeed:= true |
|
672 |
end; |
|
673 |
||
674 |
procedure chSpeedup_m(var s: shortstring); |
|
675 |
begin |
|
676 |
isSpeed:= false |
|
677 |
end; |
|
946 | 678 |
|
2162 | 679 |
procedure chZoomIn(var s: shortstring); |
680 |
begin |
|
2372 | 681 |
if ZoomValue < 3.0 then ZoomValue:= ZoomValue + 0.25; |
2162 | 682 |
end; |
683 |
||
684 |
procedure chZoomOut(var s: shortstring); |
|
685 |
begin |
|
2373 | 686 |
if ZoomValue > 1.0 then ZoomValue:= ZoomValue - 0.25; |
2162 | 687 |
end; |
688 |
||
2379 | 689 |
procedure chZoomReset(var s: shortstring); |
690 |
begin |
|
691 |
ZoomValue:= 2.0 |
|
692 |
end; |
|
693 |
||
946 | 694 |
procedure chChat(var s: shortstring); |
695 |
begin |
|
990
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
970
diff
changeset
|
696 |
GameState:= gsChat; |
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
970
diff
changeset
|
697 |
KeyPressChat(27) |
946 | 698 |
end; |
991 | 699 |
|
700 |
procedure chHistory(var s: shortstring); |
|
701 |
begin |
|
702 |
uChat.showAll:= not uChat.showAll |
|
703 |
end; |