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