author | jose1711 |
Tue, 16 Nov 2010 13:35:23 -0500 | |
changeset 4346 | 3f8e41da82ee |
parent 4241 | 835fd7a0e1bf |
child 4362 | 8dae325dc625 |
child 4365 | 4f2b1a152979 |
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; |
3969
5f4ef3db0a65
Ok. Let's disable the right one this time. In fact, let's just remove newgrave entirely - no point in half-measures.
nemo
parents:
3968
diff
changeset
|
108 |
|
4 | 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 |
3943
9835060e5c01
Add per-hog ammo option, initial stubs for infinite attack and weapon reset, fix a bug in ammo switching
nemo
parents:
3935
diff
changeset
|
165 |
else if (GameFlags and gfPerHogAmmo) <> 0 then |
9835060e5c01
Add per-hog ammo option, initial stubs for infinite attack and weapon reset, fix a bug in ammo switching
nemo
parents:
3935
diff
changeset
|
166 |
begin |
9835060e5c01
Add per-hog ammo option, initial stubs for infinite attack and weapon reset, fix a bug in ammo switching
nemo
parents:
3935
diff
changeset
|
167 |
AddAmmoStore; |
9835060e5c01
Add per-hog ammo option, initial stubs for infinite attack and weapon reset, fix a bug in ammo switching
nemo
parents:
3935
diff
changeset
|
168 |
CurrentHedgehog^.AmmoStore:= StoreCnt - 1 |
9835060e5c01
Add per-hog ammo option, initial stubs for infinite attack and weapon reset, fix a bug in ammo switching
nemo
parents:
3935
diff
changeset
|
169 |
end |
2881 | 170 |
else CurrentHedgehog^.AmmoStore:= TeamsCount - 1; |
2947 | 171 |
CurrentHedgehog^.Gear:= Gear; |
172 |
CurrentHedgehog^.Name:= id; |
|
4099 | 173 |
CurrentHedgehog^.InitialHealth:= Gear^.Health; |
2808
8f48b538d591
Need this too to set it to last hog for current switch alg
nemo
parents:
2800
diff
changeset
|
174 |
CurrHedgehog:= HedgehogsNumber; |
2947 | 175 |
inc(HedgehogsNumber) |
176 |
end |
|
1242 | 177 |
end; |
178 |
||
179 |
procedure chSetHat(var s: shortstring); |
|
180 |
begin |
|
181 |
if (not isDeveloperMode) or (CurrentTeam = nil) then exit; |
|
182 |
with CurrentTeam^ do |
|
2726 | 183 |
begin |
184 |
if not CurrentHedgehog^.King then |
|
2947 | 185 |
if (s = '') or |
186 |
(((GameFlags and gfKing) <> 0) and (s = 'crown')) or |
|
187 |
((Length(s) > 39) and (Copy(s,1,8) = 'Reserved') and (Copy(s,9,32) <> PlayerHash)) then |
|
188 |
CurrentHedgehog^.Hat:= 'NoHat' |
|
189 |
else |
|
190 |
CurrentHedgehog^.Hat:= s |
|
2726 | 191 |
end; |
4 | 192 |
end; |
193 |
||
604
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
194 |
procedure chSetHHCoords(var x: shortstring); |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
195 |
var y: shortstring; |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
196 |
t: Longint; |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
197 |
begin |
3407 | 198 |
y:= ''; |
604
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
199 |
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
|
200 |
SplitBySpace(x, y); |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
201 |
val(x, t); |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
202 |
CurrentHedgehog^.Gear^.X:= int2hwFloat(t); |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
203 |
val(y, t); |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
204 |
CurrentHedgehog^.Gear^.Y:= int2hwFloat(t) |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
205 |
end; |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
206 |
|
3346 | 207 |
procedure chSetAmmoLoadout(var descr: shortstring); |
208 |
begin |
|
209 |
SetAmmoLoadout(descr) |
|
210 |
end; |
|
211 |
||
212 |
procedure chSetAmmoDelay(var descr: shortstring); |
|
213 |
begin |
|
214 |
SetAmmoDelay(descr) |
|
215 |
end; |
|
216 |
||
217 |
procedure chSetAmmoProbability(var descr: shortstring); |
|
218 |
begin |
|
219 |
SetAmmoProbability(descr) |
|
220 |
end; |
|
221 |
||
222 |
procedure chSetAmmoReinforcement(var descr: shortstring); |
|
223 |
begin |
|
224 |
SetAmmoReinforcement(descr) |
|
225 |
end; |
|
226 |
||
288 | 227 |
procedure chAddAmmoStore(var descr: shortstring); |
228 |
begin |
|
3407 | 229 |
descr:= ''; // avoid compiler hint |
3346 | 230 |
AddAmmoStore |
288 | 231 |
end; |
232 |
||
4 | 233 |
procedure chBind(var id: shortstring); |
234 |
var s: shortstring; |
|
371 | 235 |
b: LongInt; |
4 | 236 |
begin |
3407 | 237 |
s:= ''; |
4 | 238 |
if CurrentTeam = nil then exit; |
239 |
SplitBySpace(id, s); |
|
240 |
if s[1]='"' then Delete(s, 1, 1); |
|
241 |
if s[byte(s[0])]='"' then Delete(s, byte(s[0]), 1); |
|
242 |
b:= KeyNameToCode(id); |
|
351 | 243 |
if b = 0 then OutError(errmsgUnknownVariable + ' "' + id + '"', false) |
2947 | 244 |
else CurrentTeam^.Binds[b]:= s |
4 | 245 |
end; |
246 |
||
2428 | 247 |
procedure chCurU_p(var s: shortstring); |
248 |
begin |
|
3407 | 249 |
s:= s; // avoid compiler hint |
2428 | 250 |
CursorMovementY:= -1; |
251 |
end; |
|
252 |
||
253 |
procedure chCurU_m(var s: shortstring); |
|
254 |
begin |
|
3407 | 255 |
s:= s; // avoid compiler hint |
2428 | 256 |
CursorMovementY:= 0; |
257 |
end; |
|
258 |
||
259 |
procedure chCurD_p(var s: shortstring); |
|
260 |
begin |
|
3407 | 261 |
s:= s; // avoid compiler hint |
2428 | 262 |
CursorMovementY:= 1; |
263 |
end; |
|
264 |
||
265 |
procedure chCurD_m(var s: shortstring); |
|
266 |
begin |
|
3407 | 267 |
s:= s; // avoid compiler hint |
2428 | 268 |
CursorMovementY:= 0; |
269 |
end; |
|
270 |
||
271 |
procedure chCurL_p(var s: shortstring); |
|
272 |
begin |
|
3407 | 273 |
s:= s; // avoid compiler hint |
2428 | 274 |
CursorMovementX:= -1; |
275 |
end; |
|
276 |
||
277 |
procedure chCurL_m(var s: shortstring); |
|
278 |
begin |
|
3407 | 279 |
s:= s; // avoid compiler hint |
2428 | 280 |
CursorMovementX:= 0; |
281 |
end; |
|
282 |
||
283 |
procedure chCurR_p(var s: shortstring); |
|
284 |
begin |
|
3407 | 285 |
s:= s; // avoid compiler hint |
2428 | 286 |
CursorMovementX:= 1; |
287 |
end; |
|
288 |
||
289 |
procedure chCurR_m(var s: shortstring); |
|
290 |
begin |
|
3407 | 291 |
s:= s; // avoid compiler hint |
2428 | 292 |
CursorMovementX:= 0; |
293 |
end; |
|
294 |
||
4 | 295 |
procedure chLeft_p(var s: shortstring); |
296 |
begin |
|
3407 | 297 |
s:= s; // avoid compiler hint |
3776 | 298 |
if CheckNoTeamOrHH or isPaused then exit; |
299 |
if not CurrentTeam^.ExtDriven then SendIPC('L'); |
|
3796 | 300 |
if ReadyTimeLeft > 1 then ReadyTimeLeft:= 1; |
176 | 301 |
bShowFinger:= false; |
602 | 302 |
with CurrentHedgehog^.Gear^ do |
3894 | 303 |
Message:= Message or gmLeft |
4 | 304 |
end; |
305 |
||
306 |
procedure chLeft_m(var s: shortstring); |
|
307 |
begin |
|
3407 | 308 |
s:= s; // avoid compiler hint |
4 | 309 |
if CheckNoTeamOrHH then exit; |
351 | 310 |
if not CurrentTeam^.ExtDriven then SendIPC('l'); |
602 | 311 |
with CurrentHedgehog^.Gear^ do |
3894 | 312 |
Message:= Message and not gmLeft |
4 | 313 |
end; |
314 |
||
315 |
procedure chRight_p(var s: shortstring); |
|
316 |
begin |
|
3407 | 317 |
s:= s; // avoid compiler hint |
3776 | 318 |
if CheckNoTeamOrHH or isPaused then exit; |
319 |
if not CurrentTeam^.ExtDriven then SendIPC('R'); |
|
3796 | 320 |
if ReadyTimeLeft > 1 then ReadyTimeLeft:= 1; |
176 | 321 |
bShowFinger:= false; |
602 | 322 |
with CurrentHedgehog^.Gear^ do |
3894 | 323 |
Message:= Message or gmRight |
4 | 324 |
end; |
325 |
||
326 |
procedure chRight_m(var s: shortstring); |
|
327 |
begin |
|
3407 | 328 |
s:= s; // avoid compiler hint |
4 | 329 |
if CheckNoTeamOrHH then exit; |
351 | 330 |
if not CurrentTeam^.ExtDriven then SendIPC('r'); |
602 | 331 |
with CurrentHedgehog^.Gear^ do |
3894 | 332 |
Message:= Message and not gmRight |
4 | 333 |
end; |
334 |
||
335 |
procedure chUp_p(var s: shortstring); |
|
336 |
begin |
|
3407 | 337 |
s:= s; // avoid compiler hint |
3776 | 338 |
if CheckNoTeamOrHH or isPaused then exit; |
339 |
if not CurrentTeam^.ExtDriven then SendIPC('U'); |
|
3796 | 340 |
if ReadyTimeLeft > 1 then ReadyTimeLeft:= 1; |
176 | 341 |
bShowFinger:= false; |
602 | 342 |
with CurrentHedgehog^.Gear^ do |
3894 | 343 |
Message:= Message or gmUp |
4 | 344 |
end; |
345 |
||
346 |
procedure chUp_m(var s: shortstring); |
|
347 |
begin |
|
3407 | 348 |
s:= s; // avoid compiler hint |
4 | 349 |
if CheckNoTeamOrHH then exit; |
351 | 350 |
if not CurrentTeam^.ExtDriven then SendIPC('u'); |
602 | 351 |
with CurrentHedgehog^.Gear^ do |
3894 | 352 |
Message:= Message and not gmUp |
4 | 353 |
end; |
354 |
||
355 |
procedure chDown_p(var s: shortstring); |
|
356 |
begin |
|
3407 | 357 |
s:= s; // avoid compiler hint |
3776 | 358 |
if CheckNoTeamOrHH or isPaused then exit; |
359 |
if not CurrentTeam^.ExtDriven then SendIPC('D'); |
|
3796 | 360 |
if ReadyTimeLeft > 1 then ReadyTimeLeft:= 1; |
176 | 361 |
bShowFinger:= false; |
602 | 362 |
with CurrentHedgehog^.Gear^ do |
3894 | 363 |
Message:= Message or gmDown |
4 | 364 |
end; |
365 |
||
366 |
procedure chDown_m(var s: shortstring); |
|
367 |
begin |
|
3407 | 368 |
s:= s; // avoid compiler hint |
4 | 369 |
if CheckNoTeamOrHH then exit; |
351 | 370 |
if not CurrentTeam^.ExtDriven then SendIPC('d'); |
602 | 371 |
with CurrentHedgehog^.Gear^ do |
3894 | 372 |
Message:= Message and not gmDown |
4 | 373 |
end; |
374 |
||
1639 | 375 |
procedure chPrecise_p(var s: shortstring); |
376 |
begin |
|
3407 | 377 |
s:= s; // avoid compiler hint |
3776 | 378 |
if CheckNoTeamOrHH or isPaused then exit; |
379 |
if not CurrentTeam^.ExtDriven then SendIPC('Z'); |
|
3796 | 380 |
if ReadyTimeLeft > 1 then ReadyTimeLeft:= 1; |
1639 | 381 |
bShowFinger:= false; |
382 |
with CurrentHedgehog^.Gear^ do |
|
3894 | 383 |
Message:= Message or gmPrecise |
1639 | 384 |
end; |
385 |
||
386 |
procedure chPrecise_m(var s: shortstring); |
|
387 |
begin |
|
3407 | 388 |
s:= s; // avoid compiler hint |
1639 | 389 |
if CheckNoTeamOrHH then exit; |
390 |
if not CurrentTeam^.ExtDriven then SendIPC('z'); |
|
391 |
with CurrentHedgehog^.Gear^ do |
|
3894 | 392 |
Message:= Message and not gmPrecise |
1639 | 393 |
end; |
394 |
||
4 | 395 |
procedure chLJump(var s: shortstring); |
396 |
begin |
|
3407 | 397 |
s:= s; // avoid compiler hint |
3776 | 398 |
if CheckNoTeamOrHH or isPaused then exit; |
399 |
if not CurrentTeam^.ExtDriven then SendIPC('j'); |
|
3797 | 400 |
if ReadyTimeLeft > 1 then ReadyTimeLeft:= 1; |
176 | 401 |
bShowFinger:= false; |
602 | 402 |
with CurrentHedgehog^.Gear^ do |
3894 | 403 |
Message:= Message or gmLJump |
4 | 404 |
end; |
405 |
||
406 |
procedure chHJump(var s: shortstring); |
|
407 |
begin |
|
3407 | 408 |
s:= s; // avoid compiler hint |
3776 | 409 |
if CheckNoTeamOrHH or isPaused then exit; |
410 |
if not CurrentTeam^.ExtDriven then SendIPC('J'); |
|
3797 | 411 |
if ReadyTimeLeft > 1 then ReadyTimeLeft:= 1; |
176 | 412 |
bShowFinger:= false; |
602 | 413 |
with CurrentHedgehog^.Gear^ do |
3894 | 414 |
Message:= Message or gmHJump |
4 | 415 |
end; |
416 |
||
417 |
procedure chAttack_p(var s: shortstring); |
|
418 |
begin |
|
3407 | 419 |
s:= s; // avoid compiler hint |
3336 | 420 |
if CheckNoTeamOrHH or isPaused then exit; |
3797 | 421 |
if ReadyTimeLeft > 1 then ReadyTimeLeft:= 1; |
176 | 422 |
bShowFinger:= false; |
602 | 423 |
with CurrentHedgehog^.Gear^ do |
2947 | 424 |
begin |
425 |
{$IFDEF DEBUGFILE}AddFileLog('/+attack: hedgehog''s Gear^.State = '+inttostr(State));{$ENDIF} |
|
426 |
if ((State and gstHHDriven) <> 0) then |
|
4 | 427 |
begin |
602 | 428 |
FollowGear:= CurrentHedgehog^.Gear; |
351 | 429 |
if not CurrentTeam^.ExtDriven then SendIPC('A'); |
3894 | 430 |
Message:= Message or gmAttack |
4 | 431 |
end |
2947 | 432 |
end |
4 | 433 |
end; |
434 |
||
435 |
procedure chAttack_m(var s: shortstring); |
|
436 |
begin |
|
3407 | 437 |
s:= s; // avoid compiler hint |
4 | 438 |
if CheckNoTeamOrHH then exit; |
602 | 439 |
with CurrentHedgehog^.Gear^ do |
2947 | 440 |
begin |
441 |
if not CurrentTeam^.ExtDriven and |
|
3894 | 442 |
((Message and gmAttack) <> 0) then SendIPC('a'); |
443 |
Message:= Message and not gmAttack |
|
2947 | 444 |
end |
4 | 445 |
end; |
446 |
||
447 |
procedure chSwitch(var s: shortstring); |
|
448 |
begin |
|
3407 | 449 |
s:= s; // avoid compiler hint |
3776 | 450 |
if CheckNoTeamOrHH or isPaused then exit; |
351 | 451 |
if not CurrentTeam^.ExtDriven then SendIPC('S'); |
3796 | 452 |
if ReadyTimeLeft > 1 then ReadyTimeLeft:= 1; |
3776 | 453 |
bShowFinger:= false; |
602 | 454 |
with CurrentHedgehog^.Gear^ do |
3894 | 455 |
Message:= Message or gmSwitch |
4 | 456 |
end; |
457 |
||
458 |
procedure chNextTurn(var s: shortstring); |
|
459 |
begin |
|
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
460 |
s:= s; // avoid compiler hint |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
461 |
TryDo(AllInactive, '/nextturn called when not all gears are inactive', true); |
2046 | 462 |
|
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
463 |
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
|
464 |
{$IFDEF DEBUGFILE} |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
465 |
AddFileLog('Doing SwitchHedgehog: time '+inttostr(GameTicks)); |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
466 |
{$ENDIF} |
3935 | 467 |
perfExt_NewTurnBeginning(); |
4 | 468 |
end; |
469 |
||
470 |
procedure chSay(var s: shortstring); |
|
471 |
begin |
|
1356 | 472 |
SendIPC('s' + s); |
1378 | 473 |
|
474 |
if copy(s, 1, 4) = '/me ' then |
|
2947 | 475 |
s:= #2'* ' + UserNick + ' ' + copy(s, 5, Length(s) - 4) |
1378 | 476 |
else |
2947 | 477 |
s:= #1 + UserNick + ': ' + s; |
1378 | 478 |
|
1356 | 479 |
AddChatString(s) |
4 | 480 |
end; |
481 |
||
2124 | 482 |
procedure chTeamSay(var s: shortstring); |
483 |
begin |
|
484 |
SendIPC('b' + s); |
|
485 |
||
2962 | 486 |
s:= #4 + '[Team] ' + UserNick + ': ' + s; |
2124 | 487 |
|
2396 | 488 |
AddChatString(s) |
2124 | 489 |
end; |
490 |
||
4 | 491 |
procedure chTimer(var s: shortstring); |
492 |
begin |
|
2314 | 493 |
if (s[0] <> #1) or (s[1] < '1') or (s[1] > '5') or CheckNoTeamOrHH then exit; |
494 |
||
926
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
917
diff
changeset
|
495 |
if not CurrentTeam^.ExtDriven then SendIPC(s); |
3796 | 496 |
if ReadyTimeLeft > 1 then ReadyTimeLeft:= 1; |
3776 | 497 |
bShowFinger:= false; |
926
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
917
diff
changeset
|
498 |
with CurrentHedgehog^.Gear^ do |
2947 | 499 |
begin |
3894 | 500 |
Message:= Message or gmTimer; |
2947 | 501 |
MsgParam:= byte(s[1]) - ord('0') |
502 |
end |
|
4 | 503 |
end; |
504 |
||
505 |
procedure chSlot(var s: shortstring); |
|
506 |
var slot: LongWord; |
|
507 |
begin |
|
95 | 508 |
if (s[0] <> #1) or CheckNoTeamOrHH then exit; |
4 | 509 |
slot:= byte(s[1]) - 49; |
10 | 510 |
if slot > cMaxSlotIndex then exit; |
351 | 511 |
if not CurrentTeam^.ExtDriven then SendIPC(char(byte(s[1]) + 79)); |
3796 | 512 |
if ReadyTimeLeft > 1 then ReadyTimeLeft:= 1; |
3776 | 513 |
bShowFinger:= false; |
783 | 514 |
with CurrentHedgehog^.Gear^ do |
2947 | 515 |
begin |
3894 | 516 |
Message:= Message or gmSlot; |
2947 | 517 |
MsgParam:= slot |
518 |
end |
|
783 | 519 |
end; |
520 |
||
521 |
procedure chSetWeapon(var s: shortstring); |
|
522 |
begin |
|
3637
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3611
diff
changeset
|
523 |
if (s[0] <> #1) or CheckNoTeamOrHH then exit; |
784 | 524 |
|
3637
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3611
diff
changeset
|
525 |
if TAmmoType(s[1]) > High(TAmmoType) then exit; |
784 | 526 |
|
3637
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3611
diff
changeset
|
527 |
if not CurrentTeam^.ExtDriven then SendIPC('w' + s); |
784 | 528 |
|
3637
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3611
diff
changeset
|
529 |
with CurrentHedgehog^.Gear^ do |
2947 | 530 |
begin |
3894 | 531 |
Message:= Message or gmWeapon; |
3637
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3611
diff
changeset
|
532 |
MsgParam:= byte(s[1]); |
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3611
diff
changeset
|
533 |
end; |
4 | 534 |
end; |
535 |
||
1035 | 536 |
procedure chTaunt(var s: shortstring); |
537 |
begin |
|
538 |
if (s[0] <> #1) or CheckNoTeamOrHH then exit; |
|
539 |
||
540 |
if TWave(s[1]) > High(TWave) then exit; |
|
541 |
||
542 |
if not CurrentTeam^.ExtDriven then SendIPC('t' + s); |
|
543 |
||
544 |
with CurrentHedgehog^.Gear^ do |
|
2947 | 545 |
begin |
3894 | 546 |
Message:= Message or gmAnimate; |
2947 | 547 |
MsgParam:= byte(s[1]) |
548 |
end |
|
1035 | 549 |
end; |
550 |
||
2017 | 551 |
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
|
552 |
var Gear: PVisualGear; |
2017 | 553 |
text: shortstring; |
554 |
begin |
|
555 |
text:= copy(s, 2, Length(s)-1); |
|
2110 | 556 |
if CheckNoTeamOrHH |
2947 | 557 |
or ((CurrentHedgehog^.Gear^.State and gstHHDriven) = 0) then |
2017 | 558 |
begin |
559 |
chSay(text); |
|
560 |
exit |
|
561 |
end; |
|
562 |
||
563 |
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
|
564 |
|
2017 | 565 |
if byte(s[1]) < 4 then |
566 |
begin |
|
2042
905c554d62e6
Move Speech to visual gears. This checkin CRASHES on deletion of visual gear outside the doStep
nemo
parents:
2022
diff
changeset
|
567 |
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
|
568 |
if Gear <> nil then |
2947 | 569 |
begin |
570 |
Gear^.Hedgehog:= CurrentHedgehog; |
|
571 |
Gear^.Text:= text; |
|
572 |
Gear^.FrameTicks:= byte(s[1]) |
|
573 |
end |
|
2017 | 574 |
end |
575 |
else |
|
576 |
begin |
|
2022 | 577 |
SpeechType:= byte(s[1])-3; |
2017 | 578 |
SpeechText:= text |
579 |
end; |
|
2042
905c554d62e6
Move Speech to visual gears. This checkin CRASHES on deletion of visual gear outside the doStep
nemo
parents:
2022
diff
changeset
|
580 |
|
2017 | 581 |
end; |
582 |
||
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
583 |
procedure doPut(putX, putY: LongInt; fromAI: boolean); |
4 | 584 |
begin |
3776 | 585 |
if CheckNoTeamOrHH or isPaused then exit; |
3796 | 586 |
if ReadyTimeLeft > 1 then ReadyTimeLeft:= 1; |
3776 | 587 |
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
|
588 |
if not CurrentTeam^.ExtDriven and bShowAmmoMenu then |
2947 | 589 |
begin |
590 |
bSelected:= true; |
|
591 |
exit |
|
592 |
end; |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
593 |
|
602 | 594 |
with CurrentHedgehog^.Gear^, |
2947 | 595 |
CurrentHedgehog^ do |
596 |
if (State and gstHHChooseTarget) <> 0 then |
|
597 |
begin |
|
598 |
isCursorVisible:= false; |
|
599 |
if not CurrentTeam^.ExtDriven then |
|
600 |
begin |
|
601 |
if fromAI then |
|
602 |
begin |
|
603 |
TargetPoint.X:= putX; |
|
604 |
TargetPoint.Y:= putY |
|
605 |
end else |
|
606 |
begin |
|
607 |
TargetPoint.X:= CursorPoint.X - WorldDx; |
|
608 |
TargetPoint.Y:= cScreenHeight - CursorPoint.Y - WorldDy; |
|
609 |
end; |
|
610 |
SendIPCXY('p', TargetPoint.X, TargetPoint.Y); |
|
611 |
end |
|
612 |
else |
|
613 |
begin |
|
614 |
TargetPoint.X:= putX; |
|
615 |
TargetPoint.Y:= putY |
|
616 |
end; |
|
617 |
{$IFDEF DEBUGFILE}AddFilelog('put: ' + inttostr(TargetPoint.X) + ', ' + inttostr(TargetPoint.Y));{$ENDIF} |
|
618 |
State:= State and not gstHHChooseTarget; |
|
3836
833c0f32e326
Change all use of curslot/idx to CurAmmoType to try and avoid some bugs with use of last weapon.
nemo
parents:
3797
diff
changeset
|
619 |
if (Ammoz[CurAmmoType].Ammo.Propz and ammoprop_AttackingPut) <> 0 then |
3894 | 620 |
Message:= Message or gmAttack; |
2947 | 621 |
end |
622 |
else |
|
623 |
if CurrentTeam^.ExtDriven then |
|
624 |
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
|
625 |
end; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
626 |
|
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
627 |
procedure chPut(var s: shortstring); |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
628 |
begin |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
629 |
s:= s; // avoid compiler hint |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
630 |
doPut(0, 0, false); |
4 | 631 |
end; |
632 |
||
633 |
procedure chCapture(var s: shortstring); |
|
634 |
begin |
|
3407 | 635 |
s:= s; // avoid compiler hint |
4 | 636 |
flagMakeCapture:= true |
637 |
end; |
|
638 |
||
48 | 639 |
procedure chSkip(var s: shortstring); |
640 |
begin |
|
3407 | 641 |
s:= s; // avoid compiler hint |
351 | 642 |
if not CurrentTeam^.ExtDriven then SendIPC(','); |
871 | 643 |
uStats.Skipped; |
917 | 644 |
skipFlag:= true |
48 | 645 |
end; |
646 |
||
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
647 |
procedure chSetMap(var s: shortstring); |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
648 |
begin |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
649 |
if isDeveloperMode then |
2947 | 650 |
begin |
651 |
Pathz[ptMapCurrent]:= Pathz[ptMaps] + '/' + s; |
|
652 |
InitStepsFlags:= InitStepsFlags or cifMap |
|
653 |
end |
|
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
654 |
end; |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
655 |
|
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
656 |
procedure chSetTheme(var s: shortstring); |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
657 |
begin |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
658 |
if isDeveloperMode then |
2947 | 659 |
begin |
660 |
Pathz[ptCurrTheme]:= Pathz[ptThemes] + '/' + s; |
|
661 |
InitStepsFlags:= InitStepsFlags or cifTheme |
|
662 |
end |
|
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
663 |
end; |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
664 |
|
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
665 |
procedure chSetSeed(var s: shortstring); |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
666 |
begin |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
667 |
if isDeveloperMode then |
2947 | 668 |
begin |
669 |
SetRandomSeed(s); |
|
670 |
cSeed:= s; |
|
671 |
InitStepsFlags:= InitStepsFlags or cifRandomize |
|
672 |
end |
|
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
673 |
end; |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
674 |
|
161 | 675 |
procedure chAmmoMenu(var s: shortstring); |
676 |
begin |
|
3407 | 677 |
s:= s; // avoid compiler hint |
3797 | 678 |
if CheckNoTeamOrHH then |
679 |
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
|
680 |
else |
3797 | 681 |
begin |
682 |
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
|
683 |
with Hedgehogs[CurrHedgehog] do |
2947 | 684 |
begin |
685 |
bSelected:= false; |
|
682 | 686 |
|
2947 | 687 |
if bShowAmmoMenu then bShowAmmoMenu:= false |
3396
e5b3e5f2818e
More portal changes. Allows for a multishoot utility. Hopefully not breaking anything.
nemo
parents:
3395
diff
changeset
|
688 |
else if ((Gear^.State and (gstAttacking or gstAttacked)) <> 0) or |
4241
835fd7a0e1bf
Move resurrection to utilities, reduce its probablit a bit to match other utilities, rename the "hint" prop since it really isn't being used as a hint anymore. That can be put back if it changes.
nemo
parents:
4210
diff
changeset
|
689 |
((MultiShootAttacks > 0) and ((Ammoz[CurAmmoType].Ammo.Propz and ammoprop_NoRoundEnd) = 0)) or |
3396
e5b3e5f2818e
More portal changes. Allows for a multishoot utility. Hopefully not breaking anything.
nemo
parents:
3395
diff
changeset
|
690 |
((Gear^.State and gstHHDriven) = 0) then else bShowAmmoMenu:= true |
3797 | 691 |
end; |
692 |
if ReadyTimeLeft > 1 then ReadyTimeLeft:= 1 |
|
693 |
end |
|
161 | 694 |
end; |
695 |
||
166
2920ab2bf329
Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents:
162
diff
changeset
|
696 |
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
|
697 |
var flags: Longword = 0; |
2947 | 698 |
ico: PSDL_Surface; |
192 | 699 |
{$IFDEF DEBUGFILE} |
700 |
buf: array[byte] of char; |
|
701 |
{$ENDIF} |
|
166
2920ab2bf329
Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents:
162
diff
changeset
|
702 |
begin |
3407 | 703 |
s:= s; // avoid compiler hint |
2947 | 704 |
if Length(s) = 0 then cFullScreen:= not cFullScreen |
705 |
else cFullScreen:= s = '1'; |
|
192 | 706 |
|
905 | 707 |
{$IFDEF DEBUGFILE} |
3426 | 708 |
buf[0]:= char(0); // avoid compiler hint |
2947 | 709 |
AddFileLog('Prepare to change video parameters...'); |
905 | 710 |
{$ENDIF} |
2253 | 711 |
|
2947 | 712 |
flags:= SDL_OPENGL;// or SDL_RESIZABLE; |
753 | 713 |
|
2947 | 714 |
if cFullScreen then |
715 |
flags:= flags or SDL_FULLSCREEN; |
|
2351
a4a17b8df591
Set window caption even in fullscreen mode (suggested by Smaxx)
unc0rr
parents:
2314
diff
changeset
|
716 |
|
3006 | 717 |
{$IFDEF SDL_IMAGE_NEWER} |
718 |
WriteToConsole('Init SDL_image... '); |
|
719 |
SDLTry(IMG_Init(IMG_INIT_PNG) <> 0, true); |
|
720 |
WriteLnToConsole(msgOK); |
|
721 |
{$ENDIF} |
|
3405 | 722 |
// load engine icon |
3006 | 723 |
{$IFDEF DARWIN} |
2947 | 724 |
ico:= LoadImage(Pathz[ptGraphics] + '/hwengine_mac', ifIgnoreCaps); |
3006 | 725 |
{$ELSE} |
726 |
ico:= LoadImage(Pathz[ptGraphics] + '/hwengine', ifIgnoreCaps); |
|
727 |
{$ENDIF} |
|
2947 | 728 |
if ico <> nil then |
3006 | 729 |
begin |
2947 | 730 |
SDL_WM_SetIcon(ico, 0); |
731 |
SDL_FreeSurface(ico) |
|
3006 | 732 |
end; |
2947 | 733 |
|
734 |
// set window caption |
|
735 |
SDL_WM_SetCaption('Hedgewars', nil); |
|
736 |
||
737 |
if SDLPrimSurface <> nil then |
|
738 |
begin |
|
2697 | 739 |
{$IFDEF DEBUGFILE} |
2947 | 740 |
AddFileLog('Freeing old primary surface...'); |
2697 | 741 |
{$ENDIF} |
2947 | 742 |
SDL_FreeSurface(SDLPrimSurface); |
3522
156c04c6a3d8
add initial stubs for selecting weapons in the ifrontend
koda
parents:
3426
diff
changeset
|
743 |
SDLPrimSurface:= nil; |
2947 | 744 |
end; |
745 |
||
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2714
diff
changeset
|
746 |
{$IFDEF SDL13} |
3598 | 747 |
if SDLwindow = nil then |
748 |
begin |
|
749 |
SDLwindow:= SDL_CreateWindow('Hedgewars', 0, 0, cScreenWidth, cScreenHeight, |
|
750 |
SDL_WINDOW_OPENGL or SDL_WINDOW_SHOWN |
|
751 |
{$IFDEF IPHONEOS} or SDL_WINDOW_BORDERLESS{$ENDIF}); |
|
752 |
SDL_CreateRenderer(SDLwindow, -1, 0); |
|
753 |
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
|
754 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
755 |
SDL_SetRenderDrawColor(0, 0, 0, 255); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
756 |
SDL_RenderFill(nil); |
2947 | 757 |
SDL_RenderPresent(); |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2714
diff
changeset
|
758 |
{$ELSE} |
2947 | 759 |
SDLPrimSurface:= SDL_SetVideoMode(cScreenWidth, cScreenHeight, cBits, flags); |
760 |
SDLTry(SDLPrimSurface <> nil, true); |
|
761 |
PixelFormat:= SDLPrimSurface^.format; |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2714
diff
changeset
|
762 |
{$ENDIF} |
192 | 763 |
|
905 | 764 |
{$IFDEF DEBUGFILE} |
2947 | 765 |
AddFileLog('Setting up OpenGL...'); |
766 |
AddFileLog('SDL video driver: ' + shortstring(SDL_VideoDriverName(buf, sizeof(buf)))); |
|
905 | 767 |
{$ENDIF} |
2947 | 768 |
SetupOpenGL(); |
166
2920ab2bf329
Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents:
162
diff
changeset
|
769 |
end; |
161 | 770 |
|
175 | 771 |
procedure chVol_p(var s: shortstring); |
174 | 772 |
begin |
3407 | 773 |
s:= s; // avoid compiler hint |
175 | 774 |
inc(cVolumeDelta, 3) |
174 | 775 |
end; |
776 |
||
175 | 777 |
procedure chVol_m(var s: shortstring); |
174 | 778 |
begin |
3407 | 779 |
s:= s; // avoid compiler hint |
175 | 780 |
dec(cVolumeDelta, 3) |
174 | 781 |
end; |
782 |
||
176 | 783 |
procedure chFindhh(var s: shortstring); |
784 |
begin |
|
3407 | 785 |
s:= s; // avoid compiler hint |
3336 | 786 |
if CheckNoTeamOrHH or isPaused then exit; |
176 | 787 |
bShowFinger:= true; |
602 | 788 |
FollowGear:= CurrentHedgehog^.Gear |
176 | 789 |
end; |
790 |
||
281
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
263
diff
changeset
|
791 |
procedure chPause(var s: shortstring); |
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
263
diff
changeset
|
792 |
begin |
3407 | 793 |
s:= s; // avoid compiler hint |
3796 | 794 |
if ReadyTimeLeft > 1 then ReadyTimeLeft:= 1; |
1743 | 795 |
if gameType <> gmtNet then |
2947 | 796 |
isPaused:= not isPaused; |
281
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
263
diff
changeset
|
797 |
SDL_ShowCursor(ord(isPaused)) |
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
263
diff
changeset
|
798 |
end; |
539
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
534
diff
changeset
|
799 |
|
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
534
diff
changeset
|
800 |
procedure chRotateMask(var s: shortstring); |
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
534
diff
changeset
|
801 |
begin |
3407 | 802 |
s:= s; // avoid compiler hint |
2947 | 803 |
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
|
804 |
end; |
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
534
diff
changeset
|
805 |
|
626 | 806 |
procedure chSpeedup_p(var s: shortstring); |
807 |
begin |
|
3407 | 808 |
s:= s; // avoid compiler hint |
626 | 809 |
isSpeed:= true |
810 |
end; |
|
811 |
||
812 |
procedure chSpeedup_m(var s: shortstring); |
|
813 |
begin |
|
3407 | 814 |
s:= s; // avoid compiler hint |
626 | 815 |
isSpeed:= false |
816 |
end; |
|
946 | 817 |
|
2162 | 818 |
procedure chZoomIn(var s: shortstring); |
819 |
begin |
|
3523 | 820 |
s:= s; // avoid compiler hint |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
821 |
if ZoomValue < cMinZoomLevel then |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
822 |
ZoomValue:= ZoomValue + cZoomDelta; |
2162 | 823 |
end; |
824 |
||
825 |
procedure chZoomOut(var s: shortstring); |
|
826 |
begin |
|
3523 | 827 |
s:= s; // avoid compiler hint |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
828 |
if ZoomValue > cMaxZoomLevel then |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
829 |
ZoomValue:= ZoomValue - cZoomDelta; |
2162 | 830 |
end; |
831 |
||
2379 | 832 |
procedure chZoomReset(var s: shortstring); |
833 |
begin |
|
3523 | 834 |
s:= s; // avoid compiler hint |
835 |
ZoomValue:= cDefaultZoomLevel; |
|
2379 | 836 |
end; |
837 |
||
946 | 838 |
procedure chChat(var s: shortstring); |
839 |
begin |
|
3680 | 840 |
s:= s; // avoid compiler hint |
841 |
GameState:= gsChat; |
|
842 |
KeyPressChat(27) |
|
946 | 843 |
end; |
991 | 844 |
|
845 |
procedure chHistory(var s: shortstring); |
|
846 |
begin |
|
3680 | 847 |
s:= s; // avoid compiler hint |
848 |
uChat.showAll:= not uChat.showAll |
|
991 | 849 |
end; |