author | unc0rr |
Thu, 20 Mar 2014 22:14:30 +0400 | |
changeset 10211 | f4c51ab8f46d |
parent 10127 | 7f29a65aa1e4 |
child 10354 | 56bd029245fc |
permissions | -rw-r--r-- |
6581 | 1 |
(* |
2 |
* Hedgewars, a free turn based strategy game |
|
9998 | 3 |
* Copyright (c) 2004-2014 Andrey Korotaev <unC0Rr@gmail.com> |
6581 | 4 |
* |
5 |
* This program is free software; you can redistribute it and/or modify |
|
6 |
* it under the terms of the GNU General Public License as published by |
|
7 |
* the Free Software Foundation; version 2 of the License |
|
8 |
* |
|
9 |
* This program is distributed in the hope that it will be useful, |
|
10 |
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
|
11 |
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
|
12 |
* GNU General Public License for more details. |
|
13 |
* |
|
14 |
* You should have received a copy of the GNU General Public License |
|
15 |
* along with this program; if not, write to the Free Software |
|
10108
c68cf030eded
update FSF address. note: two sdl include files (by Sam Lantinga) still have the old FSF address in their copyright - but I ain't gonna touch their copyright headers
sheepluva
parents:
10040
diff
changeset
|
16 |
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
6581 | 17 |
*) |
18 |
||
19 |
{$INCLUDE "options.inc"} |
|
20 |
unit uGearsList; |
|
21 |
||
22 |
interface |
|
10032
db65298717da
This adds idle hog tinting. Active hog tinting still needed.
nemo
parents:
9998
diff
changeset
|
23 |
uses uFloat, uTypes, SDLh; |
6581 | 24 |
|
25 |
function AddGear(X, Y: LongInt; Kind: TGearType; State: Longword; dX, dY: hwFloat; Timer: LongWord): PGear; |
|
26 |
procedure DeleteGear(Gear: PGear); |
|
27 |
procedure InsertGearToList(Gear: PGear); |
|
28 |
procedure RemoveGearFromList(Gear: PGear); |
|
29 |
||
7395 | 30 |
var curHandledGear: PGear; |
31 |
||
6581 | 32 |
implementation |
33 |
||
34 |
uses uRandom, uUtils, uConsts, uVariables, uAmmos, uTeams, uStats, |
|
35 |
uTextures, uScript, uRenderUtils, uAI, uCollisions, |
|
7395 | 36 |
uGearsRender, uGearsUtils, uDebug; |
6581 | 37 |
|
8145
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
38 |
const |
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
39 |
GearKindAmmoTypeMap : array [TGearType] of TAmmoType = ( |
8145
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
40 |
(* gtFlame *) amNothing |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
41 |
(* gtHedgehog *) , amNothing |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
42 |
(* gtMine *) , amMine |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
43 |
(* gtCase *) , amNothing |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
44 |
(* gtExplosives *) , amNothing |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
45 |
(* gtGrenade *) , amGrenade |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
46 |
(* gtShell *) , amBazooka |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
47 |
(* gtGrave *) , amNothing |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
48 |
(* gtBee *) , amBee |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
49 |
(* gtShotgunShot *) , amShotgun |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
50 |
(* gtPickHammer *) , amPickHammer |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
51 |
(* gtRope *) , amRope |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
52 |
(* gtDEagleShot *) , amDEagle |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
53 |
(* gtDynamite *) , amDynamite |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
54 |
(* gtClusterBomb *) , amClusterBomb |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
55 |
(* gtCluster *) , amClusterBomb |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
56 |
(* gtShover *) , amBaseballBat // Shover is only used for baseball bat right now |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
57 |
(* gtFirePunch *) , amFirePunch |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
58 |
(* gtATStartGame *) , amNothing |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
59 |
(* gtATFinishGame *) , amNothing |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
60 |
(* gtParachute *) , amParachute |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
61 |
(* gtAirAttack *) , amAirAttack |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
62 |
(* gtAirBomb *) , amAirAttack |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
63 |
(* gtBlowTorch *) , amBlowTorch |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
64 |
(* gtGirder *) , amGirder |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
65 |
(* gtTeleport *) , amTeleport |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
66 |
(* gtSwitcher *) , amSwitch |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
67 |
(* gtTarget *) , amNothing |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
68 |
(* gtMortar *) , amMortar |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
69 |
(* gtWhip *) , amWhip |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
70 |
(* gtKamikaze *) , amKamikaze |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
71 |
(* gtCake *) , amCake |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
72 |
(* gtSeduction *) , amSeduction |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
73 |
(* gtWatermelon *) , amWatermelon |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
74 |
(* gtMelonPiece *) , amWatermelon |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
75 |
(* gtHellishBomb *) , amHellishBomb |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
76 |
(* gtWaterUp *) , amNothing |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
77 |
(* gtDrill *) , amDrill |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
78 |
(* gtBallGun *) , amBallgun |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
79 |
(* gtBall *) , amBallgun |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
80 |
(* gtRCPlane *) , amRCPlane |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
81 |
(*gtSniperRifleShot *) , amSniperRifle |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
82 |
(* gtJetpack *) , amJetpack |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
83 |
(* gtMolotov *) , amMolotov |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
84 |
(* gtBirdy *) , amBirdy |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
85 |
(* gtEgg *) , amBirdy |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
86 |
(* gtPortal *) , amPortalGun |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
87 |
(* gtPiano *) , amPiano |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
88 |
(* gtGasBomb *) , amGasBomb |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
89 |
(* gtSineGunShot *) , amSineGun |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
90 |
(* gtFlamethrower *) , amFlamethrower |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
91 |
(* gtSMine *) , amSMine |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
92 |
(* gtPoisonCloud *) , amNothing |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
93 |
(* gtHammer *) , amHammer |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
94 |
(* gtHammerHit *) , amHammer |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
95 |
(* gtResurrector *) , amResurrector |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
96 |
(* gtPoisonCloud *) , amNothing |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
97 |
(* gtSnowball *) , amSnowball |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
98 |
(* gtFlake *) , amNothing |
8161 | 99 |
//(* gtStructure *) , amStructure // TODO - This will undoubtedly change once there is more than one structure |
8145
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
100 |
(* gtLandGun *) , amLandGun |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
101 |
(* gtTardis *) , amTardis |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
102 |
(* gtIceGun *) , amIceGun |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
103 |
(* gtAddAmmo *) , amNothing |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
104 |
(* gtGenericFaller *) , amNothing |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
105 |
(* gtKnife *) , amKnife |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
106 |
); |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
107 |
|
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
108 |
|
7093 | 109 |
var GCounter: LongWord = 0; // this does not get re-initialized, but should be harmless |
7028 | 110 |
|
8145
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
111 |
const |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
112 |
cUsualZ = 500; |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
113 |
cOnHHZ = 2000; |
6408c0ba4ba1
Move global variables to units that use them
Joe Doyle (Ginto8) <ginto8@gmail.com>
parents:
7754
diff
changeset
|
114 |
|
6581 | 115 |
procedure InsertGearToList(Gear: PGear); |
116 |
var tmp, ptmp: PGear; |
|
117 |
begin |
|
118 |
tmp:= GearsList; |
|
119 |
ptmp:= GearsList; |
|
7366
e5a0856708dc
Insert at front of same Z, not end. Saves a little time on insertion and lua lookup of recent adds.
nemo
parents:
7364
diff
changeset
|
120 |
while (tmp <> nil) and (tmp^.Z < Gear^.Z) do |
6581 | 121 |
begin |
122 |
ptmp:= tmp; |
|
123 |
tmp:= tmp^.NextGear |
|
124 |
end; |
|
125 |
||
126 |
if ptmp <> tmp then |
|
127 |
begin |
|
128 |
Gear^.NextGear:= ptmp^.NextGear; |
|
129 |
Gear^.PrevGear:= ptmp; |
|
130 |
if ptmp^.NextGear <> nil then |
|
131 |
ptmp^.NextGear^.PrevGear:= Gear; |
|
132 |
ptmp^.NextGear:= Gear |
|
133 |
end |
|
134 |
else |
|
135 |
begin |
|
136 |
Gear^.NextGear:= GearsList; |
|
137 |
if Gear^.NextGear <> nil then |
|
138 |
Gear^.NextGear^.PrevGear:= Gear; |
|
139 |
GearsList:= Gear; |
|
140 |
end; |
|
141 |
end; |
|
142 |
||
7395 | 143 |
|
6581 | 144 |
procedure RemoveGearFromList(Gear: PGear); |
145 |
begin |
|
7395 | 146 |
TryDo((curHandledGear = nil) or (Gear = curHandledGear), 'You''re doing it wrong', true); |
147 |
||
6581 | 148 |
if Gear^.NextGear <> nil then |
149 |
Gear^.NextGear^.PrevGear:= Gear^.PrevGear; |
|
150 |
if Gear^.PrevGear <> nil then |
|
151 |
Gear^.PrevGear^.NextGear:= Gear^.NextGear |
|
152 |
else |
|
153 |
GearsList:= Gear^.NextGear |
|
154 |
end; |
|
7395 | 155 |
|
156 |
||
6581 | 157 |
function AddGear(X, Y: LongInt; Kind: TGearType; State: Longword; dX, dY: hwFloat; Timer: LongWord): PGear; |
158 |
var gear: PGear; |
|
10032
db65298717da
This adds idle hog tinting. Active hog tinting still needed.
nemo
parents:
9998
diff
changeset
|
159 |
c: byte; |
6581 | 160 |
begin |
7028 | 161 |
inc(GCounter); |
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7754
diff
changeset
|
162 |
|
7028 | 163 |
AddFileLog('AddGear: #' + inttostr(GCounter) + ' (' + inttostr(x) + ',' + inttostr(y) + '), d(' + floattostr(dX) + ',' + floattostr(dY) + ') type = ' + EnumToStr(Kind)); |
6581 | 164 |
|
8330 | 165 |
|
6581 | 166 |
New(gear); |
167 |
FillChar(gear^, sizeof(TGear), 0); |
|
168 |
gear^.X:= int2hwFloat(X); |
|
169 |
gear^.Y:= int2hwFloat(Y); |
|
170 |
gear^.Target.X:= NoPointX; |
|
171 |
gear^.Kind := Kind; |
|
172 |
gear^.State:= State; |
|
173 |
gear^.Active:= true; |
|
174 |
gear^.dX:= dX; |
|
175 |
gear^.dY:= dY; |
|
176 |
gear^.doStep:= doStepHandlers[Kind]; |
|
177 |
gear^.CollisionIndex:= -1; |
|
178 |
gear^.Timer:= Timer; |
|
7028 | 179 |
gear^.uid:= GCounter; |
6581 | 180 |
gear^.SoundChannel:= -1; |
181 |
gear^.ImpactSound:= sndNone; |
|
182 |
gear^.Density:= _1; |
|
183 |
// Define ammo association, if any. |
|
184 |
gear^.AmmoType:= GearKindAmmoTypeMap[Kind]; |
|
7730
2013733f9ca9
A bit more on the knife. Also add missing files to CMakeLists
nemo
parents:
7726
diff
changeset
|
185 |
gear^.CollisionMask:= $FFFF; |
10032
db65298717da
This adds idle hog tinting. Active hog tinting still needed.
nemo
parents:
9998
diff
changeset
|
186 |
gear^.Tint:= $FFFFFFFF; |
7272
71df899c4163
Second part of the change. Make collision check use the new mask bit.
nemo
parents:
7176
diff
changeset
|
187 |
|
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
188 |
if CurrentHedgehog <> nil then |
7726
1137406bce12
Set default collision mask for gears at currenthedgehog X/Y to FF7F, expose mask to scripting as well. This should resolve the collision part of bug #420
nemo
parents:
7721
diff
changeset
|
189 |
begin |
1137406bce12
Set default collision mask for gears at currenthedgehog X/Y to FF7F, expose mask to scripting as well. This should resolve the collision part of bug #420
nemo
parents:
7721
diff
changeset
|
190 |
gear^.Hedgehog:= CurrentHedgehog; |
1137406bce12
Set default collision mask for gears at currenthedgehog X/Y to FF7F, expose mask to scripting as well. This should resolve the collision part of bug #420
nemo
parents:
7721
diff
changeset
|
191 |
if (CurrentHedgehog^.Gear <> nil) and (hwRound(CurrentHedgehog^.Gear^.X) = X) and (hwRound(CurrentHedgehog^.Gear^.Y) = Y) then |
8751
4609823efc94
More flagging of Land values. Also use less than for tests of non-terrain, instead of "and $FF00 = 0". Saves a couple of ops, which actually matters a small amount in a few places.
nemo
parents:
8744
diff
changeset
|
192 |
gear^.CollisionMask:= lfNotCurrentMask |
7730
2013733f9ca9
A bit more on the knife. Also add missing files to CMakeLists
nemo
parents:
7726
diff
changeset
|
193 |
end; |
7272
71df899c4163
Second part of the change. Make collision check use the new mask bit.
nemo
parents:
7176
diff
changeset
|
194 |
|
7364 | 195 |
if (Ammoz[Gear^.AmmoType].Ammo.Propz and ammoprop_NeedTarget <> 0) then |
6581 | 196 |
gear^.Z:= cHHZ+1 |
197 |
else gear^.Z:= cUsualZ; |
|
198 |
||
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
199 |
|
6581 | 200 |
case Kind of |
201 |
gtGrenade, |
|
202 |
gtClusterBomb, |
|
203 |
gtGasBomb: begin |
|
204 |
gear^.ImpactSound:= sndGrenadeImpact; |
|
205 |
gear^.nImpactSounds:= 1; |
|
206 |
gear^.AdvBounce:= 1; |
|
207 |
gear^.Radius:= 5; |
|
208 |
gear^.Elasticity:= _0_8; |
|
209 |
gear^.Friction:= _0_8; |
|
210 |
gear^.Density:= _1_5; |
|
211 |
gear^.RenderTimer:= true; |
|
212 |
if gear^.Timer = 0 then |
|
213 |
gear^.Timer:= 3000 |
|
214 |
end; |
|
215 |
gtWatermelon: begin |
|
216 |
gear^.ImpactSound:= sndMelonImpact; |
|
217 |
gear^.nImpactSounds:= 1; |
|
218 |
gear^.AdvBounce:= 1; |
|
219 |
gear^.Radius:= 6; |
|
220 |
gear^.Elasticity:= _0_8; |
|
221 |
gear^.Friction:= _0_995; |
|
222 |
gear^.Density:= _2; |
|
223 |
gear^.RenderTimer:= true; |
|
224 |
if gear^.Timer = 0 then |
|
225 |
gear^.Timer:= 3000 |
|
226 |
end; |
|
227 |
gtMelonPiece: begin |
|
9825 | 228 |
gear^.AdvBounce:= 1; |
229 |
gear^.Density:= _2 |
|
6581 | 230 |
end; |
231 |
gtHedgehog: begin |
|
232 |
gear^.AdvBounce:= 1; |
|
233 |
gear^.Radius:= cHHRadius; |
|
234 |
gear^.Elasticity:= _0_35; |
|
235 |
gear^.Friction:= _0_999; |
|
236 |
gear^.Angle:= cMaxAngle div 2; |
|
237 |
gear^.Density:= _3; |
|
238 |
gear^.Z:= cHHZ; |
|
239 |
if (GameFlags and gfAISurvival) <> 0 then |
|
240 |
if gear^.Hedgehog^.BotLevel > 0 then |
|
7077 | 241 |
gear^.Hedgehog^.Effects[heResurrectable] := 1; |
10032
db65298717da
This adds idle hog tinting. Active hog tinting still needed.
nemo
parents:
9998
diff
changeset
|
242 |
// this would presumably be set in the frontend |
db65298717da
This adds idle hog tinting. Active hog tinting still needed.
nemo
parents:
9998
diff
changeset
|
243 |
// if we weren't going to do that yet, would need to reinit GetRandom |
10040 | 244 |
// oh, and, randomising slightly R and B might be nice too. |
10032
db65298717da
This adds idle hog tinting. Active hog tinting still needed.
nemo
parents:
9998
diff
changeset
|
245 |
//gear^.Tint:= $fa00efff or ((random(80)+128) shl 16) |
db65298717da
This adds idle hog tinting. Active hog tinting still needed.
nemo
parents:
9998
diff
changeset
|
246 |
//gear^.Tint:= $faa4efff |
10040 | 247 |
//gear^.Tint:= (($e0+random(32)) shl 24) or |
10032
db65298717da
This adds idle hog tinting. Active hog tinting still needed.
nemo
parents:
9998
diff
changeset
|
248 |
// ((random(80)+128) shl 16) or |
db65298717da
This adds idle hog tinting. Active hog tinting still needed.
nemo
parents:
9998
diff
changeset
|
249 |
// (($d5+random(32)) shl 8) or $ff |
db65298717da
This adds idle hog tinting. Active hog tinting still needed.
nemo
parents:
9998
diff
changeset
|
250 |
c:= random(32); |
10040 | 251 |
gear^.Tint:= (($e0+c) shl 24) or |
10032
db65298717da
This adds idle hog tinting. Active hog tinting still needed.
nemo
parents:
9998
diff
changeset
|
252 |
((random(90)+128) shl 16) or |
db65298717da
This adds idle hog tinting. Active hog tinting still needed.
nemo
parents:
9998
diff
changeset
|
253 |
(($d5+c) shl 8) or $ff |
6581 | 254 |
end; |
255 |
gtShell: begin |
|
9721
1833dadcebf0
Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents:
9479
diff
changeset
|
256 |
gear^.Elasticity:= _0_8; |
1833dadcebf0
Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents:
9479
diff
changeset
|
257 |
gear^.Friction:= _0_8; |
6581 | 258 |
gear^.Radius:= 4; |
259 |
gear^.Density:= _1; |
|
9721
1833dadcebf0
Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents:
9479
diff
changeset
|
260 |
gear^.AdvBounce:= 1; |
6581 | 261 |
end; |
262 |
gtSnowball: begin |
|
263 |
gear^.ImpactSound:= sndMudballImpact; |
|
264 |
gear^.nImpactSounds:= 1; |
|
265 |
gear^.Radius:= 4; |
|
266 |
gear^.Density:= _0_5; |
|
9721
1833dadcebf0
Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents:
9479
diff
changeset
|
267 |
gear^.AdvBounce:= 1; |
1833dadcebf0
Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents:
9479
diff
changeset
|
268 |
gear^.Elasticity:= _0_8; |
1833dadcebf0
Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents:
9479
diff
changeset
|
269 |
gear^.Friction:= _0_8; |
6581 | 270 |
end; |
271 |
||
272 |
gtFlake: begin |
|
273 |
with Gear^ do |
|
274 |
begin |
|
275 |
Pos:= 0; |
|
276 |
Radius:= 1; |
|
7069 | 277 |
DirAngle:= random(360); |
6581 | 278 |
if State and gstTmpFlag = 0 then |
279 |
begin |
|
280 |
dx.isNegative:= GetRandom(2) = 0; |
|
9809 | 281 |
dx.QWordValue:= QWord($40DA) * GetRandom(10000) * 8; |
6581 | 282 |
dy.isNegative:= false; |
9809 | 283 |
dy.QWordValue:= QWord($3AD3) * GetRandom(7000) * 8; |
6581 | 284 |
if GetRandom(2) = 0 then |
285 |
dx := -dx |
|
286 |
end; |
|
287 |
State:= State or gstInvisible; |
|
288 |
Health:= random(vobFrameTicks); |
|
9195
e653e96b0ec3
Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents:
9080
diff
changeset
|
289 |
if gear^.Timer = 0 then Timer:= random(vobFramesCount); |
7649 | 290 |
Damage:= (random(2) * 2 - 1) * (vobVelocity + random(vobVelocity)) * 8; |
10040 | 291 |
Tint:= (ExplosionBorderColor and RMask shl RShift) or |
292 |
(ExplosionBorderColor and GMask shl GShift) or |
|
10032
db65298717da
This adds idle hog tinting. Active hog tinting still needed.
nemo
parents:
9998
diff
changeset
|
293 |
(ExplosionBorderColor and BMask shl BShift) or $FF; |
6581 | 294 |
end |
295 |
end; |
|
296 |
gtGrave: begin |
|
297 |
gear^.ImpactSound:= sndGraveImpact; |
|
298 |
gear^.nImpactSounds:= 1; |
|
299 |
gear^.Radius:= 10; |
|
300 |
gear^.Elasticity:= _0_6; |
|
301 |
end; |
|
302 |
gtBee: begin |
|
303 |
gear^.Radius:= 5; |
|
9195
e653e96b0ec3
Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents:
9080
diff
changeset
|
304 |
if gear^.Timer = 0 then gear^.Timer:= 500; |
6581 | 305 |
gear^.RenderTimer:= true; |
306 |
gear^.Elasticity:= _0_9; |
|
307 |
gear^.Tag:= 0; |
|
9479
167dea42d7d7
move border back a bit from left/right bounds, bee tweak
nemo
parents:
9195
diff
changeset
|
308 |
gear^.State:= Gear^.State or gstSubmersible |
6581 | 309 |
end; |
310 |
gtSeduction: begin |
|
311 |
gear^.Radius:= 250; |
|
312 |
end; |
|
313 |
gtShotgunShot: begin |
|
9195
e653e96b0ec3
Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents:
9080
diff
changeset
|
314 |
if gear^.Timer = 0 then gear^.Timer:= 900; |
6581 | 315 |
gear^.Radius:= 2 |
316 |
end; |
|
317 |
gtPickHammer: begin |
|
318 |
gear^.Radius:= 10; |
|
9195
e653e96b0ec3
Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents:
9080
diff
changeset
|
319 |
if gear^.Timer = 0 then gear^.Timer:= 4000 |
6581 | 320 |
end; |
321 |
gtHammerHit: begin |
|
322 |
gear^.Radius:= 8; |
|
9195
e653e96b0ec3
Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents:
9080
diff
changeset
|
323 |
if gear^.Timer = 0 then gear^.Timer:= 125 |
6581 | 324 |
end; |
325 |
gtRope: begin |
|
326 |
gear^.Radius:= 3; |
|
327 |
gear^.Friction:= _450 * _0_01 * cRopePercent; |
|
328 |
RopePoints.Count:= 0; |
|
329 |
end; |
|
330 |
gtMine: begin |
|
331 |
gear^.ImpactSound:= sndMineImpact; |
|
332 |
gear^.nImpactSounds:= 1; |
|
333 |
gear^.Health:= 10; |
|
334 |
gear^.State:= gear^.State or gstMoving; |
|
335 |
gear^.Radius:= 2; |
|
336 |
gear^.Elasticity:= _0_55; |
|
337 |
gear^.Friction:= _0_995; |
|
7602
a620319d377e
Fix throwing things off rope, also make throwing things a bit more generic and gear density dependent (so you can throw mines further, and also throw dynamite a little).
nemo
parents:
7395
diff
changeset
|
338 |
gear^.Density:= _1; |
9195
e653e96b0ec3
Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents:
9080
diff
changeset
|
339 |
if gear^.Timer = 0 then |
e653e96b0ec3
Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents:
9080
diff
changeset
|
340 |
begin |
e653e96b0ec3
Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents:
9080
diff
changeset
|
341 |
if cMinesTime < 0 then |
e653e96b0ec3
Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents:
9080
diff
changeset
|
342 |
gear^.Timer:= getrandom(51)*100 |
e653e96b0ec3
Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents:
9080
diff
changeset
|
343 |
else |
e653e96b0ec3
Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents:
9080
diff
changeset
|
344 |
gear^.Timer:= cMinesTime |
e653e96b0ec3
Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents:
9080
diff
changeset
|
345 |
end |
6581 | 346 |
end; |
347 |
gtSMine: begin |
|
348 |
gear^.Health:= 10; |
|
349 |
gear^.State:= gear^.State or gstMoving; |
|
350 |
gear^.Radius:= 2; |
|
351 |
gear^.Elasticity:= _0_55; |
|
352 |
gear^.Friction:= _0_995; |
|
7602
a620319d377e
Fix throwing things off rope, also make throwing things a bit more generic and gear density dependent (so you can throw mines further, and also throw dynamite a little).
nemo
parents:
7395
diff
changeset
|
353 |
gear^.Density:= _1_6; |
9721
1833dadcebf0
Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents:
9479
diff
changeset
|
354 |
gear^.AdvBounce:= 1; |
9195
e653e96b0ec3
Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents:
9080
diff
changeset
|
355 |
if gear^.Timer = 0 then gear^.Timer:= 500; |
6581 | 356 |
end; |
7733 | 357 |
gtKnife: begin |
9721
1833dadcebf0
Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents:
9479
diff
changeset
|
358 |
gear^.AdvBounce:= 1; |
1833dadcebf0
Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents:
9479
diff
changeset
|
359 |
gear^.Elasticity:= _0_8; |
1833dadcebf0
Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents:
9479
diff
changeset
|
360 |
gear^.Friction:= _0_8; |
7754 | 361 |
gear^.Density:= _4; |
8494
53b91a602955
Cleaver tweaks based on feedback. Nerf damage, shrink radius. This means cleaver will embed into ground quite a bit further.
nemo
parents:
8161
diff
changeset
|
362 |
gear^.Radius:= 7 |
7733 | 363 |
end; |
6581 | 364 |
gtCase: begin |
365 |
gear^.ImpactSound:= sndGraveImpact; |
|
366 |
gear^.nImpactSounds:= 1; |
|
367 |
gear^.Radius:= 16; |
|
7168
8defaabce92e
warp sound when AI survival hog respawns. attempt at a bit of a crate spawn animation (moar sparkles and a quick fadein)
nemo
parents:
7093
diff
changeset
|
368 |
gear^.Elasticity:= _0_3; |
9195
e653e96b0ec3
Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents:
9080
diff
changeset
|
369 |
if gear^.Timer = 0 then gear^.Timer:= 500 |
6581 | 370 |
end; |
371 |
gtExplosives: begin |
|
9721
1833dadcebf0
Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents:
9479
diff
changeset
|
372 |
gear^.AdvBounce:= 1; |
6581 | 373 |
gear^.ImpactSound:= sndGrenadeImpact; |
374 |
gear^.nImpactSounds:= 1; |
|
375 |
gear^.Radius:= 16; |
|
376 |
gear^.Elasticity:= _0_4; |
|
377 |
gear^.Friction:= _0_995; |
|
378 |
gear^.Density:= _6; |
|
379 |
gear^.Health:= cBarrelHealth; |
|
380 |
gear^.Z:= cHHZ-1 |
|
381 |
end; |
|
382 |
gtDEagleShot: begin |
|
383 |
gear^.Radius:= 1; |
|
384 |
gear^.Health:= 50 |
|
385 |
end; |
|
386 |
gtSniperRifleShot: begin |
|
387 |
gear^.Radius:= 1; |
|
388 |
gear^.Health:= 50 |
|
389 |
end; |
|
390 |
gtDynamite: begin |
|
391 |
gear^.Radius:= 3; |
|
392 |
gear^.Elasticity:= _0_55; |
|
393 |
gear^.Friction:= _0_03; |
|
394 |
gear^.Density:= _2; |
|
9195
e653e96b0ec3
Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents:
9080
diff
changeset
|
395 |
if gear^.Timer = 0 then gear^.Timer:= 5000; |
6581 | 396 |
end; |
397 |
gtCluster: begin |
|
9721
1833dadcebf0
Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents:
9479
diff
changeset
|
398 |
gear^.AdvBounce:= 1; |
1833dadcebf0
Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents:
9479
diff
changeset
|
399 |
gear^.Elasticity:= _0_8; |
1833dadcebf0
Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents:
9479
diff
changeset
|
400 |
gear^.Friction:= _0_8; |
6581 | 401 |
gear^.Radius:= 2; |
402 |
gear^.Density:= _1_5; |
|
403 |
gear^.RenderTimer:= true |
|
404 |
end; |
|
405 |
gtShover: gear^.Radius:= 20; |
|
406 |
gtFlame: begin |
|
407 |
gear^.Tag:= GetRandom(32); |
|
408 |
gear^.Radius:= 1; |
|
409 |
gear^.Health:= 5; |
|
410 |
gear^.Density:= _1; |
|
411 |
if (gear^.dY.QWordValue = 0) and (gear^.dX.QWordValue = 0) then |
|
412 |
begin |
|
7001 | 413 |
gear^.dY:= (getrandomf - _0_8) * _0_03; |
414 |
gear^.dX:= (getrandomf - _0_5) * _0_4 |
|
6581 | 415 |
end |
416 |
end; |
|
417 |
gtFirePunch: begin |
|
9824 | 418 |
if gear^.Timer = 0 then gear^.Timer:= 3000; |
6581 | 419 |
gear^.Radius:= 15; |
420 |
gear^.Tag:= Y |
|
421 |
end; |
|
10032
db65298717da
This adds idle hog tinting. Active hog tinting still needed.
nemo
parents:
9998
diff
changeset
|
422 |
gtAirAttack: begin |
db65298717da
This adds idle hog tinting. Active hog tinting still needed.
nemo
parents:
9998
diff
changeset
|
423 |
gear^.Z:= cHHZ+2; |
db65298717da
This adds idle hog tinting. Active hog tinting still needed.
nemo
parents:
9998
diff
changeset
|
424 |
gear^.Tint:= gear^.Hedgehog^.Team^.Clan^.Color shl 8 or $FF |
db65298717da
This adds idle hog tinting. Active hog tinting still needed.
nemo
parents:
9998
diff
changeset
|
425 |
end; |
6581 | 426 |
gtAirBomb: begin |
427 |
gear^.Radius:= 5; |
|
428 |
gear^.Density:= _2; |
|
429 |
end; |
|
430 |
gtBlowTorch: begin |
|
431 |
gear^.Radius:= cHHRadius + cBlowTorchC; |
|
9195
e653e96b0ec3
Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents:
9080
diff
changeset
|
432 |
if gear^.Timer = 0 then gear^.Timer:= 7500 |
6581 | 433 |
end; |
434 |
gtSwitcher: begin |
|
435 |
gear^.Z:= cCurrHHZ |
|
436 |
end; |
|
437 |
gtTarget: begin |
|
438 |
gear^.ImpactSound:= sndGrenadeImpact; |
|
439 |
gear^.nImpactSounds:= 1; |
|
440 |
gear^.Radius:= 10; |
|
441 |
gear^.Elasticity:= _0_3; |
|
442 |
end; |
|
443 |
gtTardis: begin |
|
444 |
gear^.Pos:= 1; |
|
445 |
gear^.Z:= cCurrHHZ+1; |
|
446 |
end; |
|
447 |
gtMortar: begin |
|
9721
1833dadcebf0
Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents:
9479
diff
changeset
|
448 |
gear^.AdvBounce:= 1; |
6581 | 449 |
gear^.Radius:= 4; |
450 |
gear^.Elasticity:= _0_2; |
|
451 |
gear^.Friction:= _0_08; |
|
452 |
gear^.Density:= _1; |
|
453 |
end; |
|
454 |
gtWhip: gear^.Radius:= 20; |
|
455 |
gtHammer: gear^.Radius:= 20; |
|
456 |
gtKamikaze: begin |
|
457 |
gear^.Health:= 2048; |
|
458 |
gear^.Radius:= 20 |
|
459 |
end; |
|
460 |
gtCake: begin |
|
461 |
gear^.Health:= 2048; |
|
462 |
gear^.Radius:= 7; |
|
463 |
gear^.Z:= cOnHHZ; |
|
464 |
gear^.RenderTimer:= true; |
|
465 |
gear^.DirAngle:= -90 * hwSign(Gear^.dX); |
|
466 |
if not dX.isNegative then |
|
467 |
gear^.Angle:= 1 |
|
468 |
else |
|
469 |
gear^.Angle:= 3 |
|
470 |
end; |
|
471 |
gtHellishBomb: begin |
|
472 |
gear^.ImpactSound:= sndHellishImpact1; |
|
473 |
gear^.nImpactSounds:= 4; |
|
474 |
gear^.AdvBounce:= 1; |
|
475 |
gear^.Radius:= 4; |
|
476 |
gear^.Elasticity:= _0_5; |
|
477 |
gear^.Friction:= _0_96; |
|
478 |
gear^.Density:= _1_5; |
|
479 |
gear^.RenderTimer:= true; |
|
9195
e653e96b0ec3
Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents:
9080
diff
changeset
|
480 |
if gear^.Timer = 0 then gear^.Timer:= 5000 |
6581 | 481 |
end; |
482 |
gtDrill: begin |
|
9721
1833dadcebf0
Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents:
9479
diff
changeset
|
483 |
gear^.AdvBounce:= 1; |
1833dadcebf0
Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents:
9479
diff
changeset
|
484 |
gear^.Elasticity:= _0_8; |
1833dadcebf0
Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents:
9479
diff
changeset
|
485 |
gear^.Friction:= _0_8; |
6581 | 486 |
if gear^.Timer = 0 then |
487 |
gear^.Timer:= 5000; |
|
488 |
// Tag for drill strike. if 1 then first impact occured already |
|
489 |
gear^.Tag := 0; |
|
490 |
gear^.Radius:= 4; |
|
491 |
gear^.Density:= _1; |
|
492 |
end; |
|
493 |
gtBall: begin |
|
494 |
gear^.ImpactSound:= sndGrenadeImpact; |
|
495 |
gear^.nImpactSounds:= 1; |
|
496 |
gear^.AdvBounce:= 1; |
|
497 |
gear^.Radius:= 5; |
|
498 |
gear^.Tag:= random(8); |
|
9195
e653e96b0ec3
Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents:
9080
diff
changeset
|
499 |
if gear^.Timer = 0 then gear^.Timer:= 5000; |
6581 | 500 |
gear^.Elasticity:= _0_7; |
501 |
gear^.Friction:= _0_995; |
|
502 |
gear^.Density:= _1_5; |
|
503 |
end; |
|
504 |
gtBallgun: begin |
|
9195
e653e96b0ec3
Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents:
9080
diff
changeset
|
505 |
if gear^.Timer = 0 then gear^.Timer:= 5001; |
6581 | 506 |
end; |
507 |
gtRCPlane: begin |
|
9195
e653e96b0ec3
Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents:
9080
diff
changeset
|
508 |
if gear^.Timer = 0 then gear^.Timer:= 15000; |
6581 | 509 |
gear^.Health:= 3; |
10032
db65298717da
This adds idle hog tinting. Active hog tinting still needed.
nemo
parents:
9998
diff
changeset
|
510 |
gear^.Radius:= 8; |
db65298717da
This adds idle hog tinting. Active hog tinting still needed.
nemo
parents:
9998
diff
changeset
|
511 |
gear^.Tint:= gear^.Hedgehog^.Team^.Clan^.Color shl 8 or $FF |
6581 | 512 |
end; |
513 |
gtJetpack: begin |
|
514 |
gear^.Health:= 2000; |
|
8987
47cf32305d99
some saucer thing for firing weps underwater and aiming and such. bit drunk and sleepy so testing I guess
nemo
parents:
8795
diff
changeset
|
515 |
gear^.Damage:= 100; |
9195
e653e96b0ec3
Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents:
9080
diff
changeset
|
516 |
gear^.State:= Gear^.State or gstSubmersible |
6581 | 517 |
end; |
518 |
gtMolotov: begin |
|
9825 | 519 |
gear^.AdvBounce:= 1; |
6581 | 520 |
gear^.Radius:= 6; |
9825 | 521 |
gear^.Density:= _2 |
6581 | 522 |
end; |
523 |
gtBirdy: begin |
|
524 |
gear^.Radius:= 16; // todo: check |
|
525 |
gear^.Health := 2000; |
|
9825 | 526 |
gear^.FlightTime := 2 |
6581 | 527 |
end; |
528 |
gtEgg: begin |
|
9721
1833dadcebf0
Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents:
9479
diff
changeset
|
529 |
gear^.AdvBounce:= 1; |
6581 | 530 |
gear^.Radius:= 4; |
531 |
gear^.Elasticity:= _0_6; |
|
532 |
gear^.Friction:= _0_96; |
|
533 |
gear^.Density:= _1; |
|
534 |
if gear^.Timer = 0 then |
|
535 |
gear^.Timer:= 3000 |
|
536 |
end; |
|
537 |
gtPortal: begin |
|
538 |
gear^.ImpactSound:= sndMelonImpact; |
|
539 |
gear^.nImpactSounds:= 1; |
|
540 |
gear^.Radius:= 17; |
|
541 |
// set color |
|
542 |
gear^.Tag:= 2 * gear^.Timer; |
|
543 |
gear^.Timer:= 15000; |
|
544 |
gear^.RenderTimer:= false; |
|
545 |
gear^.Health:= 100; |
|
546 |
end; |
|
547 |
gtPiano: begin |
|
548 |
gear^.Radius:= 32; |
|
549 |
gear^.Density:= _50; |
|
550 |
end; |
|
551 |
gtSineGunShot: begin |
|
552 |
gear^.Radius:= 5; |
|
553 |
gear^.Health:= 6000; |
|
554 |
end; |
|
555 |
gtFlamethrower: begin |
|
556 |
gear^.Tag:= 10; |
|
9195
e653e96b0ec3
Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents:
9080
diff
changeset
|
557 |
if gear^.Timer = 0 then gear^.Timer:= 10; |
6581 | 558 |
gear^.Health:= 500; |
559 |
gear^.Damage:= 100; |
|
560 |
end; |
|
561 |
gtLandGun: begin |
|
562 |
gear^.Tag:= 10; |
|
9195
e653e96b0ec3
Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents:
9080
diff
changeset
|
563 |
if gear^.Timer = 0 then gear^.Timer:= 10; |
6581 | 564 |
gear^.Health:= 1000; |
565 |
gear^.Damage:= 100; |
|
566 |
end; |
|
567 |
gtPoisonCloud: begin |
|
9195
e653e96b0ec3
Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents:
9080
diff
changeset
|
568 |
if gear^.Timer = 0 then gear^.Timer:= 5000; |
6581 | 569 |
gear^.dY:= int2hwfloat(-4 + longint(getRandom(8))) / 1000; |
10032
db65298717da
This adds idle hog tinting. Active hog tinting still needed.
nemo
parents:
9998
diff
changeset
|
570 |
gear^.Tint:= $C0C000C0 |
6581 | 571 |
end; |
572 |
gtResurrector: begin |
|
573 |
gear^.Radius := 100; |
|
10032
db65298717da
This adds idle hog tinting. Active hog tinting still needed.
nemo
parents:
9998
diff
changeset
|
574 |
gear^.Tag := 0; |
db65298717da
This adds idle hog tinting. Active hog tinting still needed.
nemo
parents:
9998
diff
changeset
|
575 |
gear^.Tint:= $F5DB35FF |
6581 | 576 |
end; |
577 |
gtWaterUp: begin |
|
578 |
gear^.Tag := 47; |
|
579 |
end; |
|
580 |
gtNapalmBomb: begin |
|
9721
1833dadcebf0
Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents:
9479
diff
changeset
|
581 |
gear^.Elasticity:= _0_8; |
1833dadcebf0
Initial pass at bounciness. To try it out, or lfBouncy on girder in uLandGraphics (search for the word graphically)
nemo
parents:
9479
diff
changeset
|
582 |
gear^.Friction:= _0_8; |
9195
e653e96b0ec3
Many of the gears treat non-0 timer as overridden. Added that check in more places so that lua could use this a tiny bit more consistently. Also preserve state for jetpack.
nemo
parents:
9080
diff
changeset
|
583 |
if gear^.Timer = 0 then gear^.Timer:= 1000; |
6581 | 584 |
gear^.Radius:= 5; |
585 |
gear^.Density:= _1_5; |
|
586 |
end; |
|
8161 | 587 |
{ |
6581 | 588 |
gtStructure: begin |
589 |
gear^.Elasticity:= _0_55; |
|
590 |
gear^.Friction:= _0_995; |
|
591 |
gear^.Density:= _0_9; |
|
592 |
gear^.Radius:= 13; |
|
593 |
gear^.Health:= 200; |
|
594 |
gear^.Timer:= 0; |
|
595 |
gear^.Tag:= TotalRounds + 3; |
|
596 |
gear^.Pos:= 1; |
|
597 |
end; |
|
8161 | 598 |
} |
8774
39754516eee6
Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents:
8751
diff
changeset
|
599 |
gtIceGun: begin |
39754516eee6
Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents:
8751
diff
changeset
|
600 |
gear^.Health:= 1000; |
39754516eee6
Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents:
8751
diff
changeset
|
601 |
gear^.Radius:= 8; |
39754516eee6
Try to document TGear a bit, so people know what is commonly overridden, and what stuff is used for. Remove gtIceGun-specific values from TGear and abuse a couple of commonly abused members instead.
nemo
parents:
8751
diff
changeset
|
602 |
end; |
7389
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7366
diff
changeset
|
603 |
gtGenericFaller:begin |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7366
diff
changeset
|
604 |
gear^.AdvBounce:= 1; |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7366
diff
changeset
|
605 |
gear^.Radius:= 1; |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7366
diff
changeset
|
606 |
gear^.Elasticity:= _0_9; |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7366
diff
changeset
|
607 |
gear^.Friction:= _0_995; |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7366
diff
changeset
|
608 |
gear^.Density:= _1; |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7366
diff
changeset
|
609 |
end; |
6581 | 610 |
end; |
611 |
||
612 |
InsertGearToList(gear); |
|
613 |
AddGear:= gear; |
|
614 |
||
615 |
ScriptCall('onGearAdd', gear^.uid); |
|
616 |
end; |
|
617 |
||
618 |
procedure DeleteGear(Gear: PGear); |
|
619 |
var team: PTeam; |
|
620 |
t,i: Longword; |
|
621 |
k: boolean; |
|
622 |
begin |
|
623 |
||
624 |
ScriptCall('onGearDelete', gear^.uid); |
|
625 |
||
626 |
DeleteCI(Gear); |
|
627 |
||
628 |
FreeTexture(Gear^.Tex); |
|
629 |
Gear^.Tex:= nil; |
|
630 |
||
631 |
// make sure that portals have their link removed before deletion |
|
632 |
if (Gear^.Kind = gtPortal) then |
|
633 |
begin |
|
7272
71df899c4163
Second part of the change. Make collision check use the new mask bit.
nemo
parents:
7176
diff
changeset
|
634 |
if (Gear^.LinkedGear <> nil) then |
71df899c4163
Second part of the change. Make collision check use the new mask bit.
nemo
parents:
7176
diff
changeset
|
635 |
if (Gear^.LinkedGear^.LinkedGear = Gear) then |
71df899c4163
Second part of the change. Make collision check use the new mask bit.
nemo
parents:
7176
diff
changeset
|
636 |
Gear^.LinkedGear^.LinkedGear:= nil; |
6581 | 637 |
end |
638 |
else if Gear^.Kind = gtHedgehog then |
|
639 |
(* |
|
640 |
This behaviour dates back to revision 4, and I accidentally encountered it with TARDIS. I don't think it must apply to any modern weapon, since if it was actually hit, the best the gear could do would be to destroy itself immediately, and you'd still end up with two graves. I believe it should be removed |
|
641 |
if (CurAmmoGear <> nil) and (CurrentHedgehog^.Gear = Gear) then |
|
642 |
begin |
|
643 |
AttackBar:= 0; |
|
644 |
Gear^.Message:= gmDestroy; |
|
645 |
CurAmmoGear^.Message:= gmDestroy; |
|
646 |
exit |
|
647 |
end |
|
648 |
else*) |
|
649 |
begin |
|
6792
f72c8b5d421c
Ensure flawless is false if any hog is lost, unless it was lost doing a kamikaze
nemo
parents:
6700
diff
changeset
|
650 |
if (Gear <> CurrentHedgehog^.Gear) or (CurAmmoGear = nil) or (CurAmmoGear^.Kind <> gtKamikaze) then |
f72c8b5d421c
Ensure flawless is false if any hog is lost, unless it was lost doing a kamikaze
nemo
parents:
6700
diff
changeset
|
651 |
Gear^.Hedgehog^.Team^.Clan^.Flawless:= false; |
6581 | 652 |
if (hwRound(Gear^.Y) >= cWaterLine) then |
653 |
begin |
|
654 |
t:= max(Gear^.Damage, Gear^.Health); |
|
655 |
Gear^.Damage:= t; |
|
8026
4a4f21070479
merge xymeng's gsoc engine with a few updates (and further checks on symbol definitions)
koda
parents:
7754
diff
changeset
|
656 |
if (((not SuddenDeathDmg) and (WaterOpacity < $FF)) or (SuddenDeathDmg and (WaterOpacity < $FF))) |
6581 | 657 |
and (hwRound(Gear^.Y) < cWaterLine + 256) then |
658 |
spawnHealthTagForHH(Gear, t); |
|
659 |
end; |
|
660 |
||
661 |
team:= Gear^.Hedgehog^.Team; |
|
662 |
if CurrentHedgehog^.Gear = Gear then |
|
663 |
begin |
|
664 |
AttackBar:= 0; |
|
665 |
FreeActionsList; // to avoid ThinkThread on drawned gear |
|
666 |
if ((Ammoz[CurrentHedgehog^.CurAmmoType].Ammo.Propz and ammoprop_NoRoundEnd) <> 0) |
|
667 |
and (CurrentHedgehog^.MultiShootAttacks > 0) then |
|
668 |
OnUsedAmmo(CurrentHedgehog^); |
|
669 |
end; |
|
670 |
||
671 |
Gear^.Hedgehog^.Gear:= nil; |
|
672 |
if Gear^.Hedgehog^.King then |
|
673 |
begin |
|
674 |
// are there any other kings left? Just doing nil check. Presumably a mortally wounded king will get reaped soon enough |
|
675 |
k:= false; |
|
676 |
for i:= 0 to Pred(team^.Clan^.TeamsNumber) do |
|
677 |
if (team^.Clan^.Teams[i]^.Hedgehogs[0].Gear <> nil) then |
|
678 |
k:= true; |
|
679 |
if not k then |
|
680 |
for i:= 0 to Pred(team^.Clan^.TeamsNumber) do |
|
681 |
begin |
|
682 |
team^.Clan^.Teams[i]^.hasGone:= true; |
|
683 |
TeamGoneEffect(team^.Clan^.Teams[i]^) |
|
684 |
end |
|
685 |
end; |
|
686 |
||
687 |
// should be not CurrentHedgehog, but hedgehog of the last gear which caused damage to this hog |
|
688 |
// same stand for CheckHHDamage |
|
689 |
if (Gear^.LastDamage <> nil) then |
|
690 |
uStats.HedgehogDamaged(Gear, Gear^.LastDamage, 0, true) |
|
691 |
else |
|
692 |
uStats.HedgehogDamaged(Gear, CurrentHedgehog, 0, true); |
|
693 |
||
694 |
inc(KilledHHs); |
|
695 |
RecountTeamHealth(team); |
|
7010
10a0a31804f3
Switch effects to longint for convenience of tracking ice states. I could add a new Hedgehog value, but since we have this effects list being all useless as booleans anyway...
nemo
parents:
7001
diff
changeset
|
696 |
if (CurrentHedgehog <> nil) and (CurrentHedgehog^.Effects[heResurrectable] <> 0) and |
7176
fb4b0c6dfdbd
Make watching AI v AI on ai survival a bit more entertaining
nemo
parents:
7168
diff
changeset
|
697 |
//(Gear^.Hedgehog^.Effects[heResurrectable] = 0) then |
fb4b0c6dfdbd
Make watching AI v AI on ai survival a bit more entertaining
nemo
parents:
7168
diff
changeset
|
698 |
(Gear^.Hedgehog^.Team^.Clan <> CurrentHedgehog^.Team^.Clan) then |
8795
b5b79a8f9354
merge correction, also what's with all those trailing whitespaces?
koda
parents:
8774
diff
changeset
|
699 |
with CurrentHedgehog^ do |
6581 | 700 |
begin |
701 |
inc(Team^.stats.AIKills); |
|
702 |
FreeTexture(Team^.AIKillsTex); |
|
10127 | 703 |
Team^.AIKillsTex := RenderStringTex(ansistring(inttostr(Team^.stats.AIKills)), Team^.Clan^.Color, fnt16); |
6581 | 704 |
end |
705 |
end; |
|
706 |
with Gear^ do |
|
7389
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7366
diff
changeset
|
707 |
begin |
6581 | 708 |
AddFileLog('Delete: #' + inttostr(uid) + ' (' + inttostr(hwRound(x)) + ',' + inttostr(hwRound(y)) + '), d(' + floattostr(dX) + ',' + floattostr(dY) + ') type = ' + EnumToStr(Kind)); |
7389
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7366
diff
changeset
|
709 |
AddRandomness(X.round xor X.frac xor dX.round xor dX.frac xor Y.round xor Y.frac xor dY.round xor dY.frac) |
15c3fb4882df
Sorry about the slight delay in pickup. You can blame a few lame cheaters. This is to make their cheating a bit harder.
nemo
parents:
7366
diff
changeset
|
710 |
end; |
6581 | 711 |
if CurAmmoGear = Gear then |
712 |
CurAmmoGear:= nil; |
|
713 |
if FollowGear = Gear then |
|
714 |
FollowGear:= nil; |
|
715 |
if lastGearByUID = Gear then |
|
716 |
lastGearByUID := nil; |
|
717 |
RemoveGearFromList(Gear); |
|
718 |
Dispose(Gear) |
|
719 |
end; |
|
720 |
||
721 |
end. |