author | smxx |
Tue, 23 Feb 2010 00:27:48 +0000 | |
changeset 2849 | 5e9325659be2 |
parent 2831 | 797207d0c500 |
child 2853 | 953a6d71396f |
permissions | -rw-r--r-- |
4 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
1656
209cf0e2fc36
Finish voicepacks support in engine (not tested though)
unc0rr
parents:
1654
diff
changeset
|
3 |
* Copyright (c) 2004-2009 Andrey Korotaev <unC0Rr@gmail.com> |
4 | 4 |
* |
183 | 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 |
|
4 | 8 |
* |
183 | 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. |
|
4 | 13 |
* |
183 | 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 |
|
4 | 17 |
*) |
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 |
4 | 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 |
1022 | 34 |
if GameState <> gsConfirm then |
35 |
begin |
|
36 |
prevGState:= GameState; |
|
37 |
GameState:= gsConfirm |
|
38 |
end else |
|
39 |
GameState:= prevGState |
|
40 |
end; |
|
41 |
||
42 |
procedure chConfirm(var s: shortstring); |
|
43 |
begin |
|
44 |
if GameState = gsConfirm then |
|
45 |
begin |
|
46 |
SendIPC('Q'); |
|
47 |
GameState:= gsExit |
|
48 |
end |
|
2130
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
49 |
else |
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
50 |
begin |
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
51 |
GameState:= gsChat; |
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
52 |
KeyPressChat(27); |
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
53 |
KeyPressChat(47); |
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
54 |
KeyPressChat(116); |
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
55 |
KeyPressChat(101); |
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
56 |
KeyPressChat(97); |
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
57 |
KeyPressChat(109); |
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
58 |
KeyPressChat(32) |
708758635955
Please don't take away my checkin privileges - Tiy asked me to keep working on this
nemo
parents:
2125
diff
changeset
|
59 |
end |
4 | 60 |
end; |
61 |
||
205 | 62 |
procedure chCheckProto(var s: shortstring); |
371 | 63 |
var i, c: LongInt; |
205 | 64 |
begin |
65 |
if isDeveloperMode then |
|
66 |
begin |
|
67 |
val(s, i, c); |
|
68 |
if (c <> 0) or (i = 0) then exit; |
|
69 |
TryDo(i <= cNetProtoVersion, 'Protocol version mismatch: engine is too old', true); |
|
70 |
TryDo(i >= cNetProtoVersion, 'Protocol version mismatch: engine is too new', true) |
|
71 |
end |
|
72 |
end; |
|
73 |
||
4 | 74 |
procedure chAddTeam(var s: shortstring); |
549 | 75 |
var Color: Longword; |
605 | 76 |
ts: shortstring; |
4 | 77 |
begin |
145 | 78 |
if isDeveloperMode then |
79 |
begin |
|
605 | 80 |
SplitBySpace(s, ts); |
549 | 81 |
val(s, Color); |
82 |
TryDo(Color <> 0, 'Error: black team color', true); |
|
351 | 83 |
|
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
|
84 |
// color is always little endian so the mask must be constant also in big endian archs |
2624 | 85 |
Color:= Color or $FF000000; |
86 |
||
549 | 87 |
AddTeam(Color); |
605 | 88 |
CurrentTeam^.TeamName:= ts; |
1654 | 89 |
if GameType in [gmtDemo, gmtSave] then CurrentTeam^.ExtDriven:= true; |
90 |
||
91 |
CurrentTeam^.voicepack:= AskForVoicepack('Default') |
|
546 | 92 |
end |
4 | 93 |
end; |
94 |
||
95 |
procedure chTeamLocal(var s: shortstring); |
|
96 |
begin |
|
97 |
if not isDeveloperMode then exit; |
|
98 |
if CurrentTeam = nil then OutError(errmsgIncorrectUse + ' "/rdriven"', true); |
|
351 | 99 |
CurrentTeam^.ExtDriven:= true |
4 | 100 |
end; |
101 |
||
102 |
procedure chGrave(var s: shortstring); |
|
103 |
begin |
|
104 |
if CurrentTeam = nil then OutError(errmsgIncorrectUse + ' "/grave"', true); |
|
105 |
if s[1]='"' then Delete(s, 1, 1); |
|
106 |
if s[byte(s[0])]='"' then Delete(s, byte(s[0]), 1); |
|
351 | 107 |
CurrentTeam^.GraveName:= s |
4 | 108 |
end; |
109 |
||
110 |
procedure chFort(var s: shortstring); |
|
111 |
begin |
|
764
7513452b1d51
Now game looks almost like it did before switching to OpenGL
unc0rr
parents:
753
diff
changeset
|
112 |
if CurrentTeam = nil then OutError(errmsgIncorrectUse + ' "/fort"', true); |
4 | 113 |
if s[1]='"' then Delete(s, 1, 1); |
114 |
if s[byte(s[0])]='"' then Delete(s, byte(s[0]), 1); |
|
351 | 115 |
CurrentTeam^.FortName:= s |
4 | 116 |
end; |
117 |
||
1654 | 118 |
procedure chVoicepack(var s: shortstring); |
119 |
begin |
|
120 |
if CurrentTeam = nil then OutError(errmsgIncorrectUse + ' "/voicepack"', true); |
|
121 |
if s[1]='"' then Delete(s, 1, 1); |
|
122 |
if s[byte(s[0])]='"' then Delete(s, byte(s[0]), 1); |
|
123 |
CurrentTeam^.voicepack:= AskForVoicepack(s) |
|
124 |
end; |
|
125 |
||
2747 | 126 |
procedure chFlag(var s: shortstring); |
127 |
begin |
|
128 |
if CurrentTeam = nil then OutError(errmsgIncorrectUse + ' "/flag"', true); |
|
129 |
if s[1]='"' then Delete(s, 1, 1); |
|
130 |
if s[byte(s[0])]='"' then Delete(s, byte(s[0]), 1); |
|
131 |
CurrentTeam^.flag:= s |
|
132 |
end; |
|
133 |
||
2786 | 134 |
procedure chScript(var s: shortstring); |
135 |
begin |
|
136 |
if s[1]='"' then Delete(s, 1, 1); |
|
137 |
if s[byte(s[0])]='"' then Delete(s, byte(s[0]), 1); |
|
138 |
ScriptLoad(s) |
|
139 |
end; |
|
140 |
||
312 | 141 |
procedure chAddHH(var id: shortstring); |
4 | 142 |
var s: shortstring; |
143 |
Gear: PGear; |
|
144 |
begin |
|
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
145 |
if (not isDeveloperMode) or (CurrentTeam = nil) then exit; |
312 | 146 |
with CurrentTeam^ do |
1242 | 147 |
begin |
148 |
SplitBySpace(id, s); |
|
149 |
CurrentHedgehog:= @Hedgehogs[HedgehogsNumber]; |
|
150 |
val(id, CurrentHedgehog^.BotLevel); |
|
151 |
Gear:= AddGear(0, 0, gtHedgehog, 0, _0, _0, 0); |
|
152 |
SplitBySpace(s, id); |
|
153 |
val(s, Gear^.Health); |
|
154 |
TryDo(Gear^.Health > 0, 'Invalid hedgehog health', true); |
|
155 |
PHedgehog(Gear^.Hedgehog)^.Team:= CurrentTeam; |
|
2831
797207d0c500
Revert r2675 pending solution to teams getting wrong ammo.
nemo
parents:
2817
diff
changeset
|
156 |
//CurrentHedgehog^.AmmoStore:= ClansCount - 1; // FIXME HACK to get ammostores work |
797207d0c500
Revert r2675 pending solution to teams getting wrong ammo.
nemo
parents:
2817
diff
changeset
|
157 |
// ClansCount above causes shared ammo across clans, have demo game that functions as of this revision. |
797207d0c500
Revert r2675 pending solution to teams getting wrong ammo.
nemo
parents:
2817
diff
changeset
|
158 |
// need to find out why before restoring. |
797207d0c500
Revert r2675 pending solution to teams getting wrong ammo.
nemo
parents:
2817
diff
changeset
|
159 |
// Also needs a frontend game flag. |
797207d0c500
Revert r2675 pending solution to teams getting wrong ammo.
nemo
parents:
2817
diff
changeset
|
160 |
// Is *not* related to randomising clan order. |
797207d0c500
Revert r2675 pending solution to teams getting wrong ammo.
nemo
parents:
2817
diff
changeset
|
161 |
CurrentHedgehog^.AmmoStore:= TeamsCount - 1; // FIXME HACK to get ammostores work |
1242 | 162 |
CurrentHedgehog^.Gear:= Gear; |
163 |
CurrentHedgehog^.Name:= id; |
|
2808
8f48b538d591
Need this too to set it to last hog for current switch alg
nemo
parents:
2800
diff
changeset
|
164 |
CurrHedgehog:= HedgehogsNumber; |
1242 | 165 |
inc(HedgehogsNumber) |
166 |
end |
|
167 |
end; |
|
168 |
||
169 |
procedure chSetHat(var s: shortstring); |
|
170 |
begin |
|
171 |
if (not isDeveloperMode) or (CurrentTeam = nil) then exit; |
|
172 |
with CurrentTeam^ do |
|
2726 | 173 |
begin |
174 |
if not CurrentHedgehog^.King then |
|
175 |
if (s = '') or (((GameFlags and gfKing) <> 0) and (s = 'crown')) then |
|
176 |
CurrentHedgehog^.Hat:= 'NoHat' |
|
177 |
else |
|
178 |
CurrentHedgehog^.Hat:= s |
|
179 |
end; |
|
4 | 180 |
end; |
181 |
||
604
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
182 |
procedure chSetHHCoords(var x: shortstring); |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
183 |
var y: shortstring; |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
184 |
t: Longint; |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
185 |
begin |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
186 |
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
|
187 |
SplitBySpace(x, y); |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
188 |
val(x, t); |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
189 |
CurrentHedgehog^.Gear^.X:= int2hwFloat(t); |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
190 |
val(y, t); |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
191 |
CurrentHedgehog^.Gear^.Y:= int2hwFloat(t) |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
192 |
end; |
2f1165467a66
Let hedgehog position be taken from config, still more work is needed
unc0rr
parents:
602
diff
changeset
|
193 |
|
288 | 194 |
procedure chAddAmmoStore(var descr: shortstring); |
195 |
begin |
|
196 |
AddAmmoStore(descr) |
|
197 |
end; |
|
198 |
||
4 | 199 |
procedure chBind(var id: shortstring); |
200 |
var s: shortstring; |
|
371 | 201 |
b: LongInt; |
4 | 202 |
begin |
203 |
if CurrentTeam = nil then exit; |
|
204 |
SplitBySpace(id, s); |
|
205 |
if s[1]='"' then Delete(s, 1, 1); |
|
206 |
if s[byte(s[0])]='"' then Delete(s, byte(s[0]), 1); |
|
207 |
b:= KeyNameToCode(id); |
|
351 | 208 |
if b = 0 then OutError(errmsgUnknownVariable + ' "' + id + '"', false) |
209 |
else CurrentTeam^.Binds[b]:= s |
|
4 | 210 |
end; |
211 |
||
2428 | 212 |
procedure chCurU_p(var s: shortstring); |
213 |
begin |
|
214 |
CursorMovementY:= -1; |
|
215 |
end; |
|
216 |
||
217 |
procedure chCurU_m(var s: shortstring); |
|
218 |
begin |
|
219 |
CursorMovementY:= 0; |
|
220 |
end; |
|
221 |
||
222 |
procedure chCurD_p(var s: shortstring); |
|
223 |
begin |
|
224 |
CursorMovementY:= 1; |
|
225 |
end; |
|
226 |
||
227 |
procedure chCurD_m(var s: shortstring); |
|
228 |
begin |
|
229 |
CursorMovementY:= 0; |
|
230 |
end; |
|
231 |
||
232 |
procedure chCurL_p(var s: shortstring); |
|
233 |
begin |
|
234 |
CursorMovementX:= -1; |
|
235 |
end; |
|
236 |
||
237 |
procedure chCurL_m(var s: shortstring); |
|
238 |
begin |
|
239 |
CursorMovementX:= 0; |
|
240 |
end; |
|
241 |
||
242 |
procedure chCurR_p(var s: shortstring); |
|
243 |
begin |
|
244 |
CursorMovementX:= 1; |
|
245 |
end; |
|
246 |
||
247 |
procedure chCurR_m(var s: shortstring); |
|
248 |
begin |
|
249 |
CursorMovementX:= 0; |
|
250 |
end; |
|
251 |
||
4 | 252 |
procedure chLeft_p(var s: shortstring); |
253 |
begin |
|
254 |
if CheckNoTeamOrHH then exit; |
|
176 | 255 |
bShowFinger:= false; |
351 | 256 |
if not CurrentTeam^.ExtDriven then SendIPC('L'); |
602 | 257 |
with CurrentHedgehog^.Gear^ do |
4 | 258 |
Message:= Message or gm_Left |
259 |
end; |
|
260 |
||
261 |
procedure chLeft_m(var s: shortstring); |
|
262 |
begin |
|
263 |
if CheckNoTeamOrHH then exit; |
|
351 | 264 |
if not CurrentTeam^.ExtDriven then SendIPC('l'); |
602 | 265 |
with CurrentHedgehog^.Gear^ do |
4 | 266 |
Message:= Message and not gm_Left |
267 |
end; |
|
268 |
||
269 |
procedure chRight_p(var s: shortstring); |
|
270 |
begin |
|
271 |
if CheckNoTeamOrHH then exit; |
|
176 | 272 |
bShowFinger:= false; |
351 | 273 |
if not CurrentTeam^.ExtDriven then SendIPC('R'); |
602 | 274 |
with CurrentHedgehog^.Gear^ do |
4 | 275 |
Message:= Message or gm_Right |
276 |
end; |
|
277 |
||
278 |
procedure chRight_m(var s: shortstring); |
|
279 |
begin |
|
280 |
if CheckNoTeamOrHH then exit; |
|
351 | 281 |
if not CurrentTeam^.ExtDriven then SendIPC('r'); |
602 | 282 |
with CurrentHedgehog^.Gear^ do |
4 | 283 |
Message:= Message and not gm_Right |
284 |
end; |
|
285 |
||
286 |
procedure chUp_p(var s: shortstring); |
|
287 |
begin |
|
288 |
if CheckNoTeamOrHH then exit; |
|
176 | 289 |
bShowFinger:= false; |
351 | 290 |
if not CurrentTeam^.ExtDriven then SendIPC('U'); |
602 | 291 |
with CurrentHedgehog^.Gear^ do |
4 | 292 |
Message:= Message or gm_Up |
293 |
end; |
|
294 |
||
295 |
procedure chUp_m(var s: shortstring); |
|
296 |
begin |
|
297 |
if CheckNoTeamOrHH then exit; |
|
351 | 298 |
if not CurrentTeam^.ExtDriven then SendIPC('u'); |
602 | 299 |
with CurrentHedgehog^.Gear^ do |
4 | 300 |
Message:= Message and not gm_Up |
301 |
end; |
|
302 |
||
303 |
procedure chDown_p(var s: shortstring); |
|
304 |
begin |
|
305 |
if CheckNoTeamOrHH then exit; |
|
176 | 306 |
bShowFinger:= false; |
351 | 307 |
if not CurrentTeam^.ExtDriven then SendIPC('D'); |
602 | 308 |
with CurrentHedgehog^.Gear^ do |
4 | 309 |
Message:= Message or gm_Down |
310 |
end; |
|
311 |
||
312 |
procedure chDown_m(var s: shortstring); |
|
313 |
begin |
|
314 |
if CheckNoTeamOrHH then exit; |
|
351 | 315 |
if not CurrentTeam^.ExtDriven then SendIPC('d'); |
602 | 316 |
with CurrentHedgehog^.Gear^ do |
4 | 317 |
Message:= Message and not gm_Down |
318 |
end; |
|
319 |
||
1639 | 320 |
procedure chPrecise_p(var s: shortstring); |
321 |
begin |
|
322 |
if CheckNoTeamOrHH then exit; |
|
323 |
bShowFinger:= false; |
|
324 |
if not CurrentTeam^.ExtDriven then SendIPC('Z'); |
|
325 |
with CurrentHedgehog^.Gear^ do |
|
326 |
Message:= Message or gm_Precise |
|
327 |
end; |
|
328 |
||
329 |
procedure chPrecise_m(var s: shortstring); |
|
330 |
begin |
|
331 |
if CheckNoTeamOrHH then exit; |
|
332 |
if not CurrentTeam^.ExtDriven then SendIPC('z'); |
|
333 |
with CurrentHedgehog^.Gear^ do |
|
334 |
Message:= Message and not gm_Precise |
|
335 |
end; |
|
336 |
||
4 | 337 |
procedure chLJump(var s: shortstring); |
338 |
begin |
|
339 |
if CheckNoTeamOrHH then exit; |
|
176 | 340 |
bShowFinger:= false; |
351 | 341 |
if not CurrentTeam^.ExtDriven then SendIPC('j'); |
602 | 342 |
with CurrentHedgehog^.Gear^ do |
4 | 343 |
Message:= Message or gm_LJump |
344 |
end; |
|
345 |
||
346 |
procedure chHJump(var s: shortstring); |
|
347 |
begin |
|
348 |
if CheckNoTeamOrHH then exit; |
|
176 | 349 |
bShowFinger:= false; |
351 | 350 |
if not CurrentTeam^.ExtDriven then SendIPC('J'); |
602 | 351 |
with CurrentHedgehog^.Gear^ do |
4 | 352 |
Message:= Message or gm_HJump |
353 |
end; |
|
354 |
||
355 |
procedure chAttack_p(var s: shortstring); |
|
356 |
begin |
|
357 |
if CheckNoTeamOrHH then exit; |
|
176 | 358 |
bShowFinger:= false; |
602 | 359 |
with CurrentHedgehog^.Gear^ do |
4 | 360 |
begin |
2079 | 361 |
{$IFDEF DEBUGFILE}AddFileLog('/+attack: hedgehog''s Gear^.State = '+inttostr(State));{$ENDIF} |
929
9456e1e77369
- Continue preparation for implementing attack from rope and parachute
unc0rr
parents:
927
diff
changeset
|
362 |
if ((State and gstHHDriven) <> 0) then |
4 | 363 |
begin |
602 | 364 |
FollowGear:= CurrentHedgehog^.Gear; |
351 | 365 |
if not CurrentTeam^.ExtDriven then SendIPC('A'); |
4 | 366 |
Message:= Message or gm_Attack |
367 |
end |
|
368 |
end |
|
369 |
end; |
|
370 |
||
371 |
procedure chAttack_m(var s: shortstring); |
|
372 |
begin |
|
373 |
if CheckNoTeamOrHH then exit; |
|
602 | 374 |
with CurrentHedgehog^.Gear^ do |
4 | 375 |
begin |
351 | 376 |
if not CurrentTeam^.ExtDriven and |
95 | 377 |
((Message and gm_Attack) <> 0) then SendIPC('a'); |
378 |
Message:= Message and not gm_Attack |
|
4 | 379 |
end |
380 |
end; |
|
381 |
||
382 |
procedure chSwitch(var s: shortstring); |
|
383 |
begin |
|
384 |
if CheckNoTeamOrHH then exit; |
|
351 | 385 |
if not CurrentTeam^.ExtDriven then SendIPC('S'); |
602 | 386 |
with CurrentHedgehog^.Gear^ do |
4 | 387 |
Message:= Message or gm_Switch |
388 |
end; |
|
389 |
||
390 |
procedure chNextTurn(var s: shortstring); |
|
391 |
begin |
|
2045
b0588498bc3a
- Fix network (my crappy fault, triggered by nemo's patch)
unc0rr
parents:
2042
diff
changeset
|
392 |
TryDo(AllInactive, '/nextturn called when not all gears are inactive', true); |
2046 | 393 |
|
2045
b0588498bc3a
- Fix network (my crappy fault, triggered by nemo's patch)
unc0rr
parents:
2042
diff
changeset
|
394 |
if not CurrentTeam^.ExtDriven then SendIPC('N'); |
b0588498bc3a
- Fix network (my crappy fault, triggered by nemo's patch)
unc0rr
parents:
2042
diff
changeset
|
395 |
TickTrigger(trigTurns); |
b0588498bc3a
- Fix network (my crappy fault, triggered by nemo's patch)
unc0rr
parents:
2042
diff
changeset
|
396 |
{$IFDEF DEBUGFILE}AddFileLog('Doing SwitchHedgehog: time '+inttostr(GameTicks));{$ENDIF} |
4 | 397 |
end; |
398 |
||
399 |
procedure chSay(var s: shortstring); |
|
400 |
begin |
|
1356 | 401 |
SendIPC('s' + s); |
1378 | 402 |
|
403 |
if copy(s, 1, 4) = '/me ' then |
|
2396 | 404 |
s:= #2'* ' + UserNick + ' ' + copy(s, 5, Length(s) - 4) |
1378 | 405 |
else |
2396 | 406 |
s:= #1 + UserNick + ': ' + s; |
1378 | 407 |
|
1356 | 408 |
AddChatString(s) |
4 | 409 |
end; |
410 |
||
2124 | 411 |
procedure chTeamSay(var s: shortstring); |
412 |
begin |
|
413 |
SendIPC('b' + s); |
|
414 |
||
2403 | 415 |
s:= #4 + UserNick + '(team): ' + s; |
2124 | 416 |
|
2396 | 417 |
AddChatString(s) |
2124 | 418 |
end; |
419 |
||
4 | 420 |
procedure chTimer(var s: shortstring); |
421 |
begin |
|
2314 | 422 |
if (s[0] <> #1) or (s[1] < '1') or (s[1] > '5') or CheckNoTeamOrHH then exit; |
176 | 423 |
bShowFinger:= false; |
2314 | 424 |
|
926
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
917
diff
changeset
|
425 |
if not CurrentTeam^.ExtDriven then SendIPC(s); |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
917
diff
changeset
|
426 |
with CurrentHedgehog^.Gear^ do |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
917
diff
changeset
|
427 |
begin |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
917
diff
changeset
|
428 |
Message:= Message or gm_Timer; |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
917
diff
changeset
|
429 |
MsgParam:= byte(s[1]) - ord('0') |
d231e007452a
Timer as hedgehog message (avoid possible desync in very rare cases)
unc0rr
parents:
917
diff
changeset
|
430 |
end |
4 | 431 |
end; |
432 |
||
433 |
procedure chSlot(var s: shortstring); |
|
434 |
var slot: LongWord; |
|
435 |
begin |
|
95 | 436 |
if (s[0] <> #1) or CheckNoTeamOrHH then exit; |
176 | 437 |
bShowFinger:= false; |
4 | 438 |
slot:= byte(s[1]) - 49; |
10 | 439 |
if slot > cMaxSlotIndex then exit; |
351 | 440 |
if not CurrentTeam^.ExtDriven then SendIPC(char(byte(s[1]) + 79)); |
783 | 441 |
with CurrentHedgehog^.Gear^ do |
4 | 442 |
begin |
783 | 443 |
Message:= Message or gm_Slot; |
444 |
MsgParam:= slot |
|
445 |
end |
|
446 |
end; |
|
447 |
||
448 |
procedure chSetWeapon(var s: shortstring); |
|
449 |
begin |
|
450 |
if (s[0] <> #1) or CheckNoTeamOrHH then exit; |
|
784 | 451 |
|
1850 | 452 |
if TAmmoType(s[1]) > High(TAmmoType) then exit; |
784 | 453 |
|
454 |
if not CurrentTeam^.ExtDriven then SendIPC('w' + s); |
|
455 |
||
783 | 456 |
with CurrentHedgehog^.Gear^ do |
457 |
begin |
|
458 |
Message:= Message or gm_Weapon; |
|
1850 | 459 |
MsgParam:= byte(s[1]) |
4 | 460 |
end |
461 |
end; |
|
462 |
||
1035 | 463 |
procedure chTaunt(var s: shortstring); |
464 |
begin |
|
465 |
if (s[0] <> #1) or CheckNoTeamOrHH then exit; |
|
466 |
||
467 |
if TWave(s[1]) > High(TWave) then exit; |
|
468 |
||
469 |
if not CurrentTeam^.ExtDriven then SendIPC('t' + s); |
|
470 |
||
471 |
with CurrentHedgehog^.Gear^ do |
|
472 |
begin |
|
473 |
Message:= Message or gm_Animate; |
|
474 |
MsgParam:= byte(s[1]) |
|
475 |
end |
|
476 |
end; |
|
477 |
||
2017 | 478 |
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
|
479 |
var Gear: PVisualGear; |
2017 | 480 |
text: shortstring; |
481 |
begin |
|
482 |
text:= copy(s, 2, Length(s)-1); |
|
2110 | 483 |
if CheckNoTeamOrHH |
2111 | 484 |
or ((CurrentHedgehog^.Gear^.State and gstHHDriven) = 0) then |
2017 | 485 |
begin |
486 |
chSay(text); |
|
487 |
exit |
|
488 |
end; |
|
489 |
||
490 |
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
|
491 |
|
2017 | 492 |
if byte(s[1]) < 4 then |
493 |
begin |
|
2042
905c554d62e6
Move Speech to visual gears. This checkin CRASHES on deletion of visual gear outside the doStep
nemo
parents:
2022
diff
changeset
|
494 |
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
|
495 |
if Gear <> nil then |
9a8ccc7bc3d8
Fix crash caused by speechbubbles when restoring from save or joining already started net game
unc0rr
parents:
2111
diff
changeset
|
496 |
begin |
9a8ccc7bc3d8
Fix crash caused by speechbubbles when restoring from save or joining already started net game
unc0rr
parents:
2111
diff
changeset
|
497 |
Gear^.Hedgehog:= CurrentHedgehog; |
9a8ccc7bc3d8
Fix crash caused by speechbubbles when restoring from save or joining already started net game
unc0rr
parents:
2111
diff
changeset
|
498 |
Gear^.Text:= text; |
9a8ccc7bc3d8
Fix crash caused by speechbubbles when restoring from save or joining already started net game
unc0rr
parents:
2111
diff
changeset
|
499 |
Gear^.FrameTicks:= byte(s[1]) |
9a8ccc7bc3d8
Fix crash caused by speechbubbles when restoring from save or joining already started net game
unc0rr
parents:
2111
diff
changeset
|
500 |
end |
2017 | 501 |
end |
502 |
else |
|
503 |
begin |
|
2022 | 504 |
SpeechType:= byte(s[1])-3; |
2017 | 505 |
SpeechText:= text |
506 |
end; |
|
2042
905c554d62e6
Move Speech to visual gears. This checkin CRASHES on deletion of visual gear outside the doStep
nemo
parents:
2022
diff
changeset
|
507 |
|
2017 | 508 |
end; |
509 |
||
1821
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
510 |
procedure chNewGrave; |
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
511 |
begin |
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
512 |
if CheckNoTeamOrHH then exit; |
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
513 |
|
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
514 |
if not CurrentTeam^.ExtDriven then SendIPC('g'); |
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
515 |
|
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
516 |
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
|
517 |
end; |
6b6cf3389f92
Hedgehog drops a grave on "/newgrave" command. Patch by nemo
unc0rr
parents:
1743
diff
changeset
|
518 |
|
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
519 |
procedure doPut(putX, putY: LongInt; fromAI: boolean); |
4 | 520 |
begin |
521 |
if CheckNoTeamOrHH then exit; |
|
162 | 522 |
if bShowAmmoMenu then |
2407
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
523 |
begin |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
524 |
bSelected:= true; |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
525 |
exit |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
526 |
end; |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
527 |
|
602 | 528 |
with CurrentHedgehog^.Gear^, |
2407
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
529 |
CurrentHedgehog^ do |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
530 |
if (State and gstHHChooseTarget) <> 0 then |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
531 |
begin |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
532 |
isCursorVisible:= false; |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
533 |
if not CurrentTeam^.ExtDriven then |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
534 |
begin |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
535 |
if fromAI then |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
536 |
begin |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
537 |
TargetPoint.X:= putX; |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
538 |
TargetPoint.Y:= putY |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
539 |
end else |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
540 |
begin |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
541 |
TargetPoint.X:= CursorPoint.X - WorldDx; |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
542 |
TargetPoint.Y:= cScreenHeight - CursorPoint.Y - WorldDy; |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
543 |
end; |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
544 |
SendIPCXY('p', TargetPoint.X, TargetPoint.Y); |
2645
89aa2aa89066
Fix bug with cursor coordinates sent via net (or demo/save file)
unc0rr
parents:
2642
diff
changeset
|
545 |
end |
89aa2aa89066
Fix bug with cursor coordinates sent via net (or demo/save file)
unc0rr
parents:
2642
diff
changeset
|
546 |
else |
89aa2aa89066
Fix bug with cursor coordinates sent via net (or demo/save file)
unc0rr
parents:
2642
diff
changeset
|
547 |
begin |
89aa2aa89066
Fix bug with cursor coordinates sent via net (or demo/save file)
unc0rr
parents:
2642
diff
changeset
|
548 |
TargetPoint.X:= putX; |
89aa2aa89066
Fix bug with cursor coordinates sent via net (or demo/save file)
unc0rr
parents:
2642
diff
changeset
|
549 |
TargetPoint.Y:= putY |
2407
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
550 |
end; |
2642 | 551 |
{$IFDEF DEBUGFILE}AddFilelog('put: ' + inttostr(TargetPoint.X) + ', ' + inttostr(TargetPoint.Y));{$ENDIF} |
2407
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
552 |
State:= State and not gstHHChooseTarget; |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
553 |
if (Ammo^[CurSlot, CurAmmo].Propz and ammoprop_AttackingPut) <> 0 then |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
554 |
Message:= Message or gm_Attack; |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
555 |
end |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
556 |
else |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
557 |
if CurrentTeam^.ExtDriven then |
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2406
diff
changeset
|
558 |
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
|
559 |
end; |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
560 |
|
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
561 |
procedure chPut(var s: shortstring); |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
562 |
begin |
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
563 |
doPut(0, 0, false) |
4 | 564 |
end; |
565 |
||
566 |
procedure chCapture(var s: shortstring); |
|
567 |
begin |
|
568 |
flagMakeCapture:= true |
|
569 |
end; |
|
570 |
||
48 | 571 |
procedure chSkip(var s: shortstring); |
572 |
begin |
|
351 | 573 |
if not CurrentTeam^.ExtDriven then SendIPC(','); |
871 | 574 |
uStats.Skipped; |
917 | 575 |
skipFlag:= true |
48 | 576 |
end; |
577 |
||
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
578 |
procedure chSetMap(var s: shortstring); |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
579 |
begin |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
580 |
if isDeveloperMode then |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
581 |
begin |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
582 |
Pathz[ptMapCurrent]:= Pathz[ptMaps] + '/' + s; |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
583 |
InitStepsFlags:= InitStepsFlags or cifMap |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
584 |
end |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
585 |
end; |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
586 |
|
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
587 |
procedure chSetTheme(var s: shortstring); |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
588 |
begin |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
589 |
if isDeveloperMode then |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
590 |
begin |
80 | 591 |
Pathz[ptCurrTheme]:= Pathz[ptThemes] + '/' + s; |
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
592 |
InitStepsFlags:= InitStepsFlags or cifTheme |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
593 |
end |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
594 |
end; |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
595 |
|
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
596 |
procedure chSetSeed(var s: shortstring); |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
597 |
begin |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
598 |
if isDeveloperMode then |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
599 |
begin |
102 | 600 |
SetRandomSeed(s); |
81 | 601 |
cSeed:= s; |
55
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
602 |
InitStepsFlags:= InitStepsFlags or cifRandomize |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
603 |
end |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
604 |
end; |
e09f7c952a40
Send run parameters by cmd line, game parameters by IPC... breaks network game
unc0rr
parents:
48
diff
changeset
|
605 |
|
161 | 606 |
procedure chAmmoMenu(var s: shortstring); |
607 |
begin |
|
608 |
if CheckNoTeamOrHH then exit; |
|
609 |
with CurrentTeam^ do |
|
610 |
with Hedgehogs[CurrHedgehog] do |
|
611 |
begin |
|
162 | 612 |
bSelected:= false; |
682 | 613 |
|
161 | 614 |
if bShowAmmoMenu then bShowAmmoMenu:= false |
2608 | 615 |
else if ((Gear^.State and (gstAttacking or gstAttacked)) <> 0) or (MultiShootAttacks > 0) |
351 | 616 |
or ((Gear^.State and gstHHDriven) = 0) then else bShowAmmoMenu:= true |
161 | 617 |
end |
618 |
end; |
|
619 |
||
166
2920ab2bf329
Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents:
162
diff
changeset
|
620 |
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
|
621 |
var flags: Longword = 0; |
2800 | 622 |
ico: PSDL_Surface; |
192 | 623 |
{$IFDEF DEBUGFILE} |
624 |
buf: array[byte] of char; |
|
625 |
{$ENDIF} |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2714
diff
changeset
|
626 |
{$IFDEF SDL13} |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2714
diff
changeset
|
627 |
window: PSDL_Window; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2714
diff
changeset
|
628 |
{$ENDIF} |
166
2920ab2bf329
Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents:
162
diff
changeset
|
629 |
begin |
2697 | 630 |
if Length(s) = 0 then cFullScreen:= not cFullScreen |
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
|
631 |
else cFullScreen:= s = '1'; |
192 | 632 |
|
905 | 633 |
{$IFDEF DEBUGFILE} |
2697 | 634 |
AddFileLog('Prepare to change video parameters...'); |
905 | 635 |
{$ENDIF} |
2253 | 636 |
|
2697 | 637 |
flags:= SDL_OPENGL;// or SDL_RESIZABLE; |
753 | 638 |
|
2697 | 639 |
if cFullScreen then |
1121
d595dc56b4f3
Remember initial resolution settings to use when switching to fullscreen mode
unc0rr
parents:
1120
diff
changeset
|
640 |
begin |
2697 | 641 |
flags:= flags or SDL_FULLSCREEN; |
642 |
cScreenWidth:= cInitWidth; |
|
643 |
cScreenHeight:= cInitHeight |
|
2351
a4a17b8df591
Set window caption even in fullscreen mode (suggested by Smaxx)
unc0rr
parents:
2314
diff
changeset
|
644 |
end; |
a4a17b8df591
Set window caption even in fullscreen mode (suggested by Smaxx)
unc0rr
parents:
2314
diff
changeset
|
645 |
|
2800 | 646 |
// load window icon |
2817 | 647 |
{$IFNDEF DARWIN} |
648 |
ico:= LoadImage(Pathz[ptGraphics] + '/hwengine', ifIgnoreCaps); |
|
649 |
{$ELSE} |
|
650 |
ico:= LoadImage(Pathz[ptGraphics] + '/hwengine_mac', ifIgnoreCaps); |
|
651 |
{$ENDIF} |
|
2800 | 652 |
if ico <> nil then |
653 |
begin |
|
654 |
SDL_WM_SetIcon(ico, 0); |
|
655 |
SDL_FreeSurface(ico) |
|
656 |
end; |
|
657 |
||
658 |
// set window caption |
|
2697 | 659 |
SDL_WM_SetCaption('Hedgewars', nil); |
2800 | 660 |
|
2697 | 661 |
if SDLPrimSurface <> nil then |
2428 | 662 |
begin |
2697 | 663 |
{$IFDEF DEBUGFILE} |
664 |
AddFileLog('Freeing old primary surface...'); |
|
665 |
{$ENDIF} |
|
666 |
SDL_FreeSurface(SDLPrimSurface); |
|
2428 | 667 |
end; |
2697 | 668 |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2714
diff
changeset
|
669 |
{$IFDEF SDL13} |
2738
bfccb2ec4334
new graphics from Tiy and frontend is loaded in landscape mode
koda
parents:
2726
diff
changeset
|
670 |
window:= SDL_CreateWindow('Hedgewars', 0, 0, cScreenWidth, cScreenHeight, |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2714
diff
changeset
|
671 |
SDL_WINDOW_OPENGL or SDL_WINDOW_SHOWN |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2714
diff
changeset
|
672 |
{$IFDEF IPHONEOS} or SDL_WINDOW_BORDERLESS{$ENDIF}); |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2714
diff
changeset
|
673 |
SDL_CreateRenderer(window, -1, 0); |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2714
diff
changeset
|
674 |
PixelFormat:= nil; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2714
diff
changeset
|
675 |
|
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2714
diff
changeset
|
676 |
SDL_SetRenderDrawColor(0, 0, 0, 255); |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2714
diff
changeset
|
677 |
SDL_RenderFill(nil); |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2714
diff
changeset
|
678 |
SDL_RenderPresent(); |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2714
diff
changeset
|
679 |
{$ELSE} |
2697 | 680 |
SDLPrimSurface:= SDL_SetVideoMode(cScreenWidth, cScreenHeight, cBits, flags); |
681 |
SDLTry(SDLPrimSurface <> nil, true); |
|
682 |
PixelFormat:= SDLPrimSurface^.format; |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2714
diff
changeset
|
683 |
{$ENDIF} |
192 | 684 |
|
905 | 685 |
{$IFDEF DEBUGFILE} |
2697 | 686 |
AddFileLog('Setting up OpenGL...'); |
687 |
AddFileLog('SDL video driver: ' + string(SDL_VideoDriverName(buf, sizeof(buf)))); |
|
905 | 688 |
{$ENDIF} |
2697 | 689 |
SetupOpenGL(); |
166
2920ab2bf329
Switching between fullscreen and windowed modes on 'F' key
unc0rr
parents:
162
diff
changeset
|
690 |
end; |
161 | 691 |
|
175 | 692 |
procedure chVol_p(var s: shortstring); |
174 | 693 |
begin |
175 | 694 |
inc(cVolumeDelta, 3) |
174 | 695 |
end; |
696 |
||
175 | 697 |
procedure chVol_m(var s: shortstring); |
174 | 698 |
begin |
175 | 699 |
dec(cVolumeDelta, 3) |
174 | 700 |
end; |
701 |
||
176 | 702 |
procedure chFindhh(var s: shortstring); |
703 |
begin |
|
704 |
if CheckNoTeamOrHH then exit; |
|
705 |
bShowFinger:= true; |
|
602 | 706 |
FollowGear:= CurrentHedgehog^.Gear |
176 | 707 |
end; |
708 |
||
281
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
263
diff
changeset
|
709 |
procedure chPause(var s: shortstring); |
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
263
diff
changeset
|
710 |
begin |
1743 | 711 |
if gameType <> gmtNet then |
712 |
isPaused:= not isPaused; |
|
281
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
263
diff
changeset
|
713 |
SDL_ShowCursor(ord(isPaused)) |
5b483aa9f2ab
Pause support (mouse cursor is released when the game is paused)
unc0rr
parents:
263
diff
changeset
|
714 |
end; |
539
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
534
diff
changeset
|
715 |
|
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
534
diff
changeset
|
716 |
procedure chRotateMask(var s: shortstring); |
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
534
diff
changeset
|
717 |
begin |
2568
e654cbfb23ba
Bunch of neat stuff by Smaxx. ATI check, translucent name tags to reduce terrain fail, disabling health crates on invulnerable hogs. Also tweaks to prior stuff.
nemo
parents:
2428
diff
changeset
|
718 |
inc(cTagsMaskIndex); |
e654cbfb23ba
Bunch of neat stuff by Smaxx. ATI check, translucent name tags to reduce terrain fail, disabling health crates on invulnerable hogs. Also tweaks to prior stuff.
nemo
parents:
2428
diff
changeset
|
719 |
if cTagsMaskIndex > High(cTagsMasks) then cTagsMaskIndex:= Low(cTagsMasks); |
e654cbfb23ba
Bunch of neat stuff by Smaxx. ATI check, translucent name tags to reduce terrain fail, disabling health crates on invulnerable hogs. Also tweaks to prior stuff.
nemo
parents:
2428
diff
changeset
|
720 |
|
e654cbfb23ba
Bunch of neat stuff by Smaxx. ATI check, translucent name tags to reduce terrain fail, disabling health crates on invulnerable hogs. Also tweaks to prior stuff.
nemo
parents:
2428
diff
changeset
|
721 |
// HACK: skip "health only" if all hogs are invulnerable |
e654cbfb23ba
Bunch of neat stuff by Smaxx. ATI check, translucent name tags to reduce terrain fail, disabling health crates on invulnerable hogs. Also tweaks to prior stuff.
nemo
parents:
2428
diff
changeset
|
722 |
if ((GameFlags and gfInvulnerable) <> 0) and ((cTagsMasks[cTagsMaskIndex] and not htTransparent) = htHealth) then chRotateMask(s); |
539
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
534
diff
changeset
|
723 |
end; |
6a9bf1852bbc
Ability to choose which info is shown above hedgehogs
unc0rr
parents:
534
diff
changeset
|
724 |
|
589 | 725 |
procedure chAddTrigger(var s: shortstring); |
615 | 726 |
const MAXPARAMS = 16; |
727 |
var params: array[0..Pred(MAXPARAMS)] of Longword; |
|
728 |
i: LongInt; |
|
595
5ee863f2f568
Triggers PoC: targets are spawned right after the previous damaged
unc0rr
parents:
594
diff
changeset
|
729 |
c: char; |
5ee863f2f568
Triggers PoC: targets are spawned right after the previous damaged
unc0rr
parents:
594
diff
changeset
|
730 |
tmp: shortstring; |
589 | 731 |
begin |
595
5ee863f2f568
Triggers PoC: targets are spawned right after the previous damaged
unc0rr
parents:
594
diff
changeset
|
732 |
c:= s[1]; |
5ee863f2f568
Triggers PoC: targets are spawned right after the previous damaged
unc0rr
parents:
594
diff
changeset
|
733 |
Delete(s, 1, 1); |
615 | 734 |
|
735 |
i:= 0; |
|
736 |
while (i < MAXPARAMS) and |
|
737 |
(Length(s) > 0) do |
|
738 |
begin |
|
739 |
SplitBySpace(s, tmp); |
|
740 |
val(s, params[i]); |
|
741 |
s:= tmp; |
|
742 |
inc(i) |
|
743 |
end; |
|
744 |
||
595
5ee863f2f568
Triggers PoC: targets are spawned right after the previous damaged
unc0rr
parents:
594
diff
changeset
|
745 |
case c of |
613 | 746 |
's': begin // sTYPE TICKS LIVES GEARTYPE X Y GEARTRIGGER |
615 | 747 |
TryDo(i = 7, errmsgWrongNumber, true); |
748 |
AddTriggerSpawner(params[0], params[1], params[2], TGearType(params[3]), params[4], params[5], params[6]); |
|
595
5ee863f2f568
Triggers PoC: targets are spawned right after the previous damaged
unc0rr
parents:
594
diff
changeset
|
749 |
end; |
613 | 750 |
'C': begin |
615 | 751 |
TryDo(i = 3, errmsgWrongNumber, true); |
752 |
AddTriggerSuccess(params[0], params[1], params[2]); |
|
753 |
end; |
|
754 |
'F': begin |
|
755 |
TryDo(i = 3, errmsgWrongNumber, true); |
|
756 |
AddTriggerFail(params[0], params[1], params[2]); |
|
613 | 757 |
end; |
595
5ee863f2f568
Triggers PoC: targets are spawned right after the previous damaged
unc0rr
parents:
594
diff
changeset
|
758 |
end |
589 | 759 |
end; |
626 | 760 |
|
761 |
procedure chSpeedup_p(var s: shortstring); |
|
762 |
begin |
|
763 |
isSpeed:= true |
|
764 |
end; |
|
765 |
||
766 |
procedure chSpeedup_m(var s: shortstring); |
|
767 |
begin |
|
768 |
isSpeed:= false |
|
769 |
end; |
|
946 | 770 |
|
2162 | 771 |
procedure chZoomIn(var s: shortstring); |
772 |
begin |
|
2579 | 773 |
{$IFDEF IPHONEOS} |
774 |
if ZoomValue < 3.5 then |
|
775 |
{$ELSE} |
|
776 |
if ZoomValue < 3.0 then |
|
777 |
{$ENDIF} |
|
778 |
ZoomValue:= ZoomValue + 0.25; |
|
2162 | 779 |
end; |
780 |
||
781 |
procedure chZoomOut(var s: shortstring); |
|
782 |
begin |
|
2579 | 783 |
{$IFDEF IPHONEOS} |
784 |
if ZoomValue > 0.5 then |
|
785 |
{$ELSE} |
|
786 |
if ZoomValue > 1.0 then |
|
787 |
{$ENDIF} |
|
788 |
ZoomValue:= ZoomValue - 0.25; |
|
2162 | 789 |
end; |
790 |
||
2379 | 791 |
procedure chZoomReset(var s: shortstring); |
792 |
begin |
|
793 |
ZoomValue:= 2.0 |
|
794 |
end; |
|
795 |
||
946 | 796 |
procedure chChat(var s: shortstring); |
797 |
begin |
|
990
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
970
diff
changeset
|
798 |
GameState:= gsChat; |
dfa6a6fe1542
Implement history for chat (27 entries), no key binding yet
unc0rr
parents:
970
diff
changeset
|
799 |
KeyPressChat(27) |
946 | 800 |
end; |
991 | 801 |
|
802 |
procedure chHistory(var s: shortstring); |
|
803 |
begin |
|
804 |
uChat.showAll:= not uChat.showAll |
|
805 |
end; |