author | nemo |
Sun, 28 Jun 2009 23:36:41 +0000 | |
changeset 2208 | 7d1a084d11ab |
parent 2204 | 526f8165acce |
child 2217 | 458c08d74ae6 |
permissions | -rw-r--r-- |
4 | 1 |
(* |
1066 | 2 |
* Hedgewars, a free turn based strategy game |
1689 | 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 |
unit uGears; |
|
20 |
interface |
|
351 | 21 |
uses SDLh, uConsts, uFloat; |
4 | 22 |
{$INCLUDE options.inc} |
23 |
const AllInactive: boolean = false; |
|
868 | 24 |
PrvInactive: boolean = false; |
4 | 25 |
|
26 |
type PGear = ^TGear; |
|
1259 | 27 |
TGearStepProcedure = procedure (Gear: PGear); |
28 |
TGear = record |
|
29 |
NextGear, PrevGear: PGear; |
|
30 |
Active: Boolean; |
|
1849 | 31 |
Invulnerable: Boolean; |
2204
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2186
diff
changeset
|
32 |
RenderTimer: Boolean; |
1259 | 33 |
Ammo : PAmmo; |
34 |
State : Longword; |
|
35 |
X : hwFloat; |
|
36 |
Y : hwFloat; |
|
37 |
dX: hwFloat; |
|
38 |
dY: hwFloat; |
|
39 |
Kind: TGearType; |
|
40 |
Pos: Longword; |
|
41 |
doStep: TGearStepProcedure; |
|
42 |
Radius: LongInt; |
|
43 |
Angle, Power : Longword; |
|
44 |
DirAngle: real; |
|
45 |
Timer : LongWord; |
|
46 |
Elasticity: hwFloat; |
|
47 |
Friction : hwFloat; |
|
48 |
Message, MsgParam : Longword; |
|
49 |
Hedgehog: pointer; |
|
2135
0b7972dfad01
Push karma application to end of round - should avoid problems w/ plane and kamikaze
nemo
parents:
2134
diff
changeset
|
50 |
Health, Damage, Karma: LongInt; |
1259 | 51 |
CollisionIndex: LongInt; |
52 |
Tag: LongInt; |
|
53 |
Tex: PTexture; |
|
54 |
Z: Longword; |
|
55 |
IntersectGear: PGear; |
|
56 |
TriggerId: Longword; |
|
2042
905c554d62e6
Move Speech to visual gears. This checkin CRASHES on deletion of visual gear outside the doStep
nemo
parents:
2031
diff
changeset
|
57 |
uid: Longword |
1259 | 58 |
end; |
4 | 59 |
|
371 | 60 |
function AddGear(X, Y: LongInt; Kind: TGearType; State: Longword; dX, dY: hwFloat; Timer: LongWord): PGear; |
4 | 61 |
procedure ProcessGears; |
1849 | 62 |
procedure ResetUtilities; |
2017 | 63 |
procedure ApplyDamage(Gear: PGear; Damage: Longword); |
4 | 64 |
procedure SetAllToActive; |
65 |
procedure SetAllHHToActive; |
|
956 | 66 |
procedure DrawGears; |
4 | 67 |
procedure FreeGearsList; |
10 | 68 |
procedure AddMiscGears; |
4 | 69 |
procedure AssignHHCoords; |
294 | 70 |
procedure InsertGearToList(Gear: PGear); |
71 |
procedure RemoveGearFromList(Gear: PGear); |
|
4 | 72 |
|
73 |
var CurAmmoGear: PGear = nil; |
|
68 | 74 |
GearsList: PGear = nil; |
307 | 75 |
KilledHHs: Longword = 0; |
2017 | 76 |
SuddenDeathDmg: Boolean = false; |
77 |
SpeechType: Longword = 1; |
|
78 |
SpeechText: shortstring; |
|
70 | 79 |
|
4 | 80 |
implementation |
81 | 81 |
uses uWorld, uMisc, uStore, uConsole, uSound, uTeams, uRandom, uCollisions, |
1906 | 82 |
uLand, uIO, uLandGraphics, uAIMisc, uLocale, uAI, uAmmos, uTriggers, |
2152 | 83 |
{$IFDEF GLES11} |
1906 | 84 |
gles11, |
85 |
{$ELSE} |
|
86 |
GL, |
|
87 |
{$ENDIF} |
|
1259 | 88 |
uStats, uVisualGears; |
789 | 89 |
|
1207
ceaab010269e
Some adjusting... it still doesn't solve problem fully
unc0rr
parents:
1200
diff
changeset
|
90 |
const MAXROPEPOINTS = 384; |
68 | 91 |
var RopePoints: record |
4 | 92 |
Count: Longword; |
776
8fc7e59d9cb4
Convert the rest of rotated sprites to be rotated by OpenGL
unc0rr
parents:
775
diff
changeset
|
93 |
HookAngle: GLfloat; |
789 | 94 |
ar: array[0..MAXROPEPOINTS] of record |
351 | 95 |
X, Y: hwFloat; |
96 |
dLen: hwFloat; |
|
4 | 97 |
b: boolean; |
98 |
end; |
|
99 |
end; |
|
100 |
||
1515 | 101 |
procedure DeleteGear(Gear: PGear); forward; |
371 | 102 |
procedure doMakeExplosion(X, Y, Radius: LongInt; Mask: LongWord); forward; |
103 |
procedure AmmoShove(Ammo: PGear; Damage, Power: LongInt); forward; |
|
1433 | 104 |
//procedure AmmoFlameWork(Ammo: PGear); forward; |
371 | 105 |
function CheckGearNear(Gear: PGear; Kind: TGearType; rX, rY: LongInt): PGear; forward; |
15 | 106 |
procedure SpawnBoxOfSmth; forward; |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
24
diff
changeset
|
107 |
procedure AfterAttack; forward; |
1515 | 108 |
procedure FindPlace(var Gear: PGear; withFall: boolean; Left, Right: LongInt); forward; |
302 | 109 |
procedure HedgehogStep(Gear: PGear); forward; |
1528 | 110 |
procedure doStepHedgehogMoving(Gear: PGear); forward; |
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
111 |
procedure HedgehogChAngle(Gear: PGear); forward; |
506 | 112 |
procedure ShotgunShot(Gear: PGear); forward; |
1689 | 113 |
procedure PickUp(HH, Gear: PGear); forward; |
1964 | 114 |
procedure HHSetWeapon(Gear: PGear); forward; |
115 |
||
4 | 116 |
|
117 |
{$INCLUDE GSHandlers.inc} |
|
118 |
{$INCLUDE HHHandlers.inc} |
|
119 |
||
120 |
const doStepHandlers: array[TGearType] of TGearStepProcedure = ( |
|
1259 | 121 |
@doStepBomb, |
122 |
@doStepHedgehog, |
|
123 |
@doStepGrenade, |
|
124 |
@doStepHealthTag, |
|
125 |
@doStepGrave, |
|
126 |
@doStepUFO, |
|
127 |
@doStepShotgunShot, |
|
128 |
@doStepPickHammer, |
|
129 |
@doStepRope, |
|
130 |
@doStepSmokeTrace, |
|
131 |
@doStepExplosion, |
|
132 |
@doStepMine, |
|
133 |
@doStepCase, |
|
134 |
@doStepDEagleShot, |
|
135 |
@doStepDynamite, |
|
136 |
@doStepBomb, |
|
137 |
@doStepCluster, |
|
138 |
@doStepShover, |
|
139 |
@doStepFlame, |
|
140 |
@doStepFirePunch, |
|
141 |
@doStepActionTimer, |
|
142 |
@doStepActionTimer, |
|
143 |
@doStepActionTimer, |
|
144 |
@doStepParachute, |
|
145 |
@doStepAirAttack, |
|
146 |
@doStepAirBomb, |
|
147 |
@doStepBlowTorch, |
|
148 |
@doStepGirder, |
|
149 |
@doStepTeleport, |
|
150 |
@doStepSwitcher, |
|
151 |
@doStepCase, |
|
152 |
@doStepMortar, |
|
153 |
@doStepWhip, |
|
154 |
@doStepKamikaze, |
|
155 |
@doStepCake, |
|
1261 | 156 |
@doStepSeduction, |
1279 | 157 |
@doStepWatermelon, |
1263 | 158 |
@doStepCluster, |
159 |
@doStepBomb, |
|
1298 | 160 |
@doStepSmokeTrace, |
1573 | 161 |
@doStepWaterUp, |
1601 | 162 |
@doStepDrill, |
163 |
@doStepBallgun, |
|
1689 | 164 |
@doStepBomb, |
2017 | 165 |
@doStepRCPlane, |
2177
c045698e044f
Initial attempt at jetpack. Pluses, more like lunar lander (takes fall damage). Minuses, can't seem to cancel it or use alt weapon
nemo
parents:
2168
diff
changeset
|
166 |
@doStepSniperRifleShot, |
c045698e044f
Initial attempt at jetpack. Pluses, more like lunar lander (takes fall damage). Minuses, can't seem to cancel it or use alt weapon
nemo
parents:
2168
diff
changeset
|
167 |
@doStepJetpack |
1259 | 168 |
); |
4 | 169 |
|
294 | 170 |
procedure InsertGearToList(Gear: PGear); |
803 | 171 |
var tmp, ptmp: PGear; |
294 | 172 |
begin |
173 |
if GearsList = nil then |
|
1505 | 174 |
GearsList:= Gear |
175 |
else begin |
|
176 |
tmp:= GearsList; |
|
177 |
ptmp:= GearsList; |
|
178 |
while (tmp <> nil) and (tmp^.Z <= Gear^.Z) do |
|
179 |
begin |
|
180 |
ptmp:= tmp; |
|
181 |
tmp:= tmp^.NextGear |
|
182 |
end; |
|
294 | 183 |
|
1505 | 184 |
if ptmp <> nil then |
185 |
begin |
|
186 |
Gear^.NextGear:= ptmp^.NextGear; |
|
187 |
Gear^.PrevGear:= ptmp; |
|
188 |
if ptmp^.NextGear <> nil then ptmp^.NextGear^.PrevGear:= Gear; |
|
189 |
ptmp^.NextGear:= Gear |
|
190 |
end |
|
191 |
else GearsList:= Gear |
|
192 |
end |
|
294 | 193 |
end; |
194 |
||
195 |
procedure RemoveGearFromList(Gear: PGear); |
|
196 |
begin |
|
351 | 197 |
if Gear^.NextGear <> nil then Gear^.NextGear^.PrevGear:= Gear^.PrevGear; |
1505 | 198 |
if Gear^.PrevGear <> nil then |
199 |
Gear^.PrevGear^.NextGear:= Gear^.NextGear |
|
200 |
else |
|
201 |
GearsList:= Gear^.NextGear |
|
294 | 202 |
end; |
203 |
||
371 | 204 |
function AddGear(X, Y: LongInt; Kind: TGearType; State: Longword; dX, dY: hwFloat; Timer: LongWord): PGear; |
79 | 205 |
const Counter: Longword = 0; |
351 | 206 |
var Result: PGear; |
4 | 207 |
begin |
79 | 208 |
inc(Counter); |
1495 | 209 |
{$IFDEF DEBUGFILE} |
1503 | 210 |
AddFileLog('AddGear: #' + inttostr(Counter) + ' (' + inttostr(x) + ',' + inttostr(y) + '), d(' + floattostr(dX) + ',' + floattostr(dY) + ') type = ' + inttostr(ord(Kind))); |
1495 | 211 |
{$ENDIF} |
212 |
||
4 | 213 |
New(Result); |
214 |
FillChar(Result^, sizeof(TGear), 0); |
|
498 | 215 |
Result^.X:= int2hwFloat(X); |
216 |
Result^.Y:= int2hwFloat(Y); |
|
351 | 217 |
Result^.Kind := Kind; |
218 |
Result^.State:= State; |
|
219 |
Result^.Active:= true; |
|
220 |
Result^.dX:= dX; |
|
221 |
Result^.dY:= dY; |
|
222 |
Result^.doStep:= doStepHandlers[Kind]; |
|
511 | 223 |
Result^.CollisionIndex:= -1; |
351 | 224 |
Result^.Timer:= Timer; |
1270 | 225 |
Result^.Z:= cUsualZ; |
1503 | 226 |
Result^.uid:= Counter; |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
503
diff
changeset
|
227 |
|
4 | 228 |
if CurrentTeam <> nil then |
1505 | 229 |
begin |
230 |
Result^.Hedgehog:= CurrentHedgehog; |
|
231 |
Result^.IntersectGear:= CurrentHedgehog^.Gear |
|
232 |
end; |
|
802
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
789
diff
changeset
|
233 |
|
4 | 234 |
case Kind of |
915 | 235 |
gtAmmo_Bomb, |
236 |
gtClusterBomb: begin |
|
351 | 237 |
Result^.Radius:= 4; |
238 |
Result^.Elasticity:= _0_6; |
|
997 | 239 |
Result^.Friction:= _0_96; |
2204
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2186
diff
changeset
|
240 |
Result^.RenderTimer:= true |
4 | 241 |
end; |
1261 | 242 |
gtWatermelon: begin |
243 |
Result^.Radius:= 4; |
|
244 |
Result^.Elasticity:= _0_8; |
|
245 |
Result^.Friction:= _0_995; |
|
2204
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2186
diff
changeset
|
246 |
Result^.RenderTimer:= true |
1261 | 247 |
end; |
4 | 248 |
gtHedgehog: begin |
351 | 249 |
Result^.Radius:= cHHRadius; |
250 |
Result^.Elasticity:= _0_35; |
|
251 |
Result^.Friction:= _0_999; |
|
252 |
Result^.Angle:= cMaxAngle div 2; |
|
253 |
Result^.Z:= cHHZ; |
|
4 | 254 |
end; |
255 |
gtAmmo_Grenade: begin |
|
351 | 256 |
Result^.Radius:= 4; |
2204
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2186
diff
changeset
|
257 |
Result^.RenderTimer:= true |
4 | 258 |
end; |
259 |
gtHealthTag: begin |
|
351 | 260 |
Result^.Timer:= 1500; |
2017 | 261 |
Result^.Z:= 2002; |
262 |
end; |
|
4 | 263 |
gtGrave: begin |
351 | 264 |
Result^.Radius:= 10; |
265 |
Result^.Elasticity:= _0_6; |
|
4 | 266 |
end; |
267 |
gtUFO: begin |
|
351 | 268 |
Result^.Radius:= 5; |
269 |
Result^.Timer:= 500; |
|
2204
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2186
diff
changeset
|
270 |
Result^.RenderTimer:= true; |
351 | 271 |
Result^.Elasticity:= _0_9 |
4 | 272 |
end; |
273 |
gtShotgunShot: begin |
|
351 | 274 |
Result^.Timer:= 900; |
275 |
Result^.Radius:= 2 |
|
4 | 276 |
end; |
277 |
gtPickHammer: begin |
|
351 | 278 |
Result^.Radius:= 10; |
279 |
Result^.Timer:= 4000 |
|
4 | 280 |
end; |
1263 | 281 |
gtSmokeTrace, |
282 |
gtEvilTrace: begin |
|
498 | 283 |
Result^.X:= Result^.X - _16; |
284 |
Result^.Y:= Result^.Y - _16; |
|
1270 | 285 |
Result^.State:= 8; |
286 |
Result^.Z:= cSmokeZ |
|
4 | 287 |
end; |
288 |
gtRope: begin |
|
351 | 289 |
Result^.Radius:= 3; |
498 | 290 |
Result^.Friction:= _450; |
4 | 291 |
RopePoints.Count:= 0; |
292 |
end; |
|
9 | 293 |
gtExplosion: begin |
1012 | 294 |
Result^.X:= Result^.X; |
295 |
Result^.Y:= Result^.Y; |
|
9 | 296 |
end; |
10 | 297 |
gtMine: begin |
503 | 298 |
Result^.State:= Result^.State or gstMoving; |
915 | 299 |
Result^.Radius:= 2; |
351 | 300 |
Result^.Elasticity:= _0_55; |
301 |
Result^.Friction:= _0_995; |
|
2031
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2028
diff
changeset
|
302 |
if cMinesTime < 0 then |
2121 | 303 |
Result^.Timer:= getrandom(4)*1000 |
2031
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2028
diff
changeset
|
304 |
else |
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2028
diff
changeset
|
305 |
Result^.Timer:= cMinesTime*1; |
10 | 306 |
end; |
14
81f125629b25
- Mine checks whether a hedgehog is near less frequently
unc0rr
parents:
10
diff
changeset
|
307 |
gtCase: begin |
351 | 308 |
Result^.Radius:= 16; |
601
78a68cc4d846
Special game mode allowing the only clan on map for training mode
unc0rr
parents:
595
diff
changeset
|
309 |
Result^.Elasticity:= _0_3 |
14
81f125629b25
- Mine checks whether a hedgehog is near less frequently
unc0rr
parents:
10
diff
changeset
|
310 |
end; |
37 | 311 |
gtDEagleShot: begin |
351 | 312 |
Result^.Radius:= 1; |
313 |
Result^.Health:= 50 |
|
37 | 314 |
end; |
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
315 |
gtSniperRifleShot: begin |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
316 |
Result^.Radius:= 1; |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
317 |
Result^.Health:= 50 |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
318 |
end; |
39 | 319 |
gtDynamite: begin |
351 | 320 |
Result^.Radius:= 3; |
321 |
Result^.Elasticity:= _0_55; |
|
322 |
Result^.Friction:= _0_03; |
|
323 |
Result^.Timer:= 5000; |
|
39 | 324 |
end; |
2204
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2186
diff
changeset
|
325 |
gtCluster: begin |
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2186
diff
changeset
|
326 |
Result^.Radius:= 2; |
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2186
diff
changeset
|
327 |
Result^.RenderTimer:= true |
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2186
diff
changeset
|
328 |
end; |
878 | 329 |
gtShover: Result^.Radius:= 20; |
79 | 330 |
gtFlame: begin |
1586 | 331 |
Result^.Tag:= Counter mod 32; |
351 | 332 |
Result^.Radius:= 1; |
1586 | 333 |
Result^.Health:= 5; |
1555 | 334 |
if (Result^.dY.QWordValue = 0) and (Result^.dX.QWordValue = 0) then |
335 |
begin |
|
336 |
Result^.dY:= (getrandom - _0_8) * _0_03; |
|
337 |
Result^.dX:= (getrandom - _0_5) * _0_4 |
|
338 |
end |
|
79 | 339 |
end; |
82 | 340 |
gtFirePunch: begin |
351 | 341 |
Result^.Radius:= 15; |
342 |
Result^.Tag:= Y |
|
82 | 343 |
end; |
302 | 344 |
gtAirBomb: begin |
543
465e2ec8f05f
- Better randomness of placing hedgehogs on the land
unc0rr
parents:
542
diff
changeset
|
345 |
Result^.Radius:= 5; |
302 | 346 |
end; |
347 |
gtBlowTorch: begin |
|
511 | 348 |
Result^.Radius:= cHHRadius + cBlowTorchC; |
2208
7d1a084d11ab
disable timers on a few silly items, trying out a timer on cake
nemo
parents:
2204
diff
changeset
|
349 |
Result^.Timer:= 7500 |
302 | 350 |
end; |
540 | 351 |
gtSwitcher: begin |
352 |
Result^.Z:= cCurrHHZ |
|
353 |
end; |
|
593 | 354 |
gtTarget: begin |
601
78a68cc4d846
Special game mode allowing the only clan on map for training mode
unc0rr
parents:
595
diff
changeset
|
355 |
Result^.Radius:= 16; |
78a68cc4d846
Special game mode allowing the only clan on map for training mode
unc0rr
parents:
595
diff
changeset
|
356 |
Result^.Elasticity:= _0_3 |
593 | 357 |
end; |
924 | 358 |
gtMortar: begin |
994 | 359 |
Result^.Radius:= 4; |
924 | 360 |
Result^.Elasticity:= _0_2; |
361 |
Result^.Friction:= _0_08 |
|
362 |
end; |
|
925 | 363 |
gtWhip: Result^.Radius:= 20; |
984 | 364 |
gtKamikaze: begin |
365 |
Result^.Health:= 2048; |
|
366 |
Result^.Radius:= 20 |
|
367 |
end; |
|
1089 | 368 |
gtCake: begin |
1261 | 369 |
Result^.Health:= 2048; |
1103 | 370 |
Result^.Radius:= 7; |
1109 | 371 |
Result^.Z:= cOnHHZ; |
2204
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2186
diff
changeset
|
372 |
Result^.RenderTimer:= true; |
1089 | 373 |
if hwSign(dX) > 0 then Result^.Angle:= 1 else Result^.Angle:= 3 |
374 |
end; |
|
1263 | 375 |
gtHellishBomb: begin |
376 |
Result^.Radius:= 4; |
|
377 |
Result^.Elasticity:= _0_5; |
|
378 |
Result^.Friction:= _0_96; |
|
2204
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2186
diff
changeset
|
379 |
Result^.RenderTimer:= true |
1263 | 380 |
end; |
1573 | 381 |
gtDrill: begin |
382 |
Result^.Timer:= 5000; |
|
2208
7d1a084d11ab
disable timers on a few silly items, trying out a timer on cake
nemo
parents:
2204
diff
changeset
|
383 |
Result^.Radius:= 4 |
1573 | 384 |
end; |
1601 | 385 |
gtBall: begin |
386 |
Result^.Radius:= 5; |
|
387 |
Result^.Tag:= random(8); |
|
388 |
Result^.Timer:= 5000; |
|
389 |
Result^.Elasticity:= _0_7; |
|
390 |
Result^.Friction:= _0_995; |
|
391 |
end; |
|
392 |
gtBallgun: begin |
|
393 |
Result^.Timer:= 5001; |
|
394 |
end; |
|
1689 | 395 |
gtRCPlane: begin |
396 |
Result^.Timer:= 15000; |
|
397 |
Result^.Health:= 3; |
|
2204
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2186
diff
changeset
|
398 |
Result^.Radius:= 8 |
1689 | 399 |
end; |
2177
c045698e044f
Initial attempt at jetpack. Pluses, more like lunar lander (takes fall damage). Minuses, can't seem to cancel it or use alt weapon
nemo
parents:
2168
diff
changeset
|
400 |
gtJetpack: begin |
c045698e044f
Initial attempt at jetpack. Pluses, more like lunar lander (takes fall damage). Minuses, can't seem to cancel it or use alt weapon
nemo
parents:
2168
diff
changeset
|
401 |
Result^.Health:= 2000; |
c045698e044f
Initial attempt at jetpack. Pluses, more like lunar lander (takes fall damage). Minuses, can't seem to cancel it or use alt weapon
nemo
parents:
2168
diff
changeset
|
402 |
end; |
4 | 403 |
end; |
351 | 404 |
InsertGearToList(Result); |
405 |
AddGear:= Result |
|
4 | 406 |
end; |
407 |
||
1515 | 408 |
procedure DeleteGear(Gear: PGear); |
48 | 409 |
var team: PTeam; |
1515 | 410 |
t: Longword; |
4 | 411 |
begin |
503 | 412 |
DeleteCI(Gear); |
762 | 413 |
|
414 |
if Gear^.Tex <> nil then |
|
1495 | 415 |
begin |
416 |
FreeTexture(Gear^.Tex); |
|
417 |
Gear^.Tex:= nil |
|
418 |
end; |
|
762 | 419 |
|
351 | 420 |
if Gear^.Kind = gtHedgehog then |
2079 | 421 |
if (CurAmmoGear <> nil) and (CurrentHedgehog^.Gear = Gear) then |
1495 | 422 |
begin |
423 |
Gear^.Message:= gm_Destroy; |
|
424 |
CurAmmoGear^.Message:= gm_Destroy; |
|
425 |
exit |
|
426 |
end |
|
427 |
else |
|
428 |
begin |
|
2076
aa3263e57b8f
increase # of mines to 50, limit max depth of drowning damage tag
nemo
parents:
2074
diff
changeset
|
429 |
if (hwRound(Gear^.Y) >= cWaterLine) then |
1495 | 430 |
begin |
431 |
t:= max(Gear^.Damage, Gear^.Health); |
|
432 |
Gear^.Damage:= t; |
|
2076
aa3263e57b8f
increase # of mines to 50, limit max depth of drowning damage tag
nemo
parents:
2074
diff
changeset
|
433 |
AddGear(hwRound(Gear^.X), min(hwRound(Gear^.Y),cWaterLine+cVisibleWater+32), gtHealthTag, t, _0, _0, 0)^.Hedgehog:= Gear^.Hedgehog; |
1495 | 434 |
uStats.HedgehogDamaged(Gear) |
435 |
end; |
|
1515 | 436 |
|
1495 | 437 |
team:= PHedgehog(Gear^.Hedgehog)^.Team; |
438 |
if CurrentHedgehog^.Gear = Gear then |
|
439 |
FreeActionsList; // to avoid ThinkThread on drawned gear |
|
1515 | 440 |
|
1495 | 441 |
PHedgehog(Gear^.Hedgehog)^.Gear:= nil; |
442 |
inc(KilledHHs); |
|
1515 | 443 |
RecountTeamHealth(team) |
1495 | 444 |
end; |
445 |
{$IFDEF DEBUGFILE} |
|
1503 | 446 |
with Gear^ do AddFileLog('Delete: #' + inttostr(uid) + ' (' + inttostr(hwRound(x)) + ',' + inttostr(hwRound(y)) + '), d(' + floattostr(dX) + ',' + floattostr(dY) + ') type = ' + inttostr(ord(Kind))); |
1495 | 447 |
{$ENDIF} |
448 |
||
595
5ee863f2f568
Triggers PoC: targets are spawned right after the previous damaged
unc0rr
parents:
593
diff
changeset
|
449 |
if Gear^.TriggerId <> 0 then TickTrigger(Gear^.TriggerId); |
82 | 450 |
if CurAmmoGear = Gear then CurAmmoGear:= nil; |
4 | 451 |
if FollowGear = Gear then FollowGear:= nil; |
294 | 452 |
RemoveGearFromList(Gear); |
1515 | 453 |
Dispose(Gear) |
4 | 454 |
end; |
455 |
||
456 |
function CheckNoDamage: boolean; // returns TRUE in case of no damaged hhs |
|
457 |
var Gear: PGear; |
|
1849 | 458 |
dmg: LongInt; |
4 | 459 |
begin |
351 | 460 |
CheckNoDamage:= true; |
4 | 461 |
Gear:= GearsList; |
462 |
while Gear <> nil do |
|
867 | 463 |
begin |
464 |
if Gear^.Kind = gtHedgehog then |
|
1861 | 465 |
begin |
2135
0b7972dfad01
Push karma application to end of round - should avoid problems w/ plane and kamikaze
nemo
parents:
2134
diff
changeset
|
466 |
if (not isInMultiShoot) then inc(Gear^.Damage, Gear^.Karma); |
1849 | 467 |
if (Gear^.Damage <> 0) and |
468 |
(not Gear^.Invulnerable) then |
|
1861 | 469 |
begin |
470 |
CheckNoDamage:= false; |
|
471 |
uStats.HedgehogDamaged(Gear); |
|
472 |
dmg:= Gear^.Damage; |
|
473 |
if Gear^.Health < dmg then |
|
474 |
Gear^.Health:= 0 |
|
475 |
else |
|
476 |
dec(Gear^.Health, dmg); |
|
351 | 477 |
|
2017 | 478 |
if (PHedgehog(Gear^.Hedgehog)^.Team = CurrentTeam) and |
2135
0b7972dfad01
Push karma application to end of round - should avoid problems w/ plane and kamikaze
nemo
parents:
2134
diff
changeset
|
479 |
(Gear^.Damage <> Gear^.Karma) and |
2017 | 480 |
not SuddenDeathDmg then |
481 |
Gear^.State:= Gear^.State or gstLoser; |
|
482 |
||
1861 | 483 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y) - cHHRadius - 12, |
484 |
gtHealthTag, dmg, _0, _0, 0)^.Hedgehog:= Gear^.Hedgehog; |
|
867 | 485 |
|
1861 | 486 |
RenderHealth(PHedgehog(Gear^.Hedgehog)^); |
487 |
RecountTeamHealth(PHedgehog(Gear^.Hedgehog)^.Team); |
|
1505 | 488 |
|
1861 | 489 |
end; |
2135
0b7972dfad01
Push karma application to end of round - should avoid problems w/ plane and kamikaze
nemo
parents:
2134
diff
changeset
|
490 |
if (not isInMultiShoot) then Gear^.Karma:= 0; |
0b7972dfad01
Push karma application to end of round - should avoid problems w/ plane and kamikaze
nemo
parents:
2134
diff
changeset
|
491 |
Gear^.Damage:= 0 |
1861 | 492 |
end; |
867 | 493 |
Gear:= Gear^.NextGear |
494 |
end; |
|
2017 | 495 |
SuddenDeathDmg:= false; |
4 | 496 |
end; |
497 |
||
1054 | 498 |
procedure HealthMachine; |
499 |
var Gear: PGear; |
|
500 |
begin |
|
501 |
Gear:= GearsList; |
|
502 |
||
503 |
while Gear <> nil do |
|
504 |
begin |
|
505 |
if Gear^.Kind = gtHedgehog then |
|
506 |
Gear^.Damage:= min(cHealthDecrease, Gear^.Health - 1); |
|
507 |
||
508 |
Gear:= Gear^.NextGear |
|
509 |
end; |
|
510 |
end; |
|
511 |
||
4 | 512 |
procedure ProcessGears; |
614 | 513 |
const delay: LongWord = 0; |
1797 | 514 |
step: (stDelay, stChDmg, stSweep, stTurnReact, |
1495 | 515 |
stAfterDelay, stChWin, stWater, stChWin2, stHealth, |
516 |
stSpawn, stNTurn) = stDelay; |
|
1054 | 517 |
|
4 | 518 |
var Gear, t: PGear; |
519 |
begin |
|
868 | 520 |
PrvInactive:= AllInactive; |
4 | 521 |
AllInactive:= true; |
1495 | 522 |
|
4 | 523 |
t:= GearsList; |
1054 | 524 |
while t <> nil do |
1352
405ad07cf875
Add more support for handling disconnects while playing (not fully tested)
unc0rr
parents:
1346
diff
changeset
|
525 |
begin |
405ad07cf875
Add more support for handling disconnects while playing (not fully tested)
unc0rr
parents:
1346
diff
changeset
|
526 |
Gear:= t; |
405ad07cf875
Add more support for handling disconnects while playing (not fully tested)
unc0rr
parents:
1346
diff
changeset
|
527 |
t:= Gear^.NextGear; |
2204
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2186
diff
changeset
|
528 |
if Gear^.Active then |
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2186
diff
changeset
|
529 |
begin |
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2186
diff
changeset
|
530 |
if Gear^.RenderTimer and (Gear^.Timer > 500) and ((Gear^.Timer mod 1000) = 0) then |
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2186
diff
changeset
|
531 |
begin |
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2186
diff
changeset
|
532 |
if Gear^.Tex <> nil then FreeTexture(Gear^.Tex); |
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2186
diff
changeset
|
533 |
Gear^.Tex:= RenderStringTex(inttostr(Gear^.Timer div 1000), $FFFFFFFF, fntSmall); |
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2186
diff
changeset
|
534 |
end; |
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2186
diff
changeset
|
535 |
Gear^.doStep(Gear); |
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2186
diff
changeset
|
536 |
end |
1352
405ad07cf875
Add more support for handling disconnects while playing (not fully tested)
unc0rr
parents:
1346
diff
changeset
|
537 |
end; |
89 | 538 |
|
4 | 539 |
if AllInactive then |
1343 | 540 |
case step of |
541 |
stDelay: begin |
|
542 |
if delay = 0 then |
|
543 |
delay:= cInactDelay |
|
544 |
else |
|
545 |
dec(delay); |
|
614 | 546 |
|
1343 | 547 |
if delay = 0 then |
548 |
inc(step) |
|
549 |
end; |
|
1797 | 550 |
stChDmg: if CheckNoDamage then inc(step) else step:= stDelay; |
551 |
stSweep: if SweepDirty then |
|
1792 | 552 |
begin |
1918 | 553 |
SetAllToActive; |
1792 | 554 |
step:= stChDmg |
1797 | 555 |
end else inc(step); |
1343 | 556 |
stTurnReact: begin |
557 |
if (not bBetweenTurns) and (not isInMultiShoot) then |
|
558 |
begin |
|
559 |
uStats.TurnReaction; |
|
560 |
inc(step) |
|
561 |
end else |
|
562 |
inc(step, 2); |
|
563 |
end; |
|
564 |
stAfterDelay: begin |
|
565 |
if delay = 0 then |
|
566 |
delay:= cInactDelay |
|
567 |
else |
|
568 |
dec(delay); |
|
815 | 569 |
|
1343 | 570 |
if delay = 0 then |
571 |
inc(step) |
|
572 |
end; |
|
573 |
stChWin: begin |
|
574 |
CheckForWin; |
|
575 |
inc(step) |
|
576 |
end; |
|
577 |
stWater: if (not bBetweenTurns) and (not isInMultiShoot) then |
|
578 |
begin |
|
1782
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1781
diff
changeset
|
579 |
if TotalRounds = cSuddenDTurns + 2 then bWaterRising:= true; |
1055
9af540b23409
Water rises after 25 mins of round, health is decreased after 20 mins
unc0rr
parents:
1054
diff
changeset
|
580 |
|
1343 | 581 |
if bWaterRising then |
582 |
AddGear(0, 0, gtWaterUp, 0, _0, _0, 0); |
|
1055
9af540b23409
Water rises after 25 mins of round, health is decreased after 20 mins
unc0rr
parents:
1054
diff
changeset
|
583 |
|
1343 | 584 |
inc(step) |
585 |
end else inc(step); |
|
586 |
stChWin2: begin |
|
587 |
CheckForWin; |
|
588 |
inc(step) |
|
589 |
end; |
|
590 |
stHealth: begin |
|
1782
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1781
diff
changeset
|
591 |
if (TotalRounds = cSuddenDTurns) and (cHealthDecrease = 0) then |
1343 | 592 |
begin |
593 |
cHealthDecrease:= 5; |
|
594 |
AddCaption(trmsg[sidSuddenDeath], $FFFFFF, capgrpGameState) |
|
595 |
end; |
|
1055
9af540b23409
Water rises after 25 mins of round, health is decreased after 20 mins
unc0rr
parents:
1054
diff
changeset
|
596 |
|
1343 | 597 |
if (cHealthDecrease = 0) |
598 |
or bBetweenTurns |
|
599 |
or isInMultiShoot |
|
600 |
or (TotalRounds = 0) then inc(step) |
|
601 |
else begin |
|
602 |
bBetweenTurns:= true; |
|
603 |
HealthMachine; |
|
2017 | 604 |
SuddenDeathDmg:= true; |
1343 | 605 |
step:= stChDmg |
606 |
end |
|
607 |
end; |
|
608 |
stSpawn: begin |
|
609 |
if not isInMultiShoot then SpawnBoxOfSmth; |
|
610 |
inc(step) |
|
611 |
end; |
|
612 |
stNTurn: begin |
|
613 |
if isInMultiShoot then isInMultiShoot:= false |
|
614 |
else begin |
|
1849 | 615 |
ResetUtilities; |
1343 | 616 |
ParseCommand('/nextturn', true); |
617 |
SwitchHedgehog; |
|
1298 | 618 |
|
2045
b0588498bc3a
- Fix network (my crappy fault, triggered by nemo's patch)
unc0rr
parents:
2042
diff
changeset
|
619 |
inc(step); // FIXME wtf is that, it overflows step, and does nothing |
1298 | 620 |
|
1343 | 621 |
AfterSwitchHedgehog; |
622 |
bBetweenTurns:= false |
|
623 |
end; |
|
624 |
step:= Low(step) |
|
625 |
end; |
|
626 |
end; |
|
15 | 627 |
|
4 | 628 |
if TurnTimeLeft > 0 then |
870 | 629 |
if CurrentHedgehog^.Gear <> nil then |
630 |
if ((CurrentHedgehog^.Gear^.State and gstAttacking) = 0) |
|
631 |
and not isInMultiShoot then |
|
632 |
begin |
|
633 |
if (TurnTimeLeft = 5000) |
|
634 |
and (CurrentHedgehog^.Gear <> nil) |
|
1669 | 635 |
and ((CurrentHedgehog^.Gear^.State and gstAttacked) = 0) then |
636 |
PlaySound(sndHurry, false, CurrentTeam^.voicepack); |
|
870 | 637 |
dec(TurnTimeLeft) |
638 |
end; |
|
351 | 639 |
|
2134 | 640 |
if ((GameTicks and $FFFF) = $FFFF) then |
917 | 641 |
begin |
2134 | 642 |
if (not CurrentTeam^.ExtDriven) then |
643 |
SendIPCTimeInc; |
|
644 |
||
645 |
if (not CurrentTeam^.ExtDriven) or CurrentTeam^.hasGone then |
|
646 |
inc(hiTicks) // we do not recieve a message for this |
|
917 | 647 |
end; |
656
6d6d9d7b1054
Fix network game bug caused by recent protocol changes
unc0rr
parents:
651
diff
changeset
|
648 |
|
515 | 649 |
inc(GameTicks) |
4 | 650 |
end; |
651 |
||
1854 | 652 |
//Purpose, to reset all transient attributes toggled by a utility. |
653 |
//If any of these are set as permanent toggles in the frontend, that needs to be checked and skipped here. |
|
1849 | 654 |
procedure ResetUtilities; |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
655 |
var i: LongInt; |
1849 | 656 |
begin |
2017 | 657 |
SpeechText:= ''; // in case it hasn't been consumed |
658 |
||
1895 | 659 |
if (GameFlags and gfLowGravity) = 0 then |
660 |
cGravity:= cMaxWindSpeed; |
|
661 |
||
2017 | 662 |
if (GameFlags and gfVampiric) = 0 then |
663 |
cVampiric:= false; |
|
664 |
||
1849 | 665 |
cDamageModifier:= _1; |
1895 | 666 |
|
667 |
if (GameFlags and gfLaserSight) = 0 then |
|
668 |
cLaserSighting:= false; |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
669 |
|
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
670 |
if (GameFlags and gfArtillery) = 0 then |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
671 |
cArtillery:= false; |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
672 |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
673 |
// have to sweep *all* current team hedgehogs since it is theoretically possible if you have enough invulnerabilities and switch turns to make your entire team invulnerable |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
674 |
if (CurrentTeam <> nil) then |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
675 |
with CurrentTeam^ do |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
676 |
for i:= 0 to cMaxHHIndex do |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
677 |
with Hedgehogs[i] do |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
678 |
begin |
2045
b0588498bc3a
- Fix network (my crappy fault, triggered by nemo's patch)
unc0rr
parents:
2042
diff
changeset
|
679 |
if (SpeechGear <> nil) then |
b0588498bc3a
- Fix network (my crappy fault, triggered by nemo's patch)
unc0rr
parents:
2042
diff
changeset
|
680 |
begin |
b0588498bc3a
- Fix network (my crappy fault, triggered by nemo's patch)
unc0rr
parents:
2042
diff
changeset
|
681 |
DeleteVisualGear(SpeechGear); // remove to restore persisting beyond end of turn. Tiy says was too much of a gameplay issue |
b0588498bc3a
- Fix network (my crappy fault, triggered by nemo's patch)
unc0rr
parents:
2042
diff
changeset
|
682 |
SpeechGear:= nil |
b0588498bc3a
- Fix network (my crappy fault, triggered by nemo's patch)
unc0rr
parents:
2042
diff
changeset
|
683 |
end; |
b0588498bc3a
- Fix network (my crappy fault, triggered by nemo's patch)
unc0rr
parents:
2042
diff
changeset
|
684 |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
685 |
if (Gear <> nil) then |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
686 |
if (GameFlags and gfInvulnerable) = 0 then |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
687 |
Gear^.Invulnerable:= false; |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
688 |
end; |
1849 | 689 |
end; |
2045
b0588498bc3a
- Fix network (my crappy fault, triggered by nemo's patch)
unc0rr
parents:
2042
diff
changeset
|
690 |
|
2017 | 691 |
procedure ApplyDamage(Gear: PGear; Damage: Longword); |
692 |
var s: shortstring; |
|
2067
7524a783bd8c
use separate variable for vamp/karma calcs, move karma damage tag from point of damage origin to originating hedgehog at unc0rr's request
nemo
parents:
2057
diff
changeset
|
693 |
vampDmg, tmpDmg: Longword; |
2017 | 694 |
begin |
2074 | 695 |
if (Gear^.Kind = gtHedgehog) and (Damage>=1) then |
2017 | 696 |
begin |
697 |
AddDamageTag(hwRound(Gear^.X), hwRound(Gear^.Y), Damage, PHedgehog(Gear^.Hedgehog)^.Team^.Clan^.Color); |
|
2067
7524a783bd8c
use separate variable for vamp/karma calcs, move karma damage tag from point of damage origin to originating hedgehog at unc0rr's request
nemo
parents:
2057
diff
changeset
|
698 |
tmpDmg:= min(Damage, max(0,Gear^.Health-Gear^.Damage)); |
7524a783bd8c
use separate variable for vamp/karma calcs, move karma damage tag from point of damage origin to originating hedgehog at unc0rr's request
nemo
parents:
2057
diff
changeset
|
699 |
if (Gear <> CurrentHedgehog^.Gear) and (CurrentHedgehog^.Gear <> nil) and (tmpDmg >= 1) then |
2017 | 700 |
begin |
701 |
if cVampiric then |
|
702 |
begin |
|
2067
7524a783bd8c
use separate variable for vamp/karma calcs, move karma damage tag from point of damage origin to originating hedgehog at unc0rr's request
nemo
parents:
2057
diff
changeset
|
703 |
vampDmg:= hwRound(int2hwFloat(tmpDmg)*_0_8); |
7524a783bd8c
use separate variable for vamp/karma calcs, move karma damage tag from point of damage origin to originating hedgehog at unc0rr's request
nemo
parents:
2057
diff
changeset
|
704 |
if vampDmg >= 1 then |
7524a783bd8c
use separate variable for vamp/karma calcs, move karma damage tag from point of damage origin to originating hedgehog at unc0rr's request
nemo
parents:
2057
diff
changeset
|
705 |
begin |
7524a783bd8c
use separate variable for vamp/karma calcs, move karma damage tag from point of damage origin to originating hedgehog at unc0rr's request
nemo
parents:
2057
diff
changeset
|
706 |
// was considering pulsing on attack, Tiy thinks it should be permanent while in play |
7524a783bd8c
use separate variable for vamp/karma calcs, move karma damage tag from point of damage origin to originating hedgehog at unc0rr's request
nemo
parents:
2057
diff
changeset
|
707 |
//CurrentHedgehog^.Gear^.State:= CurrentHedgehog^.Gear^.State or gstVampiric; |
7524a783bd8c
use separate variable for vamp/karma calcs, move karma damage tag from point of damage origin to originating hedgehog at unc0rr's request
nemo
parents:
2057
diff
changeset
|
708 |
inc(CurrentHedgehog^.Gear^.Health,vampDmg); |
7524a783bd8c
use separate variable for vamp/karma calcs, move karma damage tag from point of damage origin to originating hedgehog at unc0rr's request
nemo
parents:
2057
diff
changeset
|
709 |
str(vampDmg, s); |
7524a783bd8c
use separate variable for vamp/karma calcs, move karma damage tag from point of damage origin to originating hedgehog at unc0rr's request
nemo
parents:
2057
diff
changeset
|
710 |
s:= '+' + s; |
7524a783bd8c
use separate variable for vamp/karma calcs, move karma damage tag from point of damage origin to originating hedgehog at unc0rr's request
nemo
parents:
2057
diff
changeset
|
711 |
AddCaption(s, CurrentHedgehog^.Team^.Clan^.Color, capgrpAmmoinfo); |
7524a783bd8c
use separate variable for vamp/karma calcs, move karma damage tag from point of damage origin to originating hedgehog at unc0rr's request
nemo
parents:
2057
diff
changeset
|
712 |
RenderHealth(CurrentHedgehog^); |
7524a783bd8c
use separate variable for vamp/karma calcs, move karma damage tag from point of damage origin to originating hedgehog at unc0rr's request
nemo
parents:
2057
diff
changeset
|
713 |
RecountTeamHealth(CurrentHedgehog^.Team); |
7524a783bd8c
use separate variable for vamp/karma calcs, move karma damage tag from point of damage origin to originating hedgehog at unc0rr's request
nemo
parents:
2057
diff
changeset
|
714 |
end |
2017 | 715 |
end; |
716 |
if ((GameFlags and gfKarma) <> 0) and |
|
717 |
((GameFlags and gfInvulnerable) = 0) and |
|
718 |
not CurrentHedgehog^.Gear^.Invulnerable then |
|
719 |
begin // this cannot just use Damage or it interrupts shotgun and gets you called stupid |
|
2135
0b7972dfad01
Push karma application to end of round - should avoid problems w/ plane and kamikaze
nemo
parents:
2134
diff
changeset
|
720 |
inc(CurrentHedgehog^.Gear^.Karma, tmpDmg); |
2067
7524a783bd8c
use separate variable for vamp/karma calcs, move karma damage tag from point of damage origin to originating hedgehog at unc0rr's request
nemo
parents:
2057
diff
changeset
|
721 |
AddGear(hwRound(CurrentHedgehog^.Gear^.X), |
7524a783bd8c
use separate variable for vamp/karma calcs, move karma damage tag from point of damage origin to originating hedgehog at unc0rr's request
nemo
parents:
2057
diff
changeset
|
722 |
hwRound(CurrentHedgehog^.Gear^.Y), |
7524a783bd8c
use separate variable for vamp/karma calcs, move karma damage tag from point of damage origin to originating hedgehog at unc0rr's request
nemo
parents:
2057
diff
changeset
|
723 |
gtHealthTag, tmpDmg, _0, _0, 0)^.Hedgehog:= CurrentHedgehog; |
2017 | 724 |
end; |
725 |
end; |
|
726 |
end; |
|
2057
cf0d84479251
Prevent gaining more health than hedgehog actually has
nemo
parents:
2053
diff
changeset
|
727 |
inc(Gear^.Damage, Damage); |
2017 | 728 |
end; |
1849 | 729 |
|
4 | 730 |
procedure SetAllToActive; |
731 |
var t: PGear; |
|
732 |
begin |
|
733 |
AllInactive:= false; |
|
734 |
t:= GearsList; |
|
351 | 735 |
while t <> nil do |
1505 | 736 |
begin |
737 |
t^.Active:= true; |
|
738 |
t:= t^.NextGear |
|
739 |
end |
|
4 | 740 |
end; |
741 |
||
742 |
procedure SetAllHHToActive; |
|
743 |
var t: PGear; |
|
744 |
begin |
|
745 |
AllInactive:= false; |
|
746 |
t:= GearsList; |
|
351 | 747 |
while t <> nil do |
1505 | 748 |
begin |
749 |
if t^.Kind = gtHedgehog then t^.Active:= true; |
|
750 |
t:= t^.NextGear |
|
751 |
end |
|
4 | 752 |
end; |
753 |
||
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
754 |
procedure DrawHH(Gear: PGear); |
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
755 |
var i, t: LongInt; |
822 | 756 |
amt: TAmmoType; |
2020 | 757 |
hx, hy, cx, cy, tx, ty, sx, sy, m: LongInt; // hedgehog, crosshair, temp, sprite, direction |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
758 |
lx, ly, dx, dy, ax, ay, aAngle, dAngle: real; // laser, change |
1253 | 759 |
defaultPos, HatVisible: boolean; |
1906 | 760 |
VertexBuffer: array [0..1] of TVertex2f; |
292 | 761 |
begin |
2020 | 762 |
m:= 1; |
2137 | 763 |
if ((Gear^.State and gstHHHJump) <> 0) and not cArtillery then m:= -1; |
868 | 764 |
if (Gear^.State and gstHHDeath) <> 0 then |
765 |
begin |
|
766 |
DrawSprite(sprHHDeath, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 26 + WorldDy, Gear^.Pos); |
|
767 |
exit |
|
768 |
end; |
|
1002 | 769 |
|
824 | 770 |
defaultPos:= true; |
1253 | 771 |
HatVisible:= false; |
847 | 772 |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
773 |
sx:= hwRound(Gear^.X) + 1 + WorldDx; |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
774 |
sy:= hwRound(Gear^.Y) - 3 + WorldDy; |
1002 | 775 |
if (Gear^.State and gstDrowning) <> 0 then |
776 |
begin |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
777 |
DrawHedgehog(sx, sy, |
1002 | 778 |
hwSign(Gear^.dX), |
779 |
1, |
|
780 |
7, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
781 |
0); |
1002 | 782 |
defaultPos:= false |
783 |
end else |
|
1892 | 784 |
if ((Gear^.State and gstWinner) <> 0) and |
785 |
((CurAmmoGear = nil) or (CurAmmoGear^.Kind <> gtPickHammer)) then |
|
1011 | 786 |
begin |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
787 |
DrawHedgehog(sx, sy, |
1011 | 788 |
hwSign(Gear^.dX), |
789 |
2, |
|
790 |
0, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
791 |
0); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
792 |
defaultPos:= false |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
793 |
end else |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
794 |
if (Gear^.State and gstLoser) <> 0 then // for now using the jackhammer for its kind of bemused "oops" look |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
795 |
begin |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
796 |
DrawHedgehog(sx, sy, |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
797 |
hwSign(Gear^.dX), |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
798 |
2, |
2053
9a8a4add3eff
Use shrug frame for injuring yourself/team-mate, add custom theme music to Sheep theme
nemo
parents:
2045
diff
changeset
|
799 |
3, |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
800 |
0); |
1011 | 801 |
defaultPos:= false |
802 |
end else |
|
803 |
||
821
e6c0408b54ed
Use 'regular standing' and 'rope swing' hedgehog sprites
unc0rr
parents:
815
diff
changeset
|
804 |
if (Gear^.State and gstHHDriven) <> 0 then |
966 | 805 |
begin |
2028 | 806 |
if ((Gear^.State and gstHHThinking) = 0) and |
807 |
ShowCrosshair and |
|
808 |
((Gear^.State and (gstAttacked or gstAnimation)) = 0) then |
|
809 |
begin |
|
810 |
(* These calculations are a little complex for a few reasons: |
|
811 |
1: I need to draw the laser from weapon origin to nearest land |
|
812 |
2: I need to start the beam outside the hedgie for attractiveness. |
|
813 |
3: I need to extend the beam beyond land. |
|
814 |
This routine perhaps should be pushed into uStore or somesuch instead of continuuing the increase in size of this function. |
|
815 |
*) |
|
816 |
dx:= hwSign(Gear^.dX) * m * Sin(Gear^.Angle * pi / cMaxAngle); |
|
817 |
dy:= - Cos(Gear^.Angle * pi / cMaxAngle); |
|
818 |
if cLaserSighting then |
|
819 |
begin |
|
820 |
lx:= hwRound(Gear^.X); |
|
821 |
ly:= hwRound(Gear^.Y); |
|
822 |
lx:= lx + dx * 16; |
|
823 |
ly:= ly + dy * 16; |
|
824 |
||
825 |
ax:= dx * 4; |
|
826 |
ay:= dy * 4; |
|
827 |
||
828 |
tx:= round(lx); |
|
829 |
ty:= round(ly); |
|
830 |
hx:= tx; |
|
831 |
hy:= ty; |
|
832 |
while ((ty and LAND_HEIGHT_MASK) = 0) and |
|
833 |
((tx and LAND_WIDTH_MASK) = 0) and |
|
834 |
(Land[ty, tx] = 0) do |
|
835 |
begin |
|
836 |
lx:= lx + ax; |
|
837 |
ly:= ly + ay; |
|
838 |
tx:= round(lx); |
|
839 |
ty:= round(ly) |
|
840 |
end; |
|
841 |
// reached edge of land. assume infinite beam. Extend it way out past camera |
|
842 |
if ((ty and LAND_HEIGHT_MASK) <> 0) or ((tx and LAND_WIDTH_MASK) <> 0) then |
|
843 |
begin |
|
844 |
tx:= round(lx + ax * (LAND_WIDTH div 4)); |
|
845 |
ty:= round(ly + ay * (LAND_WIDTH div 4)); |
|
846 |
end; |
|
847 |
||
848 |
//if (abs(lx-tx)>8) or (abs(ly-ty)>8) then |
|
849 |
begin |
|
850 |
glDisable(GL_TEXTURE_2D); |
|
851 |
glEnable(GL_LINE_SMOOTH); |
|
852 |
||
853 |
glColor4ub($FF, $00, $00, $C0); |
|
854 |
VertexBuffer[0].X:= hx + WorldDx; |
|
855 |
VertexBuffer[0].Y:= hy + WorldDy; |
|
856 |
VertexBuffer[1].X:= tx + WorldDx; |
|
857 |
VertexBuffer[1].Y:= ty + WorldDy; |
|
858 |
||
859 |
glEnableClientState(GL_VERTEX_ARRAY); |
|
860 |
glVertexPointer(2, GL_FLOAT, 0, @VertexBuffer[0]); |
|
861 |
glDrawArrays(GL_LINES, 0, Length(VertexBuffer)); |
|
862 |
glColor4f(1, 1, 1, 1); |
|
863 |
glEnable(GL_TEXTURE_2D); |
|
864 |
glDisable(GL_LINE_SMOOTH); |
|
865 |
end; |
|
866 |
end; |
|
867 |
// draw crosshair |
|
868 |
cx:= Round(hwRound(Gear^.X) + dx * 80); |
|
869 |
cy:= Round(hwRound(Gear^.Y) + dy * 80); |
|
870 |
DrawRotatedTex(PHedgehog(Gear^.Hedgehog)^.Team^.CrosshairTex, |
|
871 |
12, 12, cx + WorldDx, cy + WorldDy, 0, |
|
872 |
hwSign(Gear^.dX) * (Gear^.Angle * 180.0) / cMaxAngle); |
|
873 |
end; |
|
1002 | 874 |
hx:= hwRound(Gear^.X) + 1 + 8 * hwSign(Gear^.dX) + WorldDx; |
875 |
hy:= hwRound(Gear^.Y) - 2 + WorldDy; |
|
876 |
aangle:= Gear^.Angle * 180 / cMaxAngle - 90; |
|
874 | 877 |
|
1002 | 878 |
if CurAmmoGear <> nil then |
879 |
begin |
|
880 |
case CurAmmoGear^.Kind of |
|
1294
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
881 |
gtShotgunShot: begin |
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
882 |
if (CurAmmoGear^.State and gstAnimation <> 0) then |
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
883 |
DrawRotated(sprShotgun, hx, hy, hwSign(Gear^.dX), aangle) |
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
884 |
else |
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
885 |
DrawRotated(sprHandShotgun, hx, hy, hwSign(Gear^.dX), aangle); |
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
886 |
end; |
1002 | 887 |
gtDEagleShot: DrawRotated(sprDEagle, hx, hy, hwSign(Gear^.dX), aangle); |
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
888 |
gtSniperRifleShot: begin |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
889 |
if (CurAmmoGear^.State and gstAnimation <> 0) then |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
890 |
DrawRotatedF(sprSniperRifle, hx, hy, 1, hwSign(Gear^.dX), aangle) |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
891 |
else |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
892 |
DrawRotatedF(sprSniperRifle, hx, hy, 0, hwSign(Gear^.dX), aangle) |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
893 |
end; |
1601 | 894 |
gtBallgun: DrawRotated(sprHandBallgun, hx, hy, hwSign(Gear^.dX), aangle); |
1717 | 895 |
gtRCPlane: begin |
896 |
DrawRotated(sprHandPlane, hx, hy, hwSign(Gear^.dX), 0); |
|
897 |
defaultPos:= false |
|
898 |
end; |
|
1002 | 899 |
gtRope: begin |
900 |
if Gear^.X < CurAmmoGear^.X then |
|
901 |
begin |
|
902 |
dAngle:= 0; |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
903 |
i:= 1 |
1002 | 904 |
end else |
905 |
begin |
|
906 |
dAngle:= 180; |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
907 |
i:= -1 |
966 | 908 |
end; |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
909 |
sx:= hwRound(Gear^.X) + WorldDx; |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
910 |
sy:= hwRound(Gear^.Y) + WorldDy; |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
911 |
DrawHedgehog(sx, sy, |
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
912 |
i, |
1002 | 913 |
1, |
914 |
0, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
915 |
DxDy2Angle(CurAmmoGear^.dY, CurAmmoGear^.dX) + dAngle); |
1002 | 916 |
defaultPos:= false |
917 |
end; |
|
918 |
gtBlowTorch: begin |
|
919 |
DrawRotated(sprBlowTorch, hx, hy, hwSign(Gear^.dX), aangle); |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
920 |
DrawHedgehog(sx, sy, |
1002 | 921 |
hwSign(Gear^.dX), |
922 |
3, |
|
1113 | 923 |
PHedgehog(Gear^.Hedgehog)^.visStepPos div 2, |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
924 |
0); |
1002 | 925 |
defaultPos:= false |
926 |
end; |
|
927 |
gtShover: DrawRotated(sprHandBaseball, hx, hy, hwSign(Gear^.dX), aangle + 180); |
|
928 |
gtFirePunch: begin |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
929 |
DrawHedgehog(sx, sy, |
1002 | 930 |
hwSign(Gear^.dX), |
931 |
1, |
|
932 |
4, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
933 |
0); |
1002 | 934 |
defaultPos:= false |
935 |
end; |
|
1892 | 936 |
gtPickHammer: begin |
937 |
defaultPos:= false; |
|
938 |
dec(sy,20); |
|
939 |
end; |
|
1002 | 940 |
gtTeleport: defaultPos:= false; |
1010 | 941 |
gtWhip: begin |
942 |
DrawRotatedF(sprWhip, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
943 |
sx, |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
944 |
sy, |
1010 | 945 |
1, |
946 |
hwSign(Gear^.dX), |
|
947 |
0); |
|
948 |
defaultPos:= false |
|
949 |
end; |
|
1002 | 950 |
gtKamikaze: begin |
1286 | 951 |
if CurAmmoGear^.Pos = 0 then |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
952 |
DrawHedgehog(sx, sy, |
1286 | 953 |
hwSign(Gear^.dX), |
954 |
1, |
|
955 |
6, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
956 |
0) |
1286 | 957 |
else |
958 |
DrawRotatedF(sprKamikaze, |
|
959 |
hwRound(Gear^.X) + WorldDx, |
|
960 |
hwRound(Gear^.Y) + WorldDy, |
|
961 |
CurAmmoGear^.Pos - 1, |
|
2025
692308790912
Adjust routines impacted by DrawRotatedF modification, clear gstHHHJump in rope to avoid crosshair/hat drawing bug.
nemo
parents:
2023
diff
changeset
|
962 |
hwSign(Gear^.dX), |
692308790912
Adjust routines impacted by DrawRotatedF modification, clear gstHHHJump in rope to avoid crosshair/hat drawing bug.
nemo
parents:
2023
diff
changeset
|
963 |
aangle); |
1286 | 964 |
defaultPos:= false |
965 |
end; |
|
966 |
gtSeduction: begin |
|
967 |
if CurAmmoGear^.Pos >= 6 then |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
968 |
DrawHedgehog(sx, sy, |
1286 | 969 |
hwSign(Gear^.dX), |
970 |
2, |
|
971 |
2, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
972 |
0) |
1286 | 973 |
else |
974 |
begin |
|
975 |
DrawRotatedF(sprDress, |
|
976 |
hwRound(Gear^.X) + WorldDx, |
|
977 |
hwRound(Gear^.Y) + WorldDy, |
|
978 |
CurAmmoGear^.Pos, |
|
979 |
hwSign(Gear^.dX), |
|
980 |
0); |
|
981 |
DrawSprite(sprCensored, hwRound(Gear^.X) - 32 + WorldDx, hwRound(Gear^.Y) - 20 + WorldDy, 0) |
|
982 |
end; |
|
983 |
defaultPos:= false |
|
984 |
end; |
|
1002 | 985 |
end; |
986 |
||
987 |
case CurAmmoGear^.Kind of |
|
988 |
gtShotgunShot, |
|
989 |
gtDEagleShot, |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
990 |
gtSniperRifleShot, |
1002 | 991 |
gtShover: begin |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
992 |
DrawHedgehog(sx, sy, |
1002 | 993 |
hwSign(Gear^.dX), |
994 |
0, |
|
995 |
4, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
996 |
0); |
1977 | 997 |
defaultPos:= false; |
998 |
HatVisible:= true |
|
1002 | 999 |
end |
1000 |
end |
|
1001 |
end else |
|
876 | 1002 |
|
1002 | 1003 |
if ((Gear^.State and gstHHJumping) <> 0) then |
1004 |
begin |
|
2020 | 1005 |
DrawHedgehog(sx, sy, |
1006 |
hwSign(Gear^.dX)*m, |
|
1007 |
1, |
|
1008 |
1, |
|
1009 |
0); |
|
1010 |
HatVisible:= true; |
|
2017 | 1011 |
HatVisible:= true; |
1002 | 1012 |
defaultPos:= false |
1013 |
end else |
|
874 | 1014 |
|
1913 | 1015 |
if (Gear^.Message and (gm_Left or gm_Right) <> 0) and (not isCursorVisible) then |
824 | 1016 |
begin |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1017 |
DrawHedgehog(sx, sy, |
1002 | 1018 |
hwSign(Gear^.dX), |
1019 |
0, |
|
1020 |
PHedgehog(Gear^.Hedgehog)^.visStepPos div 2, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1021 |
0); |
1257 | 1022 |
defaultPos:= false; |
1023 |
HatVisible:= true |
|
1002 | 1024 |
end |
1025 |
else |
|
1026 |
||
1033 | 1027 |
if ((Gear^.State and gstAnimation) <> 0) then |
1028 |
begin |
|
1034 | 1029 |
DrawRotatedF(Wavez[TWave(Gear^.Tag)].Sprite, |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1030 |
sx, |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1031 |
sy, |
1033 | 1032 |
Gear^.Pos, |
1033 |
hwSign(Gear^.dX), |
|
1034 |
0.0); |
|
1035 |
defaultPos:= false |
|
1036 |
end |
|
1037 |
else |
|
1002 | 1038 |
if ((Gear^.State and gstAttacked) = 0) then |
1039 |
begin |
|
1040 |
amt:= CurrentHedgehog^.Ammo^[CurrentHedgehog^.CurSlot, CurrentHedgehog^.CurAmmo].AmmoType; |
|
1041 |
case amt of |
|
1042 |
amBazooka, |
|
1717 | 1043 |
amMortar: DrawRotated(sprHandBazooka, hx, hy, hwSign(Gear^.dX), aangle); |
1044 |
amBallgun: DrawRotated(sprHandBallgun, hx, hy, hwSign(Gear^.dX), aangle); |
|
1045 |
amDrill: DrawRotated(sprHandDrill, hx, hy, hwSign(Gear^.dX), aangle); |
|
1002 | 1046 |
amRope: DrawRotated(sprHandRope, hx, hy, hwSign(Gear^.dX), aangle); |
1047 |
amShotgun: DrawRotated(sprHandShotgun, hx, hy, hwSign(Gear^.dX), aangle); |
|
1048 |
amDEagle: DrawRotated(sprHandDEagle, hx, hy, hwSign(Gear^.dX), aangle); |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
1049 |
amSniperRifle: DrawRotatedF(sprSniperRifle, hx, hy, 0, hwSign(Gear^.dX), aangle); |
1002 | 1050 |
amBlowTorch: DrawRotated(sprHandBlowTorch, hx, hy, hwSign(Gear^.dX), aangle); |
1717 | 1051 |
amRCPlane: begin |
1052 |
DrawRotated(sprHandPlane, hx, hy, hwSign(Gear^.dX), 0); |
|
1053 |
defaultPos:= false |
|
1054 |
end; |
|
1939 | 1055 |
amGirder: begin |
1056 |
DrawSpriteClipped(sprGirder, |
|
1057 |
sx-256, |
|
1058 |
sy-256, |
|
1059 |
LongInt(topY)+WorldDy, |
|
1060 |
LongInt(rightX)+WorldDx, |
|
1061 |
cWaterLine+WorldDy, |
|
1062 |
LongInt(leftX)+WorldDx); |
|
1063 |
end; |
|
1002 | 1064 |
end; |
1065 |
||
1066 |
case amt of |
|
1067 |
amAirAttack, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1068 |
amMineStrike: DrawRotated(sprHandAirAttack, sx, hwRound(Gear^.Y) + WorldDy, hwSign(Gear^.dX), 0); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1069 |
amPickHammer: DrawHedgehog(sx, sy, |
1002 | 1070 |
hwSign(Gear^.dX), |
1071 |
1, |
|
1072 |
2, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1073 |
0); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1074 |
amBlowTorch: DrawHedgehog(sx, sy, |
1002 | 1075 |
hwSign(Gear^.dX), |
1076 |
1, |
|
1077 |
3, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1078 |
0); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1079 |
amTeleport: DrawRotatedF(sprTeleport, sx, sy, 0, hwSign(Gear^.dX), 0); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1080 |
amKamikaze: DrawHedgehog(sx, sy, |
1002 | 1081 |
hwSign(Gear^.dX), |
1082 |
1, |
|
1083 |
5, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1084 |
0); |
1221 | 1085 |
amWhip: DrawRotatedF(sprWhip, |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1086 |
sx, |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1087 |
sy, |
1010 | 1088 |
0, |
1089 |
hwSign(Gear^.dX), |
|
1090 |
0); |
|
1002 | 1091 |
else |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1092 |
DrawHedgehog(sx, sy, |
822 | 1093 |
hwSign(Gear^.dX), |
1094 |
0, |
|
1002 | 1095 |
4, |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1096 |
0); |
1253 | 1097 |
|
1098 |
HatVisible:= true; |
|
1099 |
with PHedgehog(Gear^.Hedgehog)^ do |
|
1294
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
1100 |
if (HatTex <> nil) |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1101 |
and (HatVisibility > 0) then |
1253 | 1102 |
DrawTextureF(HatTex, |
1103 |
HatVisibility, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1104 |
sx, |
1253 | 1105 |
hwRound(Gear^.Y) - 8 + WorldDy, |
1106 |
0, |
|
1107 |
hwSign(Gear^.dX), |
|
1108 |
32); |
|
1002 | 1109 |
end; |
966 | 1110 |
|
1002 | 1111 |
case amt of |
1112 |
amBaseballBat: DrawRotated(sprHandBaseball, |
|
1113 |
hwRound(Gear^.X) + 1 - 4 * hwSign(Gear^.dX) + WorldDx, |
|
1114 |
hwRound(Gear^.Y) + 6 + WorldDy, hwSign(Gear^.dX), aangle); |
|
1115 |
end; |
|
966 | 1116 |
|
1002 | 1117 |
defaultPos:= false |
2182
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1118 |
end; |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1119 |
|
1002 | 1120 |
end else // not gstHHDriven |
1012 | 1121 |
begin |
1014
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
1122 |
if (Gear^.Damage > 0) |
2028 | 1123 |
and (hwSqr(Gear^.dX) + hwSqr(Gear^.dY) > _0_003) then |
1014
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
1124 |
begin |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1125 |
DrawHedgehog(sx, sy, |
1012 | 1126 |
hwSign(Gear^.dX), |
1014
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
1127 |
2, |
1012 | 1128 |
1, |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1129 |
Gear^.DirAngle); |
1012 | 1130 |
defaultPos:= false |
1020 | 1131 |
end else |
1014
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
1132 |
|
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
1133 |
if ((Gear^.State and gstHHJumping) <> 0) then |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
1134 |
begin |
2020 | 1135 |
DrawHedgehog(sx, sy, |
1136 |
hwSign(Gear^.dX)*m, |
|
1137 |
1, |
|
1138 |
1, |
|
1139 |
0); |
|
1140 |
defaultPos:= false |
|
1014
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
1141 |
end; |
1012 | 1142 |
end; |
834 | 1143 |
|
1251 | 1144 |
with PHedgehog(Gear^.Hedgehog)^ do |
970 | 1145 |
begin |
1251 | 1146 |
if defaultPos then |
1147 |
begin |
|
1148 |
DrawRotatedF(sprHHIdle, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1149 |
sx, |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1150 |
sy, |
1251 | 1151 |
(RealTicks div 128 + Gear^.Pos) mod 19, |
1152 |
hwSign(Gear^.dX), |
|
1153 |
0); |
|
1253 | 1154 |
HatVisible:= true; |
1155 |
end; |
|
1156 |
||
1157 |
if HatVisible then |
|
1251 | 1158 |
if HatVisibility < 1.0 then |
1254 | 1159 |
HatVisibility:= HatVisibility + 0.2 |
1253 | 1160 |
else |
1251 | 1161 |
else |
1162 |
if HatVisibility > 0.0 then |
|
1254 | 1163 |
HatVisibility:= HatVisibility - 0.2; |
1253 | 1164 |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1165 |
if (HatTex <> nil) |
1294
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
1166 |
and (HatVisibility > 0) then |
1255 | 1167 |
if DefaultPos then |
1168 |
DrawTextureF(HatTex, |
|
1169 |
HatVisibility, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1170 |
sx, |
1255 | 1171 |
hwRound(Gear^.Y) - 8 + WorldDy, |
1172 |
(RealTicks div 128 + Gear^.Pos) mod 19, |
|
1173 |
hwSign(Gear^.dX), |
|
1174 |
32) |
|
1175 |
else |
|
1176 |
DrawTextureF(HatTex, |
|
1177 |
HatVisibility, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1178 |
sx, |
1255 | 1179 |
hwRound(Gear^.Y) - 8 + WorldDy, |
1180 |
0, |
|
2020 | 1181 |
hwSign(Gear^.dX)*m, |
1255 | 1182 |
32); |
970 | 1183 |
end; |
2182
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1184 |
if (Gear^.State and gstHHDriven) <> 0 then |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1185 |
begin |
2186
5ec3e4a03d51
disable selection sprite, nudge ship into the air on launch
nemo
parents:
2182
diff
changeset
|
1186 |
(* if (CurAmmoGear = nil) then |
2182
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1187 |
begin |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1188 |
amt:= CurrentHedgehog^.Ammo^[CurrentHedgehog^.CurSlot, CurrentHedgehog^.CurAmmo].AmmoType; |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1189 |
case amt of |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1190 |
amJetpack: DrawSprite(sprJetpack, sx-32, sy-32, 0); |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1191 |
end |
2186
5ec3e4a03d51
disable selection sprite, nudge ship into the air on launch
nemo
parents:
2182
diff
changeset
|
1192 |
end; *) |
2182
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1193 |
if CurAmmoGear <> nil then |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1194 |
begin |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1195 |
case CurAmmoGear^.Kind of |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1196 |
gtJetpack: begin |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1197 |
DrawSprite(sprJetpack, sx-32, sy-32, 0); |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1198 |
if (CurAmmoGear^.MsgParam and gm_Up) <> 0 then DrawSprite(sprJetpack, sx-32, sy-32, 1); |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1199 |
if (CurAmmoGear^.MsgParam and gm_Left) <> 0 then DrawSprite(sprJetpack, sx-32, sy-32, 2); |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1200 |
if (CurAmmoGear^.MsgParam and gm_Right) <> 0 then DrawSprite(sprJetpack, sx-32, sy-32, 3); |
2204
526f8165acce
Smaxx' idea of timers, reworked just a tad. Might need variable for offset, but seems ok for now
nemo
parents:
2186
diff
changeset
|
1201 |
if CurAmmoGear^.Tex <> nil then DrawCentered(sx, sy - 40, CurAmmoGear^.Tex) |
2182
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1202 |
end; |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1203 |
end; |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1204 |
end |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1205 |
end; |
1251 | 1206 |
|
351 | 1207 |
with PHedgehog(Gear^.Hedgehog)^ do |
994 | 1208 |
begin |
1011 | 1209 |
if ((Gear^.State and not gstWinner) = 0) |
994 | 1210 |
or (bShowFinger and ((Gear^.State and gstHHDriven) <> 0)) then |
958 | 1211 |
begin |
1660 | 1212 |
t:= hwRound(Gear^.Y) - cHHRadius - 12 + WorldDy; |
1213 |
if (cTagsMask and 1) <> 0 then |
|
1214 |
begin |
|
1215 |
dec(t, HealthTagTex^.h + 2); |
|
1216 |
DrawCentered(hwRound(Gear^.X) + WorldDx, t, HealthTagTex) |
|
1217 |
end; |
|
1218 |
if (cTagsMask and 2) <> 0 then |
|
1219 |
begin |
|
1220 |
dec(t, NameTagTex^.h + 2); |
|
1221 |
DrawCentered(hwRound(Gear^.X) + WorldDx, t, NameTagTex) |
|
1222 |
end; |
|
1223 |
if (cTagsMask and 4) <> 0 then |
|
1224 |
begin |
|
1225 |
dec(t, Team^.NameTagTex^.h + 2); |
|
1226 |
DrawCentered(hwRound(Gear^.X) + WorldDx, t, Team^.NameTagTex) |
|
1227 |
end |
|
958 | 1228 |
end; |
994 | 1229 |
if (Gear^.State and gstHHDriven) <> 0 then // Current hedgehog |
958 | 1230 |
begin |
1231 |
if bShowFinger and ((Gear^.State and gstHHDriven) <> 0) then |
|
1232 |
DrawSprite(sprFinger, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 64 + WorldDy, |
|
1233 |
GameTicks div 32 mod 16); |
|
821
e6c0408b54ed
Use 'regular standing' and 'rope swing' hedgehog sprites
unc0rr
parents:
815
diff
changeset
|
1234 |
|
958 | 1235 |
if (Gear^.State and gstDrowning) = 0 then |
1236 |
if (Gear^.State and gstHHThinking) <> 0 then |
|
1237 |
DrawSprite(sprQuestion, hwRound(Gear^.X) - 10 + WorldDx, hwRound(Gear^.Y) - cHHRadius - 34 + WorldDy, 0) |
|
2028 | 1238 |
end |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1239 |
end; |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1240 |
|
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1241 |
if Gear^.Invulnerable then |
2017 | 1242 |
begin |
1243 |
DrawSprite(sprInvulnerable, sx - 24, sy - 24, 0); |
|
1244 |
end; |
|
1245 |
if cVampiric and |
|
1246 |
(CurrentHedgehog^.Gear <> nil) and |
|
1247 |
(CurrentHedgehog^.Gear = Gear) then |
|
1248 |
begin |
|
1249 |
DrawSprite(sprVampiric, sx - 24, sy - 24, 0); |
|
1250 |
end; |
|
292 | 1251 |
end; |
1252 |
||
956 | 1253 |
procedure DrawGears; |
853 | 1254 |
var Gear, HHGear: PGear; |
4 | 1255 |
i: Longword; |
371 | 1256 |
roplen: LongInt; |
4 | 1257 |
|
371 | 1258 |
procedure DrawRopeLine(X1, Y1, X2, Y2: LongInt); |
1259 |
var eX, eY, dX, dY: LongInt; |
|
1260 |
i, sX, sY, x, y, d: LongInt; |
|
366 | 1261 |
b: boolean; |
4 | 1262 |
begin |
37 | 1263 |
if (X1 = X2) and (Y1 = Y2) then |
1264 |
begin |
|
2070 | 1265 |
//OutError('WARNING: zero length rope line!', false); |
37 | 1266 |
exit |
1267 |
end; |
|
366 | 1268 |
eX:= 0; |
1269 |
eY:= 0; |
|
1270 |
dX:= X2 - X1; |
|
1271 |
dY:= Y2 - Y1; |
|
1272 |
||
1273 |
if (dX > 0) then sX:= 1 |
|
1274 |
else |
|
1275 |
if (dX < 0) then |
|
1276 |
begin |
|
1277 |
sX:= -1; |
|
1278 |
dX:= -dX |
|
1279 |
end else sX:= dX; |
|
1280 |
||
1281 |
if (dY > 0) then sY:= 1 |
|
1282 |
else |
|
1283 |
if (dY < 0) then |
|
4 | 1284 |
begin |
366 | 1285 |
sY:= -1; |
1286 |
dY:= -dY |
|
1287 |
end else sY:= dY; |
|
1288 |
||
1289 |
if (dX > dY) then d:= dX |
|
1290 |
else d:= dY; |
|
1291 |
||
1292 |
x:= X1; |
|
1293 |
y:= Y1; |
|
1294 |
||
1295 |
for i:= 0 to d do |
|
1296 |
begin |
|
1297 |
inc(eX, dX); |
|
1298 |
inc(eY, dY); |
|
1299 |
b:= false; |
|
1300 |
if (eX > d) then |
|
35 | 1301 |
begin |
366 | 1302 |
dec(eX, d); |
1303 |
inc(x, sX); |
|
1304 |
b:= true |
|
35 | 1305 |
end; |
366 | 1306 |
if (eY > d) then |
35 | 1307 |
begin |
366 | 1308 |
dec(eY, d); |
1309 |
inc(y, sY); |
|
1310 |
b:= true |
|
35 | 1311 |
end; |
366 | 1312 |
if b then |
1313 |
begin |
|
1314 |
inc(roplen); |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1315 |
if (roplen mod 4) = 0 then DrawSprite(sprRopeNode, x - 2, y - 2, 0) |
366 | 1316 |
end |
4 | 1317 |
end |
366 | 1318 |
end; |
4 | 1319 |
|
1320 |
begin |
|
1321 |
Gear:= GearsList; |
|
1322 |
while Gear<>nil do |
|
1689 | 1323 |
begin |
1324 |
case Gear^.Kind of |
|
822 | 1325 |
gtAmmo_Bomb: DrawRotated(sprBomb, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, Gear^.DirAngle); |
1689 | 1326 |
|
1696 | 1327 |
gtRCPlane: if (Gear^.Tag = -1) then |
1689 | 1328 |
DrawRotated(sprPlane, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, -1, DxDy2Angle(Gear^.dX, Gear^.dY) + 90) |
1329 |
else |
|
1330 |
DrawRotated(sprPlane, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy,0,DxDy2Angle(Gear^.dY, Gear^.dX)); |
|
1331 |
||
1601 | 1332 |
gtBall: DrawRotatedf(sprBalls, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, Gear^.Tag,0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
1689 | 1333 |
|
1573 | 1334 |
gtDrill: DrawRotated(sprDrill, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
1689 | 1335 |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1336 |
gtHedgehog: DrawHH(Gear); |
1689 | 1337 |
|
822 | 1338 |
gtAmmo_Grenade: DrawRotated(sprGrenade, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
1689 | 1339 |
|
1505 | 1340 |
gtHealthTag: if Gear^.Tex <> nil then DrawCentered(hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, Gear^.Tex); |
2017 | 1341 |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1342 |
gtGrave: DrawSurfSprite(hwRound(Gear^.X) + WorldDx - 16, hwRound(Gear^.Y) + WorldDy - 16, 32, (GameTicks shr 7) and 7, PHedgehog(Gear^.Hedgehog)^.Team^.GraveTex); |
1689 | 1343 |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1344 |
gtUFO: DrawSprite(sprUFO, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 16 + WorldDy, (GameTicks shr 7) mod 4); |
1689 | 1345 |
|
848 | 1346 |
gtPickHammer: DrawSprite(sprPHammer, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 50 + LongInt(((GameTicks shr 5) and 1) * 2) + WorldDy, 0); |
4 | 1347 |
gtRope: begin |
35 | 1348 |
roplen:= 0; |
4 | 1349 |
if RopePoints.Count > 0 then |
1350 |
begin |
|
1351 |
i:= 0; |
|
1352 |
while i < Pred(RopePoints.Count) do |
|
1353 |
begin |
|
351 | 1354 |
DrawRopeLine(hwRound(RopePoints.ar[i].X) + WorldDx, hwRound(RopePoints.ar[i].Y) + WorldDy, |
1355 |
hwRound(RopePoints.ar[Succ(i)].X) + WorldDx, hwRound(RopePoints.ar[Succ(i)].Y) + WorldDy); |
|
4 | 1356 |
inc(i) |
1357 |
end; |
|
351 | 1358 |
DrawRopeLine(hwRound(RopePoints.ar[i].X) + WorldDx, hwRound(RopePoints.ar[i].Y) + WorldDy, |
1359 |
hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy); |
|
1360 |
DrawRopeLine(hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, |
|
1361 |
hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.X) + WorldDx, hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.Y) + WorldDy); |
|
822 | 1362 |
DrawRotated(sprRopeHook, hwRound(RopePoints.ar[0].X) + WorldDx, hwRound(RopePoints.ar[0].Y) + WorldDy, 1, RopePoints.HookAngle) |
4 | 1363 |
end else |
1781 | 1364 |
if Gear^.Elasticity.QWordValue > 0 then |
35 | 1365 |
begin |
351 | 1366 |
DrawRopeLine(hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, |
1367 |
hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.X) + WorldDx, hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.Y) + WorldDy); |
|
822 | 1368 |
DrawRotated(sprRopeHook, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
35 | 1369 |
end; |
4 | 1370 |
end; |
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1371 |
gtSmokeTrace: if Gear^.State < 8 then DrawSprite(sprSmokeTrace, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, Gear^.State); |
1012 | 1372 |
gtExplosion: DrawSprite(sprExplosion50, hwRound(Gear^.X) - 32 + WorldDx, hwRound(Gear^.Y) - 32 + WorldDy, Gear^.State); |
351 | 1373 |
gtMine: if ((Gear^.State and gstAttacking) = 0)or((Gear^.Timer and $3FF) < 420) |
822 | 1374 |
then DrawRotated(sprMineOff, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, Gear^.DirAngle) |
1375 |
else DrawRotated(sprMineOn, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, Gear^.DirAngle); |
|
351 | 1376 |
gtCase: case Gear^.Pos of |
1794 | 1377 |
posCaseAmmo : begin |
1378 |
i:= (GameTicks shr 6) mod 64; |
|
1379 |
if i > 18 then i:= 0; |
|
8ae48e3b02d9
New bonus |