author | smaxx |
Wed, 01 Sep 2010 13:03:43 +0200 | |
changeset 3796 | 4ab6d6f78312 |
parent 3776 | 28849f5a03c9 |
child 3797 | e097914ac0e2 |
permissions | -rw-r--r-- |
4 | 1 |
(* |
2947 | 2 |
* Hedgewars, a free turn based strategy game |
3236
4ab3917d7d44
Update (c) lines to 2010 as unc0rr requested - they all had varying values so I just took the first year mentioned, then tacked on -2010
nemo
parents:
3006
diff
changeset
|
3 |
* Copyright (c) 2004-2010 Andrey Korotaev <unC0Rr@gmail.com> |
2947 | 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 |
3407 | 34 |
s:= s; // avoid compiler hint |
1022 | 35 |
if GameState <> gsConfirm then |
36 |
begin |
|
37 |
prevGState:= GameState; |
|
38 |
GameState:= gsConfirm |
|
39 |
end else |
|
40 |
GameState:= prevGState |
|
41 |
end; |
|
42 |
||
43 |
procedure chConfirm(var s: shortstring); |
|
44 |
begin |
|
3407 | 45 |
s:= s; // avoid compiler hint |
1022 | 46 |
if GameState = gsConfirm then |
2947 | 47 |
begin |
48 |
SendIPC('Q'); |
|
49 |
GameState:= gsExit |
|
50 |
end |
|
2130
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
51 |
else |
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
52 |
begin |
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
53 |
GameState:= gsChat; |
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
54 |
KeyPressChat(27); |
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
55 |
KeyPressChat(47); |
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
56 |
KeyPressChat(116); |
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
57 |
KeyPressChat(101); |
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
58 |
KeyPressChat(97); |
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
59 |
KeyPressChat(109); |
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
60 |
KeyPressChat(32) |
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
61 |
end |
4 | 62 |
end; |
63 |
||
205 | 64 |
procedure chCheckProto(var s: shortstring); |
371 | 65 |
var i, c: LongInt; |
205 | 66 |
begin |
67 |
if isDeveloperMode then |
|
2947 | 68 |
begin |
69 |
val(s, i, c); |
|
70 |
if (c <> 0) or (i = 0) then exit; |
|
71 |
TryDo(i <= cNetProtoVersion, 'Protocol version mismatch: engine is too old', true); |
|
72 |
TryDo(i >= cNetProtoVersion, 'Protocol version mismatch: engine is too new', true) |
|
73 |
end |
|
205 | 74 |
end; |
75 |
||
4 | 76 |
procedure chAddTeam(var s: shortstring); |
549 | 77 |
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
|
78 |
ts, cs: shortstring; |
4 | 79 |
begin |
3407 | 80 |
cs:= ''; |
81 |
ts:= ''; |
|
145 | 82 |
if isDeveloperMode then |
2947 | 83 |
begin |
84 |
SplitBySpace(s, cs); |
|
85 |
SplitBySpace(cs, ts); |
|
86 |
val(cs, Color); |
|
87 |
TryDo(Color <> 0, 'Error: black team color', true); |
|
351 | 88 |
|
2947 | 89 |
// color is always little endian so the mask must be constant also in big endian archs |
90 |
Color:= Color or $FF000000; |
|
91 |
||
92 |
AddTeam(Color); |
|
93 |
CurrentTeam^.TeamName:= ts; |
|
94 |
CurrentTeam^.PlayerHash:= s; |
|
95 |
if GameType in [gmtDemo, gmtSave] then CurrentTeam^.ExtDriven:= true; |
|
1654 | 96 |
|
2947 | 97 |
CurrentTeam^.voicepack:= AskForVoicepack('Default') |
98 |
end |
|
4 | 99 |
end; |
100 |
||
101 |
procedure chTeamLocal(var s: shortstring); |
|
102 |
begin |
|
3407 | 103 |
s:= s; // avoid compiler hint |
4 | 104 |
if not isDeveloperMode then exit; |
105 |
if CurrentTeam = nil then OutError(errmsgIncorrectUse + ' "/rdriven"', true); |
|
351 | 106 |
CurrentTeam^.ExtDriven:= true |
4 | 107 |
end; |
108 |
||
109 |
procedure chGrave(var s: shortstring); |
|
110 |
begin |
|
111 |
if CurrentTeam = nil then OutError(errmsgIncorrectUse + ' "/grave"', true); |
|
112 |
if s[1]='"' then Delete(s, 1, 1); |
|
113 |
if s[byte(s[0])]='"' then Delete(s, byte(s[0]), 1); |
|
351 | 114 |
CurrentTeam^.GraveName:= s |
4 | 115 |
end; |
116 |
||
117 |
procedure chFort(var s: shortstring); |
|
118 |
begin |
|
764
7513452b1d51
Now game looks almost like it did before switching to OpenGL
unc0rr
parents:
753
diff
changeset
|
119 |
if CurrentTeam = nil then OutError(errmsgIncorrectUse + ' "/fort"', true); |
4 | 120 |
if s[1]='"' then Delete(s, 1, 1); |
121 |
if s[byte(s[0])]='"' then Delete(s, byte(s[0]), 1); |
|
351 | 122 |
CurrentTeam^.FortName:= s |
4 | 123 |
end; |
124 |
||
1654 | 125 |
procedure chVoicepack(var s: shortstring); |
126 |
begin |
|
127 |
if CurrentTeam = nil then OutError(errmsgIncorrectUse + ' "/voicepack"', true); |
|
128 |
if s[1]='"' then Delete(s, 1, 1); |
|
129 |
if s[byte(s[0])]='"' then Delete(s, byte(s[0]), 1); |
|
130 |
CurrentTeam^.voicepack:= AskForVoicepack(s) |
|
131 |
end; |
|
132 |
||
2747 | 133 |
procedure chFlag(var s: shortstring); |
134 |
begin |
|
135 |
if CurrentTeam = nil then OutError(errmsgIncorrectUse + ' "/flag"', true); |
|
136 |
if s[1]='"' then Delete(s, 1, 1); |
|
137 |
if s[byte(s[0])]='"' then Delete(s, byte(s[0]), 1); |
|
138 |
CurrentTeam^.flag:= s |
|
139 |
end; |
|
140 |
||
2786 | 141 |
procedure chScript(var s: shortstring); |
142 |
begin |
|
143 |
if s[1]='"' then Delete(s, 1, 1); |
|
144 |
if s[byte(s[0])]='"' then Delete(s, byte(s[0]), 1); |
|
145 |
ScriptLoad(s) |
|
146 |
end; |
|
147 |
||
312 | 148 |
procedure chAddHH(var id: shortstring); |
4 | 149 |
var s: shortstring; |
150 |
Gear: PGear; |
|
151 |
begin |
|
3407 | 152 |
s:= ''; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
153 |
if (not isDeveloperMode) or (CurrentTeam = nil) then exit; |
312 | 154 |
with CurrentTeam^ do |
2947 | 155 |
begin |
156 |
SplitBySpace(id, s); |
|
157 |
CurrentHedgehog:= @Hedgehogs[HedgehogsNumber]; |
|
158 |
val(id, CurrentHedgehog^.BotLevel); |
|
159 |
Gear:= AddGear(0, 0, gtHedgehog, 0, _0, _0, 0); |
|
160 |
SplitBySpace(s, id); |
|
161 |
val(s, Gear^.Health); |
|
162 |
TryDo(Gear^.Health > 0, 'Invalid hedgehog health', true); |
|
163 |
PHedgehog(Gear^.Hedgehog)^.Team:= CurrentTeam; |
|
2881 | 164 |
if (GameFlags and gfSharedAmmo) <> 0 then CurrentHedgehog^.AmmoStore:= Clan^.ClanIndex |
165 |
else CurrentHedgehog^.AmmoStore:= TeamsCount - 1; |
|
2947 | 166 |
CurrentHedgehog^.Gear:= Gear; |
167 |
CurrentHedgehog^.Name:= id; |
|
2808
8f48b538d591
Need this too to set it to last hog for current switch alg
nemo
parents:
2800
diff
changeset
|
168 |
CurrHedgehog:= HedgehogsNumber; |
2947 | 169 |
inc(HedgehogsNumber) |
170 |
end |
|
1242 | 171 |
end; |
172 |
||
173 |
procedure chSetHat(var s: shortstring); |
|
174 |
begin |
|
175 |
if (not isDeveloperMode) or (CurrentTeam = nil) then exit; |
|
176 |
with CurrentTeam^ do |
|
2726 | 177 |
begin |
178 |
if not CurrentHedgehog^.King then |
|
2947 | 179 |
if (s = '') or |
180 |
(((GameFlags and gfKing) <> 0) and (s = 'crown')) or |
|
181 |
((Length(s) > 39) and (Copy(s,1,8) = 'Reserved') and (Copy(s,9,32) <> PlayerHash)) then |
|
182 |
CurrentHedgehog^.Hat:= 'NoHat' |
|
183 |
else |
|
184 |
CurrentHedgehog^.Hat:= s |
|
2726 | 185 |
end; |
4 | 186 |
end; |
187 |
||
604
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
188 |
procedure chSetHHCoords(var x: shortstring); |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
189 |
var y: shortstring; |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
190 |
t: Longint; |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
191 |
begin |
3407 | 192 |
y:= ''; |
604
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
193 |
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
|
194 |
SplitBySpace(x, y); |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
195 |
val(x, t); |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
196 |
CurrentHedgehog^.Gear^.X:= int2hwFloat(t); |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
197 |
val(y, t); |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
198 |
CurrentHedgehog^.Gear^.Y:= int2hwFloat(t) |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
199 |
end; |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
200 |
|
3346 | 201 |
procedure chSetAmmoLoadout(var descr: shortstring); |
202 |
begin |
|
203 |
SetAmmoLoadout(descr) |
|
204 |
end; |
|
205 |
||
206 |
procedure chSetAmmoDelay(var descr: shortstring); |
|
207 |
begin |
|
208 |
SetAmmoDelay(descr) |
|
209 |
end; |
|
210 |
||
211 |
procedure chSetAmmoProbability(var descr: shortstring); |
|
212 |
begin |
|
213 |
SetAmmoProbability(descr) |
|
214 |
end; |
|
215 |
||
216 |
procedure chSetAmmoReinforcement(var descr: shortstring); |
|
217 |
begin |
|
218 |
SetAmmoReinforcement(descr) |
|
219 |
end; |
|
220 |
||
288 | 221 |
procedure chAddAmmoStore(var descr: shortstring); |
222 |
begin |
|
3407 | 223 |
descr:= ''; // avoid compiler hint |
3346 | 224 |
AddAmmoStore |
288 | 225 |
end; |
226 |
||
4 | 227 |
procedure chBind(var id: shortstring); |
228 |
var s: shortstring; |
|
371 | 229 |
b: LongInt; |
4 | 230 |
begin |
3407 | 231 |
s:= ''; |
4 | 232 |
if CurrentTeam = nil then exit; |
233 |
SplitBySpace(id, s); |
|
234 |
if s[1]='"' then Delete(s, 1, 1); |
|
235 |
if s[byte(s[0])]='"' then Delete(s, byte(s[0]), 1); |
|
236 |
b:= KeyNameToCode(id); |
|
351 | 237 |
if b = 0 then OutError(errmsgUnknownVariable + ' "' + id + '"', false) |
2947 | 238 |
else CurrentTeam^.Binds[b]:= s |
4 | 239 |
end; |
240 |
||
2428 | 241 |
procedure chCurU_p(var s: shortstring); |
242 |
begin |
|
3407 | 243 |
s:= s; // avoid compiler hint |
2428 | 244 |
CursorMovementY:= -1; |
245 |
end; |
|
246 |
||
247 |
procedure chCurU_m(var s: shortstring); |
|
248 |
begin |
|
3407 | 249 |
s:= s; // avoid compiler hint |
2428 | 250 |
CursorMovementY:= 0; |
251 |
end; |
|
252 |
||
253 |
procedure chCurD_p(var s: shortstring); |
|
254 |
begin |
|
3407 | 255 |
s:= s; // avoid compiler hint |
2428 | 256 |
CursorMovementY:= 1; |
257 |
end; |
|
258 |
||
259 |
procedure chCurD_m(var s: shortstring); |
|
260 |
begin |
|
3407 | 261 |
s:= s; // avoid compiler hint |
2428 | 262 |
CursorMovementY:= 0; |
263 |
end; |
|
264 |
||
265 |
procedure chCurL_p(var s: shortstring); |
|
266 |
begin |
|
3407 | 267 |
s:= s; // avoid compiler hint |
2428 | 268 |
CursorMovementX:= -1; |
269 |
end; |
|
270 |
||
271 |
procedure chCurL_m(var s: shortstring); |
|
272 |
begin |
|
3407 | 273 |
s:= s; // avoid compiler hint |
2428 | 274 |
CursorMovementX:= 0; |
275 |
end; |
|
276 |
||
277 |
procedure chCurR_p(var s: shortstring); |
|
278 |
begin |
|
3407 | 279 |
s:= s; // avoid compiler hint |
2428 | 280 |
CursorMovementX:= 1; |
281 |
end; |
|
282 |
||
283 |
procedure chCurR_m(var s: shortstring); |
|
284 |
begin |
|
3407 | 285 |
s:= s; // avoid compiler hint |
2428 | 286 |
CursorMovementX:= 0; |
287 |
end; |
|
288 |
||
4 | 289 |
procedure chLeft_p(var s: shortstring); |
290 |
begin |
|
3407 | 291 |
s:= s; // avoid compiler hint |
3776 | 292 |
if CheckNoTeamOrHH or isPaused then exit; |
293 |
if not CurrentTeam^.ExtDriven then SendIPC('L'); |
|
3796 | 294 |
if ReadyTimeLeft > 1 then ReadyTimeLeft:= 1; |
176 | 295 |
bShowFinger:= false; |
602 | 296 |
with CurrentHedgehog^.Gear^ do |
4 | 297 |
Message:= Message or gm_Left |
298 |
end; |
|
299 |
||
300 |
procedure chLeft_m(var s: shortstring); |
|
301 |
begin |
|
3407 | 302 |
s:= s; // avoid compiler hint |
4 | 303 |
if CheckNoTeamOrHH then exit; |
351 | 304 |
if not CurrentTeam^.ExtDriven then SendIPC('l'); |
602 | 305 |
with CurrentHedgehog^.Gear^ do |
2947 | 306 |
Message:= Message and not gm_Left |
4 | 307 |
end; |
308 |
||
309 |
procedure chRight_p(var s: shortstring); |
|
310 |
begin |
|
3407 | 311 |
s:= s; // avoid compiler hint |
3776 | 312 |
if CheckNoTeamOrHH or isPaused then exit; |
313 |
if not CurrentTeam^.ExtDriven then SendIPC('R'); |
|
3796 | 314 |
if ReadyTimeLeft > 1 then ReadyTimeLeft:= 1; |
176 | 315 |
bShowFinger:= false; |
602 | 316 |
with CurrentHedgehog^.Gear^ do |
4 | 317 |
Message:= Message or gm_Right |
318 |
end; |
|
319 |
||
320 |
procedure chRight_m(var s: shortstring); |
|
321 |
begin |
|
3407 | 322 |
s:= s; // avoid compiler hint |
4 | 323 |
if CheckNoTeamOrHH then exit; |
351 | 324 |
if not CurrentTeam^.ExtDriven then SendIPC('r'); |
602 | 325 |
with CurrentHedgehog^.Gear^ do |
2947 | 326 |
Message:= Message and not gm_Right |
4 | 327 |
end; |
328 |
||
329 |
procedure chUp_p(var s: shortstring); |
|
330 |
begin |
|
3407 | 331 |
s:= s; // avoid compiler hint |
3776 | 332 |
if CheckNoTeamOrHH or isPaused then exit; |
333 |
if not CurrentTeam^.ExtDriven then SendIPC('U'); |
|
3796 | 334 |
if ReadyTimeLeft > 1 then ReadyTimeLeft:= 1; |
176 | 335 |
bShowFinger:= false; |
602 | 336 |
with CurrentHedgehog^.Gear^ do |
4 | 337 |
Message:= Message or gm_Up |
338 |
end; |
|
339 |
||
340 |
procedure chUp_m(var s: shortstring); |
|
341 |
begin |
|
3407 | 342 |
s:= s; // avoid compiler hint |
4 | 343 |
if CheckNoTeamOrHH then exit; |
351 | 344 |
if not CurrentTeam^.ExtDriven then SendIPC('u'); |
602 | 345 |
with CurrentHedgehog^.Gear^ do |
2947 | 346 |
Message:= Message and not gm_Up |
4 | 347 |
end; |
348 |
||
349 |
procedure chDown_p(var s: shortstring); |
|
350 |
begin |
|
3407 | 351 |
s:= s; // avoid compiler hint |
3776 | 352 |
if CheckNoTeamOrHH or isPaused then exit; |
353 |
if not CurrentTeam^.ExtDriven then SendIPC('D'); |
|
3796 | 354 |
if ReadyTimeLeft > 1 then ReadyTimeLeft:= 1; |
176 | 355 |
bShowFinger:= false; |
602 | 356 |
with CurrentHedgehog^.Gear^ do |
4 | 357 |
Message:= Message or gm_Down |
358 |
end; |
|
359 |
||
360 |
procedure chDown_m(var s: shortstring); |
|
361 |
begin |
|
3407 | 362 |
s:= s; // avoid compiler hint |
4 | 363 |
if CheckNoTeamOrHH then exit; |
351 | 364 |
if not CurrentTeam^.ExtDriven then SendIPC('d'); |
602 | 365 |
with CurrentHedgehog^.Gear^ do |
2947 | 366 |
Message:= Message and not gm_Down |
4 | 367 |
end; |
368 |
||
1639 | 369 |
procedure chPrecise_p(var s: shortstring); |
370 |
begin |
|
3407 | 371 |
s:= s; // avoid compiler hint |
3776 | 372 |
if CheckNoTeamOrHH or isPaused then exit; |
373 |
if not CurrentTeam^.ExtDriven then SendIPC('Z'); |
|
3796 | 374 |
if ReadyTimeLeft > 1 then ReadyTimeLeft:= 1; |
1639 | 375 |
bShowFinger:= false; |
376 |
with CurrentHedgehog^.Gear^ do |
|
377 |
Message:= Message or gm_Precise |
|
378 |
end; |
|
379 |
||
380 |
procedure chPrecise_m(var s: shortstring); |
|
381 |
begin |
|
3407 | 382 |
s:= s; // avoid compiler hint |
1639 | 383 |
if CheckNoTeamOrHH then exit; |
384 |
if not CurrentTeam^.ExtDriven then SendIPC('z'); |
|
385 |
with CurrentHedgehog^.Gear^ do |
|
2947 | 386 |
Message:= Message and not gm_Precise |
1639 | 387 |
end; |
388 |
||
4 | 389 |
procedure chLJump(var s: shortstring); |
390 |
begin |
|
3407 | 391 |
s:= s; // avoid compiler hint |
3776 | 392 |
if CheckNoTeamOrHH or isPaused then exit; |
393 |
if not CurrentTeam^.ExtDriven then SendIPC('j'); |
|
394 |
if ReadyTimeLeft > 1 then begin ReadyTimeLeft:= 1; exit end; |
|
176 | 395 |
bShowFinger:= false; |
602 | 396 |
with CurrentHedgehog^.Gear^ do |
4 | 397 |
Message:= Message or gm_LJump |
398 |
end; |
|
399 |
||
400 |
procedure chHJump(var s: shortstring); |
|
401 |
begin |
|
3407 | 402 |
s:= s; // avoid compiler hint |
3776 | 403 |
if CheckNoTeamOrHH or isPaused then exit; |
404 |
if not CurrentTeam^.ExtDriven then SendIPC('J'); |
|
405 |
if ReadyTimeLeft > 1 then begin ReadyTimeLeft:= 1; exit end; |
|
176 | 406 |
bShowFinger:= false; |
602 | 407 |
with CurrentHedgehog^.Gear^ do |
4 | 408 |
Message:= Message or gm_HJump |
409 |
end; |
|
410 |
||
411 |
procedure chAttack_p(var s: shortstring); |
|
412 |
begin |
|
3407 | 413 |
s:= s; // avoid compiler hint |
3336 | 414 |
if CheckNoTeamOrHH or isPaused then exit; |
3774 | 415 |
if ReadyTimeLeft > 1 then |
416 |
begin |
|
417 |
ReadyTimeLeft:= 1; // set to 1 millisecond so we still play the sound file |
|
418 |
if not CurrentTeam^.ExtDriven then SendIPC('A'); |
|
419 |
exit |
|
420 |
end; |
|
176 | 421 |
bShowFinger:= false; |
602 | 422 |
with CurrentHedgehog^.Gear^ do |
2947 | 423 |
begin |
424 |
{$IFDEF DEBUGFILE}AddFileLog('/+attack: hedgehog''s Gear^.State = '+inttostr(State));{$ENDIF} |
|
425 |
if ((State and gstHHDriven) <> 0) then |
|
4 | 426 |
begin |
602 | 427 |
FollowGear:= CurrentHedgehog^.Gear; |
351 | 428 |
if not CurrentTeam^.ExtDriven then SendIPC('A'); |
4 | 429 |
Message:= Message or gm_Attack |
430 |
end |
|
2947 | 431 |
end |
4 | 432 |
end; |
433 |
||
434 |
procedure chAttack_m(var s: shortstring); |
|
435 |
begin |
|
3407 | 436 |
s:= s; // avoid compiler hint |
4 | 437 |
if CheckNoTeamOrHH then exit; |
602 | 438 |
with CurrentHedgehog^.Gear^ do |
2947 | 439 |
begin |
440 |
if not CurrentTeam^.ExtDriven and |
|
95 | 441 |
((Message and gm_Attack) <> 0) then SendIPC('a'); |
2947 | 442 |
Message:= Message and not gm_Attack |
443 |
end |
|
4 | 444 |
end; |
445 |
||
446 |
procedure chSwitch(var s: shortstring); |
|
447 |
begin |
|
3407 | 448 |
s:= s; // avoid compiler hint |
3776 | 449 |
if CheckNoTeamOrHH or isPaused then exit; |
351 | 450 |
if not CurrentTeam^.ExtDriven then SendIPC('S'); |
3796 | 451 |
if ReadyTimeLeft > 1 then ReadyTimeLeft:= 1; |
3776 | 452 |
bShowFinger:= false; |
602 | 453 |
with CurrentHedgehog^.Gear^ do |
2947 | 454 |
Message:= Message or gm_Switch |
4 | 455 |
end; |
456 |
||
457 |
procedure chNextTurn(var s: shortstring); |
|
458 |
begin |
|
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
459 |
s:= s; // avoid compiler hint |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
460 |
TryDo(AllInactive, '/nextturn called when not all gears are inactive', true); |
2046 | 461 |
|
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
462 |
if not CurrentTeam^.ExtDriven then SendIPC('N'); |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
463 |
{$IFDEF DEBUGFILE} |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
464 |
AddFileLog('Doing SwitchHedgehog: time '+inttostr(GameTicks)); |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
465 |
{$ENDIF} |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
466 |
{$IFDEF IPHONEOS} |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
467 |
clearView(); |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
468 |
{$ENDIF} |
4 | 469 |
end; |
470 |
||
471 |
procedure chSay(var s: shortstring); |
|
472 |
begin |
|
1356 | 473 |
SendIPC('s' + s); |
1378 | 474 |
|
475 |
if copy(s, 1, 4) = '/me ' then |
|
2947 | 476 |
s:= #2'* ' + UserNick + ' ' + copy(s, 5, Length(s) - 4) |
1378 | 477 |
else |
2947 | 478 |
s:= #1 + UserNick + ': ' + s; |
1378 | 479 |
|
1356 | 480 |
AddChatString(s) |
4 | 481 |
end; |
482 |
||
2124 | 483 |
procedure chTeamSay(var s: shortstring); |
484 |
begin |
|
485 |
SendIPC('b' + s); |
|
486 |
||
2962 | 487 |
s:= #4 + '[Team] ' + UserNick + ': ' + s; |
2124 | 488 |
|
2396 | 489 |
AddChatString(s) |
2124 | 490 |
end; |
491 |
||
4 | 492 |
procedure chTimer(var s: shortstring); |
493 |
begin |
|
2314 | 494 |
if (s[0] <> #1) or (s[1] < '1') or (s[1] > '5') or CheckNoTeamOrHH then exit; |
495 |
||
926
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
917
diff
changeset
|
496 |
if not CurrentTeam^.ExtDriven then SendIPC(s); |
3796 | 497 |
if ReadyTimeLeft > 1 then ReadyTimeLeft:= 1; |
3776 | 498 |
bShowFinger:= false; |
926
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
917
diff
changeset
|
499 |
with CurrentHedgehog^.Gear^ do |
2947 | 500 |
begin |
501 |
Message:= Message or gm_Timer; |
|
502 |
MsgParam:= byte(s[1]) - ord('0') |
|
503 |
end |
|
4 | 504 |
end; |
505 |
||
506 |
procedure chSlot(var s: shortstring); |
|
507 |
var slot: LongWord; |
|
508 |
begin |
|
95 | 509 |
if (s[0] <> #1) or CheckNoTeamOrHH then exit; |
4 | 510 |
slot:= byte(s[1]) - 49; |
10 | 511 |
if slot > cMaxSlotIndex then exit; |
351 | 512 |
if not CurrentTeam^.ExtDriven then SendIPC(char(byte(s[1]) + 79)); |
3796 | 513 |
if ReadyTimeLeft > 1 then ReadyTimeLeft:= 1; |
3776 | 514 |
bShowFinger:= false; |
783 | 515 |
with CurrentHedgehog^.Gear^ do |
2947 | 516 |
begin |
517 |
Message:= Message or gm_Slot; |
|
518 |
MsgParam:= slot |
|
519 |
end |
|
783 | 520 |
end; |
521 |
||
522 |
procedure chSetWeapon(var s: shortstring); |
|
523 |
begin |
|
3637
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3611
diff
changeset
|
524 |
if (s[0] <> #1) or CheckNoTeamOrHH then exit; |
784 | 525 |
|
3637
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3611
diff
changeset
|
526 |
if TAmmoType(s[1]) > High(TAmmoType) then exit; |
784 | 527 |
|
3637
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3611
diff
changeset
|
528 |
if not CurrentTeam^.ExtDriven then SendIPC('w' + s); |
784 | 529 |
|
3637
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3611
diff
changeset
|
530 |
with CurrentHedgehog^.Gear^ do |
2947 | 531 |
begin |
3637
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3611
diff
changeset
|
532 |
Message:= Message or gm_Weapon; |
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3611
diff
changeset
|
533 |
MsgParam:= byte(s[1]); |
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3611
diff
changeset
|
534 |
end; |
4 | 535 |
end; |
536 |
||
1035 | 537 |
procedure chTaunt(var s: shortstring); |
538 |
begin |
|
539 |
if (s[0] <> #1) or CheckNoTeamOrHH then exit; |
|
540 |
||
541 |
if TWave(s[1]) > High(TWave) then exit; |
|
542 |
||
543 |
if not CurrentTeam^.ExtDriven then SendIPC('t' + s); |
|
544 |
||
545 |
with CurrentHedgehog^.Gear^ do |
|
2947 | 546 |
begin |
547 |
Message:= Message or gm_Animate; |
|
548 |
MsgParam:= byte(s[1]) |
|
549 |
end |
|
1035 | 550 |
end; |
551 |
||
2017 | 552 |
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
|
553 |
var Gear: PVisualGear; |
2017 | 554 |
text: shortstring; |
555 |
begin |
|
556 |
text:= copy(s, 2, Length(s)-1); |
|
2110 | 557 |
if CheckNoTeamOrHH |
2947 | 558 |
or ((CurrentHedgehog^.Gear^.State and gstHHDriven) = 0) then |
2017 | 559 |
begin |
560 |
chSay(text); |
|
561 |
exit |
|
562 |
end; |
|
563 |
||
564 |
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
|
565 |
|
2017 | 566 |
if byte(s[1]) < 4 then |
567 |
begin |
|
2042
905c554d62e6
Move Speech to visual gears. This checkin CRASHES on deletion of visual gear outside the doStep
nemo
parents:
2022
diff
changeset
|
568 |
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
|
569 |
if Gear <> nil then |
2947 | 570 |
begin |
571 |
Gear^.Hedgehog:= CurrentHedgehog; |
|
572 |
Gear^.Text:= text; |
|
573 |
Gear^.FrameTicks:= byte(s[1]) |
|
574 |
end |
|
2017 | 575 |
end |
576 |
else |
|
577 |
begin |
|
2022 | 578 |
SpeechType:= byte(s[1])-3; |
2017 | 579 |
SpeechText:= text |
580 |
end; |
|
2042
905c554d62e6
Move Speech to visual gears. This checkin CRASHES on deletion of visual gear outside the doStep
nemo
parents:
2022
diff
changeset
|
581 |
|
2017 | 582 |
end; |
583 |
||
1821
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
584 |
procedure chNewGrave; |
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
585 |
begin |
3776 | 586 |
if CheckNoTeamOrHH or isPaused then exit; |
587 |
||
3796 | 588 |
if ReadyTimeLeft > 1 then ReadyTimeLeft:= 1; |
1821
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
589 |
|
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
590 |
if not CurrentTeam^.ExtDriven then SendIPC('g'); |
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
591 |
|
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
592 |
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
|
593 |
end; |
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
594 |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
595 |
procedure doPut(putX, putY: LongInt; fromAI: boolean); |
4 | 596 |
begin |
3776 | 597 |
if CheckNoTeamOrHH or isPaused then exit; |
3796 | 598 |
if ReadyTimeLeft > 1 then ReadyTimeLeft:= 1; |
3776 | 599 |
bShowFinger:= false; |
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
|
600 |
if not CurrentTeam^.ExtDriven and bShowAmmoMenu then |
2947 | 601 |
begin |
602 |
bSelected:= true; |
|
603 |
exit |
|
604 |
end; |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
605 |
|
602 | 606 |
with CurrentHedgehog^.Gear^, |
2947 | 607 |
CurrentHedgehog^ do |
608 |
if (State and gstHHChooseTarget) <> 0 then |
|
609 |
begin |
|
610 |
isCursorVisible:= false; |
|
611 |
if not CurrentTeam^.ExtDriven then |
|
612 |
begin |
|
613 |
if fromAI then |
|
614 |
begin |
|
615 |
TargetPoint.X:= putX; |
|
616 |
TargetPoint.Y:= putY |
|
617 |
end else |
|
618 |
begin |
|
619 |
TargetPoint.X:= CursorPoint.X - WorldDx; |
|
620 |
TargetPoint.Y:= cScreenHeight - CursorPoint.Y - WorldDy; |
|
621 |
end; |
|
622 |
SendIPCXY('p', TargetPoint.X, TargetPoint.Y); |
|
623 |
end |
|
624 |
else |
|
625 |
begin |
|
626 |
TargetPoint.X:= putX; |
|
627 |
TargetPoint.Y:= putY |
|
628 |
end; |
|
629 |
{$IFDEF DEBUGFILE}AddFilelog('put: ' + inttostr(TargetPoint.X) + ', ' + inttostr(TargetPoint.Y));{$ENDIF} |
|
630 |
State:= State and not gstHHChooseTarget; |
|
631 |
if (Ammo^[CurSlot, CurAmmo].Propz and ammoprop_AttackingPut) <> 0 then |
|
632 |
Message:= Message or gm_Attack; |
|
633 |
end |
|
634 |
else |
|
635 |
if CurrentTeam^.ExtDriven then |
|
636 |
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
|
637 |
end; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
638 |
|
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
639 |
procedure chPut(var s: shortstring); |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
640 |
begin |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
641 |
s:= s; // avoid compiler hint |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
642 |
doPut(0, 0, false); |
4 | 643 |
end; |
644 |
||
645 |
procedure chCapture(var s: shortstring); |
|
646 |
begin |
|
3407 | 647 |
s:= s; // avoid compiler hint |
4 | 648 |
flagMakeCapture:= true |
649 |
end; |
|
650 |
||
48 | 651 |
procedure chSkip(var s: shortstring); |
652 |
begin |
|
3407 | 653 |
s:= s; // avoid compiler hint |
351 | 654 |
if not CurrentTeam^.ExtDriven then SendIPC(','); |
871 | 655 |
uStats.Skipped; |
917 | 656 |
skipFlag:= true |
48 | 657 |
end; |
658 |
||
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
659 |
procedure chSetMap(var s: shortstring); |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
660 |
begin |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
661 |
if isDeveloperMode then |
2947 | 662 |
begin |
663 |
Pathz[ptMapCurrent]:= Pathz[ptMaps] + '/' + s; |
|
664 |
InitStepsFlags:= InitStepsFlags or cifMap |
|
665 |
end |
|
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
666 |
end; |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
667 |
|
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
668 |
procedure chSetTheme(var s: shortstring); |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
669 |
begin |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
670 |
if isDeveloperMode then |
2947 | 671 |
begin |
672 |
Pathz[ptCurrTheme]:= Pathz[ptThemes] + '/' + s; |
|
673 |
InitStepsFlags:= InitStepsFlags or cifTheme |
|
674 |
end |
|
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
675 |
end; |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
676 |
|
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
677 |
procedure chSetSeed(var s: shortstring); |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
678 |
begin |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
679 |
if isDeveloperMode then |
2947 | 680 |
begin |
681 |
SetRandomSeed(s); |
|
682 |
cSeed:= s; |
|
683 |
InitStepsFlags:= InitStepsFlags or cifRandomize |
|
684 |
end |
|
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
685 |
end; |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
686 |
|
161 | 687 |
procedure chAmmoMenu(var s: shortstring); |
688 |
begin |
|
3407 | 689 |
s:= s; // avoid compiler hint |
2855
7e6adeb57427
Show the ammo menu of the last local non-bot team when not local turn. needs testing
nemo
parents:
2853
diff
changeset
|
690 |
if CheckNoTeamOrHH then |
2947 | 691 |
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
|
692 |
else |
2947 | 693 |
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
|
694 |
with Hedgehogs[CurrHedgehog] do |
2947 | 695 |
begin |
696 |
bSelected:= false; |
|
682 | 697 |
|
2947 | 698 |
if bShowAmmoMenu then bShowAmmoMenu:= false |
3396
e5b3e5f2818e
More portal changes. Allows for a multishoot utility. Hopefully not breaking anything.
nemo
parents:
3395
diff
changeset
|
699 |
else if ((Gear^.State and (gstAttacking or gstAttacked)) <> 0) or |
e5b3e5f2818e
More portal changes. Allows for a multishoot utility. Hopefully not breaking anything.
nemo
parents:
3395
diff
changeset
|
700 |
((MultiShootAttacks > 0) and ((Ammo^[CurSlot, CurAmmo].Propz and ammoprop_NoRoundEndHint) = 0)) or |
e5b3e5f2818e
More portal changes. Allows for a multishoot utility. Hopefully not breaking anything.
nemo
parents:
3395
diff
changeset
|
701 |
((Gear^.State and gstHHDriven) = 0) then else bShowAmmoMenu:= true |
2947 | 702 |
end |
161 | 703 |
end; |
704 |
||
166
2920ab2bf329
Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents:
162
diff
changeset
|
705 |
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
|
706 |
var flags: Longword = 0; |
2947 | 707 |
ico: PSDL_Surface; |
192 | 708 |
{$IFDEF DEBUGFILE} |
709 |
buf: array[byte] of char; |
|
710 |
{$ENDIF} |
|
166
2920ab2bf329
Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents:
162
diff
changeset
|
711 |
begin |
3407 | 712 |
s:= s; // avoid compiler hint |
2947 | 713 |
if Length(s) = 0 then cFullScreen:= not cFullScreen |
714 |
else cFullScreen:= s = '1'; |
|
192 | 715 |
|
905 | 716 |
{$IFDEF DEBUGFILE} |
3426 | 717 |
buf[0]:= char(0); // avoid compiler hint |
2947 | 718 |
AddFileLog('Prepare to change video parameters...'); |
905 | 719 |
{$ENDIF} |
2253 | 720 |
|
2947 | 721 |
flags:= SDL_OPENGL;// or SDL_RESIZABLE; |
753 | 722 |
|
2947 | 723 |
if cFullScreen then |
724 |
flags:= flags or SDL_FULLSCREEN; |
|
2351
a4a17b8df591
Set window caption even in fullscreen mode (suggested by Smaxx)
unc0rr
parents:
2314
diff
changeset
|
725 |
|
3006 | 726 |
{$IFDEF SDL_IMAGE_NEWER} |
727 |
WriteToConsole('Init SDL_image... '); |
|
728 |
SDLTry(IMG_Init(IMG_INIT_PNG) <> 0, true); |
|
729 |
WriteLnToConsole(msgOK); |
|
730 |
{$ENDIF} |
|
3405 | 731 |
// load engine icon |
3006 | 732 |
{$IFDEF DARWIN} |
2947 | 733 |
ico:= LoadImage(Pathz[ptGraphics] + '/hwengine_mac', ifIgnoreCaps); |
3006 | 734 |
{$ELSE} |
735 |
ico:= LoadImage(Pathz[ptGraphics] + '/hwengine', ifIgnoreCaps); |
|
736 |
{$ENDIF} |
|
2947 | 737 |
if ico <> nil then |
3006 | 738 |
begin |
2947 | 739 |
SDL_WM_SetIcon(ico, 0); |
740 |
SDL_FreeSurface(ico) |
|
3006 | 741 |
end; |
2947 | 742 |
|
743 |
// set window caption |
|
744 |
SDL_WM_SetCaption('Hedgewars', nil); |
|
745 |
||
746 |
if SDLPrimSurface <> nil then |
|
747 |
begin |
|
2697 | 748 |
{$IFDEF DEBUGFILE} |
2947 | 749 |
AddFileLog('Freeing old primary surface...'); |
2697 | 750 |
{$ENDIF} |
2947 | 751 |
SDL_FreeSurface(SDLPrimSurface); |
3522
156c04c6a3d8
add initial stubs for selecting weapons in the ifrontend
koda
parents:
3426
diff
changeset
|
752 |
SDLPrimSurface:= nil; |
2947 | 753 |
end; |
754 |
||
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2714
diff
changeset
|
755 |
{$IFDEF SDL13} |
3598 | 756 |
if SDLwindow = nil then |
757 |
begin |
|
758 |
SDLwindow:= SDL_CreateWindow('Hedgewars', 0, 0, cScreenWidth, cScreenHeight, |
|
759 |
SDL_WINDOW_OPENGL or SDL_WINDOW_SHOWN |
|
760 |
{$IFDEF IPHONEOS} or SDL_WINDOW_BORDERLESS{$ENDIF}); |
|
761 |
SDL_CreateRenderer(SDLwindow, -1, 0); |
|
762 |
end; |
|
3395
095273ad0e08
adding a somewhat working autoration for ipad (uStore.pas and uWorld.pas got mixed in the last two commits)
koda
parents:
3346
diff
changeset
|
763 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
764 |
SDL_SetRenderDrawColor(0, 0, 0, 255); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
765 |
SDL_RenderFill(nil); |
2947 | 766 |
SDL_RenderPresent(); |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2714
diff
changeset
|
767 |
{$ELSE} |
2947 | 768 |
SDLPrimSurface:= SDL_SetVideoMode(cScreenWidth, cScreenHeight, cBits, flags); |
769 |
SDLTry(SDLPrimSurface <> nil, true); |
|
770 |
PixelFormat:= SDLPrimSurface^.format; |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2714
diff
changeset
|
771 |
{$ENDIF} |
192 | 772 |
|
905 | 773 |
{$IFDEF DEBUGFILE} |
2947 | 774 |
AddFileLog('Setting up OpenGL...'); |
775 |
AddFileLog('SDL video driver: ' + shortstring(SDL_VideoDriverName(buf, sizeof(buf)))); |
|
905 | 776 |
{$ENDIF} |
2947 | 777 |
SetupOpenGL(); |
166
2920ab2bf329
Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents:
162
diff
changeset
|
778 |
end; |
161 | 779 |
|
175 | 780 |
procedure chVol_p(var s: shortstring); |
174 | 781 |
begin |
3407 | 782 |
s:= s; // avoid compiler hint |
175 | 783 |
inc(cVolumeDelta, 3) |
174 | 784 |
end; |
785 |
||
175 | 786 |
procedure chVol_m(var s: shortstring); |
174 | 787 |
begin |
3407 | 788 |
s:= s; // avoid compiler hint |
175 | 789 |
dec(cVolumeDelta, 3) |
174 | 790 |
end; |
791 |
||
176 | 792 |
procedure chFindhh(var s: shortstring); |
793 |
begin |
|
3407 | 794 |
s:= s; // avoid compiler hint |
3336 | 795 |
if CheckNoTeamOrHH or isPaused then exit; |
176 | 796 |
bShowFinger:= true; |
602 | 797 |
FollowGear:= CurrentHedgehog^.Gear |
176 | 798 |
end; |
799 |
||
281
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
263
diff
changeset
|
800 |
procedure chPause(var s: shortstring); |
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
263
diff
changeset
|
801 |
begin |
3407 | 802 |
s:= s; // avoid compiler hint |
3796 | 803 |
if ReadyTimeLeft > 1 then ReadyTimeLeft:= 1; |
1743 | 804 |
if gameType <> gmtNet then |
2947 | 805 |
isPaused:= not isPaused; |
281
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
263
diff
changeset
|
806 |
SDL_ShowCursor(ord(isPaused)) |
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
263
diff
changeset
|
807 |
end; |
539
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
534
diff
changeset
|
808 |
|
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
534
diff
changeset
|
809 |
procedure chRotateMask(var s: shortstring); |
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
534
diff
changeset
|
810 |
begin |
3407 | 811 |
s:= s; // avoid compiler hint |
2947 | 812 |
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
|
813 |
end; |
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
534
diff
changeset
|
814 |
|
626 | 815 |
procedure chSpeedup_p(var s: shortstring); |
816 |
begin |
|
3407 | 817 |
s:= s; // avoid compiler hint |
626 | 818 |
isSpeed:= true |
819 |
end; |
|
820 |
||
821 |
procedure chSpeedup_m(var s: shortstring); |
|
822 |
begin |
|
3407 | 823 |
s:= s; // avoid compiler hint |
626 | 824 |
isSpeed:= false |
825 |
end; |
|
946 | 826 |
|
2162 | 827 |
procedure chZoomIn(var s: shortstring); |
828 |
begin |
|
3523 | 829 |
s:= s; // avoid compiler hint |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
830 |
if ZoomValue < cMinZoomLevel then |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
831 |
ZoomValue:= ZoomValue + cZoomDelta; |
2162 | 832 |
end; |
833 |
||
834 |
procedure chZoomOut(var s: shortstring); |
|
835 |
begin |
|
3523 | 836 |
s:= s; // avoid compiler hint |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
837 |
if ZoomValue > cMaxZoomLevel then |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
838 |
ZoomValue:= ZoomValue - cZoomDelta; |
2162 | 839 |
end; |
840 |
||
2379 | 841 |
procedure chZoomReset(var s: shortstring); |
842 |
begin |
|
3523 | 843 |
s:= s; // avoid compiler hint |
844 |
ZoomValue:= cDefaultZoomLevel; |
|
2379 | 845 |
end; |
846 |
||
946 | 847 |
procedure chChat(var s: shortstring); |
848 |
begin |
|
3680 | 849 |
s:= s; // avoid compiler hint |
850 |
GameState:= gsChat; |
|
851 |
KeyPressChat(27) |
|
946 | 852 |
end; |
991 | 853 |
|
854 |
procedure chHistory(var s: shortstring); |
|
855 |
begin |
|
3680 | 856 |
s:= s; // avoid compiler hint |
857 |
uChat.showAll:= not uChat.showAll |
|
991 | 858 |
end; |