author | smxx |
Wed, 31 Mar 2010 13:41:05 +0000 | |
changeset 3205 | ada12d757574 |
parent 3006 | da6023c2745b |
child 3236 | 4ab3917d7d44 |
permissions | -rw-r--r-- |
4 | 1 |
(* |
2947 | 2 |
* Hedgewars, a free turn based strategy game |
3 |
* Copyright (c) 2004-2009 Andrey Korotaev <unC0Rr@gmail.com> |
|
4 |
* |
|
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 |
|
8 |
* |
|
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. |
|
13 |
* |
|
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 |
|
17 |
*) |
|
4 | 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 |
2947 | 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 |
|
2947 | 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 |
|
2947 | 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 |
|
205 | 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 |
2947 | 79 |
begin |
80 |
SplitBySpace(s, cs); |
|
81 |
SplitBySpace(cs, ts); |
|
82 |
val(cs, Color); |
|
83 |
TryDo(Color <> 0, 'Error: black team color', true); |
|
351 | 84 |
|
2947 | 85 |
// color is always little endian so the mask must be constant also in big endian archs |
86 |
Color:= Color or $FF000000; |
|
87 |
||
88 |
AddTeam(Color); |
|
89 |
CurrentTeam^.TeamName:= ts; |
|
90 |
CurrentTeam^.PlayerHash:= s; |
|
91 |
if GameType in [gmtDemo, gmtSave] then CurrentTeam^.ExtDriven:= true; |
|
1654 | 92 |
|
2947 | 93 |
CurrentTeam^.voicepack:= AskForVoicepack('Default') |
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 |
2947 | 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; |
|
2881 | 158 |
if (GameFlags and gfSharedAmmo) <> 0 then CurrentHedgehog^.AmmoStore:= Clan^.ClanIndex |
159 |
else CurrentHedgehog^.AmmoStore:= TeamsCount - 1; |
|
2947 | 160 |
CurrentHedgehog^.Gear:= Gear; |
161 |
CurrentHedgehog^.Name:= id; |
|
2808
8f48b538d591
Need this too to set it to last hog for current switch alg
nemo
parents:
2800
diff
changeset
|
162 |
CurrHedgehog:= HedgehogsNumber; |
2947 | 163 |
inc(HedgehogsNumber) |
164 |
end |
|
1242 | 165 |
end; |
166 |
||
167 |
procedure chSetHat(var s: shortstring); |
|
168 |
begin |
|
169 |
if (not isDeveloperMode) or (CurrentTeam = nil) then exit; |
|
170 |
with CurrentTeam^ do |
|
2726 | 171 |
begin |
172 |
if not CurrentHedgehog^.King then |
|
2947 | 173 |
if (s = '') or |
174 |
(((GameFlags and gfKing) <> 0) and (s = 'crown')) or |
|
175 |
((Length(s) > 39) and (Copy(s,1,8) = 'Reserved') and (Copy(s,9,32) <> PlayerHash)) then |
|
176 |
CurrentHedgehog^.Hat:= 'NoHat' |
|
177 |
else |
|
178 |
CurrentHedgehog^.Hat:= s |
|
2726 | 179 |
end; |
4 | 180 |
end; |
181 |
||
604
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
182 |
procedure chSetHHCoords(var x: shortstring); |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
183 |
var y: shortstring; |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
184 |
t: Longint; |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
185 |
begin |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
186 |
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
|
187 |
SplitBySpace(x, y); |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
188 |
val(x, t); |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
189 |
CurrentHedgehog^.Gear^.X:= int2hwFloat(t); |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
190 |
val(y, t); |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
191 |
CurrentHedgehog^.Gear^.Y:= int2hwFloat(t) |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
192 |
end; |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
193 |
|
288 | 194 |
procedure chAddAmmoStore(var descr: shortstring); |
195 |
begin |
|
196 |
AddAmmoStore(descr) |
|
197 |
end; |
|
198 |
||
4 | 199 |
procedure chBind(var id: shortstring); |
200 |
var s: shortstring; |
|
371 | 201 |
b: LongInt; |
4 | 202 |
begin |
203 |
if CurrentTeam = nil then exit; |
|
204 |
SplitBySpace(id, s); |
|
205 |
if s[1]='"' then Delete(s, 1, 1); |
|
206 |
if s[byte(s[0])]='"' then Delete(s, byte(s[0]), 1); |
|
207 |
b:= KeyNameToCode(id); |
|
351 | 208 |
if b = 0 then OutError(errmsgUnknownVariable + ' "' + id + '"', false) |
2947 | 209 |
else CurrentTeam^.Binds[b]:= s |
4 | 210 |
end; |
211 |
||
2428 | 212 |
procedure chCurU_p(var s: shortstring); |
213 |
begin |
|
214 |
CursorMovementY:= -1; |
|
215 |
end; |
|
216 |
||
217 |
procedure chCurU_m(var s: shortstring); |
|
218 |
begin |
|
219 |
CursorMovementY:= 0; |
|
220 |
end; |
|
221 |
||
222 |
procedure chCurD_p(var s: shortstring); |
|
223 |
begin |
|
224 |
CursorMovementY:= 1; |
|
225 |
end; |
|
226 |
||
227 |
procedure chCurD_m(var s: shortstring); |
|
228 |
begin |
|
229 |
CursorMovementY:= 0; |
|
230 |
end; |
|
231 |
||
232 |
procedure chCurL_p(var s: shortstring); |
|
233 |
begin |
|
234 |
CursorMovementX:= -1; |
|
235 |
end; |
|
236 |
||
237 |
procedure chCurL_m(var s: shortstring); |
|
238 |
begin |
|
239 |
CursorMovementX:= 0; |
|
240 |
end; |
|
241 |
||
242 |
procedure chCurR_p(var s: shortstring); |
|
243 |
begin |
|
244 |
CursorMovementX:= 1; |
|
245 |
end; |
|
246 |
||
247 |
procedure chCurR_m(var s: shortstring); |
|
248 |
begin |
|
249 |
CursorMovementX:= 0; |
|
250 |
end; |
|
251 |
||
4 | 252 |
procedure chLeft_p(var s: shortstring); |
253 |
begin |
|
254 |
if CheckNoTeamOrHH then exit; |
|
176 | 255 |
bShowFinger:= false; |
351 | 256 |
if not CurrentTeam^.ExtDriven then SendIPC('L'); |
602 | 257 |
with CurrentHedgehog^.Gear^ do |
4 | 258 |
Message:= Message or gm_Left |
259 |
end; |
|
260 |
||
261 |
procedure chLeft_m(var s: shortstring); |
|
262 |
begin |
|
263 |
if CheckNoTeamOrHH then exit; |
|
351 | 264 |
if not CurrentTeam^.ExtDriven then SendIPC('l'); |
602 | 265 |
with CurrentHedgehog^.Gear^ do |
2947 | 266 |
Message:= Message and not gm_Left |
4 | 267 |
end; |
268 |
||
269 |
procedure chRight_p(var s: shortstring); |
|
270 |
begin |
|
271 |
if CheckNoTeamOrHH then exit; |
|
176 | 272 |
bShowFinger:= false; |
351 | 273 |
if not CurrentTeam^.ExtDriven then SendIPC('R'); |
602 | 274 |
with CurrentHedgehog^.Gear^ do |
4 | 275 |
Message:= Message or gm_Right |
276 |
end; |
|
277 |
||
278 |
procedure chRight_m(var s: shortstring); |
|
279 |
begin |
|
280 |
if CheckNoTeamOrHH then exit; |
|
351 | 281 |
if not CurrentTeam^.ExtDriven then SendIPC('r'); |
602 | 282 |
with CurrentHedgehog^.Gear^ do |
2947 | 283 |
Message:= Message and not gm_Right |
4 | 284 |
end; |
285 |
||
286 |
procedure chUp_p(var s: shortstring); |
|
287 |
begin |
|
288 |
if CheckNoTeamOrHH then exit; |
|
176 | 289 |
bShowFinger:= false; |
351 | 290 |
if not CurrentTeam^.ExtDriven then SendIPC('U'); |
602 | 291 |
with CurrentHedgehog^.Gear^ do |
4 | 292 |
Message:= Message or gm_Up |
293 |
end; |
|
294 |
||
295 |
procedure chUp_m(var s: shortstring); |
|
296 |
begin |
|
297 |
if CheckNoTeamOrHH then exit; |
|
351 | 298 |
if not CurrentTeam^.ExtDriven then SendIPC('u'); |
602 | 299 |
with CurrentHedgehog^.Gear^ do |
2947 | 300 |
Message:= Message and not gm_Up |
4 | 301 |
end; |
302 |
||
303 |
procedure chDown_p(var s: shortstring); |
|
304 |
begin |
|
305 |
if CheckNoTeamOrHH then exit; |
|
176 | 306 |
bShowFinger:= false; |
351 | 307 |
if not CurrentTeam^.ExtDriven then SendIPC('D'); |
602 | 308 |
with CurrentHedgehog^.Gear^ do |
4 | 309 |
Message:= Message or gm_Down |
310 |
end; |
|
311 |
||
312 |
procedure chDown_m(var s: shortstring); |
|
313 |
begin |
|
314 |
if CheckNoTeamOrHH then exit; |
|
351 | 315 |
if not CurrentTeam^.ExtDriven then SendIPC('d'); |
602 | 316 |
with CurrentHedgehog^.Gear^ do |
2947 | 317 |
Message:= Message and not gm_Down |
4 | 318 |
end; |
319 |
||
1639 | 320 |
procedure chPrecise_p(var s: shortstring); |
321 |
begin |
|
322 |
if CheckNoTeamOrHH then exit; |
|
323 |
bShowFinger:= false; |
|
324 |
if not CurrentTeam^.ExtDriven then SendIPC('Z'); |
|
325 |
with CurrentHedgehog^.Gear^ do |
|
326 |
Message:= Message or gm_Precise |
|
327 |
end; |
|
328 |
||
329 |
procedure chPrecise_m(var s: shortstring); |
|
330 |
begin |
|
331 |
if CheckNoTeamOrHH then exit; |
|
332 |
if not CurrentTeam^.ExtDriven then SendIPC('z'); |
|
333 |
with CurrentHedgehog^.Gear^ do |
|
2947 | 334 |
Message:= Message and not gm_Precise |
1639 | 335 |
end; |
336 |
||
4 | 337 |
procedure chLJump(var s: shortstring); |
338 |
begin |
|
339 |
if CheckNoTeamOrHH then exit; |
|
176 | 340 |
bShowFinger:= false; |
351 | 341 |
if not CurrentTeam^.ExtDriven then SendIPC('j'); |
602 | 342 |
with CurrentHedgehog^.Gear^ do |
4 | 343 |
Message:= Message or gm_LJump |
344 |
end; |
|
345 |
||
346 |
procedure chHJump(var s: shortstring); |
|
347 |
begin |
|
348 |
if CheckNoTeamOrHH then exit; |
|
176 | 349 |
bShowFinger:= false; |
351 | 350 |
if not CurrentTeam^.ExtDriven then SendIPC('J'); |
602 | 351 |
with CurrentHedgehog^.Gear^ do |
4 | 352 |
Message:= Message or gm_HJump |
353 |
end; |
|
354 |
||
355 |
procedure chAttack_p(var s: shortstring); |
|
356 |
begin |
|
357 |
if CheckNoTeamOrHH then exit; |
|
176 | 358 |
bShowFinger:= false; |
602 | 359 |
with CurrentHedgehog^.Gear^ do |
2947 | 360 |
begin |
361 |
{$IFDEF DEBUGFILE}AddFileLog('/+attack: hedgehog''s Gear^.State = '+inttostr(State));{$ENDIF} |
|
362 |
if ((State and gstHHDriven) <> 0) then |
|
4 | 363 |
begin |
602 | 364 |
FollowGear:= CurrentHedgehog^.Gear; |
351 | 365 |
if not CurrentTeam^.ExtDriven then SendIPC('A'); |
4 | 366 |
Message:= Message or gm_Attack |
367 |
end |
|
2947 | 368 |
end |
4 | 369 |
end; |
370 |
||
371 |
procedure chAttack_m(var s: shortstring); |
|
372 |
begin |
|
373 |
if CheckNoTeamOrHH then exit; |
|
602 | 374 |
with CurrentHedgehog^.Gear^ do |
2947 | 375 |
begin |
376 |
if not CurrentTeam^.ExtDriven and |
|
95 | 377 |
((Message and gm_Attack) <> 0) then SendIPC('a'); |
2947 | 378 |
Message:= Message and not gm_Attack |
379 |
end |
|
4 | 380 |
end; |
381 |
||
382 |
procedure chSwitch(var s: shortstring); |
|
383 |
begin |
|
384 |
if CheckNoTeamOrHH then exit; |
|
351 | 385 |
if not CurrentTeam^.ExtDriven then SendIPC('S'); |
602 | 386 |
with CurrentHedgehog^.Gear^ do |
2947 | 387 |
Message:= Message or gm_Switch |
4 | 388 |
end; |
389 |
||
390 |
procedure chNextTurn(var s: shortstring); |
|
391 |
begin |
|
2045
b0588498bc3a
- Fix network (my crappy fault, triggered by nemo's patch)
unc0rr
parents:
2042
diff
changeset
|
392 |
TryDo(AllInactive, '/nextturn called when not all gears are inactive', true); |
2046 | 393 |
|
2045
b0588498bc3a
- Fix network (my crappy fault, triggered by nemo's patch)
unc0rr
parents:
2042
diff
changeset
|
394 |
if not CurrentTeam^.ExtDriven then SendIPC('N'); |
b0588498bc3a
- Fix network (my crappy fault, triggered by nemo's patch)
unc0rr
parents:
2042
diff
changeset
|
395 |
{$IFDEF DEBUGFILE}AddFileLog('Doing SwitchHedgehog: time '+inttostr(GameTicks));{$ENDIF} |
4 | 396 |
end; |
397 |
||
398 |
procedure chSay(var s: shortstring); |
|
399 |
begin |
|
1356 | 400 |
SendIPC('s' + s); |
1378 | 401 |
|
402 |
if copy(s, 1, 4) = '/me ' then |
|
2947 | 403 |
s:= #2'* ' + UserNick + ' ' + copy(s, 5, Length(s) - 4) |
1378 | 404 |
else |
2947 | 405 |
s:= #1 + UserNick + ': ' + s; |
1378 | 406 |
|
1356 | 407 |
AddChatString(s) |
4 | 408 |
end; |
409 |
||
2124 | 410 |
procedure chTeamSay(var s: shortstring); |
411 |
begin |
|
412 |
SendIPC('b' + s); |
|
413 |
||
2962 | 414 |
s:= #4 + '[Team] ' + UserNick + ': ' + s; |
2124 | 415 |
|
2396 | 416 |
AddChatString(s) |
2124 | 417 |
end; |
418 |
||
4 | 419 |
procedure chTimer(var s: shortstring); |
420 |
begin |
|
2314 | 421 |
if (s[0] <> #1) or (s[1] < '1') or (s[1] > '5') or CheckNoTeamOrHH then exit; |
176 | 422 |
bShowFinger:= false; |
2314 | 423 |
|
926
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
917
diff
changeset
|
424 |
if not CurrentTeam^.ExtDriven then SendIPC(s); |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
917
diff
changeset
|
425 |
with CurrentHedgehog^.Gear^ do |
2947 | 426 |
begin |
427 |
Message:= Message or gm_Timer; |
|
428 |
MsgParam:= byte(s[1]) - ord('0') |
|
429 |
end |
|
4 | 430 |
end; |
431 |
||
432 |
procedure chSlot(var s: shortstring); |
|
433 |
var slot: LongWord; |
|
434 |
begin |
|
95 | 435 |
if (s[0] <> #1) or CheckNoTeamOrHH then exit; |
176 | 436 |
bShowFinger:= false; |
4 | 437 |
slot:= byte(s[1]) - 49; |
10 | 438 |
if slot > cMaxSlotIndex then exit; |
351 | 439 |
if not CurrentTeam^.ExtDriven then SendIPC(char(byte(s[1]) + 79)); |
783 | 440 |
with CurrentHedgehog^.Gear^ do |
2947 | 441 |
begin |
442 |
Message:= Message or gm_Slot; |
|
443 |
MsgParam:= slot |
|
444 |
end |
|
783 | 445 |
end; |
446 |
||
447 |
procedure chSetWeapon(var s: shortstring); |
|
448 |
begin |
|
449 |
if (s[0] <> #1) or CheckNoTeamOrHH then exit; |
|
784 | 450 |
|
1850 | 451 |
if TAmmoType(s[1]) > High(TAmmoType) then exit; |
784 | 452 |
|
453 |
if not CurrentTeam^.ExtDriven then SendIPC('w' + s); |
|
454 |
||
783 | 455 |
with CurrentHedgehog^.Gear^ do |
2947 | 456 |
begin |
457 |
Message:= Message or gm_Weapon; |
|
458 |
MsgParam:= byte(s[1]) |
|
459 |
end |
|
4 | 460 |
end; |
461 |
||
1035 | 462 |
procedure chTaunt(var s: shortstring); |
463 |
begin |
|
464 |
if (s[0] <> #1) or CheckNoTeamOrHH then exit; |
|
465 |
||
466 |
if TWave(s[1]) > High(TWave) then exit; |
|
467 |
||
468 |
if not CurrentTeam^.ExtDriven then SendIPC('t' + s); |
|
469 |
||
470 |
with CurrentHedgehog^.Gear^ do |
|
2947 | 471 |
begin |
472 |
Message:= Message or gm_Animate; |
|
473 |
MsgParam:= byte(s[1]) |
|
474 |
end |
|
1035 | 475 |
end; |
476 |
||
2017 | 477 |
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
|
478 |
var Gear: PVisualGear; |
2017 | 479 |
text: shortstring; |
480 |
begin |
|
481 |
text:= copy(s, 2, Length(s)-1); |
|
2110 | 482 |
if CheckNoTeamOrHH |
2947 | 483 |
or ((CurrentHedgehog^.Gear^.State and gstHHDriven) = 0) then |
2017 | 484 |
begin |
485 |
chSay(text); |
|
486 |
exit |
|
487 |
end; |
|
488 |
||
489 |
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
|
490 |
|
2017 | 491 |
if byte(s[1]) < 4 then |
492 |
begin |
|
2042
905c554d62e6
Move Speech to visual gears. This checkin CRASHES on deletion of visual gear outside the doStep
nemo
parents:
2022
diff
changeset
|
493 |
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
|
494 |
if Gear <> nil then |
2947 | 495 |
begin |
496 |
Gear^.Hedgehog:= CurrentHedgehog; |
|
497 |
Gear^.Text:= text; |
|
498 |
Gear^.FrameTicks:= byte(s[1]) |
|
499 |
end |
|
2017 | 500 |
end |
501 |
else |
|
502 |
begin |
|
2022 | 503 |
SpeechType:= byte(s[1])-3; |
2017 | 504 |
SpeechText:= text |
505 |
end; |
|
2042
905c554d62e6
Move Speech to visual gears. This checkin CRASHES on deletion of visual gear outside the doStep
nemo
parents:
2022
diff
changeset
|
506 |
|
2017 | 507 |
end; |
508 |
||
1821
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
509 |
procedure chNewGrave; |
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
510 |
begin |
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
511 |
if CheckNoTeamOrHH then exit; |
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
512 |
|
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
513 |
if not CurrentTeam^.ExtDriven then SendIPC('g'); |
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 |
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
|
516 |
end; |
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
517 |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
518 |
procedure doPut(putX, putY: LongInt; fromAI: boolean); |
4 | 519 |
begin |
520 |
if CheckNoTeamOrHH then exit; |
|
2963
0f0789204802
This might be all it takes to prevent the desync. needs local/remote testing. Also toggle 2nd barrel state on 0 movement
nemo
parents:
2962
diff
changeset
|
521 |
if not CurrentTeam^.ExtDriven and bShowAmmoMenu then |
2947 | 522 |
begin |
523 |
bSelected:= true; |
|
524 |
exit |
|
525 |
end; |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
526 |
|
602 | 527 |
with CurrentHedgehog^.Gear^, |
2947 | 528 |
CurrentHedgehog^ do |
529 |
if (State and gstHHChooseTarget) <> 0 then |
|
530 |
begin |
|
531 |
isCursorVisible:= false; |
|
532 |
if not CurrentTeam^.ExtDriven then |
|
533 |
begin |
|
534 |
if fromAI then |
|
535 |
begin |
|
536 |
TargetPoint.X:= putX; |
|
537 |
TargetPoint.Y:= putY |
|
538 |
end else |
|
539 |
begin |
|
540 |
TargetPoint.X:= CursorPoint.X - WorldDx; |
|
541 |
TargetPoint.Y:= cScreenHeight - CursorPoint.Y - WorldDy; |
|
542 |
end; |
|
543 |
SendIPCXY('p', TargetPoint.X, TargetPoint.Y); |
|
544 |
end |
|
545 |
else |
|
546 |
begin |
|
547 |
TargetPoint.X:= putX; |
|
548 |
TargetPoint.Y:= putY |
|
549 |
end; |
|
550 |
{$IFDEF DEBUGFILE}AddFilelog('put: ' + inttostr(TargetPoint.X) + ', ' + inttostr(TargetPoint.Y));{$ENDIF} |
|
551 |
State:= State and not gstHHChooseTarget; |
|
552 |
if (Ammo^[CurSlot, CurAmmo].Propz and ammoprop_AttackingPut) <> 0 then |
|
553 |
Message:= Message or gm_Attack; |
|
554 |
end |
|
555 |
else |
|
556 |
if CurrentTeam^.ExtDriven then |
|
557 |
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
|
558 |
end; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
559 |
|
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
560 |
procedure chPut(var s: shortstring); |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
561 |
begin |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
562 |
doPut(0, 0, false) |
4 | 563 |
end; |
564 |
||
565 |
procedure chCapture(var s: shortstring); |
|
566 |
begin |
|
567 |
flagMakeCapture:= true |
|
568 |
end; |
|
569 |
||
48 | 570 |
procedure chSkip(var s: shortstring); |
571 |
begin |
|
351 | 572 |
if not CurrentTeam^.ExtDriven then SendIPC(','); |
871 | 573 |
uStats.Skipped; |
917 | 574 |
skipFlag:= true |
48 | 575 |
end; |
576 |
||
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
577 |
procedure chSetMap(var s: shortstring); |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
578 |
begin |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
579 |
if isDeveloperMode then |
2947 | 580 |
begin |
581 |
Pathz[ptMapCurrent]:= Pathz[ptMaps] + '/' + s; |
|
582 |
InitStepsFlags:= InitStepsFlags or cifMap |
|
583 |
end |
|
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
584 |
end; |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
585 |
|
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
586 |
procedure chSetTheme(var s: shortstring); |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
587 |
begin |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
588 |
if isDeveloperMode then |
2947 | 589 |
begin |
590 |
Pathz[ptCurrTheme]:= Pathz[ptThemes] + '/' + s; |
|
591 |
InitStepsFlags:= InitStepsFlags or cifTheme |
|
592 |
end |
|
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
593 |
end; |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
594 |
|
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
595 |
procedure chSetSeed(var s: shortstring); |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
596 |
begin |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
597 |
if isDeveloperMode then |
2947 | 598 |
begin |
599 |
SetRandomSeed(s); |
|
600 |
cSeed:= s; |
|
601 |
InitStepsFlags:= InitStepsFlags or cifRandomize |
|
602 |
end |
|
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
603 |
end; |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
604 |
|
161 | 605 |
procedure chAmmoMenu(var s: shortstring); |
606 |
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
|
607 |
if CheckNoTeamOrHH then |
2947 | 608 |
bShowAmmoMenu:= true |
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 |
else |
2947 | 610 |
with CurrentTeam^ do |
2855
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2853
diff
changeset
|
611 |
with Hedgehogs[CurrHedgehog] do |
2947 | 612 |
begin |
613 |
bSelected:= false; |
|
682 | 614 |
|
2947 | 615 |
if bShowAmmoMenu then bShowAmmoMenu:= false |
616 |
else if ((Gear^.State and (gstAttacking or gstAttacked)) <> 0) or (MultiShootAttacks > 0) |
|
617 |
or ((Gear^.State and gstHHDriven) = 0) then else bShowAmmoMenu:= true |
|
618 |
end |
|
161 | 619 |
end; |
620 |
||
166
2920ab2bf329
Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents:
162
diff
changeset
|
621 |
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
|
622 |
var flags: Longword = 0; |
2947 | 623 |
ico: PSDL_Surface; |
192 | 624 |
{$IFDEF DEBUGFILE} |
625 |
buf: array[byte] of char; |
|
626 |
{$ENDIF} |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2714
diff
changeset
|
627 |
{$IFDEF SDL13} |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2714
diff
changeset
|
628 |
window: PSDL_Window; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2714
diff
changeset
|
629 |
{$ENDIF} |
166
2920ab2bf329
Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents:
162
diff
changeset
|
630 |
begin |
2947 | 631 |
if Length(s) = 0 then cFullScreen:= not cFullScreen |
632 |
else cFullScreen:= s = '1'; |
|
192 | 633 |
|
905 | 634 |
{$IFDEF DEBUGFILE} |
2947 | 635 |
AddFileLog('Prepare to change video parameters...'); |
905 | 636 |
{$ENDIF} |
2253 | 637 |
|
2947 | 638 |
flags:= SDL_OPENGL;// or SDL_RESIZABLE; |
753 | 639 |
|
2947 | 640 |
if cFullScreen then |
641 |
begin |
|
642 |
flags:= flags or SDL_FULLSCREEN; |
|
643 |
cScreenWidth:= cInitWidth; |
|
644 |
cScreenHeight:= cInitHeight |
|
645 |
end; |
|
2351
a4a17b8df591
Set window caption even in fullscreen mode (suggested by Smaxx)
unc0rr
parents:
2314
diff
changeset
|
646 |
|
2947 | 647 |
// load window icon |
3006 | 648 |
{$IFDEF SDL_IMAGE_NEWER} |
649 |
WriteToConsole('Init SDL_image... '); |
|
650 |
SDLTry(IMG_Init(IMG_INIT_PNG) <> 0, true); |
|
651 |
WriteLnToConsole(msgOK); |
|
652 |
{$ENDIF} |
|
653 |
{$IFDEF DARWIN} |
|
2947 | 654 |
ico:= LoadImage(Pathz[ptGraphics] + '/hwengine_mac', ifIgnoreCaps); |
3006 | 655 |
{$ELSE} |
656 |
ico:= LoadImage(Pathz[ptGraphics] + '/hwengine', ifIgnoreCaps); |
|
657 |
{$ENDIF} |
|
2947 | 658 |
if ico <> nil then |
3006 | 659 |
begin |
2947 | 660 |
SDL_WM_SetIcon(ico, 0); |
661 |
SDL_FreeSurface(ico) |
|
3006 | 662 |
end; |
2947 | 663 |
|
664 |
// set window caption |
|
665 |
SDL_WM_SetCaption('Hedgewars', nil); |
|
666 |
||
667 |
if SDLPrimSurface <> nil then |
|
668 |
begin |
|
2697 | 669 |
{$IFDEF DEBUGFILE} |
2947 | 670 |
AddFileLog('Freeing old primary surface...'); |
2697 | 671 |
{$ENDIF} |
2947 | 672 |
SDL_FreeSurface(SDLPrimSurface); |
673 |
end; |
|
674 |
||
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2714
diff
changeset
|
675 |
{$IFDEF SDL13} |
2947 | 676 |
window:= SDL_CreateWindow('Hedgewars', 0, 0, cScreenWidth, cScreenHeight, |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
677 |
SDL_WINDOW_OPENGL or SDL_WINDOW_SHOWN |
3006 | 678 |
{$IFDEF IPHONEOS} or SDL_WINDOW_BORDERLESS{$ENDIF}); |
679 |
SDL_CreateRenderer(window, -1, 0); |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
680 |
PixelFormat:= nil; |
2947 | 681 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
682 |
SDL_SetRenderDrawColor(0, 0, 0, 255); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
683 |
SDL_RenderFill(nil); |
2947 | 684 |
SDL_RenderPresent(); |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2714
diff
changeset
|
685 |
{$ELSE} |
2947 | 686 |
SDLPrimSurface:= SDL_SetVideoMode(cScreenWidth, cScreenHeight, cBits, flags); |
687 |
SDLTry(SDLPrimSurface <> nil, true); |
|
688 |
PixelFormat:= SDLPrimSurface^.format; |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2714
diff
changeset
|
689 |
{$ENDIF} |
192 | 690 |
|
905 | 691 |
{$IFDEF DEBUGFILE} |
2947 | 692 |
AddFileLog('Setting up OpenGL...'); |
693 |
AddFileLog('SDL video driver: ' + shortstring(SDL_VideoDriverName(buf, sizeof(buf)))); |
|
905 | 694 |
{$ENDIF} |
2947 | 695 |
SetupOpenGL(); |
166
2920ab2bf329
Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents:
162
diff
changeset
|
696 |
end; |
161 | 697 |
|
175 | 698 |
procedure chVol_p(var s: shortstring); |
174 | 699 |
begin |
175 | 700 |
inc(cVolumeDelta, 3) |
174 | 701 |
end; |
702 |
||
175 | 703 |
procedure chVol_m(var s: shortstring); |
174 | 704 |
begin |
175 | 705 |
dec(cVolumeDelta, 3) |
174 | 706 |
end; |
707 |
||
176 | 708 |
procedure chFindhh(var s: shortstring); |
709 |
begin |
|
710 |
if CheckNoTeamOrHH then exit; |
|
711 |
bShowFinger:= true; |
|
602 | 712 |
FollowGear:= CurrentHedgehog^.Gear |
176 | 713 |
end; |
714 |
||
281
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
263
diff
changeset
|
715 |
procedure chPause(var s: shortstring); |
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
263
diff
changeset
|
716 |
begin |
1743 | 717 |
if gameType <> gmtNet then |
2947 | 718 |
isPaused:= not isPaused; |
281
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
263
diff
changeset
|
719 |
SDL_ShowCursor(ord(isPaused)) |
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
263
diff
changeset
|
720 |
end; |
539
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
534
diff
changeset
|
721 |
|
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
534
diff
changeset
|
722 |
procedure chRotateMask(var s: shortstring); |
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
534
diff
changeset
|
723 |
begin |
2947 | 724 |
if ((GameFlags and gfInvulnerable) = 0) then cTagsMask:= cTagsMasks[cTagsMask] else cTagsMask:= cTagsMasksNoHealth[cTagsMask]; |
539
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
534
diff
changeset
|
725 |
end; |
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
534
diff
changeset
|
726 |
|
626 | 727 |
procedure chSpeedup_p(var s: shortstring); |
728 |
begin |
|
729 |
isSpeed:= true |
|
730 |
end; |
|
731 |
||
732 |
procedure chSpeedup_m(var s: shortstring); |
|
733 |
begin |
|
734 |
isSpeed:= false |
|
735 |
end; |
|
946 | 736 |
|
2162 | 737 |
procedure chZoomIn(var s: shortstring); |
738 |
begin |
|
2579 | 739 |
{$IFDEF IPHONEOS} |
740 |
if ZoomValue < 3.5 then |
|
741 |
{$ELSE} |
|
742 |
if ZoomValue < 3.0 then |
|
743 |
{$ENDIF} |
|
744 |
ZoomValue:= ZoomValue + 0.25; |
|
2162 | 745 |
end; |
746 |
||
747 |
procedure chZoomOut(var s: shortstring); |
|
748 |
begin |
|
2579 | 749 |
{$IFDEF IPHONEOS} |
750 |
if ZoomValue > 0.5 then |
|
751 |
{$ELSE} |
|
752 |
if ZoomValue > 1.0 then |
|
753 |
{$ENDIF} |
|
754 |
ZoomValue:= ZoomValue - 0.25; |
|
2162 | 755 |
end; |
756 |
||
2379 | 757 |
procedure chZoomReset(var s: shortstring); |
758 |
begin |
|
759 |
ZoomValue:= 2.0 |
|
760 |
end; |
|
761 |
||
946 | 762 |
procedure chChat(var s: shortstring); |
763 |
begin |
|
990
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
970
diff
changeset
|
764 |
GameState:= gsChat; |
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
970
diff
changeset
|
765 |
KeyPressChat(27) |
946 | 766 |
end; |
991 | 767 |
|
768 |
procedure chHistory(var s: shortstring); |
|
769 |
begin |
|
770 |
uChat.showAll:= not uChat.showAll |
|
771 |
end; |