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