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