author | koda |
Mon, 04 Jan 2010 01:35:57 +0000 | |
changeset 2675 | edbe559f9a3c |
parent 2671 | 7e0f88013fe8 |
child 2695 | ed789a7ef68d |
permissions | -rw-r--r-- |
4 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
1656
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
3 |
* Copyright (c) 2004-2009 Andrey Korotaev <unC0Rr@gmail.com> |
4 | 4 |
* |
183 | 5 |
* This program is free software; you can redistribute it and/or modify |
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
4 | 8 |
* |
183 | 9 |
* This program is distributed in the hope that it will be useful, |
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
4 | 13 |
* |
183 | 14 |
* You should have received a copy of the GNU General Public License |
15 |
* along with this program; if not, write to the Free Software |
|
16 |
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA |
|
4 | 17 |
*) |
18 |
||
19 |
function CheckNoTeamOrHH: boolean; |
|
351 | 20 |
var Result: boolean; |
4 | 21 |
begin |
602 | 22 |
Result:= (CurrentTeam = nil) or (CurrentHedgehog^.Gear = nil); |
4 | 23 |
{$IFDEF DEBUGFILE} |
24 |
if Result then |
|
25 |
if CurrentTeam = nil then AddFileLog('CONSOLE: CurTeam = nil') |
|
351 | 26 |
else AddFileLog('CONSOLE: CurTeam <> nil, Gear = nil'); |
4 | 27 |
{$ENDIF} |
351 | 28 |
CheckNoTeamOrHH:= Result |
4 | 29 |
end; |
30 |
//////////////////////////////////////////////////////////////////////////////// |
|
31 |
procedure chQuit(var s: shortstring); |
|
1022 | 32 |
const prevGState: TGameState = gsConfirm; |
4 | 33 |
begin |
1022 | 34 |
if GameState <> gsConfirm then |
35 |
begin |
|
36 |
prevGState:= GameState; |
|
37 |
GameState:= gsConfirm |
|
38 |
end else |
|
39 |
GameState:= prevGState |
|
40 |
end; |
|
41 |
||
42 |
procedure chConfirm(var s: shortstring); |
|
43 |
begin |
|
44 |
if GameState = gsConfirm then |
|
45 |
begin |
|
46 |
SendIPC('Q'); |
|
47 |
GameState:= gsExit |
|
48 |
end |
|
2130
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
49 |
else |
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
50 |
begin |
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
51 |
GameState:= gsChat; |
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
52 |
KeyPressChat(27); |
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
53 |
KeyPressChat(47); |
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
54 |
KeyPressChat(116); |
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
55 |
KeyPressChat(101); |
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
56 |
KeyPressChat(97); |
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
57 |
KeyPressChat(109); |
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
58 |
KeyPressChat(32) |
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
59 |
end |
4 | 60 |
end; |
61 |
||
205 | 62 |
procedure chCheckProto(var s: shortstring); |
371 | 63 |
var i, c: LongInt; |
205 | 64 |
begin |
65 |
if isDeveloperMode then |
|
66 |
begin |
|
67 |
val(s, i, c); |
|
68 |
if (c <> 0) or (i = 0) then exit; |
|
69 |
TryDo(i <= cNetProtoVersion, 'Protocol version mismatch: engine is too old', true); |
|
70 |
TryDo(i >= cNetProtoVersion, 'Protocol version mismatch: engine is too new', true) |
|
71 |
end |
|
72 |
end; |
|
73 |
||
4 | 74 |
procedure chAddTeam(var s: shortstring); |
549 | 75 |
var Color: Longword; |
605 | 76 |
ts: shortstring; |
4 | 77 |
begin |
145 | 78 |
if isDeveloperMode then |
79 |
begin |
|
605 | 80 |
SplitBySpace(s, ts); |
549 | 81 |
val(s, Color); |
82 |
TryDo(Color <> 0, 'Error: black team color', true); |
|
351 | 83 |
|
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 |
|
152 |
if s = '' then |
|
153 |
CurrentHedgehog^.Hat:= 'NoHat' |
|
154 |
else |
|
155 |
CurrentHedgehog^.Hat:= s |
|
4 | 156 |
end; |
157 |
||
604
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
158 |
procedure chSetHHCoords(var x: shortstring); |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
159 |
var y: shortstring; |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
160 |
t: Longint; |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
161 |
begin |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
162 |
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
|
163 |
SplitBySpace(x, y); |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
164 |
val(x, t); |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
165 |
CurrentHedgehog^.Gear^.X:= int2hwFloat(t); |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
166 |
val(y, t); |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
167 |
CurrentHedgehog^.Gear^.Y:= int2hwFloat(t) |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
168 |
end; |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
169 |
|
288 | 170 |
procedure chAddAmmoStore(var descr: shortstring); |
171 |
begin |
|
172 |
AddAmmoStore(descr) |
|
173 |
end; |
|
174 |
||
4 | 175 |
procedure chBind(var id: shortstring); |
176 |
var s: shortstring; |
|
371 | 177 |
b: LongInt; |
4 | 178 |
begin |
179 |
if CurrentTeam = nil then exit; |
|
180 |
SplitBySpace(id, s); |
|
181 |
if s[1]='"' then Delete(s, 1, 1); |
|
182 |
if s[byte(s[0])]='"' then Delete(s, byte(s[0]), 1); |
|
183 |
b:= KeyNameToCode(id); |
|
351 | 184 |
if b = 0 then OutError(errmsgUnknownVariable + ' "' + id + '"', false) |
185 |
else CurrentTeam^.Binds[b]:= s |
|
4 | 186 |
end; |
187 |
||
2428 | 188 |
procedure chCurU_p(var s: shortstring); |
189 |
begin |
|
190 |
CursorMovementY:= -1; |
|
191 |
end; |
|
192 |
||
193 |
procedure chCurU_m(var s: shortstring); |
|
194 |
begin |
|
195 |
CursorMovementY:= 0; |
|
196 |
end; |
|
197 |
||
198 |
procedure chCurD_p(var s: shortstring); |
|
199 |
begin |
|
200 |
CursorMovementY:= 1; |
|
201 |
end; |
|
202 |
||
203 |
procedure chCurD_m(var s: shortstring); |
|
204 |
begin |
|
205 |
CursorMovementY:= 0; |
|
206 |
end; |
|
207 |
||
208 |
procedure chCurL_p(var s: shortstring); |
|
209 |
begin |
|
210 |
CursorMovementX:= -1; |
|
211 |
end; |
|
212 |
||
213 |
procedure chCurL_m(var s: shortstring); |
|
214 |
begin |
|
215 |
CursorMovementX:= 0; |
|
216 |
end; |
|
217 |
||
218 |
procedure chCurR_p(var s: shortstring); |
|
219 |
begin |
|
220 |
CursorMovementX:= 1; |
|
221 |
end; |
|
222 |
||
223 |
procedure chCurR_m(var s: shortstring); |
|
224 |
begin |
|
225 |
CursorMovementX:= 0; |
|
226 |
end; |
|
227 |
||
4 | 228 |
procedure chLeft_p(var s: shortstring); |
229 |
begin |
|
230 |
if CheckNoTeamOrHH then exit; |
|
176 | 231 |
bShowFinger:= false; |
351 | 232 |
if not CurrentTeam^.ExtDriven then SendIPC('L'); |
602 | 233 |
with CurrentHedgehog^.Gear^ do |
4 | 234 |
Message:= Message or gm_Left |
235 |
end; |
|
236 |
||
237 |
procedure chLeft_m(var s: shortstring); |
|
238 |
begin |
|
239 |
if CheckNoTeamOrHH then exit; |
|
351 | 240 |
if not CurrentTeam^.ExtDriven then SendIPC('l'); |
602 | 241 |
with CurrentHedgehog^.Gear^ do |
4 | 242 |
Message:= Message and not gm_Left |
243 |
end; |
|
244 |
||
245 |
procedure chRight_p(var s: shortstring); |
|
246 |
begin |
|
247 |
if CheckNoTeamOrHH then exit; |
|
176 | 248 |
bShowFinger:= false; |
351 | 249 |
if not CurrentTeam^.ExtDriven then SendIPC('R'); |
602 | 250 |
with CurrentHedgehog^.Gear^ do |
4 | 251 |
Message:= Message or gm_Right |
252 |
end; |
|
253 |
||
254 |
procedure chRight_m(var s: shortstring); |
|
255 |
begin |
|
256 |
if CheckNoTeamOrHH then exit; |
|
351 | 257 |
if not CurrentTeam^.ExtDriven then SendIPC('r'); |
602 | 258 |
with CurrentHedgehog^.Gear^ do |
4 | 259 |
Message:= Message and not gm_Right |
260 |
end; |
|
261 |
||
262 |
procedure chUp_p(var s: shortstring); |
|
263 |
begin |
|
264 |
if CheckNoTeamOrHH then exit; |
|
176 | 265 |
bShowFinger:= false; |
351 | 266 |
if not CurrentTeam^.ExtDriven then SendIPC('U'); |
602 | 267 |
with CurrentHedgehog^.Gear^ do |
4 | 268 |
Message:= Message or gm_Up |
269 |
end; |
|
270 |
||
271 |
procedure chUp_m(var s: shortstring); |
|
272 |
begin |
|
273 |
if CheckNoTeamOrHH then exit; |
|
351 | 274 |
if not CurrentTeam^.ExtDriven then SendIPC('u'); |
602 | 275 |
with CurrentHedgehog^.Gear^ do |
4 | 276 |
Message:= Message and not gm_Up |
277 |
end; |
|
278 |
||
279 |
procedure chDown_p(var s: shortstring); |
|
280 |
begin |
|
281 |
if CheckNoTeamOrHH then exit; |
|
176 | 282 |
bShowFinger:= false; |
351 | 283 |
if not CurrentTeam^.ExtDriven then SendIPC('D'); |
602 | 284 |
with CurrentHedgehog^.Gear^ do |
4 | 285 |
Message:= Message or gm_Down |
286 |
end; |
|
287 |
||
288 |
procedure chDown_m(var s: shortstring); |
|
289 |
begin |
|
290 |
if CheckNoTeamOrHH then exit; |
|
351 | 291 |
if not CurrentTeam^.ExtDriven then SendIPC('d'); |
602 | 292 |
with CurrentHedgehog^.Gear^ do |
4 | 293 |
Message:= Message and not gm_Down |
294 |
end; |
|
295 |
||
1639 | 296 |
procedure chPrecise_p(var s: shortstring); |
297 |
begin |
|
298 |
if CheckNoTeamOrHH then exit; |
|
299 |
bShowFinger:= false; |
|
300 |
if not CurrentTeam^.ExtDriven then SendIPC('Z'); |
|
301 |
with CurrentHedgehog^.Gear^ do |
|
302 |
Message:= Message or gm_Precise |
|
303 |
end; |
|
304 |
||
305 |
procedure chPrecise_m(var s: shortstring); |
|
306 |
begin |
|
307 |
if CheckNoTeamOrHH then exit; |
|
308 |
if not CurrentTeam^.ExtDriven then SendIPC('z'); |
|
309 |
with CurrentHedgehog^.Gear^ do |
|
310 |
Message:= Message and not gm_Precise |
|
311 |
end; |
|
312 |
||
4 | 313 |
procedure chLJump(var s: shortstring); |
314 |
begin |
|
315 |
if CheckNoTeamOrHH then exit; |
|
176 | 316 |
bShowFinger:= false; |
351 | 317 |
if not CurrentTeam^.ExtDriven then SendIPC('j'); |
602 | 318 |
with CurrentHedgehog^.Gear^ do |
4 | 319 |
Message:= Message or gm_LJump |
320 |
end; |
|
321 |
||
322 |
procedure chHJump(var s: shortstring); |
|
323 |
begin |
|
324 |
if CheckNoTeamOrHH then exit; |
|
176 | 325 |
bShowFinger:= false; |
351 | 326 |
if not CurrentTeam^.ExtDriven then SendIPC('J'); |
602 | 327 |
with CurrentHedgehog^.Gear^ do |
4 | 328 |
Message:= Message or gm_HJump |
329 |
end; |
|
330 |
||
331 |
procedure chAttack_p(var s: shortstring); |
|
332 |
begin |
|
333 |
if CheckNoTeamOrHH then exit; |
|
176 | 334 |
bShowFinger:= false; |
602 | 335 |
with CurrentHedgehog^.Gear^ do |
4 | 336 |
begin |
2079 | 337 |
{$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
|
338 |
if ((State and gstHHDriven) <> 0) then |
4 | 339 |
begin |
602 | 340 |
FollowGear:= CurrentHedgehog^.Gear; |
351 | 341 |
if not CurrentTeam^.ExtDriven then SendIPC('A'); |
4 | 342 |
Message:= Message or gm_Attack |
343 |
end |
|
344 |
end |
|
345 |
end; |
|
346 |
||
347 |
procedure chAttack_m(var s: shortstring); |
|
348 |
begin |
|
349 |
if CheckNoTeamOrHH then exit; |
|
602 | 350 |
with CurrentHedgehog^.Gear^ do |
4 | 351 |
begin |
351 | 352 |
if not CurrentTeam^.ExtDriven and |
95 | 353 |
((Message and gm_Attack) <> 0) then SendIPC('a'); |
354 |
Message:= Message and not gm_Attack |
|
4 | 355 |
end |
356 |
end; |
|
357 |
||
358 |
procedure chSwitch(var s: shortstring); |
|
359 |
begin |
|
360 |
if CheckNoTeamOrHH then exit; |
|
351 | 361 |
if not CurrentTeam^.ExtDriven then SendIPC('S'); |
602 | 362 |
with CurrentHedgehog^.Gear^ do |
4 | 363 |
Message:= Message or gm_Switch |
364 |
end; |
|
365 |
||
366 |
procedure chNextTurn(var s: shortstring); |
|
367 |
begin |
|
2045
b0588498bc3a
- Fix network (my crappy fault, triggered by nemo's patch)
unc0rr
parents:
2042
diff
changeset
|
368 |
TryDo(AllInactive, '/nextturn called when not all gears are inactive', true); |
2046 | 369 |
|
2045
b0588498bc3a
- Fix network (my crappy fault, triggered by nemo's patch)
unc0rr
parents:
2042
diff
changeset
|
370 |
if not CurrentTeam^.ExtDriven then SendIPC('N'); |
b0588498bc3a
- Fix network (my crappy fault, triggered by nemo's patch)
unc0rr
parents:
2042
diff
changeset
|
371 |
TickTrigger(trigTurns); |
b0588498bc3a
- Fix network (my crappy fault, triggered by nemo's patch)
unc0rr
parents:
2042
diff
changeset
|
372 |
{$IFDEF DEBUGFILE}AddFileLog('Doing SwitchHedgehog: time '+inttostr(GameTicks));{$ENDIF} |
4 | 373 |
end; |
374 |
||
375 |
procedure chSay(var s: shortstring); |
|
376 |
begin |
|
1356 | 377 |
SendIPC('s' + s); |
1378 | 378 |
|
379 |
if copy(s, 1, 4) = '/me ' then |
|
2396 | 380 |
s:= #2'* ' + UserNick + ' ' + copy(s, 5, Length(s) - 4) |
1378 | 381 |
else |
2396 | 382 |
s:= #1 + UserNick + ': ' + s; |
1378 | 383 |
|
1356 | 384 |
AddChatString(s) |
4 | 385 |
end; |
386 |
||
2124 | 387 |
procedure chTeamSay(var s: shortstring); |
388 |
begin |
|
389 |
SendIPC('b' + s); |
|
390 |
||
2403 | 391 |
s:= #4 + UserNick + '(team): ' + s; |
2124 | 392 |
|
2396 | 393 |
AddChatString(s) |
2124 | 394 |
end; |
395 |
||
4 | 396 |
procedure chTimer(var s: shortstring); |
397 |
begin |
|
2314 | 398 |
if (s[0] <> #1) or (s[1] < '1') or (s[1] > '5') or CheckNoTeamOrHH then exit; |
176 | 399 |
bShowFinger:= false; |
2314 | 400 |
|
926
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
917
diff
changeset
|
401 |
if not CurrentTeam^.ExtDriven then SendIPC(s); |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
917
diff
changeset
|
402 |
with CurrentHedgehog^.Gear^ do |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
917
diff
changeset
|
403 |
begin |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
917
diff
changeset
|
404 |
Message:= Message or gm_Timer; |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
917
diff
changeset
|
405 |
MsgParam:= byte(s[1]) - ord('0') |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
917
diff
changeset
|
406 |
end |
4 | 407 |
end; |
408 |
||
409 |
procedure chSlot(var s: shortstring); |
|
410 |
var slot: LongWord; |
|
411 |
begin |
|
95 | 412 |
if (s[0] <> #1) or CheckNoTeamOrHH then exit; |
176 | 413 |
bShowFinger:= false; |
4 | 414 |
slot:= byte(s[1]) - 49; |
10 | 415 |
if slot > cMaxSlotIndex then exit; |
351 | 416 |
if not CurrentTeam^.ExtDriven then SendIPC(char(byte(s[1]) + 79)); |
783 | 417 |
with CurrentHedgehog^.Gear^ do |
4 | 418 |
begin |
783 | 419 |
Message:= Message or gm_Slot; |
420 |
MsgParam:= slot |
|
421 |
end |
|
422 |
end; |
|
423 |
||
424 |
procedure chSetWeapon(var s: shortstring); |
|
425 |
begin |
|
426 |
if (s[0] <> #1) or CheckNoTeamOrHH then exit; |
|
784 | 427 |
|
1850 | 428 |
if TAmmoType(s[1]) > High(TAmmoType) then exit; |
784 | 429 |
|
430 |
if not CurrentTeam^.ExtDriven then SendIPC('w' + s); |
|
431 |
||
783 | 432 |
with CurrentHedgehog^.Gear^ do |
433 |
begin |
|
434 |
Message:= Message or gm_Weapon; |
|
1850 | 435 |
MsgParam:= byte(s[1]) |
4 | 436 |
end |
437 |
end; |
|
438 |
||
1035 | 439 |
procedure chTaunt(var s: shortstring); |
440 |
begin |
|
441 |
if (s[0] <> #1) or CheckNoTeamOrHH then exit; |
|
442 |
||
443 |
if TWave(s[1]) > High(TWave) then exit; |
|
444 |
||
445 |
if not CurrentTeam^.ExtDriven then SendIPC('t' + s); |
|
446 |
||
447 |
with CurrentHedgehog^.Gear^ do |
|
448 |
begin |
|
449 |
Message:= Message or gm_Animate; |
|
450 |
MsgParam:= byte(s[1]) |
|
451 |
end |
|
452 |
end; |
|
453 |
||
2017 | 454 |
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
|
455 |
var Gear: PVisualGear; |
2017 | 456 |
text: shortstring; |
457 |
begin |
|
458 |
text:= copy(s, 2, Length(s)-1); |
|
2110 | 459 |
if CheckNoTeamOrHH |
2111 | 460 |
or ((CurrentHedgehog^.Gear^.State and gstHHDriven) = 0) then |
2017 | 461 |
begin |
462 |
chSay(text); |
|
463 |
exit |
|
464 |
end; |
|
465 |
||
466 |
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
|
467 |
|
2017 | 468 |
if byte(s[1]) < 4 then |
469 |
begin |
|
2042
905c554d62e6
Move Speech to visual gears. This checkin CRASHES on deletion of visual gear outside the doStep
nemo
parents:
2022
diff
changeset
|
470 |
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
|
471 |
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
|
472 |
begin |
9a8ccc7bc3d8
Fix crash caused by speechbubbles when restoring from save or joining already started net game
unc0rr
parents:
2111
diff
changeset
|
473 |
Gear^.Hedgehog:= CurrentHedgehog; |
9a8ccc7bc3d8
Fix crash caused by speechbubbles when restoring from save or joining already started net game
unc0rr
parents:
2111
diff
changeset
|
474 |
Gear^.Text:= text; |
9a8ccc7bc3d8
Fix crash caused by speechbubbles when restoring from save or joining already started net game
unc0rr
parents:
2111
diff
changeset
|
475 |
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
|
476 |
end |
2017 | 477 |
end |
478 |
else |
|
479 |
begin |
|
2022 | 480 |
SpeechType:= byte(s[1])-3; |
2017 | 481 |
SpeechText:= text |
482 |
end; |
|
2042
905c554d62e6
Move Speech to visual gears. This checkin CRASHES on deletion of visual gear outside the doStep
nemo
parents:
2022
diff
changeset
|
483 |
|
2017 | 484 |
end; |
485 |
||
1821
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
486 |
procedure chNewGrave; |
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
487 |
begin |
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
488 |
if CheckNoTeamOrHH then exit; |
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
489 |
|
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
490 |
if not CurrentTeam^.ExtDriven then SendIPC('g'); |
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
491 |
|
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
492 |
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
|
493 |
end; |
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
494 |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
495 |
procedure doPut(putX, putY: LongInt; fromAI: boolean); |
4 | 496 |
begin |
497 |
if CheckNoTeamOrHH then exit; |
|
162 | 498 |
if bShowAmmoMenu then |
2407
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
499 |
begin |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
500 |
bSelected:= true; |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
501 |
exit |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
502 |
end; |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
503 |
|
602 | 504 |
with CurrentHedgehog^.Gear^, |
2407
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
505 |
CurrentHedgehog^ do |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
506 |
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
|
507 |
begin |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
508 |
isCursorVisible:= false; |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
509 |
if not CurrentTeam^.ExtDriven 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 |
if fromAI then |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
512 |
begin |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
513 |
TargetPoint.X:= putX; |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
514 |
TargetPoint.Y:= putY |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
515 |
end else |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
516 |
begin |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
517 |
TargetPoint.X:= CursorPoint.X - WorldDx; |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
518 |
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
|
519 |
end; |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
520 |
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
|
521 |
end |
89aa2aa89066
Fix bug with cursor coordinates sent via net (or demo/save file)
unc0rr
parents:
2642
diff
changeset
|
522 |
else |
89aa2aa89066
Fix bug with cursor coordinates sent via net (or demo/save file)
unc0rr
parents:
2642
diff
changeset
|
523 |
begin |
89aa2aa89066
Fix bug with cursor coordinates sent via net (or demo/save file)
unc0rr
parents:
2642
diff
changeset
|
524 |
TargetPoint.X:= putX; |
89aa2aa89066
Fix bug with cursor coordinates sent via net (or demo/save file)
unc0rr
parents:
2642
diff
changeset
|
525 |
TargetPoint.Y:= putY |
2407
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
526 |
end; |
2642 | 527 |
{$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
|
528 |
State:= State and not gstHHChooseTarget; |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
529 |
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
|
530 |
Message:= Message or gm_Attack; |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
531 |
end |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
532 |
else |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
533 |
if CurrentTeam^.ExtDriven then |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
534 |
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
|
535 |
end; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
536 |
|
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
537 |
procedure chPut(var s: shortstring); |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
538 |
begin |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
539 |
doPut(0, 0, false) |
4 | 540 |
end; |
541 |
||
542 |
procedure chCapture(var s: shortstring); |
|
543 |
begin |
|
544 |
flagMakeCapture:= true |
|
545 |
end; |
|
546 |
||
48 | 547 |
procedure chSkip(var s: shortstring); |
548 |
begin |
|
351 | 549 |
if not CurrentTeam^.ExtDriven then SendIPC(','); |
871 | 550 |
uStats.Skipped; |
917 | 551 |
skipFlag:= true |
48 | 552 |
end; |
553 |
||
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
554 |
procedure chSetMap(var s: shortstring); |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
555 |
begin |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
556 |
if isDeveloperMode then |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
557 |
begin |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
558 |
Pathz[ptMapCurrent]:= Pathz[ptMaps] + '/' + s; |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
559 |
InitStepsFlags:= InitStepsFlags or cifMap |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
560 |
end |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
561 |
end; |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
562 |
|
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
563 |
procedure chSetTheme(var s: shortstring); |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
564 |
begin |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
565 |
if isDeveloperMode then |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
566 |
begin |
80 | 567 |
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
|
568 |
InitStepsFlags:= InitStepsFlags or cifTheme |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
569 |
end |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
570 |
end; |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
571 |
|
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
572 |
procedure chSetSeed(var s: shortstring); |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
573 |
begin |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
574 |
if isDeveloperMode then |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
575 |
begin |
102 | 576 |
SetRandomSeed(s); |
81 | 577 |
cSeed:= s; |
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
578 |
InitStepsFlags:= InitStepsFlags or cifRandomize |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
579 |
end |
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 |
|
161 | 582 |
procedure chAmmoMenu(var s: shortstring); |
583 |
begin |
|
584 |
if CheckNoTeamOrHH then exit; |
|
585 |
with CurrentTeam^ do |
|
586 |
with Hedgehogs[CurrHedgehog] do |
|
587 |
begin |
|
162 | 588 |
bSelected:= false; |
682 | 589 |
|
161 | 590 |
if bShowAmmoMenu then bShowAmmoMenu:= false |
2608 | 591 |
else if ((Gear^.State and (gstAttacking or gstAttacked)) <> 0) or (MultiShootAttacks > 0) |
351 | 592 |
or ((Gear^.State and gstHHDriven) = 0) then else bShowAmmoMenu:= true |
161 | 593 |
end |
594 |
end; |
|
595 |
||
166
2920ab2bf329
Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents:
162
diff
changeset
|
596 |
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
|
597 |
var flags: Longword = 0; |
192 | 598 |
{$IFDEF DEBUGFILE} |
599 |
buf: array[byte] of char; |
|
600 |
{$ENDIF} |
|
166
2920ab2bf329
Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents:
162
diff
changeset
|
601 |
begin |
1051
dfdd5dfe97d4
Enable fullscreen switching back, now it's bound on F12
unc0rr
parents:
1035
diff
changeset
|
602 |
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
|
603 |
else cFullScreen:= s = '1'; |
192 | 604 |
|
905 | 605 |
{$IFDEF DEBUGFILE} |
606 |
AddFileLog('Prepare to change video parameters...'); |
|
607 |
{$ENDIF} |
|
2253 | 608 |
|
2633 | 609 |
{$IFDEF IPHONEOS} |
2253 | 610 |
SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 0); |
611 |
SDL_GL_SetAttribute(SDL_GL_RETAINED_BACKING, 1); |
|
612 |
SDL_GL_SetAttribute(SDL_GL_DEPTH_SIZE, 0); |
|
2633 | 613 |
SDL_GL_SetAttribute(SDL_GL_RED_SIZE, 8); |
614 |
SDL_GL_SetAttribute(SDL_GL_GREEN_SIZE, 8); |
|
615 |
SDL_GL_SetAttribute(SDL_GL_BLUE_SIZE, 8); |
|
616 |
SDL_GL_SetAttribute(SDL_GL_ALPHA_SIZE, 8); |
|
617 |
SDL_GL_SetAttribute(SDL_GL_BUFFER_SIZE, 32); |
|
618 |
{$ELSE} |
|
619 |
SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1); |
|
2618 | 620 |
{$ENDIF} |
621 |
||
622 |
{$IFNDEF SDL13} |
|
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
|
623 |
// this attribute is default in 1.3 and must be enabled in MacOSX |
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
|
624 |
{$IFNDEF DARWIN} |
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
|
625 |
if cVSyncInUse then |
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
|
626 |
{$ENDIF} |
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
|
627 |
SDL_GL_SetAttribute(SDL_GL_SWAP_CONTROL, 1); |
2253 | 628 |
{$ENDIF} |
753 | 629 |
|
1127 | 630 |
flags:= SDL_OPENGL;// or SDL_RESIZABLE; |
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
|
631 |
{$IFDEF IPHONEOS} |
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
|
632 |
// remove the topbar from the iPhone |
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
|
633 |
flags:= flags or SDL_NOFRAME; |
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
|
634 |
{$ENDIF} |
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
|
635 |
|
1121
d595dc56b4f3
Remember initial resolution settings to use when switching to fullscreen mode
unc0rr
parents:
1120
diff
changeset
|
636 |
if cFullScreen then |
d595dc56b4f3
Remember initial resolution settings to use when switching to fullscreen mode
unc0rr
parents:
1120
diff
changeset
|
637 |
begin |
d595dc56b4f3
Remember initial resolution settings to use when switching to fullscreen mode
unc0rr
parents:
1120
diff
changeset
|
638 |
flags:= flags or SDL_FULLSCREEN; |
d595dc56b4f3
Remember initial resolution settings to use when switching to fullscreen mode
unc0rr
parents:
1120
diff
changeset
|
639 |
cScreenWidth:= cInitWidth; |
d595dc56b4f3
Remember initial resolution settings to use when switching to fullscreen mode
unc0rr
parents:
1120
diff
changeset
|
640 |
cScreenHeight:= cInitHeight |
2351
a4a17b8df591
Set window caption even in fullscreen mode (suggested by Smaxx)
unc0rr
parents:
2314
diff
changeset
|
641 |
end; |
a4a17b8df591
Set window caption even in fullscreen mode (suggested by Smaxx)
unc0rr
parents:
2314
diff
changeset
|
642 |
|
a4a17b8df591
Set window caption even in fullscreen mode (suggested by Smaxx)
unc0rr
parents:
2314
diff
changeset
|
643 |
SDL_WM_SetCaption('Hedgewars', nil); |
2428 | 644 |
if SDLPrimSurface <> nil then |
645 |
begin |
|
646 |
{$IFDEF DEBUGFILE} |
|
647 |
AddFileLog('Freeing old primary surface...'); |
|
648 |
{$ENDIF} |
|
649 |
SDL_FreeSurface(SDLPrimSurface); |
|
650 |
end; |
|
904 | 651 |
|
166
2920ab2bf329
Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents:
162
diff
changeset
|
652 |
SDLPrimSurface:= SDL_SetVideoMode(cScreenWidth, cScreenHeight, cBits, flags); |
904 | 653 |
SDLTry(SDLPrimSurface <> nil, true); |
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
|
654 |
PixelFormat:= SDLPrimSurface^.format; |
192 | 655 |
|
905 | 656 |
{$IFDEF DEBUGFILE} |
657 |
AddFileLog('Setting up OpenGL...'); |
|
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
|
658 |
AddFileLog('SDL video driver: ' + string(SDL_VideoDriverName(buf, sizeof(buf)))); |
905 | 659 |
{$ENDIF} |
753 | 660 |
SetupOpenGL(); |
661 |
||
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; |