author | unc0rr |
Fri, 07 May 2010 04:52:46 +0000 | |
changeset 3442 | 69898c6ede14 |
parent 3426 | 4ec21c6d6d33 |
child 3522 | 156c04c6a3d8 |
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 |
3336 | 292 |
if CheckNoTeamOrHH or isPaused then exit; |
176 | 293 |
bShowFinger:= false; |
351 | 294 |
if not CurrentTeam^.ExtDriven then SendIPC('L'); |
602 | 295 |
with CurrentHedgehog^.Gear^ do |
4 | 296 |
Message:= Message or gm_Left |
297 |
end; |
|
298 |
||
299 |
procedure chLeft_m(var s: shortstring); |
|
300 |
begin |
|
3407 | 301 |
s:= s; // avoid compiler hint |
4 | 302 |
if CheckNoTeamOrHH then exit; |
351 | 303 |
if not CurrentTeam^.ExtDriven then SendIPC('l'); |
602 | 304 |
with CurrentHedgehog^.Gear^ do |
2947 | 305 |
Message:= Message and not gm_Left |
4 | 306 |
end; |
307 |
||
308 |
procedure chRight_p(var s: shortstring); |
|
309 |
begin |
|
3407 | 310 |
s:= s; // avoid compiler hint |
3336 | 311 |
if CheckNoTeamOrHH or isPaused then exit; |
176 | 312 |
bShowFinger:= false; |
351 | 313 |
if not CurrentTeam^.ExtDriven then SendIPC('R'); |
602 | 314 |
with CurrentHedgehog^.Gear^ do |
4 | 315 |
Message:= Message or gm_Right |
316 |
end; |
|
317 |
||
318 |
procedure chRight_m(var s: shortstring); |
|
319 |
begin |
|
3407 | 320 |
s:= s; // avoid compiler hint |
4 | 321 |
if CheckNoTeamOrHH then exit; |
351 | 322 |
if not CurrentTeam^.ExtDriven then SendIPC('r'); |
602 | 323 |
with CurrentHedgehog^.Gear^ do |
2947 | 324 |
Message:= Message and not gm_Right |
4 | 325 |
end; |
326 |
||
327 |
procedure chUp_p(var s: shortstring); |
|
328 |
begin |
|
3407 | 329 |
s:= s; // avoid compiler hint |
3336 | 330 |
if CheckNoTeamOrHH or isPaused then exit; |
176 | 331 |
bShowFinger:= false; |
351 | 332 |
if not CurrentTeam^.ExtDriven then SendIPC('U'); |
602 | 333 |
with CurrentHedgehog^.Gear^ do |
4 | 334 |
Message:= Message or gm_Up |
335 |
end; |
|
336 |
||
337 |
procedure chUp_m(var s: shortstring); |
|
338 |
begin |
|
3407 | 339 |
s:= s; // avoid compiler hint |
4 | 340 |
if CheckNoTeamOrHH then exit; |
351 | 341 |
if not CurrentTeam^.ExtDriven then SendIPC('u'); |
602 | 342 |
with CurrentHedgehog^.Gear^ do |
2947 | 343 |
Message:= Message and not gm_Up |
4 | 344 |
end; |
345 |
||
346 |
procedure chDown_p(var s: shortstring); |
|
347 |
begin |
|
3407 | 348 |
s:= s; // avoid compiler hint |
3336 | 349 |
if CheckNoTeamOrHH or isPaused then exit; |
176 | 350 |
bShowFinger:= false; |
351 | 351 |
if not CurrentTeam^.ExtDriven then SendIPC('D'); |
602 | 352 |
with CurrentHedgehog^.Gear^ do |
4 | 353 |
Message:= Message or gm_Down |
354 |
end; |
|
355 |
||
356 |
procedure chDown_m(var s: shortstring); |
|
357 |
begin |
|
3407 | 358 |
s:= s; // avoid compiler hint |
4 | 359 |
if CheckNoTeamOrHH then exit; |
351 | 360 |
if not CurrentTeam^.ExtDriven then SendIPC('d'); |
602 | 361 |
with CurrentHedgehog^.Gear^ do |
2947 | 362 |
Message:= Message and not gm_Down |
4 | 363 |
end; |
364 |
||
1639 | 365 |
procedure chPrecise_p(var s: shortstring); |
366 |
begin |
|
3407 | 367 |
s:= s; // avoid compiler hint |
3336 | 368 |
if CheckNoTeamOrHH or isPaused then exit; |
1639 | 369 |
bShowFinger:= false; |
370 |
if not CurrentTeam^.ExtDriven then SendIPC('Z'); |
|
371 |
with CurrentHedgehog^.Gear^ do |
|
372 |
Message:= Message or gm_Precise |
|
373 |
end; |
|
374 |
||
375 |
procedure chPrecise_m(var s: shortstring); |
|
376 |
begin |
|
3407 | 377 |
s:= s; // avoid compiler hint |
1639 | 378 |
if CheckNoTeamOrHH then exit; |
379 |
if not CurrentTeam^.ExtDriven then SendIPC('z'); |
|
380 |
with CurrentHedgehog^.Gear^ do |
|
2947 | 381 |
Message:= Message and not gm_Precise |
1639 | 382 |
end; |
383 |
||
4 | 384 |
procedure chLJump(var s: shortstring); |
385 |
begin |
|
3407 | 386 |
s:= s; // avoid compiler hint |
3336 | 387 |
if CheckNoTeamOrHH or isPaused then exit; |
176 | 388 |
bShowFinger:= false; |
351 | 389 |
if not CurrentTeam^.ExtDriven then SendIPC('j'); |
602 | 390 |
with CurrentHedgehog^.Gear^ do |
4 | 391 |
Message:= Message or gm_LJump |
392 |
end; |
|
393 |
||
394 |
procedure chHJump(var s: shortstring); |
|
395 |
begin |
|
3407 | 396 |
s:= s; // avoid compiler hint |
3336 | 397 |
if CheckNoTeamOrHH or isPaused then exit; |
176 | 398 |
bShowFinger:= false; |
351 | 399 |
if not CurrentTeam^.ExtDriven then SendIPC('J'); |
602 | 400 |
with CurrentHedgehog^.Gear^ do |
4 | 401 |
Message:= Message or gm_HJump |
402 |
end; |
|
403 |
||
404 |
procedure chAttack_p(var s: shortstring); |
|
405 |
begin |
|
3407 | 406 |
s:= s; // avoid compiler hint |
3336 | 407 |
if CheckNoTeamOrHH or isPaused then exit; |
176 | 408 |
bShowFinger:= false; |
602 | 409 |
with CurrentHedgehog^.Gear^ do |
2947 | 410 |
begin |
411 |
{$IFDEF DEBUGFILE}AddFileLog('/+attack: hedgehog''s Gear^.State = '+inttostr(State));{$ENDIF} |
|
412 |
if ((State and gstHHDriven) <> 0) then |
|
4 | 413 |
begin |
602 | 414 |
FollowGear:= CurrentHedgehog^.Gear; |
351 | 415 |
if not CurrentTeam^.ExtDriven then SendIPC('A'); |
4 | 416 |
Message:= Message or gm_Attack |
417 |
end |
|
2947 | 418 |
end |
4 | 419 |
end; |
420 |
||
421 |
procedure chAttack_m(var s: shortstring); |
|
422 |
begin |
|
3407 | 423 |
s:= s; // avoid compiler hint |
4 | 424 |
if CheckNoTeamOrHH then exit; |
602 | 425 |
with CurrentHedgehog^.Gear^ do |
2947 | 426 |
begin |
427 |
if not CurrentTeam^.ExtDriven and |
|
95 | 428 |
((Message and gm_Attack) <> 0) then SendIPC('a'); |
2947 | 429 |
Message:= Message and not gm_Attack |
430 |
end |
|
4 | 431 |
end; |
432 |
||
433 |
procedure chSwitch(var s: shortstring); |
|
434 |
begin |
|
3407 | 435 |
s:= s; // avoid compiler hint |
3336 | 436 |
if CheckNoTeamOrHH or isPaused then exit; |
351 | 437 |
if not CurrentTeam^.ExtDriven then SendIPC('S'); |
602 | 438 |
with CurrentHedgehog^.Gear^ do |
2947 | 439 |
Message:= Message or gm_Switch |
4 | 440 |
end; |
441 |
||
442 |
procedure chNextTurn(var s: shortstring); |
|
443 |
begin |
|
3407 | 444 |
s:= s; // avoid compiler hint |
2045
b0588498bc3a
- Fix network (my crappy fault, triggered by nemo's patch)
unc0rr
parents:
2042
diff
changeset
|
445 |
TryDo(AllInactive, '/nextturn called when not all gears are inactive', true); |
2046 | 446 |
|
2045
b0588498bc3a
- Fix network (my crappy fault, triggered by nemo's patch)
unc0rr
parents:
2042
diff
changeset
|
447 |
if not CurrentTeam^.ExtDriven then SendIPC('N'); |
b0588498bc3a
- Fix network (my crappy fault, triggered by nemo's patch)
unc0rr
parents:
2042
diff
changeset
|
448 |
{$IFDEF DEBUGFILE}AddFileLog('Doing SwitchHedgehog: time '+inttostr(GameTicks));{$ENDIF} |
4 | 449 |
end; |
450 |
||
451 |
procedure chSay(var s: shortstring); |
|
452 |
begin |
|
1356 | 453 |
SendIPC('s' + s); |
1378 | 454 |
|
455 |
if copy(s, 1, 4) = '/me ' then |
|
2947 | 456 |
s:= #2'* ' + UserNick + ' ' + copy(s, 5, Length(s) - 4) |
1378 | 457 |
else |
2947 | 458 |
s:= #1 + UserNick + ': ' + s; |
1378 | 459 |
|
1356 | 460 |
AddChatString(s) |
4 | 461 |
end; |
462 |
||
2124 | 463 |
procedure chTeamSay(var s: shortstring); |
464 |
begin |
|
465 |
SendIPC('b' + s); |
|
466 |
||
2962 | 467 |
s:= #4 + '[Team] ' + UserNick + ': ' + s; |
2124 | 468 |
|
2396 | 469 |
AddChatString(s) |
2124 | 470 |
end; |
471 |
||
4 | 472 |
procedure chTimer(var s: shortstring); |
473 |
begin |
|
2314 | 474 |
if (s[0] <> #1) or (s[1] < '1') or (s[1] > '5') or CheckNoTeamOrHH then exit; |
176 | 475 |
bShowFinger:= false; |
2314 | 476 |
|
926
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
917
diff
changeset
|
477 |
if not CurrentTeam^.ExtDriven then SendIPC(s); |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
917
diff
changeset
|
478 |
with CurrentHedgehog^.Gear^ do |
2947 | 479 |
begin |
480 |
Message:= Message or gm_Timer; |
|
481 |
MsgParam:= byte(s[1]) - ord('0') |
|
482 |
end |
|
4 | 483 |
end; |
484 |
||
485 |
procedure chSlot(var s: shortstring); |
|
486 |
var slot: LongWord; |
|
487 |
begin |
|
95 | 488 |
if (s[0] <> #1) or CheckNoTeamOrHH then exit; |
176 | 489 |
bShowFinger:= false; |
4 | 490 |
slot:= byte(s[1]) - 49; |
10 | 491 |
if slot > cMaxSlotIndex then exit; |
351 | 492 |
if not CurrentTeam^.ExtDriven then SendIPC(char(byte(s[1]) + 79)); |
783 | 493 |
with CurrentHedgehog^.Gear^ do |
2947 | 494 |
begin |
495 |
Message:= Message or gm_Slot; |
|
496 |
MsgParam:= slot |
|
497 |
end |
|
783 | 498 |
end; |
499 |
||
500 |
procedure chSetWeapon(var s: shortstring); |
|
501 |
begin |
|
502 |
if (s[0] <> #1) or CheckNoTeamOrHH then exit; |
|
784 | 503 |
|
1850 | 504 |
if TAmmoType(s[1]) > High(TAmmoType) then exit; |
784 | 505 |
|
506 |
if not CurrentTeam^.ExtDriven then SendIPC('w' + s); |
|
507 |
||
783 | 508 |
with CurrentHedgehog^.Gear^ do |
2947 | 509 |
begin |
510 |
Message:= Message or gm_Weapon; |
|
511 |
MsgParam:= byte(s[1]) |
|
512 |
end |
|
4 | 513 |
end; |
514 |
||
1035 | 515 |
procedure chTaunt(var s: shortstring); |
516 |
begin |
|
517 |
if (s[0] <> #1) or CheckNoTeamOrHH then exit; |
|
518 |
||
519 |
if TWave(s[1]) > High(TWave) then exit; |
|
520 |
||
521 |
if not CurrentTeam^.ExtDriven then SendIPC('t' + s); |
|
522 |
||
523 |
with CurrentHedgehog^.Gear^ do |
|
2947 | 524 |
begin |
525 |
Message:= Message or gm_Animate; |
|
526 |
MsgParam:= byte(s[1]) |
|
527 |
end |
|
1035 | 528 |
end; |
529 |
||
2017 | 530 |
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
|
531 |
var Gear: PVisualGear; |
2017 | 532 |
text: shortstring; |
533 |
begin |
|
534 |
text:= copy(s, 2, Length(s)-1); |
|
2110 | 535 |
if CheckNoTeamOrHH |
2947 | 536 |
or ((CurrentHedgehog^.Gear^.State and gstHHDriven) = 0) then |
2017 | 537 |
begin |
538 |
chSay(text); |
|
539 |
exit |
|
540 |
end; |
|
541 |
||
542 |
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
|
543 |
|
2017 | 544 |
if byte(s[1]) < 4 then |
545 |
begin |
|
2042
905c554d62e6
Move Speech to visual gears. This checkin CRASHES on deletion of visual gear outside the doStep
nemo
parents:
2022
diff
changeset
|
546 |
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
|
547 |
if Gear <> nil then |
2947 | 548 |
begin |
549 |
Gear^.Hedgehog:= CurrentHedgehog; |
|
550 |
Gear^.Text:= text; |
|
551 |
Gear^.FrameTicks:= byte(s[1]) |
|
552 |
end |
|
2017 | 553 |
end |
554 |
else |
|
555 |
begin |
|
2022 | 556 |
SpeechType:= byte(s[1])-3; |
2017 | 557 |
SpeechText:= text |
558 |
end; |
|
2042
905c554d62e6
Move Speech to visual gears. This checkin CRASHES on deletion of visual gear outside the doStep
nemo
parents:
2022
diff
changeset
|
559 |
|
2017 | 560 |
end; |
561 |
||
1821
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
562 |
procedure chNewGrave; |
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
563 |
begin |
3336 | 564 |
if CheckNoTeamOrHH or isPaused then exit; |
1821
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
565 |
|
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
566 |
if not CurrentTeam^.ExtDriven then SendIPC('g'); |
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
567 |
|
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
568 |
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
|
569 |
end; |
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
570 |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
571 |
procedure doPut(putX, putY: LongInt; fromAI: boolean); |
4 | 572 |
begin |
3336 | 573 |
if CheckNoTeamOrHH or isPaused 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
|
574 |
if not CurrentTeam^.ExtDriven and bShowAmmoMenu then |
2947 | 575 |
begin |
576 |
bSelected:= true; |
|
577 |
exit |
|
578 |
end; |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
579 |
|
602 | 580 |
with CurrentHedgehog^.Gear^, |
2947 | 581 |
CurrentHedgehog^ do |
582 |
if (State and gstHHChooseTarget) <> 0 then |
|
583 |
begin |
|
584 |
isCursorVisible:= false; |
|
585 |
if not CurrentTeam^.ExtDriven then |
|
586 |
begin |
|
587 |
if fromAI then |
|
588 |
begin |
|
589 |
TargetPoint.X:= putX; |
|
590 |
TargetPoint.Y:= putY |
|
591 |
end else |
|
592 |
begin |
|
593 |
TargetPoint.X:= CursorPoint.X - WorldDx; |
|
594 |
TargetPoint.Y:= cScreenHeight - CursorPoint.Y - WorldDy; |
|
595 |
end; |
|
596 |
SendIPCXY('p', TargetPoint.X, TargetPoint.Y); |
|
597 |
end |
|
598 |
else |
|
599 |
begin |
|
600 |
TargetPoint.X:= putX; |
|
601 |
TargetPoint.Y:= putY |
|
602 |
end; |
|
603 |
{$IFDEF DEBUGFILE}AddFilelog('put: ' + inttostr(TargetPoint.X) + ', ' + inttostr(TargetPoint.Y));{$ENDIF} |
|
604 |
State:= State and not gstHHChooseTarget; |
|
605 |
if (Ammo^[CurSlot, CurAmmo].Propz and ammoprop_AttackingPut) <> 0 then |
|
606 |
Message:= Message or gm_Attack; |
|
607 |
end |
|
608 |
else |
|
609 |
if CurrentTeam^.ExtDriven then |
|
610 |
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
|
611 |
end; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
612 |
|
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
613 |
procedure chPut(var s: shortstring); |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
614 |
begin |
3407 | 615 |
s:= s; // avoid compiler hint |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
616 |
doPut(0, 0, false) |
4 | 617 |
end; |
618 |
||
619 |
procedure chCapture(var s: shortstring); |
|
620 |
begin |
|
3407 | 621 |
s:= s; // avoid compiler hint |
4 | 622 |
flagMakeCapture:= true |
623 |
end; |
|
624 |
||
48 | 625 |
procedure chSkip(var s: shortstring); |
626 |
begin |
|
3407 | 627 |
s:= s; // avoid compiler hint |
351 | 628 |
if not CurrentTeam^.ExtDriven then SendIPC(','); |
871 | 629 |
uStats.Skipped; |
917 | 630 |
skipFlag:= true |
48 | 631 |
end; |
632 |
||
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
633 |
procedure chSetMap(var s: shortstring); |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
634 |
begin |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
635 |
if isDeveloperMode then |
2947 | 636 |
begin |
637 |
Pathz[ptMapCurrent]:= Pathz[ptMaps] + '/' + s; |
|
638 |
InitStepsFlags:= InitStepsFlags or cifMap |
|
639 |
end |
|
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
640 |
end; |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
641 |
|
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
642 |
procedure chSetTheme(var s: shortstring); |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
643 |
begin |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
644 |
if isDeveloperMode then |
2947 | 645 |
begin |
646 |
Pathz[ptCurrTheme]:= Pathz[ptThemes] + '/' + s; |
|
647 |
InitStepsFlags:= InitStepsFlags or cifTheme |
|
648 |
end |
|
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
649 |
end; |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
650 |
|
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
651 |
procedure chSetSeed(var s: shortstring); |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
652 |
begin |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
653 |
if isDeveloperMode then |
2947 | 654 |
begin |
655 |
SetRandomSeed(s); |
|
656 |
cSeed:= s; |
|
657 |
InitStepsFlags:= InitStepsFlags or cifRandomize |
|
658 |
end |
|
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
659 |
end; |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
660 |
|
161 | 661 |
procedure chAmmoMenu(var s: shortstring); |
662 |
begin |
|
3407 | 663 |
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
|
664 |
if CheckNoTeamOrHH then |
2947 | 665 |
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
|
666 |
else |
2947 | 667 |
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
|
668 |
with Hedgehogs[CurrHedgehog] do |
2947 | 669 |
begin |
670 |
bSelected:= false; |
|
682 | 671 |
|
2947 | 672 |
if bShowAmmoMenu then bShowAmmoMenu:= false |
3396
e5b3e5f2818e
More portal changes. Allows for a multishoot utility. Hopefully not breaking anything.
nemo
parents:
3395
diff
changeset
|
673 |
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
|
674 |
((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
|
675 |
((Gear^.State and gstHHDriven) = 0) then else bShowAmmoMenu:= true |
2947 | 676 |
end |
161 | 677 |
end; |
678 |
||
166
2920ab2bf329
Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents:
162
diff
changeset
|
679 |
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
|
680 |
var flags: Longword = 0; |
2947 | 681 |
ico: PSDL_Surface; |
192 | 682 |
{$IFDEF DEBUGFILE} |
683 |
buf: array[byte] of char; |
|
684 |
{$ENDIF} |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2714
diff
changeset
|
685 |
{$IFDEF SDL13} |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2714
diff
changeset
|
686 |
window: PSDL_Window; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2714
diff
changeset
|
687 |
{$ENDIF} |
166
2920ab2bf329
Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents:
162
diff
changeset
|
688 |
begin |
3407 | 689 |
s:= s; // avoid compiler hint |
2947 | 690 |
if Length(s) = 0 then cFullScreen:= not cFullScreen |
691 |
else cFullScreen:= s = '1'; |
|
192 | 692 |
|
905 | 693 |
{$IFDEF DEBUGFILE} |
3426 | 694 |
buf[0]:= char(0); // avoid compiler hint |
2947 | 695 |
AddFileLog('Prepare to change video parameters...'); |
905 | 696 |
{$ENDIF} |
2253 | 697 |
|
2947 | 698 |
flags:= SDL_OPENGL;// or SDL_RESIZABLE; |
753 | 699 |
|
2947 | 700 |
if cFullScreen then |
701 |
begin |
|
702 |
flags:= flags or SDL_FULLSCREEN; |
|
703 |
cScreenWidth:= cInitWidth; |
|
704 |
cScreenHeight:= cInitHeight |
|
705 |
end; |
|
2351
a4a17b8df591
Set window caption even in fullscreen mode (suggested by Smaxx)
unc0rr
parents:
2314
diff
changeset
|
706 |
|
3006 | 707 |
{$IFDEF SDL_IMAGE_NEWER} |
708 |
WriteToConsole('Init SDL_image... '); |
|
709 |
SDLTry(IMG_Init(IMG_INIT_PNG) <> 0, true); |
|
710 |
WriteLnToConsole(msgOK); |
|
711 |
{$ENDIF} |
|
3405 | 712 |
// load engine icon |
3006 | 713 |
{$IFDEF DARWIN} |
2947 | 714 |
ico:= LoadImage(Pathz[ptGraphics] + '/hwengine_mac', ifIgnoreCaps); |
3006 | 715 |
{$ELSE} |
716 |
ico:= LoadImage(Pathz[ptGraphics] + '/hwengine', ifIgnoreCaps); |
|
717 |
{$ENDIF} |
|
2947 | 718 |
if ico <> nil then |
3006 | 719 |
begin |
2947 | 720 |
SDL_WM_SetIcon(ico, 0); |
721 |
SDL_FreeSurface(ico) |
|
3006 | 722 |
end; |
2947 | 723 |
|
724 |
// set window caption |
|
725 |
SDL_WM_SetCaption('Hedgewars', nil); |
|
726 |
||
727 |
if SDLPrimSurface <> nil then |
|
728 |
begin |
|
2697 | 729 |
{$IFDEF DEBUGFILE} |
2947 | 730 |
AddFileLog('Freeing old primary surface...'); |
2697 | 731 |
{$ENDIF} |
2947 | 732 |
SDL_FreeSurface(SDLPrimSurface); |
733 |
end; |
|
734 |
||
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2714
diff
changeset
|
735 |
{$IFDEF SDL13} |
2947 | 736 |
window:= SDL_CreateWindow('Hedgewars', 0, 0, cScreenWidth, cScreenHeight, |
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
737 |
SDL_WINDOW_OPENGL or SDL_WINDOW_SHOWN |
3006 | 738 |
{$IFDEF IPHONEOS} or SDL_WINDOW_BORDERLESS{$ENDIF}); |
739 |
SDL_CreateRenderer(window, -1, 0); |
|
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
|
740 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
741 |
SDL_SetRenderDrawColor(0, 0, 0, 255); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
742 |
SDL_RenderFill(nil); |
2947 | 743 |
SDL_RenderPresent(); |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2714
diff
changeset
|
744 |
{$ELSE} |
2947 | 745 |
SDLPrimSurface:= SDL_SetVideoMode(cScreenWidth, cScreenHeight, cBits, flags); |
746 |
SDLTry(SDLPrimSurface <> nil, true); |
|
747 |
PixelFormat:= SDLPrimSurface^.format; |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2714
diff
changeset
|
748 |
{$ENDIF} |
192 | 749 |
|
905 | 750 |
{$IFDEF DEBUGFILE} |
2947 | 751 |
AddFileLog('Setting up OpenGL...'); |
752 |
AddFileLog('SDL video driver: ' + shortstring(SDL_VideoDriverName(buf, sizeof(buf)))); |
|
905 | 753 |
{$ENDIF} |
2947 | 754 |
SetupOpenGL(); |
166
2920ab2bf329
Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents:
162
diff
changeset
|
755 |
end; |
161 | 756 |
|
175 | 757 |
procedure chVol_p(var s: shortstring); |
174 | 758 |
begin |
3407 | 759 |
s:= s; // avoid compiler hint |
175 | 760 |
inc(cVolumeDelta, 3) |
174 | 761 |
end; |
762 |
||
175 | 763 |
procedure chVol_m(var s: shortstring); |
174 | 764 |
begin |
3407 | 765 |
s:= s; // avoid compiler hint |
175 | 766 |
dec(cVolumeDelta, 3) |
174 | 767 |
end; |
768 |
||
176 | 769 |
procedure chFindhh(var s: shortstring); |
770 |
begin |
|
3407 | 771 |
s:= s; // avoid compiler hint |
3336 | 772 |
if CheckNoTeamOrHH or isPaused then exit; |
176 | 773 |
bShowFinger:= true; |
602 | 774 |
FollowGear:= CurrentHedgehog^.Gear |
176 | 775 |
end; |
776 |
||
281
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
263
diff
changeset
|
777 |
procedure chPause(var s: shortstring); |
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
263
diff
changeset
|
778 |
begin |
3407 | 779 |
s:= s; // avoid compiler hint |
1743 | 780 |
if gameType <> gmtNet then |
2947 | 781 |
isPaused:= not isPaused; |
281
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
263
diff
changeset
|
782 |
SDL_ShowCursor(ord(isPaused)) |
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
263
diff
changeset
|
783 |
end; |
539
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
534
diff
changeset
|
784 |
|
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
534
diff
changeset
|
785 |
procedure chRotateMask(var s: shortstring); |
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
534
diff
changeset
|
786 |
begin |
3407 | 787 |
s:= s; // avoid compiler hint |
2947 | 788 |
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
|
789 |
end; |
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
534
diff
changeset
|
790 |
|
626 | 791 |
procedure chSpeedup_p(var s: shortstring); |
792 |
begin |
|
3407 | 793 |
s:= s; // avoid compiler hint |
626 | 794 |
isSpeed:= true |
795 |
end; |
|
796 |
||
797 |
procedure chSpeedup_m(var s: shortstring); |
|
798 |
begin |
|
3407 | 799 |
s:= s; // avoid compiler hint |
626 | 800 |
isSpeed:= false |
801 |
end; |
|
946 | 802 |
|
2162 | 803 |
procedure chZoomIn(var s: shortstring); |
804 |
begin |
|
3407 | 805 |
s:= s; // avoid compiler hint |
2579 | 806 |
{$IFDEF IPHONEOS} |
807 |
if ZoomValue < 3.5 then |
|
808 |
{$ELSE} |
|
809 |
if ZoomValue < 3.0 then |
|
810 |
{$ENDIF} |
|
811 |
ZoomValue:= ZoomValue + 0.25; |
|
2162 | 812 |
end; |
813 |
||
814 |
procedure chZoomOut(var s: shortstring); |
|
815 |
begin |
|
3407 | 816 |
s:= s; // avoid compiler hint |
2579 | 817 |
{$IFDEF IPHONEOS} |
818 |
if ZoomValue > 0.5 then |
|
819 |
{$ELSE} |
|
820 |
if ZoomValue > 1.0 then |
|
821 |
{$ENDIF} |
|
822 |
ZoomValue:= ZoomValue - 0.25; |
|
2162 | 823 |
end; |
824 |
||
2379 | 825 |
procedure chZoomReset(var s: shortstring); |
826 |
begin |
|
3407 | 827 |
s:= s; // avoid compiler hint |
2379 | 828 |
ZoomValue:= 2.0 |
829 |
end; |
|
830 |
||
946 | 831 |
procedure chChat(var s: shortstring); |
832 |
begin |
|
3407 | 833 |
s:= s; // avoid compiler hint |
990
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
970
diff
changeset
|
834 |
GameState:= gsChat; |
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
970
diff
changeset
|
835 |
KeyPressChat(27) |
946 | 836 |
end; |
991 | 837 |
|
838 |
procedure chHistory(var s: shortstring); |
|
839 |
begin |
|
3407 | 840 |
s:= s; // avoid compiler hint |
991 | 841 |
uChat.showAll:= not uChat.showAll |
842 |
end; |