author | smaxx |
Tue, 24 Aug 2010 01:19:17 +0200 | |
changeset 3762 | aef7d95dd159 |
parent 3680 | aaf832c6fbd7 |
child 3774 | af0e68ca273e |
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 |
|
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
444 |
s:= s; // avoid compiler hint |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
445 |
TryDo(AllInactive, '/nextturn called when not all gears are inactive', true); |
2046 | 446 |
|
3639
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
447 |
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
|
448 |
{$IFDEF DEBUGFILE} |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
449 |
AddFileLog('Doing SwitchHedgehog: time '+inttostr(GameTicks)); |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
450 |
{$ENDIF} |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
451 |
{$IFDEF IPHONEOS} |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
452 |
clearView(); |
b5cdbcc89b61
use a button instead of label and simplify a lot touch interaction
koda
parents:
3638
diff
changeset
|
453 |
{$ENDIF} |
4 | 454 |
end; |
455 |
||
456 |
procedure chSay(var s: shortstring); |
|
457 |
begin |
|
1356 | 458 |
SendIPC('s' + s); |
1378 | 459 |
|
460 |
if copy(s, 1, 4) = '/me ' then |
|
2947 | 461 |
s:= #2'* ' + UserNick + ' ' + copy(s, 5, Length(s) - 4) |
1378 | 462 |
else |
2947 | 463 |
s:= #1 + UserNick + ': ' + s; |
1378 | 464 |
|
1356 | 465 |
AddChatString(s) |
4 | 466 |
end; |
467 |
||
2124 | 468 |
procedure chTeamSay(var s: shortstring); |
469 |
begin |
|
470 |
SendIPC('b' + s); |
|
471 |
||
2962 | 472 |
s:= #4 + '[Team] ' + UserNick + ': ' + s; |
2124 | 473 |
|
2396 | 474 |
AddChatString(s) |
2124 | 475 |
end; |
476 |
||
4 | 477 |
procedure chTimer(var s: shortstring); |
478 |
begin |
|
2314 | 479 |
if (s[0] <> #1) or (s[1] < '1') or (s[1] > '5') or CheckNoTeamOrHH then exit; |
176 | 480 |
bShowFinger:= false; |
2314 | 481 |
|
926
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
917
diff
changeset
|
482 |
if not CurrentTeam^.ExtDriven then SendIPC(s); |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
917
diff
changeset
|
483 |
with CurrentHedgehog^.Gear^ do |
2947 | 484 |
begin |
485 |
Message:= Message or gm_Timer; |
|
486 |
MsgParam:= byte(s[1]) - ord('0') |
|
487 |
end |
|
4 | 488 |
end; |
489 |
||
490 |
procedure chSlot(var s: shortstring); |
|
491 |
var slot: LongWord; |
|
492 |
begin |
|
95 | 493 |
if (s[0] <> #1) or CheckNoTeamOrHH then exit; |
176 | 494 |
bShowFinger:= false; |
4 | 495 |
slot:= byte(s[1]) - 49; |
10 | 496 |
if slot > cMaxSlotIndex then exit; |
351 | 497 |
if not CurrentTeam^.ExtDriven then SendIPC(char(byte(s[1]) + 79)); |
783 | 498 |
with CurrentHedgehog^.Gear^ do |
2947 | 499 |
begin |
500 |
Message:= Message or gm_Slot; |
|
501 |
MsgParam:= slot |
|
502 |
end |
|
783 | 503 |
end; |
504 |
||
505 |
procedure chSetWeapon(var s: shortstring); |
|
506 |
begin |
|
3637
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3611
diff
changeset
|
507 |
if (s[0] <> #1) or CheckNoTeamOrHH then exit; |
784 | 508 |
|
3637
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3611
diff
changeset
|
509 |
if TAmmoType(s[1]) > High(TAmmoType) then exit; |
784 | 510 |
|
3637
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3611
diff
changeset
|
511 |
if not CurrentTeam^.ExtDriven then SendIPC('w' + s); |
784 | 512 |
|
3637
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3611
diff
changeset
|
513 |
with CurrentHedgehog^.Gear^ do |
2947 | 514 |
begin |
3637
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3611
diff
changeset
|
515 |
Message:= Message or gm_Weapon; |
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3611
diff
changeset
|
516 |
MsgParam:= byte(s[1]); |
0db298524c3d
implement the check on the type of ammo requiring a second tap to confirm
koda
parents:
3611
diff
changeset
|
517 |
end; |
4 | 518 |
end; |
519 |
||
1035 | 520 |
procedure chTaunt(var s: shortstring); |
521 |
begin |
|
522 |
if (s[0] <> #1) or CheckNoTeamOrHH then exit; |
|
523 |
||
524 |
if TWave(s[1]) > High(TWave) then exit; |
|
525 |
||
526 |
if not CurrentTeam^.ExtDriven then SendIPC('t' + s); |
|
527 |
||
528 |
with CurrentHedgehog^.Gear^ do |
|
2947 | 529 |
begin |
530 |
Message:= Message or gm_Animate; |
|
531 |
MsgParam:= byte(s[1]) |
|
532 |
end |
|
1035 | 533 |
end; |
534 |
||
2017 | 535 |
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
|
536 |
var Gear: PVisualGear; |
2017 | 537 |
text: shortstring; |
538 |
begin |
|
539 |
text:= copy(s, 2, Length(s)-1); |
|
2110 | 540 |
if CheckNoTeamOrHH |
2947 | 541 |
or ((CurrentHedgehog^.Gear^.State and gstHHDriven) = 0) then |
2017 | 542 |
begin |
543 |
chSay(text); |
|
544 |
exit |
|
545 |
end; |
|
546 |
||
547 |
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
|
548 |
|
2017 | 549 |
if byte(s[1]) < 4 then |
550 |
begin |
|
2042
905c554d62e6
Move Speech to visual gears. This checkin CRASHES on deletion of visual gear outside the doStep
nemo
parents:
2022
diff
changeset
|
551 |
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
|
552 |
if Gear <> nil then |
2947 | 553 |
begin |
554 |
Gear^.Hedgehog:= CurrentHedgehog; |
|
555 |
Gear^.Text:= text; |
|
556 |
Gear^.FrameTicks:= byte(s[1]) |
|
557 |
end |
|
2017 | 558 |
end |
559 |
else |
|
560 |
begin |
|
2022 | 561 |
SpeechType:= byte(s[1])-3; |
2017 | 562 |
SpeechText:= text |
563 |
end; |
|
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 |
end; |
566 |
||
1821
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
567 |
procedure chNewGrave; |
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
568 |
begin |
3336 | 569 |
if CheckNoTeamOrHH or isPaused then exit; |
1821
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
570 |
|
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
571 |
if not CurrentTeam^.ExtDriven then SendIPC('g'); |
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
572 |
|
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
573 |
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
|
574 |
end; |
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
575 |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
576 |
procedure doPut(putX, putY: LongInt; fromAI: boolean); |
4 | 577 |
begin |
3336 | 578 |
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
|
579 |
if not CurrentTeam^.ExtDriven and bShowAmmoMenu then |
2947 | 580 |
begin |
581 |
bSelected:= true; |
|
582 |
exit |
|
583 |
end; |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
584 |
|
602 | 585 |
with CurrentHedgehog^.Gear^, |
2947 | 586 |
CurrentHedgehog^ do |
587 |
if (State and gstHHChooseTarget) <> 0 then |
|
588 |
begin |
|
589 |
isCursorVisible:= false; |
|
590 |
if not CurrentTeam^.ExtDriven then |
|
591 |
begin |
|
592 |
if fromAI then |
|
593 |
begin |
|
594 |
TargetPoint.X:= putX; |
|
595 |
TargetPoint.Y:= putY |
|
596 |
end else |
|
597 |
begin |
|
598 |
TargetPoint.X:= CursorPoint.X - WorldDx; |
|
599 |
TargetPoint.Y:= cScreenHeight - CursorPoint.Y - WorldDy; |
|
600 |
end; |
|
601 |
SendIPCXY('p', TargetPoint.X, TargetPoint.Y); |
|
602 |
end |
|
603 |
else |
|
604 |
begin |
|
605 |
TargetPoint.X:= putX; |
|
606 |
TargetPoint.Y:= putY |
|
607 |
end; |
|
608 |
{$IFDEF DEBUGFILE}AddFilelog('put: ' + inttostr(TargetPoint.X) + ', ' + inttostr(TargetPoint.Y));{$ENDIF} |
|
609 |
State:= State and not gstHHChooseTarget; |
|
610 |
if (Ammo^[CurSlot, CurAmmo].Propz and ammoprop_AttackingPut) <> 0 then |
|
611 |
Message:= Message or gm_Attack; |
|
612 |
end |
|
613 |
else |
|
614 |
if CurrentTeam^.ExtDriven then |
|
615 |
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
|
616 |
end; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
617 |
|
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
618 |
procedure chPut(var s: shortstring); |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
619 |
begin |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
620 |
s:= s; // avoid compiler hint |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
621 |
doPut(0, 0, false); |
4 | 622 |
end; |
623 |
||
624 |
procedure chCapture(var s: shortstring); |
|
625 |
begin |
|
3407 | 626 |
s:= s; // avoid compiler hint |
4 | 627 |
flagMakeCapture:= true |
628 |
end; |
|
629 |
||
48 | 630 |
procedure chSkip(var s: shortstring); |
631 |
begin |
|
3407 | 632 |
s:= s; // avoid compiler hint |
351 | 633 |
if not CurrentTeam^.ExtDriven then SendIPC(','); |
871 | 634 |
uStats.Skipped; |
917 | 635 |
skipFlag:= true |
48 | 636 |
end; |
637 |
||
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
638 |
procedure chSetMap(var s: shortstring); |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
639 |
begin |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
640 |
if isDeveloperMode then |
2947 | 641 |
begin |
642 |
Pathz[ptMapCurrent]:= Pathz[ptMaps] + '/' + s; |
|
643 |
InitStepsFlags:= InitStepsFlags or cifMap |
|
644 |
end |
|
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
645 |
end; |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
646 |
|
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
647 |
procedure chSetTheme(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[ptCurrTheme]:= Pathz[ptThemes] + '/' + s; |
|
652 |
InitStepsFlags:= InitStepsFlags or cifTheme |
|
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 chSetSeed(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 |
SetRandomSeed(s); |
|
661 |
cSeed:= s; |
|
662 |
InitStepsFlags:= InitStepsFlags or cifRandomize |
|
663 |
end |
|
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
664 |
end; |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
665 |
|
161 | 666 |
procedure chAmmoMenu(var s: shortstring); |
667 |
begin |
|
3407 | 668 |
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
|
669 |
if CheckNoTeamOrHH then |
2947 | 670 |
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
|
671 |
else |
2947 | 672 |
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
|
673 |
with Hedgehogs[CurrHedgehog] do |
2947 | 674 |
begin |
675 |
bSelected:= false; |
|
682 | 676 |
|
2947 | 677 |
if bShowAmmoMenu then bShowAmmoMenu:= false |
3396
e5b3e5f2818e
More portal changes. Allows for a multishoot utility. Hopefully not breaking anything.
nemo
parents:
3395
diff
changeset
|
678 |
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
|
679 |
((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
|
680 |
((Gear^.State and gstHHDriven) = 0) then else bShowAmmoMenu:= true |
2947 | 681 |
end |
161 | 682 |
end; |
683 |
||
166
2920ab2bf329
Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents:
162
diff
changeset
|
684 |
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
|
685 |
var flags: Longword = 0; |
2947 | 686 |
ico: PSDL_Surface; |
192 | 687 |
{$IFDEF DEBUGFILE} |
688 |
buf: array[byte] of char; |
|
689 |
{$ENDIF} |
|
166
2920ab2bf329
Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents:
162
diff
changeset
|
690 |
begin |
3407 | 691 |
s:= s; // avoid compiler hint |
2947 | 692 |
if Length(s) = 0 then cFullScreen:= not cFullScreen |
693 |
else cFullScreen:= s = '1'; |
|
192 | 694 |
|
905 | 695 |
{$IFDEF DEBUGFILE} |
3426 | 696 |
buf[0]:= char(0); // avoid compiler hint |
2947 | 697 |
AddFileLog('Prepare to change video parameters...'); |
905 | 698 |
{$ENDIF} |
2253 | 699 |
|
2947 | 700 |
flags:= SDL_OPENGL;// or SDL_RESIZABLE; |
753 | 701 |
|
2947 | 702 |
if cFullScreen then |
703 |
flags:= flags or SDL_FULLSCREEN; |
|
2351
a4a17b8df591
Set window caption even in fullscreen mode (suggested by Smaxx)
unc0rr
parents:
2314
diff
changeset
|
704 |
|
3006 | 705 |
{$IFDEF SDL_IMAGE_NEWER} |
706 |
WriteToConsole('Init SDL_image... '); |
|
707 |
SDLTry(IMG_Init(IMG_INIT_PNG) <> 0, true); |
|
708 |
WriteLnToConsole(msgOK); |
|
709 |
{$ENDIF} |
|
3405 | 710 |
// load engine icon |
3006 | 711 |
{$IFDEF DARWIN} |
2947 | 712 |
ico:= LoadImage(Pathz[ptGraphics] + '/hwengine_mac', ifIgnoreCaps); |
3006 | 713 |
{$ELSE} |
714 |
ico:= LoadImage(Pathz[ptGraphics] + '/hwengine', ifIgnoreCaps); |
|
715 |
{$ENDIF} |
|
2947 | 716 |
if ico <> nil then |
3006 | 717 |
begin |
2947 | 718 |
SDL_WM_SetIcon(ico, 0); |
719 |
SDL_FreeSurface(ico) |
|
3006 | 720 |
end; |
2947 | 721 |
|
722 |
// set window caption |
|
723 |
SDL_WM_SetCaption('Hedgewars', nil); |
|
724 |
||
725 |
if SDLPrimSurface <> nil then |
|
726 |
begin |
|
2697 | 727 |
{$IFDEF DEBUGFILE} |
2947 | 728 |
AddFileLog('Freeing old primary surface...'); |
2697 | 729 |
{$ENDIF} |
2947 | 730 |
SDL_FreeSurface(SDLPrimSurface); |
3522
156c04c6a3d8
add initial stubs for selecting weapons in the ifrontend
koda
parents:
3426
diff
changeset
|
731 |
SDLPrimSurface:= nil; |
2947 | 732 |
end; |
733 |
||
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2714
diff
changeset
|
734 |
{$IFDEF SDL13} |
3598 | 735 |
if SDLwindow = nil then |
736 |
begin |
|
737 |
SDLwindow:= SDL_CreateWindow('Hedgewars', 0, 0, cScreenWidth, cScreenHeight, |
|
738 |
SDL_WINDOW_OPENGL or SDL_WINDOW_SHOWN |
|
739 |
{$IFDEF IPHONEOS} or SDL_WINDOW_BORDERLESS{$ENDIF}); |
|
740 |
SDL_CreateRenderer(SDLwindow, -1, 0); |
|
741 |
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
|
742 |
|
2948
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
743 |
SDL_SetRenderDrawColor(0, 0, 0, 255); |
3f21a9dc93d0
Replace tabs with spaces using 'expand -t 4' command
unc0rr
parents:
2947
diff
changeset
|
744 |
SDL_RenderFill(nil); |
2947 | 745 |
SDL_RenderPresent(); |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2714
diff
changeset
|
746 |
{$ELSE} |
2947 | 747 |
SDLPrimSurface:= SDL_SetVideoMode(cScreenWidth, cScreenHeight, cBits, flags); |
748 |
SDLTry(SDLPrimSurface <> nil, true); |
|
749 |
PixelFormat:= SDLPrimSurface^.format; |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2714
diff
changeset
|
750 |
{$ENDIF} |
192 | 751 |
|
905 | 752 |
{$IFDEF DEBUGFILE} |
2947 | 753 |
AddFileLog('Setting up OpenGL...'); |
754 |
AddFileLog('SDL video driver: ' + shortstring(SDL_VideoDriverName(buf, sizeof(buf)))); |
|
905 | 755 |
{$ENDIF} |
2947 | 756 |
SetupOpenGL(); |
166
2920ab2bf329
Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents:
162
diff
changeset
|
757 |
end; |
161 | 758 |
|
175 | 759 |
procedure chVol_p(var s: shortstring); |
174 | 760 |
begin |
3407 | 761 |
s:= s; // avoid compiler hint |
175 | 762 |
inc(cVolumeDelta, 3) |
174 | 763 |
end; |
764 |
||
175 | 765 |
procedure chVol_m(var s: shortstring); |
174 | 766 |
begin |
3407 | 767 |
s:= s; // avoid compiler hint |
175 | 768 |
dec(cVolumeDelta, 3) |
174 | 769 |
end; |
770 |
||
176 | 771 |
procedure chFindhh(var s: shortstring); |
772 |
begin |
|
3407 | 773 |
s:= s; // avoid compiler hint |
3336 | 774 |
if CheckNoTeamOrHH or isPaused then exit; |
176 | 775 |
bShowFinger:= true; |
602 | 776 |
FollowGear:= CurrentHedgehog^.Gear |
176 | 777 |
end; |
778 |
||
281
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
263
diff
changeset
|
779 |
procedure chPause(var s: shortstring); |
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
263
diff
changeset
|
780 |
begin |
3407 | 781 |
s:= s; // avoid compiler hint |
1743 | 782 |
if gameType <> gmtNet then |
2947 | 783 |
isPaused:= not isPaused; |
281
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
263
diff
changeset
|
784 |
SDL_ShowCursor(ord(isPaused)) |
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
263
diff
changeset
|
785 |
end; |
539
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
534
diff
changeset
|
786 |
|
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
534
diff
changeset
|
787 |
procedure chRotateMask(var s: shortstring); |
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
534
diff
changeset
|
788 |
begin |
3407 | 789 |
s:= s; // avoid compiler hint |
2947 | 790 |
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
|
791 |
end; |
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
534
diff
changeset
|
792 |
|
626 | 793 |
procedure chSpeedup_p(var s: shortstring); |
794 |
begin |
|
3407 | 795 |
s:= s; // avoid compiler hint |
626 | 796 |
isSpeed:= true |
797 |
end; |
|
798 |
||
799 |
procedure chSpeedup_m(var s: shortstring); |
|
800 |
begin |
|
3407 | 801 |
s:= s; // avoid compiler hint |
626 | 802 |
isSpeed:= false |
803 |
end; |
|
946 | 804 |
|
2162 | 805 |
procedure chZoomIn(var s: shortstring); |
806 |
begin |
|
3523 | 807 |
s:= s; // avoid compiler hint |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
808 |
if ZoomValue < cMinZoomLevel then |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
809 |
ZoomValue:= ZoomValue + cZoomDelta; |
2162 | 810 |
end; |
811 |
||
812 |
procedure chZoomOut(var s: shortstring); |
|
813 |
begin |
|
3523 | 814 |
s:= s; // avoid compiler hint |
3638
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
815 |
if ZoomValue > cMaxZoomLevel then |
33ee433749ba
touch overlay reworked, improvements to zoom and confirmation
koda
parents:
3637
diff
changeset
|
816 |
ZoomValue:= ZoomValue - cZoomDelta; |
2162 | 817 |
end; |
818 |
||
2379 | 819 |
procedure chZoomReset(var s: shortstring); |
820 |
begin |
|
3523 | 821 |
s:= s; // avoid compiler hint |
822 |
ZoomValue:= cDefaultZoomLevel; |
|
2379 | 823 |
end; |
824 |
||
946 | 825 |
procedure chChat(var s: shortstring); |
826 |
begin |
|
3680 | 827 |
s:= s; // avoid compiler hint |
828 |
GameState:= gsChat; |
|
829 |
KeyPressChat(27) |
|
946 | 830 |
end; |
991 | 831 |
|
832 |
procedure chHistory(var s: shortstring); |
|
833 |
begin |
|
3680 | 834 |
s:= s; // avoid compiler hint |
835 |
uChat.showAll:= not uChat.showAll |
|
991 | 836 |
end; |