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