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