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