author | smxx |
Wed, 10 Feb 2010 00:55:40 +0000 | |
changeset 2786 | 85f6425a4d74 |
parent 2771 | 477957a89881 |
child 2790 | 83630d5f94db |
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 |
||
2622 | 19 |
{$INCLUDE "options.inc"} |
20 |
||
4 | 21 |
unit uGears; |
22 |
interface |
|
351 | 23 |
uses SDLh, uConsts, uFloat; |
4 | 24 |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
25 |
|
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
26 |
type |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
27 |
PGear = ^TGear; |
1259 | 28 |
TGearStepProcedure = procedure (Gear: PGear); |
29 |
TGear = record |
|
30 |
NextGear, PrevGear: PGear; |
|
31 |
Active: Boolean; |
|
1849 | 32 |
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
|
33 |
RenderTimer: Boolean; |
1259 | 34 |
Ammo : PAmmo; |
35 |
State : Longword; |
|
36 |
X : hwFloat; |
|
37 |
Y : hwFloat; |
|
38 |
dX: hwFloat; |
|
39 |
dY: hwFloat; |
|
40 |
Kind: TGearType; |
|
41 |
Pos: Longword; |
|
42 |
doStep: TGearStepProcedure; |
|
43 |
Radius: LongInt; |
|
44 |
Angle, Power : Longword; |
|
45 |
DirAngle: real; |
|
46 |
Timer : LongWord; |
|
47 |
Elasticity: hwFloat; |
|
48 |
Friction : hwFloat; |
|
49 |
Message, MsgParam : Longword; |
|
50 |
Hedgehog: pointer; |
|
2135
0b7972dfad01
Push karma application to end of round - should avoid problems w/ plane and kamikaze
nemo
parents:
2134
diff
changeset
|
51 |
Health, Damage, Karma: LongInt; |
1259 | 52 |
CollisionIndex: LongInt; |
53 |
Tag: LongInt; |
|
54 |
Tex: PTexture; |
|
55 |
Z: Longword; |
|
56 |
IntersectGear: PGear; |
|
57 |
TriggerId: Longword; |
|
2428 | 58 |
FlightTime: Longword; |
2745 | 59 |
uid: Longword; |
60 |
SoundChannel: LongInt |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
61 |
end; |
4 | 62 |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
63 |
var AllInactive: boolean; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
64 |
PrvInactive: boolean; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
65 |
CurAmmoGear: PGear; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
66 |
GearsList: PGear; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
67 |
KilledHHs: Longword; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
68 |
SuddenDeathDmg: Boolean; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
69 |
SpeechType: Longword; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
70 |
SpeechText: shortstring; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
71 |
TrainingTargetGear: PGear; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
72 |
skipFlag: boolean; |
2762
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2760
diff
changeset
|
73 |
PlacingHogs: boolean; // a convenience flag to indicate placement of hogs is still in progress |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
74 |
|
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
75 |
procedure init_uGears; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
76 |
procedure free_uGears; |
371 | 77 |
function AddGear(X, Y: LongInt; Kind: TGearType; State: Longword; dX, dY: hwFloat; Timer: LongWord): PGear; |
4 | 78 |
procedure ProcessGears; |
1849 | 79 |
procedure ResetUtilities; |
2017 | 80 |
procedure ApplyDamage(Gear: PGear; Damage: Longword); |
4 | 81 |
procedure SetAllToActive; |
82 |
procedure SetAllHHToActive; |
|
956 | 83 |
procedure DrawGears; |
4 | 84 |
procedure FreeGearsList; |
10 | 85 |
procedure AddMiscGears; |
4 | 86 |
procedure AssignHHCoords; |
294 | 87 |
procedure InsertGearToList(Gear: PGear); |
88 |
procedure RemoveGearFromList(Gear: PGear); |
|
2726 | 89 |
function ModifyDamage(dmg: Longword; Gear: PGear): Longword; |
2762
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2760
diff
changeset
|
90 |
procedure FindPlace(var Gear: PGear; withFall: boolean; Left, Right: LongInt); |
4 | 91 |
|
92 |
implementation |
|
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
93 |
uses uWorld, uMisc, uStore, uConsole, uSound, uTeams, uRandom, uCollisions, uLand, uIO, uLandGraphics, |
2786 | 94 |
uAIMisc, uLocale, uAI, uAmmos, uTriggers, uStats, uVisualGears, uScript, |
2152 | 95 |
{$IFDEF GLES11} |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
96 |
gles11; |
1906 | 97 |
{$ELSE} |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
98 |
GL; |
1906 | 99 |
{$ENDIF} |
789 | 100 |
|
1207
ceaab010269e
Some adjusting... it still doesn't solve problem fully
unc0rr
parents:
1200
diff
changeset
|
101 |
const MAXROPEPOINTS = 384; |
68 | 102 |
var RopePoints: record |
4 | 103 |
Count: Longword; |
776
8fc7e59d9cb4
Convert the rest of rotated sprites to be rotated by OpenGL
unc0rr
parents:
775
diff
changeset
|
104 |
HookAngle: GLfloat; |
789 | 105 |
ar: array[0..MAXROPEPOINTS] of record |
351 | 106 |
X, Y: hwFloat; |
107 |
dLen: hwFloat; |
|
4 | 108 |
b: boolean; |
109 |
end; |
|
2391 | 110 |
rounded: array[0..MAXROPEPOINTS + 2] of TVertex2f; |
2362 | 111 |
end; |
4 | 112 |
|
1515 | 113 |
procedure DeleteGear(Gear: PGear); forward; |
371 | 114 |
procedure doMakeExplosion(X, Y, Radius: LongInt; Mask: LongWord); forward; |
115 |
procedure AmmoShove(Ammo: PGear; Damage, Power: LongInt); forward; |
|
1433 | 116 |
//procedure AmmoFlameWork(Ammo: PGear); forward; |
371 | 117 |
function CheckGearNear(Gear: PGear; Kind: TGearType; rX, rY: LongInt): PGear; forward; |
15 | 118 |
procedure SpawnBoxOfSmth; forward; |
32
78bff13b11c0
With this patch the game doesn't crash when gaming by net
unc0rr
parents:
24
diff
changeset
|
119 |
procedure AfterAttack; forward; |
302 | 120 |
procedure HedgehogStep(Gear: PGear); forward; |
1528 | 121 |
procedure doStepHedgehogMoving(Gear: PGear); forward; |
303
1659c4aad5ab
Now blow torch angle can be changed during blowing :)
unc0rr
parents:
302
diff
changeset
|
122 |
procedure HedgehogChAngle(Gear: PGear); forward; |
506 | 123 |
procedure ShotgunShot(Gear: PGear); forward; |
1689 | 124 |
procedure PickUp(HH, Gear: PGear); forward; |
1964 | 125 |
procedure HHSetWeapon(Gear: PGear); forward; |
126 |
||
4 | 127 |
|
2599 | 128 |
{$INCLUDE "GSHandlers.inc"} |
129 |
{$INCLUDE "HHHandlers.inc"} |
|
4 | 130 |
|
131 |
const doStepHandlers: array[TGearType] of TGearStepProcedure = ( |
|
1259 | 132 |
@doStepBomb, |
133 |
@doStepHedgehog, |
|
134 |
@doStepGrenade, |
|
135 |
@doStepHealthTag, |
|
136 |
@doStepGrave, |
|
137 |
@doStepUFO, |
|
138 |
@doStepShotgunShot, |
|
139 |
@doStepPickHammer, |
|
140 |
@doStepRope, |
|
141 |
@doStepSmokeTrace, |
|
142 |
@doStepExplosion, |
|
143 |
@doStepMine, |
|
144 |
@doStepCase, |
|
145 |
@doStepDEagleShot, |
|
146 |
@doStepDynamite, |
|
147 |
@doStepBomb, |
|
148 |
@doStepCluster, |
|
149 |
@doStepShover, |
|
150 |
@doStepFlame, |
|
151 |
@doStepFirePunch, |
|
152 |
@doStepActionTimer, |
|
153 |
@doStepActionTimer, |
|
154 |
@doStepActionTimer, |
|
155 |
@doStepParachute, |
|
156 |
@doStepAirAttack, |
|
157 |
@doStepAirBomb, |
|
158 |
@doStepBlowTorch, |
|
159 |
@doStepGirder, |
|
160 |
@doStepTeleport, |
|
161 |
@doStepSwitcher, |
|
2460 | 162 |
@doStepTarget, |
1259 | 163 |
@doStepMortar, |
164 |
@doStepWhip, |
|
165 |
@doStepKamikaze, |
|
166 |
@doStepCake, |
|
1261 | 167 |
@doStepSeduction, |
1279 | 168 |
@doStepWatermelon, |
1263 | 169 |
@doStepCluster, |
170 |
@doStepBomb, |
|
1298 | 171 |
@doStepSmokeTrace, |
1573 | 172 |
@doStepWaterUp, |
1601 | 173 |
@doStepDrill, |
174 |
@doStepBallgun, |
|
1689 | 175 |
@doStepBomb, |
2017 | 176 |
@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
|
177 |
@doStepSniperRifleShot, |
2457
ecf0c7e7995b
Initial molotov cocktail. Still needs graphics, tweaking of fire behaviour. Also changed probabilities for default weapon sets
nemo
parents:
2455
diff
changeset
|
178 |
@doStepJetpack, |
ecf0c7e7995b
Initial molotov cocktail. Still needs graphics, tweaking of fire behaviour. Also changed probabilities for default weapon sets
nemo
parents:
2455
diff
changeset
|
179 |
@doStepMolotov |
1259 | 180 |
); |
4 | 181 |
|
294 | 182 |
procedure InsertGearToList(Gear: PGear); |
803 | 183 |
var tmp, ptmp: PGear; |
294 | 184 |
begin |
185 |
if GearsList = nil then |
|
1505 | 186 |
GearsList:= Gear |
187 |
else begin |
|
188 |
tmp:= GearsList; |
|
189 |
ptmp:= GearsList; |
|
190 |
while (tmp <> nil) and (tmp^.Z <= Gear^.Z) do |
|
191 |
begin |
|
192 |
ptmp:= tmp; |
|
193 |
tmp:= tmp^.NextGear |
|
194 |
end; |
|
294 | 195 |
|
1505 | 196 |
if ptmp <> nil then |
197 |
begin |
|
198 |
Gear^.NextGear:= ptmp^.NextGear; |
|
199 |
Gear^.PrevGear:= ptmp; |
|
200 |
if ptmp^.NextGear <> nil then ptmp^.NextGear^.PrevGear:= Gear; |
|
201 |
ptmp^.NextGear:= Gear |
|
202 |
end |
|
203 |
else GearsList:= Gear |
|
204 |
end |
|
294 | 205 |
end; |
206 |
||
207 |
procedure RemoveGearFromList(Gear: PGear); |
|
208 |
begin |
|
351 | 209 |
if Gear^.NextGear <> nil then Gear^.NextGear^.PrevGear:= Gear^.PrevGear; |
1505 | 210 |
if Gear^.PrevGear <> nil then |
211 |
Gear^.PrevGear^.NextGear:= Gear^.NextGear |
|
212 |
else |
|
213 |
GearsList:= Gear^.NextGear |
|
294 | 214 |
end; |
215 |
||
371 | 216 |
function AddGear(X, Y: LongInt; Kind: TGearType; State: Longword; dX, dY: hwFloat; Timer: LongWord): PGear; |
79 | 217 |
const Counter: Longword = 0; |
2695 | 218 |
var gear: PGear; |
4 | 219 |
begin |
79 | 220 |
inc(Counter); |
1495 | 221 |
{$IFDEF DEBUGFILE} |
1503 | 222 |
AddFileLog('AddGear: #' + inttostr(Counter) + ' (' + inttostr(x) + ',' + inttostr(y) + '), d(' + floattostr(dX) + ',' + floattostr(dY) + ') type = ' + inttostr(ord(Kind))); |
1495 | 223 |
{$ENDIF} |
224 |
||
2695 | 225 |
New(gear); |
226 |
FillChar(gear^, sizeof(TGear), 0); |
|
227 |
gear^.X:= int2hwFloat(X); |
|
228 |
gear^.Y:= int2hwFloat(Y); |
|
229 |
gear^.Kind := Kind; |
|
230 |
gear^.State:= State; |
|
231 |
gear^.Active:= true; |
|
232 |
gear^.dX:= dX; |
|
233 |
gear^.dY:= dY; |
|
234 |
gear^.doStep:= doStepHandlers[Kind]; |
|
235 |
gear^.CollisionIndex:= -1; |
|
236 |
gear^.Timer:= Timer; |
|
237 |
gear^.Z:= cUsualZ; |
|
238 |
gear^.FlightTime:= 0; |
|
239 |
gear^.uid:= Counter; |
|
2745 | 240 |
gear^.SoundChannel:= -1; |
505
fcba7d7aea0d
Fix old bug with grenade(bomd, etc..) not colliding with attacking hedgehog
unc0rr
parents:
503
diff
changeset
|
241 |
|
4 | 242 |
if CurrentTeam <> nil then |
1505 | 243 |
begin |
2695 | 244 |
gear^.Hedgehog:= CurrentHedgehog; |
245 |
gear^.IntersectGear:= CurrentHedgehog^.Gear |
|
1505 | 246 |
end; |
802
ed5450a89b96
Start implementing 'visual gears' - gears, that don't need to be synchronized (clouds and flakes)
unc0rr
parents:
789
diff
changeset
|
247 |
|
4 | 248 |
case Kind of |
915 | 249 |
gtAmmo_Bomb, |
250 |
gtClusterBomb: begin |
|
2695 | 251 |
gear^.Radius:= 4; |
252 |
gear^.Elasticity:= _0_6; |
|
253 |
gear^.Friction:= _0_96; |
|
254 |
gear^.RenderTimer:= true; |
|
255 |
if gear^.Timer = 0 then gear^.Timer:= 3000 |
|
4 | 256 |
end; |
1261 | 257 |
gtWatermelon: begin |
2695 | 258 |
gear^.Radius:= 4; |
259 |
gear^.Elasticity:= _0_8; |
|
260 |
gear^.Friction:= _0_995; |
|
261 |
gear^.RenderTimer:= true; |
|
262 |
if gear^.Timer = 0 then gear^.Timer:= 3000 |
|
1261 | 263 |
end; |
4 | 264 |
gtHedgehog: begin |
2695 | 265 |
gear^.Radius:= cHHRadius; |
266 |
gear^.Elasticity:= _0_35; |
|
267 |
gear^.Friction:= _0_999; |
|
268 |
gear^.Angle:= cMaxAngle div 2; |
|
269 |
gear^.Z:= cHHZ; |
|
4 | 270 |
end; |
2488 | 271 |
gtAmmo_Grenade: begin // bazooka |
2695 | 272 |
gear^.Radius:= 4; |
4 | 273 |
end; |
274 |
gtHealthTag: begin |
|
2695 | 275 |
gear^.Timer:= 1500; |
276 |
gear^.Z:= 2002; |
|
2017 | 277 |
end; |
4 | 278 |
gtGrave: begin |
2695 | 279 |
gear^.Radius:= 10; |
280 |
gear^.Elasticity:= _0_6; |
|
4 | 281 |
end; |
282 |
gtUFO: begin |
|
2695 | 283 |
gear^.Radius:= 5; |
284 |
gear^.Timer:= 500; |
|
285 |
gear^.RenderTimer:= true; |
|
286 |
gear^.Elasticity:= _0_9 |
|
4 | 287 |
end; |
288 |
gtShotgunShot: begin |
|
2695 | 289 |
gear^.Timer:= 900; |
290 |
gear^.Radius:= 2 |
|
4 | 291 |
end; |
292 |
gtPickHammer: begin |
|
2695 | 293 |
gear^.Radius:= 10; |
294 |
gear^.Timer:= 4000 |
|
4 | 295 |
end; |
1263 | 296 |
gtSmokeTrace, |
297 |
gtEvilTrace: begin |
|
2695 | 298 |
gear^.X:= gear^.X - _16; |
299 |
gear^.Y:= gear^.Y - _16; |
|
300 |
gear^.State:= 8; |
|
301 |
gear^.Z:= cSmokeZ |
|
4 | 302 |
end; |
303 |
gtRope: begin |
|
2695 | 304 |
gear^.Radius:= 3; |
305 |
gear^.Friction:= _450; |
|
4 | 306 |
RopePoints.Count:= 0; |
307 |
end; |
|
9 | 308 |
gtExplosion: begin |
2695 | 309 |
gear^.X:= gear^.X; |
310 |
gear^.Y:= gear^.Y; |
|
9 | 311 |
end; |
10 | 312 |
gtMine: begin |
2695 | 313 |
gear^.State:= gear^.State or gstMoving; |
314 |
gear^.Radius:= 2; |
|
315 |
gear^.Elasticity:= _0_55; |
|
316 |
gear^.Friction:= _0_995; |
|
2031
b6f3e56fb100
david_ac's game scheme options for mine delay/quantity, tweaks to sniper rifle
nemo
parents:
2028
diff
changeset
|
317 |
if cMinesTime < 0 then |
2695 | 318 |
gear^.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
|
319 |
else |
2695 | 320 |
gear^.Timer:= cMinesTime*1; |
10 | 321 |
end; |
14
81f125629b25
- Mine checks whether a hedgehog is near less frequently
unc0rr
parents:
10
diff
changeset
|
322 |
gtCase: begin |
2695 | 323 |
gear^.Radius:= 16; |
324 |
gear^.Elasticity:= _0_3 |
|
14
81f125629b25
- Mine checks whether a hedgehog is near less frequently
unc0rr
parents:
10
diff
changeset
|
325 |
end; |
37 | 326 |
gtDEagleShot: begin |
2695 | 327 |
gear^.Radius:= 1; |
328 |
gear^.Health:= 50 |
|
37 | 329 |
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
|
330 |
gtSniperRifleShot: begin |
2695 | 331 |
gear^.Radius:= 1; |
332 |
gear^.Health:= 50 |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
333 |
end; |
39 | 334 |
gtDynamite: begin |
2695 | 335 |
gear^.Radius:= 3; |
336 |
gear^.Elasticity:= _0_55; |
|
337 |
gear^.Friction:= _0_03; |
|
338 |
gear^.Timer:= 5000; |
|
39 | 339 |
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
|
340 |
gtCluster: begin |
2695 | 341 |
gear^.Radius:= 2; |
342 |
gear^.RenderTimer:= true |
|
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
|
343 |
end; |
2695 | 344 |
gtShover: gear^.Radius:= 20; |
79 | 345 |
gtFlame: begin |
2695 | 346 |
gear^.Tag:= GetRandom(32); |
347 |
gear^.Radius:= 1; |
|
348 |
gear^.Health:= 5; |
|
349 |
if (gear^.dY.QWordValue = 0) and (gear^.dX.QWordValue = 0) then |
|
1555 | 350 |
begin |
2695 | 351 |
gear^.dY:= (getrandom - _0_8) * _0_03; |
352 |
gear^.dX:= (getrandom - _0_5) * _0_4 |
|
1555 | 353 |
end |
79 | 354 |
end; |
82 | 355 |
gtFirePunch: begin |
2695 | 356 |
gear^.Radius:= 15; |
357 |
gear^.Tag:= Y |
|
82 | 358 |
end; |
302 | 359 |
gtAirBomb: begin |
2695 | 360 |
gear^.Radius:= 5; |
302 | 361 |
end; |
362 |
gtBlowTorch: begin |
|
2695 | 363 |
gear^.Radius:= cHHRadius + cBlowTorchC; |
364 |
gear^.Timer:= 7500 |
|
302 | 365 |
end; |
540 | 366 |
gtSwitcher: begin |
2695 | 367 |
gear^.Z:= cCurrHHZ |
540 | 368 |
end; |
593 | 369 |
gtTarget: begin |
2695 | 370 |
gear^.Radius:= 10; |
371 |
gear^.Elasticity:= _0_3; |
|
372 |
gear^.Timer:= 0 |
|
593 | 373 |
end; |
924 | 374 |
gtMortar: begin |
2695 | 375 |
gear^.Radius:= 4; |
376 |
gear^.Elasticity:= _0_2; |
|
377 |
gear^.Friction:= _0_08 |
|
924 | 378 |
end; |
2695 | 379 |
gtWhip: gear^.Radius:= 20; |
984 | 380 |
gtKamikaze: begin |
2695 | 381 |
gear^.Health:= 2048; |
382 |
gear^.Radius:= 20 |
|
984 | 383 |
end; |
1089 | 384 |
gtCake: begin |
2695 | 385 |
gear^.Health:= 2048; |
386 |
gear^.Radius:= 7; |
|
387 |
gear^.Z:= cOnHHZ; |
|
388 |
gear^.RenderTimer:= true; |
|
389 |
if not dX.isNegative then gear^.Angle:= 1 else gear^.Angle:= 3 |
|
1089 | 390 |
end; |
1263 | 391 |
gtHellishBomb: begin |
2695 | 392 |
gear^.Radius:= 4; |
393 |
gear^.Elasticity:= _0_5; |
|
394 |
gear^.Friction:= _0_96; |
|
395 |
gear^.RenderTimer:= true; |
|
396 |
gear^.Timer:= 5000 |
|
1263 | 397 |
end; |
1573 | 398 |
gtDrill: begin |
2695 | 399 |
gear^.Timer:= 5000; |
400 |
gear^.Radius:= 4 |
|
1573 | 401 |
end; |
1601 | 402 |
gtBall: begin |
2695 | 403 |
gear^.Radius:= 5; |
404 |
gear^.Tag:= random(8); |
|
405 |
gear^.Timer:= 5000; |
|
406 |
gear^.Elasticity:= _0_7; |
|
407 |
gear^.Friction:= _0_995; |
|
1601 | 408 |
end; |
409 |
gtBallgun: begin |
|
2695 | 410 |
gear^.Timer:= 5001; |
1601 | 411 |
end; |
1689 | 412 |
gtRCPlane: begin |
2695 | 413 |
gear^.Timer:= 15000; |
414 |
gear^.Health:= 3; |
|
415 |
gear^.Radius:= 8 |
|
1689 | 416 |
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
|
417 |
gtJetpack: begin |
2695 | 418 |
gear^.Health:= 2000; |
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
|
419 |
end; |
2488 | 420 |
gtMolotov: begin |
2695 | 421 |
gear^.Radius:= 8; |
2488 | 422 |
end; |
4 | 423 |
end; |
2695 | 424 |
InsertGearToList(gear); |
425 |
AddGear:= gear; |
|
2786 | 426 |
|
427 |
ScriptCall('onGearAdd', LongInt(gear)); |
|
4 | 428 |
end; |
429 |
||
1515 | 430 |
procedure DeleteGear(Gear: PGear); |
48 | 431 |
var team: PTeam; |
2760
420fe0344e5f
... or. just move the king check to after the gear nil
nemo
parents:
2759
diff
changeset
|
432 |
t,i: Longword; |
420fe0344e5f
... or. just move the king check to after the gear nil
nemo
parents:
2759
diff
changeset
|
433 |
k: boolean; |
4 | 434 |
begin |
2786 | 435 |
|
436 |
ScriptCall('onGearDelete', LongInt(gear)); |
|
437 |
||
503 | 438 |
DeleteCI(Gear); |
762 | 439 |
|
440 |
if Gear^.Tex <> nil then |
|
1495 | 441 |
begin |
442 |
FreeTexture(Gear^.Tex); |
|
443 |
Gear^.Tex:= nil |
|
444 |
end; |
|
762 | 445 |
|
351 | 446 |
if Gear^.Kind = gtHedgehog then |
2079 | 447 |
if (CurAmmoGear <> nil) and (CurrentHedgehog^.Gear = Gear) then |
1495 | 448 |
begin |
449 |
Gear^.Message:= gm_Destroy; |
|
450 |
CurAmmoGear^.Message:= gm_Destroy; |
|
451 |
exit |
|
452 |
end |
|
453 |
else |
|
454 |
begin |
|
2076
aa3263e57b8f
increase # of mines to 50, limit max depth of drowning damage tag
nemo
parents:
2074
diff
changeset
|
455 |
if (hwRound(Gear^.Y) >= cWaterLine) then |
1495 | 456 |
begin |
457 |
t:= max(Gear^.Damage, Gear^.Health); |
|
458 |
Gear^.Damage:= t; |
|
2076
aa3263e57b8f
increase # of mines to 50, limit max depth of drowning damage tag
nemo
parents:
2074
diff
changeset
|
459 |
AddGear(hwRound(Gear^.X), min(hwRound(Gear^.Y),cWaterLine+cVisibleWater+32), gtHealthTag, t, _0, _0, 0)^.Hedgehog:= Gear^.Hedgehog; |
1495 | 460 |
uStats.HedgehogDamaged(Gear) |
461 |
end; |
|
2376 | 462 |
|
1495 | 463 |
team:= PHedgehog(Gear^.Hedgehog)^.Team; |
464 |
if CurrentHedgehog^.Gear = Gear then |
|
465 |
FreeActionsList; // to avoid ThinkThread on drawned gear |
|
2376 | 466 |
|
2760
420fe0344e5f
... or. just move the king check to after the gear nil
nemo
parents:
2759
diff
changeset
|
467 |
PHedgehog(Gear^.Hedgehog)^.Gear:= nil; |
2726 | 468 |
if PHedgehog(Gear^.Hedgehog)^.King then |
2758
033aa644578f
Add one king per team instead of clan, kill off clan if all kings are dead. untested.
nemo
parents:
2745
diff
changeset
|
469 |
begin |
033aa644578f
Add one king per team instead of clan, kill off clan if all kings are dead. untested.
nemo
parents:
2745
diff
changeset
|
470 |
// are there any other kings left? Just doing nil check. Presumably a mortally wounded king will get reaped soon enough |
2760
420fe0344e5f
... or. just move the king check to after the gear nil
nemo
parents:
2759
diff
changeset
|
471 |
k:= false; |
2726 | 472 |
for i:= 0 to Pred(team^.Clan^.TeamsNumber) do |
2760
420fe0344e5f
... or. just move the king check to after the gear nil
nemo
parents:
2759
diff
changeset
|
473 |
if (team^.Clan^.Teams[i]^.Hedgehogs[0].Gear <> nil) then k:= true; |
420fe0344e5f
... or. just move the king check to after the gear nil
nemo
parents:
2759
diff
changeset
|
474 |
if not k then |
2758
033aa644578f
Add one king per team instead of clan, kill off clan if all kings are dead. untested.
nemo
parents:
2745
diff
changeset
|
475 |
for i:= 0 to Pred(team^.Clan^.TeamsNumber) do |
033aa644578f
Add one king per team instead of clan, kill off clan if all kings are dead. untested.
nemo
parents:
2745
diff
changeset
|
476 |
TeamGoneEffect(team^.Clan^.Teams[i]^) |
033aa644578f
Add one king per team instead of clan, kill off clan if all kings are dead. untested.
nemo
parents:
2745
diff
changeset
|
477 |
end; |
1495 | 478 |
inc(KilledHHs); |
1515 | 479 |
RecountTeamHealth(team) |
1495 | 480 |
end; |
481 |
{$IFDEF DEBUGFILE} |
|
1503 | 482 |
with Gear^ do AddFileLog('Delete: #' + inttostr(uid) + ' (' + inttostr(hwRound(x)) + ',' + inttostr(hwRound(y)) + '), d(' + floattostr(dX) + ',' + floattostr(dY) + ') type = ' + inttostr(ord(Kind))); |
1495 | 483 |
{$ENDIF} |
484 |
||
595
5ee863f2f568
Triggers PoC: targets are spawned right after the previous damaged
unc0rr
parents:
593
diff
changeset
|
485 |
if Gear^.TriggerId <> 0 then TickTrigger(Gear^.TriggerId); |
82 | 486 |
if CurAmmoGear = Gear then CurAmmoGear:= nil; |
4 | 487 |
if FollowGear = Gear then FollowGear:= nil; |
294 | 488 |
RemoveGearFromList(Gear); |
1515 | 489 |
Dispose(Gear) |
4 | 490 |
end; |
491 |
||
492 |
function CheckNoDamage: boolean; // returns TRUE in case of no damaged hhs |
|
493 |
var Gear: PGear; |
|
1849 | 494 |
dmg: LongInt; |
4 | 495 |
begin |
351 | 496 |
CheckNoDamage:= true; |
4 | 497 |
Gear:= GearsList; |
498 |
while Gear <> nil do |
|
867 | 499 |
begin |
500 |
if Gear^.Kind = gtHedgehog then |
|
1861 | 501 |
begin |
2135
0b7972dfad01
Push karma application to end of round - should avoid problems w/ plane and kamikaze
nemo
parents:
2134
diff
changeset
|
502 |
if (not isInMultiShoot) then inc(Gear^.Damage, Gear^.Karma); |
1849 | 503 |
if (Gear^.Damage <> 0) and |
504 |
(not Gear^.Invulnerable) then |
|
1861 | 505 |
begin |
506 |
CheckNoDamage:= false; |
|
507 |
uStats.HedgehogDamaged(Gear); |
|
508 |
dmg:= Gear^.Damage; |
|
509 |
if Gear^.Health < dmg then |
|
510 |
Gear^.Health:= 0 |
|
511 |
else |
|
512 |
dec(Gear^.Health, dmg); |
|
351 | 513 |
|
2017 | 514 |
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
|
515 |
(Gear^.Damage <> Gear^.Karma) and |
2017 | 516 |
not SuddenDeathDmg then |
517 |
Gear^.State:= Gear^.State or gstLoser; |
|
518 |
||
1861 | 519 |
AddGear(hwRound(Gear^.X), hwRound(Gear^.Y) - cHHRadius - 12, |
520 |
gtHealthTag, dmg, _0, _0, 0)^.Hedgehog:= Gear^.Hedgehog; |
|
867 | 521 |
|
1861 | 522 |
RenderHealth(PHedgehog(Gear^.Hedgehog)^); |
523 |
RecountTeamHealth(PHedgehog(Gear^.Hedgehog)^.Team); |
|
1505 | 524 |
|
1861 | 525 |
end; |
2135
0b7972dfad01
Push karma application to end of round - should avoid problems w/ plane and kamikaze
nemo
parents:
2134
diff
changeset
|
526 |
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
|
527 |
Gear^.Damage:= 0 |
1861 | 528 |
end; |
867 | 529 |
Gear:= Gear^.NextGear |
530 |
end; |
|
2017 | 531 |
SuddenDeathDmg:= false; |
4 | 532 |
end; |
533 |
||
1054 | 534 |
procedure HealthMachine; |
535 |
var Gear: PGear; |
|
536 |
begin |
|
537 |
Gear:= GearsList; |
|
538 |
||
539 |
while Gear <> nil do |
|
540 |
begin |
|
541 |
if Gear^.Kind = gtHedgehog then |
|
542 |
Gear^.Damage:= min(cHealthDecrease, Gear^.Health - 1); |
|
543 |
||
544 |
Gear:= Gear^.NextGear |
|
545 |
end; |
|
546 |
end; |
|
547 |
||
4 | 548 |
procedure ProcessGears; |
614 | 549 |
const delay: LongWord = 0; |
1797 | 550 |
step: (stDelay, stChDmg, stSweep, stTurnReact, |
1495 | 551 |
stAfterDelay, stChWin, stWater, stChWin2, stHealth, |
552 |
stSpawn, stNTurn) = stDelay; |
|
1054 | 553 |
|
4 | 554 |
var Gear, t: PGear; |
555 |
begin |
|
868 | 556 |
PrvInactive:= AllInactive; |
4 | 557 |
AllInactive:= true; |
1495 | 558 |
|
4 | 559 |
t:= GearsList; |
1054 | 560 |
while t <> nil do |
1352
405ad07cf875
Add more support for handling disconnects while playing (not fully tested)
unc0rr
parents:
1346
diff
changeset
|
561 |
begin |
405ad07cf875
Add more support for handling disconnects while playing (not fully tested)
unc0rr
parents:
1346
diff
changeset
|
562 |
Gear:= t; |
405ad07cf875
Add more support for handling disconnects while playing (not fully tested)
unc0rr
parents:
1346
diff
changeset
|
563 |
t:= Gear^.NextGear; |
2376 | 564 |
if Gear^.Active then |
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
|
565 |
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
|
566 |
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
|
567 |
begin |
2376 | 568 |
if Gear^.Tex <> nil then FreeTexture(Gear^.Tex); |
2619 | 569 |
Gear^.Tex:= RenderStringTex(inttostr(Gear^.Timer div 1000), cWhiteColor, fntSmall); |
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
|
570 |
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
|
571 |
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
|
572 |
end |
1352
405ad07cf875
Add more support for handling disconnects while playing (not fully tested)
unc0rr
parents:
1346
diff
changeset
|
573 |
end; |
89 | 574 |
|
4 | 575 |
if AllInactive then |
1343 | 576 |
case step of |
577 |
stDelay: begin |
|
578 |
if delay = 0 then |
|
579 |
delay:= cInactDelay |
|
580 |
else |
|
581 |
dec(delay); |
|
614 | 582 |
|
1343 | 583 |
if delay = 0 then |
584 |
inc(step) |
|
585 |
end; |
|
1797 | 586 |
stChDmg: if CheckNoDamage then inc(step) else step:= stDelay; |
587 |
stSweep: if SweepDirty then |
|
1792 | 588 |
begin |
1918 | 589 |
SetAllToActive; |
1792 | 590 |
step:= stChDmg |
1797 | 591 |
end else inc(step); |
1343 | 592 |
stTurnReact: begin |
593 |
if (not bBetweenTurns) and (not isInMultiShoot) then |
|
594 |
begin |
|
595 |
uStats.TurnReaction; |
|
596 |
inc(step) |
|
597 |
end else |
|
598 |
inc(step, 2); |
|
599 |
end; |
|
600 |
stAfterDelay: begin |
|
601 |
if delay = 0 then |
|
602 |
delay:= cInactDelay |
|
603 |
else |
|
604 |
dec(delay); |
|
815 | 605 |
|
1343 | 606 |
if delay = 0 then |
607 |
inc(step) |
|
608 |
end; |
|
609 |
stChWin: begin |
|
610 |
CheckForWin; |
|
611 |
inc(step) |
|
612 |
end; |
|
613 |
stWater: if (not bBetweenTurns) and (not isInMultiShoot) then |
|
614 |
begin |
|
1782
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1781
diff
changeset
|
615 |
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
|
616 |
|
1343 | 617 |
if bWaterRising then |
618 |
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
|
619 |
|
1343 | 620 |
inc(step) |
621 |
end else inc(step); |
|
622 |
stChWin2: begin |
|
623 |
CheckForWin; |
|
624 |
inc(step) |
|
625 |
end; |
|
626 |
stHealth: begin |
|
1782
e7589e37a6d6
Options for bonus box probability tuning and number of turn until sudden death
unc0rr
parents:
1781
diff
changeset
|
627 |
if (TotalRounds = cSuddenDTurns) and (cHealthDecrease = 0) then |
1343 | 628 |
begin |
629 |
cHealthDecrease:= 5; |
|
2619 | 630 |
AddCaption(trmsg[sidSuddenDeath], cWhiteColor, capgrpGameState); |
2745 | 631 |
playSound(sndSuddenDeath) |
1343 | 632 |
end; |
1055
9af540b23409
Water rises after 25 mins of round, health is decreased after 20 mins
unc0rr
parents:
1054
diff
changeset
|
633 |
|
1343 | 634 |
if (cHealthDecrease = 0) |
635 |
or bBetweenTurns |
|
636 |
or isInMultiShoot |
|
637 |
or (TotalRounds = 0) then inc(step) |
|
638 |
else begin |
|
639 |
bBetweenTurns:= true; |
|
640 |
HealthMachine; |
|
2762
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2760
diff
changeset
|
641 |
SuddenDeathDmg:= true; |
1343 | 642 |
step:= stChDmg |
643 |
end |
|
644 |
end; |
|
645 |
stSpawn: begin |
|
646 |
if not isInMultiShoot then SpawnBoxOfSmth; |
|
647 |
inc(step) |
|
648 |
end; |
|
649 |
stNTurn: begin |
|
2608 | 650 |
if isInMultiShoot then |
651 |
isInMultiShoot:= false |
|
1343 | 652 |
else begin |
2608 | 653 |
// delayed till after 0.9.12 |
654 |
// reset to default zoom |
|
655 |
//ZoomValue:= ZoomDefault; |
|
656 |
with CurrentHedgehog^ do |
|
2611 | 657 |
if (Gear <> nil) |
658 |
and ((Gear^.State and gstAttacked) = 0) |
|
2608 | 659 |
and (MultiShootAttacks > 0) then OnUsedAmmo(CurrentHedgehog^); |
660 |
||
661 |
ResetUtilities; |
|
2376 | 662 |
|
2608 | 663 |
FreeActionsList; // could send -left, -right and similar commands, so should be called before /nextturn |
1298 | 664 |
|
2608 | 665 |
ParseCommand('/nextturn', true); |
666 |
SwitchHedgehog; |
|
1298 | 667 |
|
2608 | 668 |
AfterSwitchHedgehog; |
669 |
bBetweenTurns:= false |
|
670 |
end; |
|
1343 | 671 |
step:= Low(step) |
672 |
end; |
|
673 |
end; |
|
15 | 674 |
|
4 | 675 |
if TurnTimeLeft > 0 then |
870 | 676 |
if CurrentHedgehog^.Gear <> nil then |
677 |
if ((CurrentHedgehog^.Gear^.State and gstAttacking) = 0) |
|
678 |
and not isInMultiShoot then |
|
679 |
begin |
|
680 |
if (TurnTimeLeft = 5000) |
|
2770
851313907bcb
Decrease king buff from 150% bonus to 50% bonus, disable warning sound in placement mode
nemo
parents:
2762
diff
changeset
|
681 |
and (not PlacingHogs) |
870 | 682 |
and (CurrentHedgehog^.Gear <> nil) |
1669 | 683 |
and ((CurrentHedgehog^.Gear^.State and gstAttacked) = 0) then |
2745 | 684 |
PlaySound(sndHurry, CurrentTeam^.voicepack); |
870 | 685 |
dec(TurnTimeLeft) |
686 |
end; |
|
351 | 687 |
|
2621
956ff066f3a5
Fix desync when playing with AI via network, occuring in certain conditions
unc0rr
parents:
2619
diff
changeset
|
688 |
if skipFlag then |
956ff066f3a5
Fix desync when playing with AI via network, occuring in certain conditions
unc0rr
parents:
2619
diff
changeset
|
689 |
begin |
956ff066f3a5
Fix desync when playing with AI via network, occuring in certain conditions
unc0rr
parents:
2619
diff
changeset
|
690 |
TurnTimeLeft:= 0; |
956ff066f3a5
Fix desync when playing with AI via network, occuring in certain conditions
unc0rr
parents:
2619
diff
changeset
|
691 |
skipFlag:= false |
956ff066f3a5
Fix desync when playing with AI via network, occuring in certain conditions
unc0rr
parents:
2619
diff
changeset
|
692 |
end; |
956ff066f3a5
Fix desync when playing with AI via network, occuring in certain conditions
unc0rr
parents:
2619
diff
changeset
|
693 |
|
2134 | 694 |
if ((GameTicks and $FFFF) = $FFFF) then |
917 | 695 |
begin |
2134 | 696 |
if (not CurrentTeam^.ExtDriven) then |
697 |
SendIPCTimeInc; |
|
698 |
||
699 |
if (not CurrentTeam^.ExtDriven) or CurrentTeam^.hasGone then |
|
700 |
inc(hiTicks) // we do not recieve a message for this |
|
917 | 701 |
end; |
656
6d6d9d7b1054
Fix network game bug caused by recent protocol changes
unc0rr
parents:
651
diff
changeset
|
702 |
|
515 | 703 |
inc(GameTicks) |
4 | 704 |
end; |
705 |
||
1854 | 706 |
//Purpose, to reset all transient attributes toggled by a utility. |
707 |
//If any of these are set as permanent toggles in the frontend, that needs to be checked and skipped here. |
|
1849 | 708 |
procedure ResetUtilities; |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
709 |
var i: LongInt; |
1849 | 710 |
begin |
2221 | 711 |
SpeechText:= ''; // in case it has not been consumed |
2017 | 712 |
|
1895 | 713 |
if (GameFlags and gfLowGravity) = 0 then |
714 |
cGravity:= cMaxWindSpeed; |
|
715 |
||
2017 | 716 |
if (GameFlags and gfVampiric) = 0 then |
717 |
cVampiric:= false; |
|
718 |
||
1849 | 719 |
cDamageModifier:= _1; |
1895 | 720 |
|
721 |
if (GameFlags and gfLaserSight) = 0 then |
|
722 |
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
|
723 |
|
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
724 |
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
|
725 |
cArtillery:= false; |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
726 |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
727 |
// 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
|
728 |
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
|
729 |
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
|
730 |
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
|
731 |
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
|
732 |
begin |
2045
b0588498bc3a
- Fix network (my crappy fault, triggered by nemo's patch)
unc0rr
parents:
2042
diff
changeset
|
733 |
if (SpeechGear <> nil) then |
b0588498bc3a
- Fix network (my crappy fault, triggered by nemo's patch)
unc0rr
parents:
2042
diff
changeset
|
734 |
begin |
b0588498bc3a
- Fix network (my crappy fault, triggered by nemo's patch)
unc0rr
parents:
2042
diff
changeset
|
735 |
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
|
736 |
SpeechGear:= nil |
b0588498bc3a
- Fix network (my crappy fault, triggered by nemo's patch)
unc0rr
parents:
2042
diff
changeset
|
737 |
end; |
b0588498bc3a
- Fix network (my crappy fault, triggered by nemo's patch)
unc0rr
parents:
2042
diff
changeset
|
738 |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
739 |
if (Gear <> nil) then |
2730
f56592281526
Remove king invulnerability, disable everything but teleport instead.
nemo
parents:
2729
diff
changeset
|
740 |
if (GameFlags and gfInvulnerable) = 0 then |
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
741 |
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
|
742 |
end; |
1849 | 743 |
end; |
2045
b0588498bc3a
- Fix network (my crappy fault, triggered by nemo's patch)
unc0rr
parents:
2042
diff
changeset
|
744 |
|
2017 | 745 |
procedure ApplyDamage(Gear: PGear; Damage: Longword); |
746 |
var s: shortstring; |
|
2428 | 747 |
vampDmg, tmpDmg, i: Longword; |
748 |
vg: PVisualGear; |
|
2017 | 749 |
begin |
2074 | 750 |
if (Gear^.Kind = gtHedgehog) and (Damage>=1) then |
2017 | 751 |
begin |
752 |
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
|
753 |
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
|
754 |
if (Gear <> CurrentHedgehog^.Gear) and (CurrentHedgehog^.Gear <> nil) and (tmpDmg >= 1) then |
2017 | 755 |
begin |
756 |
if cVampiric then |
|
757 |
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
|
758 |
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
|
759 |
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
|
760 |
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
|
761 |
// 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
|
762 |
//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
|
763 |
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
|
764 |
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
|
765 |
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
|
766 |
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
|
767 |
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
|
768 |
RecountTeamHealth(CurrentHedgehog^.Team); |
2428 | 769 |
i:= 0; |
770 |
while i < vampDmg do |
|
771 |
begin |
|
772 |
vg:= AddVisualGear(hwRound(CurrentHedgehog^.Gear^.X), hwRound(CurrentHedgehog^.Gear^.Y), vgtHealth); |
|
773 |
if vg <> nil then vg^.Frame:= 10; |
|
774 |
inc(i, 5); |
|
775 |
end; |
|
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
|
776 |
end |
2017 | 777 |
end; |
2376 | 778 |
if ((GameFlags and gfKarma) <> 0) and |
2017 | 779 |
((GameFlags and gfInvulnerable) = 0) and |
780 |
not CurrentHedgehog^.Gear^.Invulnerable then |
|
781 |
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
|
782 |
inc(CurrentHedgehog^.Gear^.Karma, tmpDmg); |
2376 | 783 |
AddGear(hwRound(CurrentHedgehog^.Gear^.X), |
784 |
hwRound(CurrentHedgehog^.Gear^.Y), |
|
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
|
785 |
gtHealthTag, tmpDmg, _0, _0, 0)^.Hedgehog:= CurrentHedgehog; |
2017 | 786 |
end; |
787 |
end; |
|
788 |
end; |
|
2057
cf0d84479251
Prevent gaining more health than hedgehog actually has
nemo
parents:
2053
diff
changeset
|
789 |
inc(Gear^.Damage, Damage); |
2017 | 790 |
end; |
1849 | 791 |
|
4 | 792 |
procedure SetAllToActive; |
793 |
var t: PGear; |
|
794 |
begin |
|
795 |
AllInactive:= false; |
|
796 |
t:= GearsList; |
|
351 | 797 |
while t <> nil do |
1505 | 798 |
begin |
799 |
t^.Active:= true; |
|
800 |
t:= t^.NextGear |
|
801 |
end |
|
4 | 802 |
end; |
803 |
||
804 |
procedure SetAllHHToActive; |
|
805 |
var t: PGear; |
|
806 |
begin |
|
807 |
AllInactive:= false; |
|
808 |
t:= GearsList; |
|
351 | 809 |
while t <> nil do |
1505 | 810 |
begin |
811 |
if t^.Kind = gtHedgehog then t^.Active:= true; |
|
812 |
t:= t^.NextGear |
|
813 |
end |
|
4 | 814 |
end; |
815 |
||
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
816 |
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
|
817 |
var i, t: LongInt; |
822 | 818 |
amt: TAmmoType; |
2020 | 819 |
hx, hy, cx, cy, tx, ty, sx, sy, m: LongInt; // hedgehog, crosshair, temp, sprite, direction |
2597 | 820 |
lx, ly, dx, dy, ax, ay, aAngle, dAngle, hAngle: real; // laser, change |
1253 | 821 |
defaultPos, HatVisible: boolean; |
1906 | 822 |
VertexBuffer: array [0..1] of TVertex2f; |
292 | 823 |
begin |
2762
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2760
diff
changeset
|
824 |
if PHedgehog(Gear^.Hedgehog)^.Unplaced then exit; |
2020 | 825 |
m:= 1; |
2137 | 826 |
if ((Gear^.State and gstHHHJump) <> 0) and not cArtillery then m:= -1; |
868 | 827 |
if (Gear^.State and gstHHDeath) <> 0 then |
828 |
begin |
|
829 |
DrawSprite(sprHHDeath, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 26 + WorldDy, Gear^.Pos); |
|
830 |
exit |
|
831 |
end; |
|
1002 | 832 |
|
824 | 833 |
defaultPos:= true; |
1253 | 834 |
HatVisible:= false; |
847 | 835 |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
836 |
sx:= hwRound(Gear^.X) + 1 + WorldDx; |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
837 |
sy:= hwRound(Gear^.Y) - 3 + WorldDy; |
1002 | 838 |
if (Gear^.State and gstDrowning) <> 0 then |
839 |
begin |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
840 |
DrawHedgehog(sx, sy, |
1002 | 841 |
hwSign(Gear^.dX), |
842 |
1, |
|
843 |
7, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
844 |
0); |
1002 | 845 |
defaultPos:= false |
846 |
end else |
|
2376 | 847 |
if ((Gear^.State and gstWinner) <> 0) and |
1892 | 848 |
((CurAmmoGear = nil) or (CurAmmoGear^.Kind <> gtPickHammer)) then |
1011 | 849 |
begin |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
850 |
DrawHedgehog(sx, sy, |
1011 | 851 |
hwSign(Gear^.dX), |
852 |
2, |
|
853 |
0, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
854 |
0); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
855 |
defaultPos:= false |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
856 |
end else |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
857 |
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
|
858 |
begin |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
859 |
DrawHedgehog(sx, sy, |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
860 |
hwSign(Gear^.dX), |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
861 |
2, |
2053
9a8a4add3eff
Use shrug frame for injuring yourself/team-mate, add custom theme music to Sheep theme
nemo
parents:
2045
diff
changeset
|
862 |
3, |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
863 |
0); |
1011 | 864 |
defaultPos:= false |
865 |
end else |
|
866 |
||
821
e6c0408b54ed
Use 'regular standing' and 'rope swing' hedgehog sprites
unc0rr
parents:
815
diff
changeset
|
867 |
if (Gear^.State and gstHHDriven) <> 0 then |
966 | 868 |
begin |
2376 | 869 |
if ((Gear^.State and gstHHThinking) = 0) and |
870 |
ShowCrosshair and |
|
2028 | 871 |
((Gear^.State and (gstAttacked or gstAnimation)) = 0) then |
872 |
begin |
|
873 |
(* These calculations are a little complex for a few reasons: |
|
874 |
1: I need to draw the laser from weapon origin to nearest land |
|
2376 | 875 |
2: I need to start the beam outside the hedgie for attractiveness. |
876 |
3: I need to extend the beam beyond land. |
|
2028 | 877 |
This routine perhaps should be pushed into uStore or somesuch instead of continuuing the increase in size of this function. |
878 |
*) |
|
879 |
dx:= hwSign(Gear^.dX) * m * Sin(Gear^.Angle * pi / cMaxAngle); |
|
880 |
dy:= - Cos(Gear^.Angle * pi / cMaxAngle); |
|
881 |
if cLaserSighting then |
|
882 |
begin |
|
883 |
lx:= hwRound(Gear^.X); |
|
884 |
ly:= hwRound(Gear^.Y); |
|
885 |
lx:= lx + dx * 16; |
|
886 |
ly:= ly + dy * 16; |
|
887 |
||
888 |
ax:= dx * 4; |
|
889 |
ay:= dy * 4; |
|
890 |
||
891 |
tx:= round(lx); |
|
892 |
ty:= round(ly); |
|
893 |
hx:= tx; |
|
894 |
hy:= ty; |
|
895 |
while ((ty and LAND_HEIGHT_MASK) = 0) and |
|
896 |
((tx and LAND_WIDTH_MASK) = 0) and |
|
897 |
(Land[ty, tx] = 0) do |
|
898 |
begin |
|
899 |
lx:= lx + ax; |
|
900 |
ly:= ly + ay; |
|
901 |
tx:= round(lx); |
|
902 |
ty:= round(ly) |
|
903 |
end; |
|
904 |
// reached edge of land. assume infinite beam. Extend it way out past camera |
|
905 |
if ((ty and LAND_HEIGHT_MASK) <> 0) or ((tx and LAND_WIDTH_MASK) <> 0) then |
|
906 |
begin |
|
907 |
tx:= round(lx + ax * (LAND_WIDTH div 4)); |
|
908 |
ty:= round(ly + ay * (LAND_WIDTH div 4)); |
|
909 |
end; |
|
2376 | 910 |
|
2028 | 911 |
//if (abs(lx-tx)>8) or (abs(ly-ty)>8) then |
912 |
begin |
|
913 |
glDisable(GL_TEXTURE_2D); |
|
914 |
glEnable(GL_LINE_SMOOTH); |
|
915 |
||
2362 | 916 |
glLineWidth(1.0); |
2376 | 917 |
|
2028 | 918 |
glColor4ub($FF, $00, $00, $C0); |
919 |
VertexBuffer[0].X:= hx + WorldDx; |
|
920 |
VertexBuffer[0].Y:= hy + WorldDy; |
|
921 |
VertexBuffer[1].X:= tx + WorldDx; |
|
922 |
VertexBuffer[1].Y:= ty + WorldDy; |
|
2376 | 923 |
|
2028 | 924 |
glEnableClientState(GL_VERTEX_ARRAY); |
925 |
glVertexPointer(2, GL_FLOAT, 0, @VertexBuffer[0]); |
|
926 |
glDrawArrays(GL_LINES, 0, Length(VertexBuffer)); |
|
927 |
glColor4f(1, 1, 1, 1); |
|
928 |
glEnable(GL_TEXTURE_2D); |
|
929 |
glDisable(GL_LINE_SMOOTH); |
|
930 |
end; |
|
931 |
end; |
|
932 |
// draw crosshair |
|
933 |
cx:= Round(hwRound(Gear^.X) + dx * 80); |
|
934 |
cy:= Round(hwRound(Gear^.Y) + dy * 80); |
|
935 |
DrawRotatedTex(PHedgehog(Gear^.Hedgehog)^.Team^.CrosshairTex, |
|
936 |
12, 12, cx + WorldDx, cy + WorldDy, 0, |
|
937 |
hwSign(Gear^.dX) * (Gear^.Angle * 180.0) / cMaxAngle); |
|
938 |
end; |
|
1002 | 939 |
hx:= hwRound(Gear^.X) + 1 + 8 * hwSign(Gear^.dX) + WorldDx; |
940 |
hy:= hwRound(Gear^.Y) - 2 + WorldDy; |
|
941 |
aangle:= Gear^.Angle * 180 / cMaxAngle - 90; |
|
874 | 942 |
|
1002 | 943 |
if CurAmmoGear <> nil then |
944 |
begin |
|
945 |
case CurAmmoGear^.Kind of |
|
1294
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
946 |
gtShotgunShot: begin |
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
947 |
if (CurAmmoGear^.State and gstAnimation <> 0) then |
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
948 |
DrawRotated(sprShotgun, hx, hy, hwSign(Gear^.dX), aangle) |
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
949 |
else |
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
950 |
DrawRotated(sprHandShotgun, hx, hy, hwSign(Gear^.dX), aangle); |
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
951 |
end; |
1002 | 952 |
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
|
953 |
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
|
954 |
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
|
955 |
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
|
956 |
else |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
957 |
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
|
958 |
end; |
1601 | 959 |
gtBallgun: DrawRotated(sprHandBallgun, hx, hy, hwSign(Gear^.dX), aangle); |
1717 | 960 |
gtRCPlane: begin |
961 |
DrawRotated(sprHandPlane, hx, hy, hwSign(Gear^.dX), 0); |
|
962 |
defaultPos:= false |
|
963 |
end; |
|
1002 | 964 |
gtRope: begin |
965 |
if Gear^.X < CurAmmoGear^.X then |
|
966 |
begin |
|
967 |
dAngle:= 0; |
|
2597 | 968 |
hAngle:= 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
|
969 |
i:= 1 |
1002 | 970 |
end else |
971 |
begin |
|
972 |
dAngle:= 180; |
|
2597 | 973 |
hAngle:= 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
|
974 |
i:= -1 |
966 | 975 |
end; |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
976 |
sx:= hwRound(Gear^.X) + WorldDx; |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
977 |
sy:= hwRound(Gear^.Y) + WorldDy; |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
978 |
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
|
979 |
i, |
1002 | 980 |
1, |
981 |
0, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
982 |
DxDy2Angle(CurAmmoGear^.dY, CurAmmoGear^.dX) + dAngle); |
2597 | 983 |
with PHedgehog(Gear^.Hedgehog)^ do |
984 |
if (HatTex <> nil) then |
|
985 |
DrawRotatedTextureF(HatTex, 1.0, -1.0, -6.0, sx, sy, 0, i, 32, |
|
986 |
i*DxDy2Angle(CurAmmoGear^.dY, CurAmmoGear^.dX) + hAngle); |
|
1002 | 987 |
defaultPos:= false |
988 |
end; |
|
989 |
gtBlowTorch: begin |
|
990 |
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
|
991 |
DrawHedgehog(sx, sy, |
1002 | 992 |
hwSign(Gear^.dX), |
993 |
3, |
|
1113 | 994 |
PHedgehog(Gear^.Hedgehog)^.visStepPos div 2, |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
995 |
0); |
1002 | 996 |
defaultPos:= false |
997 |
end; |
|
998 |
gtShover: DrawRotated(sprHandBaseball, hx, hy, hwSign(Gear^.dX), aangle + 180); |
|
999 |
gtFirePunch: begin |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1000 |
DrawHedgehog(sx, sy, |
1002 | 1001 |
hwSign(Gear^.dX), |
1002 |
1, |
|
1003 |
4, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1004 |
0); |
1002 | 1005 |
defaultPos:= false |
1006 |
end; |
|
1892 | 1007 |
gtPickHammer: begin |
1008 |
defaultPos:= false; |
|
1009 |
dec(sy,20); |
|
1010 |
end; |
|
1002 | 1011 |
gtTeleport: defaultPos:= false; |
1010 | 1012 |
gtWhip: begin |
1013 |
DrawRotatedF(sprWhip, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1014 |
sx, |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1015 |
sy, |
1010 | 1016 |
1, |
1017 |
hwSign(Gear^.dX), |
|
1018 |
0); |
|
1019 |
defaultPos:= false |
|
1020 |
end; |
|
1002 | 1021 |
gtKamikaze: begin |
1286 | 1022 |
if CurAmmoGear^.Pos = 0 then |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1023 |
DrawHedgehog(sx, sy, |
1286 | 1024 |
hwSign(Gear^.dX), |
1025 |
1, |
|
1026 |
6, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1027 |
0) |
1286 | 1028 |
else |
1029 |
DrawRotatedF(sprKamikaze, |
|
1030 |
hwRound(Gear^.X) + WorldDx, |
|
1031 |
hwRound(Gear^.Y) + WorldDy, |
|
1032 |
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
|
1033 |
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
|
1034 |
aangle); |
1286 | 1035 |
defaultPos:= false |
1036 |
end; |
|
1037 |
gtSeduction: begin |
|
1038 |
if CurAmmoGear^.Pos >= 6 then |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1039 |
DrawHedgehog(sx, sy, |
1286 | 1040 |
hwSign(Gear^.dX), |
1041 |
2, |
|
1042 |
2, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1043 |
0) |
1286 | 1044 |
else |
1045 |
begin |
|
1046 |
DrawRotatedF(sprDress, |
|
1047 |
hwRound(Gear^.X) + WorldDx, |
|
1048 |
hwRound(Gear^.Y) + WorldDy, |
|
1049 |
CurAmmoGear^.Pos, |
|
1050 |
hwSign(Gear^.dX), |
|
1051 |
0); |
|
1052 |
DrawSprite(sprCensored, hwRound(Gear^.X) - 32 + WorldDx, hwRound(Gear^.Y) - 20 + WorldDy, 0) |
|
1053 |
end; |
|
1054 |
defaultPos:= false |
|
1055 |
end; |
|
1002 | 1056 |
end; |
1057 |
||
1058 |
case CurAmmoGear^.Kind of |
|
1059 |
gtShotgunShot, |
|
1060 |
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
|
1061 |
gtSniperRifleShot, |
1002 | 1062 |
gtShover: begin |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1063 |
DrawHedgehog(sx, sy, |
1002 | 1064 |
hwSign(Gear^.dX), |
1065 |
0, |
|
1066 |
4, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1067 |
0); |
1977 | 1068 |
defaultPos:= false; |
1069 |
HatVisible:= true |
|
1002 | 1070 |
end |
1071 |
end |
|
1072 |
end else |
|
876 | 1073 |
|
1002 | 1074 |
if ((Gear^.State and gstHHJumping) <> 0) then |
1075 |
begin |
|
2020 | 1076 |
DrawHedgehog(sx, sy, |
1077 |
hwSign(Gear^.dX)*m, |
|
1078 |
1, |
|
1079 |
1, |
|
1080 |
0); |
|
1081 |
HatVisible:= true; |
|
1002 | 1082 |
defaultPos:= false |
1083 |
end else |
|
874 | 1084 |
|
1913 | 1085 |
if (Gear^.Message and (gm_Left or gm_Right) <> 0) and (not isCursorVisible) then |
824 | 1086 |
begin |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1087 |
DrawHedgehog(sx, sy, |
1002 | 1088 |
hwSign(Gear^.dX), |
1089 |
0, |
|
1090 |
PHedgehog(Gear^.Hedgehog)^.visStepPos div 2, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1091 |
0); |
1257 | 1092 |
defaultPos:= false; |
1093 |
HatVisible:= true |
|
1002 | 1094 |
end |
1095 |
else |
|
1096 |
||
1033 | 1097 |
if ((Gear^.State and gstAnimation) <> 0) then |
1098 |
begin |
|
1034 | 1099 |
DrawRotatedF(Wavez[TWave(Gear^.Tag)].Sprite, |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1100 |
sx, |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1101 |
sy, |
1033 | 1102 |
Gear^.Pos, |
1103 |
hwSign(Gear^.dX), |
|
1104 |
0.0); |
|
1105 |
defaultPos:= false |
|
1106 |
end |
|
1107 |
else |
|
1002 | 1108 |
if ((Gear^.State and gstAttacked) = 0) then |
1109 |
begin |
|
1110 |
amt:= CurrentHedgehog^.Ammo^[CurrentHedgehog^.CurSlot, CurrentHedgehog^.CurAmmo].AmmoType; |
|
1111 |
case amt of |
|
1112 |
amBazooka, |
|
1717 | 1113 |
amMortar: DrawRotated(sprHandBazooka, hx, hy, hwSign(Gear^.dX), aangle); |
2457
ecf0c7e7995b
Initial molotov cocktail. Still needs graphics, tweaking of fire behaviour. Also changed probabilities for default weapon sets
nemo
parents:
2455
diff
changeset
|
1114 |
amMolotov: DrawRotated(sprHandMolotov, hx, hy, hwSign(Gear^.dX), aangle); |
1717 | 1115 |
amBallgun: DrawRotated(sprHandBallgun, hx, hy, hwSign(Gear^.dX), aangle); |
1116 |
amDrill: DrawRotated(sprHandDrill, hx, hy, hwSign(Gear^.dX), aangle); |
|
1002 | 1117 |
amRope: DrawRotated(sprHandRope, hx, hy, hwSign(Gear^.dX), aangle); |
1118 |
amShotgun: DrawRotated(sprHandShotgun, hx, hy, hwSign(Gear^.dX), aangle); |
|
1119 |
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
|
1120 |
amSniperRifle: DrawRotatedF(sprSniperRifle, hx, hy, 0, hwSign(Gear^.dX), aangle); |
1002 | 1121 |
amBlowTorch: DrawRotated(sprHandBlowTorch, hx, hy, hwSign(Gear^.dX), aangle); |
1717 | 1122 |
amRCPlane: begin |
1123 |
DrawRotated(sprHandPlane, hx, hy, hwSign(Gear^.dX), 0); |
|
1124 |
defaultPos:= false |
|
1125 |
end; |
|
1939 | 1126 |
amGirder: begin |
2376 | 1127 |
DrawSpriteClipped(sprGirder, |
1128 |
sx-256, |
|
1129 |
sy-256, |
|
1130 |
LongInt(topY)+WorldDy, |
|
1131 |
LongInt(rightX)+WorldDx, |
|
1939 | 1132 |
cWaterLine+WorldDy, |
1133 |
LongInt(leftX)+WorldDx); |
|
1134 |
end; |
|
1002 | 1135 |
end; |
1136 |
||
1137 |
case amt of |
|
1138 |
amAirAttack, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1139 |
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
|
1140 |
amPickHammer: DrawHedgehog(sx, sy, |
1002 | 1141 |
hwSign(Gear^.dX), |
1142 |
1, |
|
1143 |
2, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1144 |
0); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1145 |
amBlowTorch: DrawHedgehog(sx, sy, |
1002 | 1146 |
hwSign(Gear^.dX), |
1147 |
1, |
|
1148 |
3, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1149 |
0); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1150 |
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
|
1151 |
amKamikaze: DrawHedgehog(sx, sy, |
1002 | 1152 |
hwSign(Gear^.dX), |
1153 |
1, |
|
1154 |
5, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1155 |
0); |
1221 | 1156 |
amWhip: DrawRotatedF(sprWhip, |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1157 |
sx, |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1158 |
sy, |
1010 | 1159 |
0, |
1160 |
hwSign(Gear^.dX), |
|
1161 |
0); |
|
1002 | 1162 |
else |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1163 |
DrawHedgehog(sx, sy, |
822 | 1164 |
hwSign(Gear^.dX), |
1165 |
0, |
|
1002 | 1166 |
4, |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1167 |
0); |
2376 | 1168 |
|
1253 | 1169 |
HatVisible:= true; |
1170 |
with PHedgehog(Gear^.Hedgehog)^ do |
|
1294
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
1171 |
if (HatTex <> nil) |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1172 |
and (HatVisibility > 0) then |
1253 | 1173 |
DrawTextureF(HatTex, |
1174 |
HatVisibility, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1175 |
sx, |
1253 | 1176 |
hwRound(Gear^.Y) - 8 + WorldDy, |
1177 |
0, |
|
1178 |
hwSign(Gear^.dX), |
|
1179 |
32); |
|
1002 | 1180 |
end; |
966 | 1181 |
|
1002 | 1182 |
case amt of |
1183 |
amBaseballBat: DrawRotated(sprHandBaseball, |
|
1184 |
hwRound(Gear^.X) + 1 - 4 * hwSign(Gear^.dX) + WorldDx, |
|
1185 |
hwRound(Gear^.Y) + 6 + WorldDy, hwSign(Gear^.dX), aangle); |
|
1186 |
end; |
|
966 | 1187 |
|
1002 | 1188 |
defaultPos:= false |
2182
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1189 |
end; |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1190 |
|
1002 | 1191 |
end else // not gstHHDriven |
1012 | 1192 |
begin |
1014
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
1193 |
if (Gear^.Damage > 0) |
2028 | 1194 |
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
|
1195 |
begin |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1196 |
DrawHedgehog(sx, sy, |
1012 | 1197 |
hwSign(Gear^.dX), |
1014
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
1198 |
2, |
1012 | 1199 |
1, |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1200 |
Gear^.DirAngle); |
1012 | 1201 |
defaultPos:= false |
1020 | 1202 |
end else |
1014
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
1203 |
|
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
1204 |
if ((Gear^.State and gstHHJumping) <> 0) then |
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
1205 |
begin |
2020 | 1206 |
DrawHedgehog(sx, sy, |
1207 |
hwSign(Gear^.dX)*m, |
|
1208 |
1, |
|
1209 |
1, |
|
1210 |
0); |
|
1211 |
defaultPos:= false |
|
1014
3c7d4e7ccdff
- Fix firepunch sprite direction when use in high jump
unc0rr
parents:
1013
diff
changeset
|
1212 |
end; |
1012 | 1213 |
end; |
834 | 1214 |
|
1251 | 1215 |
with PHedgehog(Gear^.Hedgehog)^ do |
970 | 1216 |
begin |
1251 | 1217 |
if defaultPos then |
1218 |
begin |
|
1219 |
DrawRotatedF(sprHHIdle, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1220 |
sx, |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1221 |
sy, |
1251 | 1222 |
(RealTicks div 128 + Gear^.Pos) mod 19, |
1223 |
hwSign(Gear^.dX), |
|
1224 |
0); |
|
1253 | 1225 |
HatVisible:= true; |
1226 |
end; |
|
1227 |
||
1228 |
if HatVisible then |
|
1251 | 1229 |
if HatVisibility < 1.0 then |
1254 | 1230 |
HatVisibility:= HatVisibility + 0.2 |
1253 | 1231 |
else |
1251 | 1232 |
else |
1233 |
if HatVisibility > 0.0 then |
|
1254 | 1234 |
HatVisibility:= HatVisibility - 0.2; |
2376 | 1235 |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1236 |
if (HatTex <> nil) |
1294
50198e5c7f02
- Hedgehog doesn't take off hat when shooting from shotgun
unc0rr
parents:
1286
diff
changeset
|
1237 |
and (HatVisibility > 0) then |
1255 | 1238 |
if DefaultPos then |
1239 |
DrawTextureF(HatTex, |
|
1240 |
HatVisibility, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1241 |
sx, |
1255 | 1242 |
hwRound(Gear^.Y) - 8 + WorldDy, |
1243 |
(RealTicks div 128 + Gear^.Pos) mod 19, |
|
1244 |
hwSign(Gear^.dX), |
|
1245 |
32) |
|
1246 |
else |
|
1247 |
DrawTextureF(HatTex, |
|
1248 |
HatVisibility, |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1249 |
sx, |
1255 | 1250 |
hwRound(Gear^.Y) - 8 + WorldDy, |
1251 |
0, |
|
2020 | 1252 |
hwSign(Gear^.dX)*m, |
1255 | 1253 |
32); |
970 | 1254 |
end; |
2182
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1255 |
if (Gear^.State and gstHHDriven) <> 0 then |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1256 |
begin |
2186
5ec3e4a03d51
disable selection sprite, nudge ship into the air on launch
nemo
parents:
2182
diff
changeset
|
1257 |
(* if (CurAmmoGear = nil) then |
2182
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1258 |
begin |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1259 |
amt:= CurrentHedgehog^.Ammo^[CurrentHedgehog^.CurSlot, CurrentHedgehog^.CurAmmo].AmmoType; |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1260 |
case amt of |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1261 |
amJetpack: DrawSprite(sprJetpack, sx-32, sy-32, 0); |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1262 |
end |
2186
5ec3e4a03d51
disable selection sprite, nudge ship into the air on launch
nemo
parents:
2182
diff
changeset
|
1263 |
end; *) |
2182
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1264 |
if CurAmmoGear <> nil then |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1265 |
begin |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1266 |
case CurAmmoGear^.Kind of |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1267 |
gtJetpack: begin |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1268 |
DrawSprite(sprJetpack, sx-32, sy-32, 0); |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1269 |
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
|
1270 |
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
|
1271 |
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
|
1272 |
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
|
1273 |
end; |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1274 |
end; |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1275 |
end |
ed7e7eb3f9ed
Ugly graphic for jetpack - jetpack should be essentially functional.
nemo
parents:
2177
diff
changeset
|
1276 |
end; |
1251 | 1277 |
|
351 | 1278 |
with PHedgehog(Gear^.Hedgehog)^ do |
994 | 1279 |
begin |
1011 | 1280 |
if ((Gear^.State and not gstWinner) = 0) |
994 | 1281 |
or (bShowFinger and ((Gear^.State and gstHHDriven) <> 0)) then |
958 | 1282 |
begin |
1660 | 1283 |
t:= hwRound(Gear^.Y) - cHHRadius - 12 + WorldDy; |
2568
e654cbfb23ba
Bunch of neat stuff by Smaxx. ATI check, translucent name tags to reduce terrain fail, disabling health crates on invulnerable hogs. Also tweaks to prior stuff.
nemo
parents:
2537
diff
changeset
|
1284 |
if (cTagsMasks[cTagsMaskIndex] and htTransparent) <> 0 then |
e654cbfb23ba
Bunch of neat stuff by Smaxx. ATI check, translucent name tags to reduce terrain fail, disabling health crates on invulnerable hogs. Also tweaks to prior stuff.
nemo
parents:
2537
diff
changeset
|
1285 |
glColor4f(1, 1, 1, 0.5); |
e654cbfb23ba
Bunch of neat stuff by Smaxx. ATI check, translucent name tags to reduce terrain fail, disabling health crates on invulnerable hogs. Also tweaks to prior stuff.
nemo
parents:
2537
diff
changeset
|
1286 |
if ((cTagsMasks[cTagsMaskIndex] and htHealth) <> 0) and ((GameFlags and gfInvulnerable) = 0) then |
1660 | 1287 |
begin |
1288 |
dec(t, HealthTagTex^.h + 2); |
|
1289 |
DrawCentered(hwRound(Gear^.X) + WorldDx, t, HealthTagTex) |
|
1290 |
end; |
|
2568
e654cbfb23ba
Bunch of neat stuff by Smaxx. ATI check, translucent name tags to reduce terrain fail, disabling health crates on invulnerable hogs. Also tweaks to prior stuff.
nemo
parents:
2537
diff
changeset
|
1291 |
if (cTagsMasks[cTagsMaskIndex] and htName) <> 0 then |
1660 | 1292 |
begin |
1293 |
dec(t, NameTagTex^.h + 2); |
|
1294 |
DrawCentered(hwRound(Gear^.X) + WorldDx, t, NameTagTex) |
|
1295 |
end; |
|
2568
e654cbfb23ba
Bunch of neat stuff by Smaxx. ATI check, translucent name tags to reduce terrain fail, disabling health crates on invulnerable hogs. Also tweaks to prior stuff.
nemo
parents:
2537
diff
changeset
|
1296 |
if (cTagsMasks[cTagsMaskIndex] and htTeamName) <> 0 then |
1660 | 1297 |
begin |
1298 |
dec(t, Team^.NameTagTex^.h + 2); |
|
1299 |
DrawCentered(hwRound(Gear^.X) + WorldDx, t, Team^.NameTagTex) |
|
2568
e654cbfb23ba
Bunch of neat stuff by Smaxx. ATI check, translucent name tags to reduce terrain fail, disabling health crates on invulnerable hogs. Also tweaks to prior stuff.
nemo
parents:
2537
diff
changeset
|
1300 |
end; |
e654cbfb23ba
Bunch of neat stuff by Smaxx. ATI check, translucent name tags to reduce terrain fail, disabling health crates on invulnerable hogs. Also tweaks to prior stuff.
nemo
parents:
2537
diff
changeset
|
1301 |
if (cTagsMasks[cTagsMaskIndex] and htTransparent) <> 0 then |
e654cbfb23ba
Bunch of neat stuff by Smaxx. ATI check, translucent name tags to reduce terrain fail, disabling health crates on invulnerable hogs. Also tweaks to prior stuff.
nemo
parents:
2537
diff
changeset
|
1302 |
glColor4f(1, 1, 1, 1) |
958 | 1303 |
end; |
994 | 1304 |
if (Gear^.State and gstHHDriven) <> 0 then // Current hedgehog |
958 | 1305 |
begin |
1306 |
if bShowFinger and ((Gear^.State and gstHHDriven) <> 0) then |
|
1307 |
DrawSprite(sprFinger, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 64 + WorldDy, |
|
1308 |
GameTicks div 32 mod 16); |
|
821
e6c0408b54ed
Use 'regular standing' and 'rope swing' hedgehog sprites
unc0rr
parents:
815
diff
changeset
|
1309 |
|
958 | 1310 |
if (Gear^.State and gstDrowning) = 0 then |
1311 |
if (Gear^.State and gstHHThinking) <> 0 then |
|
1312 |
DrawSprite(sprQuestion, hwRound(Gear^.X) - 10 + WorldDx, hwRound(Gear^.Y) - cHHRadius - 34 + WorldDy, 0) |
|
2028 | 1313 |
end |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1314 |
end; |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1315 |
|
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1316 |
if Gear^.Invulnerable then |
2017 | 1317 |
begin |
2428 | 1318 |
glColor4f(1, 1, 1, 0.25 + abs(1 - ((RealTicks div 2) mod 1500) / 750)); |
1319 |
DrawSprite(sprInvulnerable, sx - 24, sy - 24, 0); |
|
1320 |
glColor4f(1, 1, 1, 1); |
|
2017 | 1321 |
end; |
1322 |
if cVampiric and |
|
2376 | 1323 |
(CurrentHedgehog^.Gear <> nil) and |
2017 | 1324 |
(CurrentHedgehog^.Gear = Gear) then |
1325 |
begin |
|
2428 | 1326 |
glColor4f(1, 1, 1, 0.25 + abs(1 - (RealTicks mod 1500) / 750)); |
2017 | 1327 |
DrawSprite(sprVampiric, sx - 24, sy - 24, 0); |
2428 | 1328 |
glColor4f(1, 1, 1, 1); |
2017 | 1329 |
end; |
292 | 1330 |
end; |
1331 |
||
2362 | 1332 |
procedure DrawRopeLinesRQ(Gear: PGear); |
1333 |
begin |
|
1334 |
with RopePoints do |
|
2365 | 1335 |
begin |
1336 |
rounded[Count].X:= hwRound(Gear^.X); |
|
1337 |
rounded[Count].Y:= hwRound(Gear^.Y); |
|
1338 |
rounded[Count + 1].X:= hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.X); |
|
1339 |
rounded[Count + 1].Y:= hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.Y); |
|
1340 |
end; |
|
2362 | 1341 |
|
2365 | 1342 |
if (RopePoints.Count > 0) or (Gear^.Elasticity.QWordValue > 0) then |
2362 | 1343 |
begin |
1344 |
glDisable(GL_TEXTURE_2D); |
|
2366
b38efe489615
Disable smoothing and alpha for low quality rope rendering
unc0rr
parents:
2365
diff
changeset
|
1345 |
//glEnable(GL_LINE_SMOOTH); |
2365 | 1346 |
|
1347 |
glPushMatrix; |
|
1348 |
||
1349 |
glTranslatef(WorldDx, WorldDy, 0); |
|
2376 | 1350 |
|
2362 | 1351 |
glLineWidth(4.0); |
1352 |
||
2391 | 1353 |
glColor4f(0.8, 0.8, 0.8, 1); |
2362 | 1354 |
|
1355 |
glEnableClientState(GL_VERTEX_ARRAY); |
|
2390 | 1356 |
glVertexPointer(2, GL_FLOAT, 0, @RopePoints.rounded[0]); |
2365 | 1357 |
glDrawArrays(GL_LINE_STRIP, 0, RopePoints.Count + 2); |
2362 | 1358 |
glColor4f(1, 1, 1, 1); |
2365 | 1359 |
|
1360 |
glPopMatrix; |
|
2376 | 1361 |
|
2362 | 1362 |
glEnable(GL_TEXTURE_2D); |
2366
b38efe489615
Disable smoothing and alpha for low quality rope rendering
unc0rr
parents:
2365
diff
changeset
|
1363 |
//glDisable(GL_LINE_SMOOTH) |
2362 | 1364 |
end |
1365 |
end; |
|
1366 |
||
1367 |
procedure DrawRope(Gear: PGear); |
|
1368 |
var roplen: LongInt; |
|
2407
9f413bd5150e
- Fix mouse cursor bugs in net game (still has a bug near water)
unc0rr
parents:
2391
diff
changeset
|
1369 |
i: Longword; |
2362 | 1370 |
|
1371 |
procedure DrawRopeLine(X1, Y1, X2, Y2: LongInt); |
|
1372 |
var eX, eY, dX, dY: LongInt; |
|
1373 |
i, sX, sY, x, y, d: LongInt; |
|
1374 |
b: boolean; |
|
1375 |
begin |
|
1376 |
if (X1 = X2) and (Y1 = Y2) then |
|
1377 |
begin |
|
1378 |
//OutError('WARNING: zero length rope line!', false); |
|
1379 |
exit |
|
1380 |
end; |
|
1381 |
eX:= 0; |
|
1382 |
eY:= 0; |
|
1383 |
dX:= X2 - X1; |
|
1384 |
dY:= Y2 - Y1; |
|
1385 |
||
1386 |
if (dX > 0) then sX:= 1 |
|
1387 |
else |
|
1388 |
if (dX < 0) then |
|
1389 |
begin |
|
1390 |
sX:= -1; |
|
1391 |
dX:= -dX |
|
1392 |
end else sX:= dX; |
|
1393 |
||
1394 |
if (dY > 0) then sY:= 1 |
|
1395 |
else |
|
1396 |
if (dY < 0) then |
|
1397 |
begin |
|
1398 |
sY:= -1; |
|
1399 |
dY:= -dY |
|
1400 |
end else sY:= dY; |
|
1401 |
||
1402 |
if (dX > dY) then d:= dX |
|
1403 |
else d:= dY; |
|
1404 |
||
1405 |
x:= X1; |
|
1406 |
y:= Y1; |
|
1407 |
||
1408 |
for i:= 0 to d do |
|
1409 |
begin |
|
1410 |
inc(eX, dX); |
|
1411 |
inc(eY, dY); |
|
1412 |
b:= false; |
|
1413 |
if (eX > d) then |
|
1414 |
begin |
|
1415 |
dec(eX, d); |
|
1416 |
inc(x, sX); |
|
1417 |
b:= true |
|
1418 |
end; |
|
1419 |
if (eY > d) then |
|
1420 |
begin |
|
1421 |
dec(eY, d); |
|
1422 |
inc(y, sY); |
|
1423 |
b:= true |
|
1424 |
end; |
|
1425 |
if b then |
|
1426 |
begin |
|
1427 |
inc(roplen); |
|
1428 |
if (roplen mod 4) = 0 then DrawSprite(sprRopeNode, x - 2, y - 2, 0) |
|
1429 |
end |
|
1430 |
end |
|
1431 |
end; |
|
1432 |
begin |
|
1433 |
if cReducedQuality then |
|
1434 |
DrawRopeLinesRQ(Gear) |
|
1435 |
else |
|
1436 |
begin |
|
1437 |
roplen:= 0; |
|
1438 |
if RopePoints.Count > 0 then |
|
1439 |
begin |
|
1440 |
i:= 0; |
|
1441 |
while i < Pred(RopePoints.Count) do |
|
1442 |
begin |
|
1443 |
DrawRopeLine(hwRound(RopePoints.ar[i].X) + WorldDx, hwRound(RopePoints.ar[i].Y) + WorldDy, |
|
1444 |
hwRound(RopePoints.ar[Succ(i)].X) + WorldDx, hwRound(RopePoints.ar[Succ(i)].Y) + WorldDy); |
|
1445 |
inc(i) |
|
1446 |
end; |
|
1447 |
DrawRopeLine(hwRound(RopePoints.ar[i].X) + WorldDx, hwRound(RopePoints.ar[i].Y) + WorldDy, |
|
1448 |
hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy); |
|
1449 |
DrawRopeLine(hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, |
|
1450 |
hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.X) + WorldDx, hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.Y) + WorldDy); |
|
1451 |
end else |
|
1452 |
if Gear^.Elasticity.QWordValue > 0 then |
|
1453 |
DrawRopeLine(hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, |
|
1454 |
hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.X) + WorldDx, hwRound(PHedgehog(Gear^.Hedgehog)^.Gear^.Y) + WorldDy); |
|
1455 |
end; |
|
1456 |
||
1457 |
||
1458 |
if RopePoints.Count > 0 then |
|
1459 |
DrawRotated(sprRopeHook, hwRound(RopePoints.ar[0].X) + WorldDx, hwRound(RopePoints.ar[0].Y) + WorldDy, 1, RopePoints.HookAngle) |
|
1460 |
else |
|
1461 |
if Gear^.Elasticity.QWordValue > 0 then |
|
1462 |
DrawRotated(sprRopeHook, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
|
1463 |
end; |
|
1464 |
||
956 | 1465 |
procedure DrawGears; |
853 | 1466 |
var Gear, HHGear: PGear; |
4 | 1467 |
i: Longword; |
1468 |
begin |
|
1469 |
Gear:= GearsList; |
|
1470 |
while Gear<>nil do |
|
1689 | 1471 |
begin |
1472 |
case Gear^.Kind of |
|
822 | 1473 |
gtAmmo_Bomb: DrawRotated(sprBomb, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, Gear^.DirAngle); |
2457
ecf0c7e7995b
Initial molotov cocktail. Still needs graphics, tweaking of fire behaviour. Also changed probabilities for default weapon sets
nemo
parents:
2455
diff
changeset
|
1474 |
gtMolotov: DrawRotated(sprMolotov, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, Gear^.DirAngle); |
1689 | 1475 |
|
2428 | 1476 |
gtRCPlane: begin |
1477 |
if (Gear^.Tag = -1) then |
|
1689 | 1478 |
DrawRotated(sprPlane, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, -1, DxDy2Angle(Gear^.dX, Gear^.dY) + 90) |
1479 |
else |
|
1480 |
DrawRotated(sprPlane, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy,0,DxDy2Angle(Gear^.dY, Gear^.dX)); |
|
2428 | 1481 |
if ((TrainingFlags and tfRCPlane) <> 0) and (TrainingTargetGear <> nil) and ((Gear^.State and gstDrowning) = 0) then |
1482 |
DrawRotatedf(sprFinger, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, GameTicks div 32 mod 16, 0, DxDy2Angle(Gear^.X - TrainingTargetGear^.X, TrainingTargetGear^.Y - Gear^.Y)); |
|
1483 |
end; |
|
1601 | 1484 |
gtBall: DrawRotatedf(sprBalls, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, Gear^.Tag,0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
2376 | 1485 |
|
1573 | 1486 |
gtDrill: DrawRotated(sprDrill, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
2376 | 1487 |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1488 |
gtHedgehog: DrawHH(Gear); |
2376 | 1489 |
|
822 | 1490 |
gtAmmo_Grenade: DrawRotated(sprGrenade, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
2376 | 1491 |
|
1505 | 1492 |
gtHealthTag: if Gear^.Tex <> nil then DrawCentered(hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, Gear^.Tex); |
2017 | 1493 |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1494 |
gtGrave: DrawSurfSprite(hwRound(Gear^.X) + WorldDx - 16, hwRound(Gear^.Y) + WorldDy - 16, 32, (GameTicks shr 7) and 7, PHedgehog(Gear^.Hedgehog)^.Team^.GraveTex); |
2376 | 1495 |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1496 |
gtUFO: DrawSprite(sprUFO, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 16 + WorldDy, (GameTicks shr 7) mod 4); |
2376 | 1497 |
|
848 | 1498 |
gtPickHammer: DrawSprite(sprPHammer, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 50 + LongInt(((GameTicks shr 5) and 1) * 2) + WorldDy, 0); |
2362 | 1499 |
gtRope: DrawRope(Gear); |
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1500 |
gtSmokeTrace: if Gear^.State < 8 then DrawSprite(sprSmokeTrace, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, Gear^.State); |
1012 | 1501 |
gtExplosion: DrawSprite(sprExplosion50, hwRound(Gear^.X) - 32 + WorldDx, hwRound(Gear^.Y) - 32 + WorldDy, Gear^.State); |
351 | 1502 |
gtMine: if ((Gear^.State and gstAttacking) = 0)or((Gear^.Timer and $3FF) < 420) |
822 | 1503 |
then DrawRotated(sprMineOff, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, Gear^.DirAngle) |
1504 |
else DrawRotated(sprMineOn, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, Gear^.DirAngle); |
|
351 | 1505 |
gtCase: case Gear^.Pos of |
1794 | 1506 |
posCaseAmmo : begin |
1507 |
i:= (GameTicks shr 6) mod 64; |
|
1508 |
if i > 18 then i:= 0; |
|
1509 |
DrawSprite(sprCase, hwRound(Gear^.X) - 24 + WorldDx, hwRound(Gear^.Y) - 24 + WorldDy, i); |
|
1510 |
end; |
|
1009 | 1511 |
posCaseHealth: begin |
1863 | 1512 |
i:= ((GameTicks shr 6) + 38) mod 64; |
1513 |
if i > 13 then i:= 0; |
|
1009 | 1514 |
DrawSprite(sprFAid, hwRound(Gear^.X) - 24 + WorldDx, hwRound(Gear^.Y) - 24 + WorldDy, i); |
1515 |
end; |
|
1861 | 1516 |
posCaseUtility: begin |
1863 | 1517 |
i:= (GameTicks shr 6) mod 70; |
1518 |
if i > 23 then i:= 0; |
|
1909 | 1519 |
i:= i mod 12; |
1863 | 1520 |
DrawSprite(sprUtility, hwRound(Gear^.X) - 24 + WorldDx, hwRound(Gear^.Y) - 24 + WorldDy, i); |
1861 | 1521 |
end; |
42 | 1522 |
end; |
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1523 |
gtDynamite: DrawSprite2(sprDynamite, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 25 + WorldDy, Gear^.Tag and 1, Gear^.Tag shr 1); |
822 | 1524 |
gtClusterBomb: DrawRotated(sprClusterBomb, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, Gear^.DirAngle); |
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1525 |
gtCluster: DrawSprite(sprClusterParticle, hwRound(Gear^.X) - 8 + WorldDx, hwRound(Gear^.Y) - 8 + WorldDy, 0); |
2455
cc54dd148cc2
Remove sheepluva's simple 45 deg bouncing from r2472, add various flame sizes for Tiy
nemo
parents:
2451
diff
changeset
|
1526 |
gtFlame: DrawTextureF(SpritesData[sprFlame].Texture, 1 / (Gear^.Tag mod 3 + 2), hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, (GameTicks div 128 + LongWord(Gear^.Tag)) mod 8, 1, 8); |
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1527 |
gtParachute: DrawSprite(sprParachute, hwRound(Gear^.X) - 24 + WorldDx, hwRound(Gear^.Y) - 48 + WorldDy, 0); |
2168 | 1528 |
gtAirAttack: if Gear^.Tag > 0 then DrawSprite(sprAirplane, hwRound(Gear^.X) - SpritesData[sprAirplane].Width div 2 + WorldDx, hwRound(Gear^.Y) - SpritesData[sprAirplane].Height div 2 + WorldDy, 0) |
1529 |
else DrawSprite(sprAirplane, hwRound(Gear^.X) - SpritesData[sprAirplane].Width div 2 + WorldDx, hwRound(Gear^.Y) - SpritesData[sprAirplane].Height div 2 + WorldDy, 1); |
|
822 | 1530 |
gtAirBomb: DrawRotated(sprAirBomb, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
853 | 1531 |
gtTeleport: begin |
1532 |
HHGear:= PHedgehog(Gear^.Hedgehog)^.Gear; |
|
2762
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2760
diff
changeset
|
1533 |
if not PHedgehog(Gear^.Hedgehog)^.Unplaced then DrawRotatedF(sprTeleport, hwRound(Gear^.X) + 1 + WorldDx, hwRound(Gear^.Y) - 3 + WorldDy, Gear^.Pos, hwSign(HHGear^.dX), 0); |
853 | 1534 |
DrawRotatedF(sprTeleport, hwRound(HHGear^.X) + 1 + WorldDx, hwRound(HHGear^.Y) - 3 + WorldDy, 11 - Gear^.Pos, hwSign(HHGear^.dX), 0); |
1535 |
end; |
|
841
0700e3d3474d
Get rid if deprecated Surface parameter of Draw* calls
unc0rr
parents:
840
diff
changeset
|
1536 |
gtSwitcher: DrawSprite(sprSwitch, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 56 + WorldDy, (GameTicks shr 6) mod 12); |
2460 | 1537 |
gtTarget: begin |
1538 |
glColor4f(1, 1, 1, Gear^.Timer / 1000); |
|
1539 |
DrawSprite(sprTarget, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 16 + WorldDy, 0); |
|
1540 |
glColor4f(1, 1, 1, 1); |
|
1541 |
end; |
|
959 | 1542 |
gtMortar: DrawRotated(sprMortar, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, DxDy2Angle(Gear^.dY, Gear^.dX)); |
1108 | 1543 |
gtCake: if Gear^.Pos = 6 then |
2025
692308790912
Adjust routines impacted by DrawRotatedF modification, clear gstHHHJump in rope to avoid crosshair/hat drawing bug.
nemo
parents:
2023
diff
changeset
|
1544 |
DrawRotatedf(sprCakeWalk, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, (GameTicks div 40) mod 6, hwSign(Gear^.dX), Gear^.DirAngle * hwSign(Gear^.dX) + 90) |
1108 | 1545 |
else |
1262 | 1546 |
DrawRotatedf(sprCakeDown, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 5 - Gear^.Pos, hwSign(Gear^.dX), 0); |
1367 | 1547 |
gtSeduction: if Gear^.Pos >= 14 then DrawSprite(sprSeduction, hwRound(Gear^.X) - 16 + WorldDx, hwRound(Gear^.Y) - 16 + WorldDy, 0); |
1262 | 1548 |
gtWatermelon: DrawRotatedf(sprWatermelon, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, 0, Gear^.DirAngle); |
1549 |
gtMelonPiece: DrawRotatedf(sprWatermelon, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 1, 0, Gear^.DirAngle); |
|
1263 | 1550 |
gtHellishBomb: DrawRotated(sprHellishBomb, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, 0, Gear^.DirAngle); |
1551 |
gtEvilTrace: if Gear^.State < 8 then DrawSprite(sprEvilTrace, hwRound(Gear^.X) + WorldDx, hwRound(Gear^.Y) + WorldDy, Gear^.State); |
|
1552 |
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
|
1553 |
if Gear^.RenderTimer and (Gear^.Tex <> nil) then DrawCentered(hwRound(Gear^.X) + 8 + WorldDx, hwRound(Gear^.Y) + 8 + WorldDy, Gear^.Tex); |
351 | 1554 |
Gear:= Gear^.NextGear |
4 | 1555 |
end; |
1556 |
end; |
|
1557 |
||
1558 |
procedure FreeGearsList; |
|
1559 |
var t, tt: PGear; |
|
1560 |
begin |
|
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
1561 |
tt:= GearsList; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
1562 |
GearsList:= nil; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
1563 |
while tt <> nil do |
1505 | 1564 |
begin |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
1565 |
t:= tt; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
1566 |
tt:= tt^.NextGear; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
1567 |
Dispose(t) |
1505 | 1568 |
end; |
4 | 1569 |
end; |
1570 |
||
10 | 1571 |
procedure AddMiscGears; |
371 | 1572 |
var i: LongInt; |
1515 | 1573 |
Gear: PGear; |
4 | 1574 |
begin |
498 | 1575 |
AddGear(0, 0, gtATStartGame, 0, _0, _0, 2000); |
1435
d4b32ee3caa6
Fix using freed memory (could be the cause of queue error problem and other bugs)
unc0rr
parents:
1434
diff
changeset
|
1576 |
|
2428 | 1577 |
if (TrainingFlags and tfSpawnTargets) <> 0 then |
1578 |
begin |
|
1579 |
TrainingTargetGear:= AddGear(0, 0, gtTarget, 0, _0, _0, 0); |
|
1580 |
FindPlace(TrainingTargetGear, false, 0, LAND_WIDTH); |
|
1581 |
end; |
|
1582 |
||
1895 | 1583 |
if ((GameFlags and gfForts) = 0) and ((GameFlags and gfMines) <> 0) then |
1435
d4b32ee3caa6
Fix using freed memory (could be the cause of queue error problem and other bugs)
unc0rr
parents:
1434
diff
changeset
|
1584 |
for i:= 0 to Pred(cLandAdditions) do |
1515 | 1585 |
begin |
1586 |
Gear:= AddGear(0, 0, gtMine, 0, _0, _0, 0); |
|
2333 | 1587 |
Gear^.TriggerId:= i + 1; |
1588 |
FindPlace(Gear, false, 0, LAND_WIDTH); |
|
1589 |
{ if(Gear <> nil) then |
|
1590 |
ParseCommand('addtrig s' + inttostr(Gear^.TriggerId) + ' 1 5 11 ' + |
|
1591 |
inttostr(hwRound(Gear^.X)) + ' ' + inttostr(hwRound(Gear^.Y)) + |
|
1592 |
' ' + inttostr(Gear^.TriggerId), true); |
|
1593 |
} end; |
|
1895 | 1594 |
|
1595 |
if (GameFlags and gfLowGravity) <> 0 then |
|
1596 |
cGravity:= cMaxWindSpeed / 2; |
|
1597 |
||
2017 | 1598 |
if (GameFlags and gfVampiric) <> 0 then |
1599 |
cVampiric:= true; |
|
1600 |
||
1895 | 1601 |
Gear:= GearsList; |
1602 |
if (GameFlags and gfInvulnerable) <> 0 then |
|
1603 |
while Gear <> nil do |
|
1604 |
begin |
|
1605 |
Gear^.Invulnerable:= true; // this is only checked on hogs right now, so no need for gear type check |
|
1606 |
Gear:= Gear^.NextGear |
|
1607 |
end; |
|
1608 |
||
1609 |
if (GameFlags and gfLaserSight) <> 0 then |
|
2023
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
1610 |
cLaserSighting:= true; |
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
1611 |
|
41d3afaa20c7
Artillery mode, sniper rifle, speech bubble tweaks, fix of rope bug introduced by enabling hats in jump
nemo
parents:
2020
diff
changeset
|
1612 |
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
|
1613 |
cArtillery:= true |
4 | 1614 |
end; |
1615 |
||
371 | 1616 |
procedure doMakeExplosion(X, Y, Radius: LongInt; Mask: LongWord); |
4 | 1617 |
var Gear: PGear; |
506 | 1618 |
dmg, dmgRadius: LongInt; |
4 | 1619 |
begin |
1620 |
TargetPoint.X:= NoPointX; |
|
1434 | 1621 |
{$IFDEF DEBUGFILE}if Radius > 4 then AddFileLog('Explosion: at (' + inttostr(x) + ',' + inttostr(y) + ')');{$ENDIF} |
1049 | 1622 |
if (Radius > 10) then AddGear(X, Y, gtExplosion, 0, _0, _0, 0); |
2745 | 1623 |
if (Mask and EXPLAutoSound) <> 0 then PlaySound(sndExplosion); |
1433 | 1624 |
|
1625 |
if (Mask and EXPLAllDamageInRadius) = 0 then |
|
1626 |
dmgRadius:= Radius shl 1 |
|
1627 |
else |
|
1628 |
dmgRadius:= Radius; |
|
1629 |
||
4 | 1630 |
Gear:= GearsList; |
1631 |
while Gear <> nil do |
|
1200 | 1632 |
begin |
1633 |
dmg:= dmgRadius + cHHRadius div 2 - hwRound(Distance(Gear^.X - int2hwFloat(X), Gear^.Y - int2hwFloat(Y))); |
|
1634 |
if (dmg > 1) and |
|
1635 |
((Gear^.State and gstNoDamage) = 0) then |
|
1636 |
begin |
|
2726 | 1637 |
dmg:= ModifyDamage(min(dmg div 2, Radius), Gear); |
1200 | 1638 |
case Gear^.Kind of |
1639 |
gtHedgehog, |
|
1640 |
gtMine, |
|
1641 |
gtCase, |
|
1642 |
gtTarget, |
|
1643 |
gtFlame: begin |
|
1346 | 1644 |
//{$IFDEF DEBUGFILE}AddFileLog('Damage: ' + inttostr(dmg));{$ENDIF} |
1200 | 1645 |
if (Mask and EXPLNoDamage) = 0 then |
1646 |
begin |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1647 |
if not Gear^.Invulnerable then |
2017 | 1648 |
ApplyDamage(Gear, dmg) |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1649 |
else |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1650 |
Gear^.State:= Gear^.State or gstWinner; |
1200 | 1651 |
end; |
1652 |
if ((Mask and EXPLDoNotTouchHH) = 0) or (Gear^.Kind <> gtHedgehog) then |
|
1653 |
begin |
|
1654 |
DeleteCI(Gear); |
|
1655 |
Gear^.dX:= Gear^.dX + SignAs(_0_005 * dmg + cHHKick, Gear^.X - int2hwFloat(X)); |
|
1656 |
Gear^.dY:= Gear^.dY + SignAs(_0_005 * dmg + cHHKick, Gear^.Y - int2hwFloat(Y)); |
|
1868 | 1657 |
Gear^.State:= (Gear^.State or gstMoving) and (not gstLoser); |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1658 |
if not Gear^.Invulnerable then |
1868 | 1659 |
Gear^.State:= (Gear^.State or gstMoving) and (not gstWinner); |
1200 | 1660 |
Gear^.Active:= true; |
1661 |
FollowGear:= Gear |
|
1662 |
end; |
|
1663 |
end; |
|
1664 |
gtGrave: begin |
|
1665 |
Gear^.dY:= - _0_004 * dmg; |
|
1666 |
Gear^.Active:= true; |
|
1667 |
end; |
|
1668 |
end; |
|
1669 |
end; |
|
1670 |
Gear:= Gear^.NextGear |
|
1671 |
end; |
|
1672 |
||
621 | 1673 |
if (Mask and EXPLDontDraw) = 0 then |
1200 | 1674 |
if (GameFlags and gfSolidLand) = 0 then DrawExplosion(X, Y, Radius); |
1675 |
||
498 | 1676 |
uAIMisc.AwareOfExplosion(0, 0, 0) |
4 | 1677 |
end; |
1678 |
||
506 | 1679 |
procedure ShotgunShot(Gear: PGear); |
1680 |
var t: PGear; |
|
955 | 1681 |
dmg: LongInt; |
506 | 1682 |
begin |
509 | 1683 |
Gear^.Radius:= cShotgunRadius; |
506 | 1684 |
t:= GearsList; |
1685 |
while t <> nil do |
|
1286 | 1686 |
begin |
2729 | 1687 |
dmg:= ModifyDamage(min(Gear^.Radius + t^.Radius - hwRound(Distance(Gear^.X - t^.X, Gear^.Y - t^.Y)), 25), t); |
1286 | 1688 |
if dmg > 0 then |
1689 |
case t^.Kind of |
|
1690 |
gtHedgehog, |
|
1691 |
gtMine, |
|
1692 |
gtCase, |
|
1693 |
gtTarget: begin |
|
1854 | 1694 |
if (not t^.Invulnerable) then |
2017 | 1695 |
ApplyDamage(t, dmg) |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1696 |
else |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1697 |
Gear^.State:= Gear^.State or gstWinner; |
867 | 1698 |
|
1286 | 1699 |
DeleteCI(t); |
1700 |
t^.dX:= t^.dX + Gear^.dX * dmg * _0_01 + SignAs(cHHKick, Gear^.dX); |
|
1701 |
t^.dY:= t^.dY + Gear^.dY * dmg * _0_01; |
|
1702 |
t^.State:= t^.State or gstMoving; |
|
1703 |
t^.Active:= true; |
|
1704 |
FollowGear:= t |
|
1705 |
end; |
|
1706 |
gtGrave: begin |
|
1707 |
t^.dY:= - _0_1; |
|
1708 |
t^.Active:= true |
|
1709 |
end; |
|
1710 |
end; |
|
1711 |
t:= t^.NextGear |
|
1712 |
end; |
|
621 | 1713 |
if (GameFlags and gfSolidLand) = 0 then DrawExplosion(hwRound(Gear^.X), hwRound(Gear^.Y), cShotgunRadius) |
506 | 1714 |
end; |
1715 |
||
371 | 1716 |
procedure AmmoShove(Ammo: PGear; Damage, Power: LongInt); |
53 | 1717 |
var t: PGearArray; |
2424
b52344de23ae
In progress, trying to make a fire for molotov cocktail. Normal fire should still work fairly normally.
nemo
parents:
2407
diff
changeset
|
1718 |
Gear: PGear; |
2726 | 1719 |
i, tmpDmg: LongInt; |
38 | 1720 |
begin |
53 | 1721 |
t:= CheckGearsCollision(Ammo); |
351 | 1722 |
i:= t^.Count; |
1506 | 1723 |
|
2489 | 1724 |
if (Ammo^.Kind = gtFlame) and (i > 0) then Ammo^.Health:= 0; |
53 | 1725 |
while i > 0 do |
981 | 1726 |
begin |
1727 |
dec(i); |
|
2428 | 1728 |
Gear:= t^.ar[i]; |
2726 | 1729 |
tmpDmg:= ModifyDamage(Damage, Gear); |
2428 | 1730 |
if (Gear^.State and gstNoDamage) = 0 then |
1731 |
begin |
|
2492
9e80b7fc4017
Tweak of molotov based on burp's play, a little bit more specificity in homerun.
nemo
parents:
2491
diff
changeset
|
1732 |
if (Gear^.Kind = gtHedgehog) and (Ammo^.State and gsttmpFlag <> 0) and (Ammo^.Kind = gtShover) then Gear^.FlightTime:= 1; |
2428 | 1733 |
|
1734 |
case Gear^.Kind of |
|
981 | 1735 |
gtHedgehog, |
1736 |
gtMine, |
|
1737 |
gtTarget, |
|
1738 |
gtCase: begin |
|
1573 | 1739 |
if (Ammo^.Kind = gtDrill) then begin Ammo^.Timer:= 0; exit; end; |
2424
b52344de23ae
In progress, trying to make a fire for molotov cocktail. Normal fire should still work fairly normally.
nemo
parents:
2407
diff
changeset
|
1740 |
if (not Gear^.Invulnerable) then |
2726 | 1741 |
ApplyDamage(Gear, tmpDmg) |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1742 |
else |
2424
b52344de23ae
In progress, trying to make a fire for molotov cocktail. Normal fire should still work fairly normally.
nemo
parents:
2407
diff
changeset
|
1743 |
Gear^.State:= Gear^.State or gstWinner; |
867 | 1744 |
|
2424
b52344de23ae
In progress, trying to make a fire for molotov cocktail. Normal fire should still work fairly normally.
nemo
parents:
2407
diff
changeset
|
1745 |
DeleteCI(Gear); |
2728
640916bedea7
Adjust king movement in ammoshove, give king a damage bonus
nemo
parents:
2726
diff
changeset
|
1746 |
if (Gear^.Kind = gtHedgehog) and PHedgehog(Gear^.Hedgehog)^.King then |
640916bedea7
Adjust king movement in ammoshove, give king a damage bonus
nemo
parents:
2726
diff
changeset
|
1747 |
begin |
640916bedea7
Adjust king movement in ammoshove, give king a damage bonus
nemo
parents:
2726
diff
changeset
|
1748 |
Gear^.dX:= Ammo^.dX * Power * _0_005; |
640916bedea7
Adjust king movement in ammoshove, give king a damage bonus
nemo
parents:
2726
diff
changeset
|
1749 |
Gear^.dY:= Ammo^.dY * Power * _0_005 |
640916bedea7
Adjust king movement in ammoshove, give king a damage bonus
nemo
parents:
2726
diff
changeset
|
1750 |
end |
640916bedea7
Adjust king movement in ammoshove, give king a damage bonus
nemo
parents:
2726
diff
changeset
|
1751 |
else |
640916bedea7
Adjust king movement in ammoshove, give king a damage bonus
nemo
parents:
2726
diff
changeset
|
1752 |
begin |
640916bedea7
Adjust king movement in ammoshove, give king a damage bonus
nemo
parents:
2726
diff
changeset
|
1753 |
Gear^.dX:= Ammo^.dX * Power * _0_01; |
640916bedea7
Adjust king movement in ammoshove, give king a damage bonus
nemo
parents:
2726
diff
changeset
|
1754 |
Gear^.dY:= Ammo^.dY * Power * _0_01 |
640916bedea7
Adjust king movement in ammoshove, give king a damage bonus
nemo
parents:
2726
diff
changeset
|
1755 |
end; |
640916bedea7
Adjust king movement in ammoshove, give king a damage bonus
nemo
parents:
2726
diff
changeset
|
1756 |
|
2424
b52344de23ae
In progress, trying to make a fire for molotov cocktail. Normal fire should still work fairly normally.
nemo
parents:
2407
diff
changeset
|
1757 |
Gear^.Active:= true; |
b52344de23ae
In progress, trying to make a fire for molotov cocktail. Normal fire should still work fairly normally.
nemo
parents:
2407
diff
changeset
|
1758 |
Gear^.State:= Gear^.State or gstMoving; |
867 | 1759 |
|
2424
b52344de23ae
In progress, trying to make a fire for molotov cocktail. Normal fire should still work fairly normally.
nemo
parents:
2407
diff
changeset
|
1760 |
if TestCollisionXwithGear(Gear, hwSign(Gear^.dX)) then |
981 | 1761 |
begin |
2424
b52344de23ae
In progress, trying to make a fire for molotov cocktail. Normal fire should still work fairly normally.
nemo
parents:
2407
diff
changeset
|
1762 |
if not (TestCollisionXwithXYShift(Gear, _0, -3, hwSign(Gear^.dX)) |
b52344de23ae
In progress, trying to make a fire for molotov cocktail. Normal fire should still work fairly normally.
nemo
parents:
2407
diff
changeset
|
1763 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
b52344de23ae
In progress, trying to make a fire for molotov cocktail. Normal fire should still work fairly normally.
nemo
parents:
2407
diff
changeset
|
1764 |
if not (TestCollisionXwithXYShift(Gear, _0, -2, hwSign(Gear^.dX)) |
b52344de23ae
In progress, trying to make a fire for molotov cocktail. Normal fire should still work fairly normally.
nemo
parents:
2407
diff
changeset
|
1765 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
b52344de23ae
In progress, trying to make a fire for molotov cocktail. Normal fire should still work fairly normally.
nemo
parents:
2407
diff
changeset
|
1766 |
if not (TestCollisionXwithXYShift(Gear, _0, -1, hwSign(Gear^.dX)) |
b52344de23ae
In progress, trying to make a fire for molotov cocktail. Normal fire should still work fairly normally.
nemo
parents:
2407
diff
changeset
|
1767 |
or TestCollisionYwithGear(Gear, -1)) then Gear^.Y:= Gear^.Y - _1; |
981 | 1768 |
end; |
2424
b52344de23ae
In progress, trying to make a fire for molotov cocktail. Normal fire should still work fairly normally.
nemo
parents:
2407
diff
changeset
|
1769 |
|
2537
aceebf0653f7
Disable followgear on ammoshove for napalm fire damage
nemo
parents:
2492
diff
changeset
|
1770 |
if (Ammo^.Kind <> gtFlame) or ((Ammo^.State and gsttmpFlag) = 0) then FollowGear:= Gear |
981 | 1771 |
end; |
1772 |
end |
|
2428 | 1773 |
end; |
981 | 1774 |
end; |
2424
b52344de23ae
In progress, trying to make a fire for molotov cocktail. Normal fire should still work fairly normally.
nemo
parents:
2407
diff
changeset
|
1775 |
if i <> 0 then SetAllToActive |
38 | 1776 |
end; |
1777 |
||
4 | 1778 |
procedure AssignHHCoords; |
955 | 1779 |
var i, t, p, j: LongInt; |
1760 | 1780 |
ar: array[0..Pred(cMaxHHs)] of PHedgehog; |
1781 |
Count: Longword; |
|
4 | 1782 |
begin |
2771
477957a89881
Override both hog placements, this makes divide teams pretty much useless with hog placement mode. Restricting hog placement to one side might be a nice addition.
nemo
parents:
2770
diff
changeset
|
1783 |
if (GameFlags and gfPlaceHog) <> 0 then PlacingHogs:= true; |
1428 | 1784 |
if (GameFlags and (gfForts or gfDivideTeams)) <> 0 then |
955 | 1785 |
begin |
1786 |
t:= 0; |
|
1428 | 1787 |
TryDo(ClansCount = 2, 'More or less than 2 clans on map in divided teams mode!', true); |
955 | 1788 |
for p:= 0 to 1 do |
1789 |
begin |
|
1790 |
with ClansArray[p]^ do |
|
1791 |
for j:= 0 to Pred(TeamsNumber) do |
|
1792 |
with Teams[j]^ do |
|
1793 |
for i:= 0 to cMaxHHIndex do |
|
1794 |
with Hedgehogs[i] do |
|
958 | 1795 |
if (Gear <> nil) and (Gear^.X.QWordValue = 0) then |
1796 |
begin |
|
2771
477957a89881
Override both hog placements, this makes divide teams pretty much useless with hog placement mode. Restricting hog placement to one side might be a nice addition.
nemo
parents:
2770
diff
changeset
|
1797 |
if PlacingHogs then Unplaced:= true |
477957a89881
Override both hog placements, this makes divide teams pretty much useless with hog placement mode. Restricting hog placement to one side might be a nice addition.
nemo
parents:
2770
diff
changeset
|
1798 |
else FindPlace(Gear, false, t, t + LAND_WIDTH div 2);// could make Gear == nil; |
1515 | 1799 |
if Gear <> nil then |
1800 |
begin |
|
1784 | 1801 |
Gear^.Pos:= GetRandom(49); |
1515 | 1802 |
Gear^.dX.isNegative:= p = 1; |
1803 |
end |
|
958 | 1804 |
end; |
1760 | 1805 |
t:= LAND_WIDTH div 2 |
955 | 1806 |
end |
1807 |
end else // mix hedgehogs |
|
1808 |
begin |
|
1809 |
Count:= 0; |
|
1810 |
for p:= 0 to Pred(TeamsCount) do |
|
1811 |
with TeamsArray[p]^ do |
|
1812 |
begin |
|
1813 |
for i:= 0 to cMaxHHIndex do |
|
1814 |
with Hedgehogs[i] do |
|
1815 |
if (Gear <> nil) and (Gear^.X.QWordValue = 0) then |
|
1816 |
begin |
|
1515 | 1817 |
ar[Count]:= @Hedgehogs[i]; |
955 | 1818 |
inc(Count) |
1819 |
end; |
|
1820 |
end; |
|
1792 | 1821 |
// unC0Rr, while it is true user can watch value on map screen, IMO this (and check above) should be enforced in UI |
1822 |
// - is there a good place to put values for the different widgets to check? Right now they are kind of disconnected. |
|
1965 | 1823 |
//it would be nice if divide teams, forts mode and hh per map could all be checked by the team widget, or maybe disable start button |
1795 | 1824 |
TryDo(Count <= MaxHedgehogs, 'Too many hedgehogs for this map! (max # is ' + inttostr(MaxHedgehogs) + ')', true); |
955 | 1825 |
while (Count > 0) do |
1826 |
begin |
|
1827 |
i:= GetRandom(Count); |
|
2762
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2760
diff
changeset
|
1828 |
if PlacingHogs then ar[i]^.Unplaced:= true |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2760
diff
changeset
|
1829 |
else FindPlace(ar[i]^.Gear, false, 0, LAND_WIDTH); |
1515 | 1830 |
if ar[i]^.Gear <> nil then |
1831 |
begin |
|
1760 | 1832 |
ar[i]^.Gear^.dX.isNegative:= hwRound(ar[i]^.Gear^.X) > LAND_WIDTH div 2; |
1776 | 1833 |
ar[i]^.Gear^.Pos:= GetRandom(19) |
1515 | 1834 |
end; |
1776 | 1835 |
ar[i]:= ar[Count - 1]; |
955 | 1836 |
dec(Count) |
1837 |
end |
|
1838 |
end |
|
4 | 1839 |
end; |
1840 |
||
371 | 1841 |
function CheckGearNear(Gear: PGear; Kind: TGearType; rX, rY: LongInt): PGear; |
10 | 1842 |
var t: PGear; |
1843 |
begin |
|
1844 |
t:= GearsList; |
|
1845 |
rX:= sqr(rX); |
|
1846 |
rY:= sqr(rY); |
|
1433 | 1847 |
|
10 | 1848 |
while t <> nil do |
1433 | 1849 |
begin |
1850 |
if (t <> Gear) and (t^.Kind = Kind) then |
|
1851 |
if not((hwSqr(Gear^.X - t^.X) / rX + hwSqr(Gear^.Y - t^.Y) / rY) > _1) then |
|
1852 |
exit(t); |
|
1853 |
t:= t^.NextGear |
|
1854 |
end; |
|
1855 |
||
351 | 1856 |
CheckGearNear:= nil |
15 | 1857 |
end; |
1858 |
||
1433 | 1859 |
{procedure AmmoFlameWork(Ammo: PGear); |
79 | 1860 |
var t: PGear; |
1861 |
begin |
|
1862 |
t:= GearsList; |
|
1863 |
while t <> nil do |
|
1295 | 1864 |
begin |
1865 |
if (t^.Kind = gtHedgehog) and (t^.Y < Ammo^.Y) then |
|
1866 |
if not (hwSqr(Ammo^.X - t^.X) + hwSqr(Ammo^.Y - t^.Y - int2hwFloat(cHHRadius)) * 2 > _2) then |
|
1867 |
begin |
|
2017 | 1868 |
ApplyDamage(t, 5); |
1295 | 1869 |
t^.dX:= t^.dX + (t^.X - Ammo^.X) * _0_02; |
1870 |
t^.dY:= - _0_25; |
|
1871 |
t^.Active:= true; |
|
1872 |
DeleteCI(t); |
|
1873 |
FollowGear:= t |
|
1874 |
end; |
|
1875 |
t:= t^.NextGear |
|
1876 |
end; |
|
1433 | 1877 |
end;} |
79 | 1878 |
|
371 | 1879 |
function CheckGearsNear(mX, mY: LongInt; Kind: TGearsType; rX, rY: LongInt): PGear; |
16 | 1880 |
var t: PGear; |
1881 |
begin |
|
1882 |
t:= GearsList; |
|
1883 |
rX:= sqr(rX); |
|
1884 |
rY:= sqr(rY); |
|
1885 |
while t <> nil do |
|
1515 | 1886 |
begin |
1887 |
if t^.Kind in Kind then |
|
1888 |
if not (hwSqr(int2hwFloat(mX) - t^.X) / rX + hwSqr(int2hwFloat(mY) - t^.Y) / rY > _1) then |
|
1889 |
exit(t); |
|
1890 |
t:= t^.NextGear |
|
1891 |
end; |
|
351 | 1892 |
CheckGearsNear:= nil |
16 | 1893 |
end; |
1894 |
||
1895 |
function CountGears(Kind: TGearType): Longword; |
|
1896 |
var t: PGear; |
|
2695 | 1897 |
count: Longword = 0; |
16 | 1898 |
begin |
2695 | 1899 |
|
16 | 1900 |
t:= GearsList; |
1901 |
while t <> nil do |
|
1515 | 1902 |
begin |
2695 | 1903 |
if t^.Kind = Kind then inc(count); |
1515 | 1904 |
t:= t^.NextGear |
1905 |
end; |
|
2695 | 1906 |
CountGears:= count; |
16 | 1907 |
end; |
1908 |
||
15 | 1909 |
procedure SpawnBoxOfSmth; |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1910 |
var t: LongInt; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1911 |
i: TAmmoType; |
15 | 1912 |
begin |
2762
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2760
diff
changeset
|
1913 |
if (PlacingHogs) or |
2fbc8d35eb52
Mode to place hogs at start of game. Will probably need a bit more testing.
nemo
parents:
2760
diff
changeset
|
1914 |
(cCaseFactor = 0) or |
614 | 1915 |
(CountGears(gtCase) >= 5) or |
1916 |
(getrandom(cCaseFactor) <> 0) then exit; |
|
1295 | 1917 |
|
1948 | 1918 |
FollowGear:= nil; |
1919 |
||
2145 | 1920 |
if shoppa then // FIXME - TEMPORARY REMOVE WHEN CRATE PROBABILITY IS ADDED |
1966 | 1921 |
t:= 7 |
1922 |
else |
|
1923 |
t:= getrandom(20); |
|
1924 |
||
2568
e654cbfb23ba
Bunch of neat stuff by Smaxx. ATI check, translucent name tags to reduce terrain fail, disabling health crates on invulnerable hogs. Also tweaks to prior stuff.
nemo
parents:
2537
diff
changeset
|
1925 |
// avoid health crates if all hogs are invulnerable |
e654cbfb23ba
Bunch of neat stuff by Smaxx. ATI check, translucent name tags to reduce terrain fail, disabling health crates on invulnerable hogs. Also tweaks to prior stuff.
nemo
parents:
2537
diff
changeset
|
1926 |
if (t < 13) and ((GameFlags and gfInvulnerable) <> 0) then t:= t * 13 div 20 + 7; |
e654cbfb23ba
Bunch of neat stuff by Smaxx. ATI check, translucent name tags to reduce terrain fail, disabling health crates on invulnerable hogs. Also tweaks to prior stuff.
nemo
parents:
2537
diff
changeset
|
1927 |
|
1966 | 1928 |
//case getrandom(20) of |
1929 |
case t of |
|
1861 | 1930 |
0..6: begin |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1931 |
FollowGear:= AddGear(0, 0, gtCase, 0, _0, _0, 0); |
351 | 1932 |
FollowGear^.Health:= 25; |
2143
ad05f6b2d1c0
New baseball bat sound, steam when fire lands on water (needs new hiss sound), bubbles when hedgehog drowns, more messages on
nemo
parents:
2137
diff
changeset
|
1933 |
FollowGear^.Pos:= posCaseHealth; |
2619 | 1934 |
AddCaption(GetEventString(eidNewHealthPack), cWhiteColor, capgrpGameState); |
295 | 1935 |
end; |
1861 | 1936 |
7..13: begin |
394
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1937 |
t:= 0; |
4c017ae1226a
- Implement hack to let ammo stores work without needed assistance of frontend
unc0rr
parents:
393
diff
changeset
|
1938 |
for i:= Low(TAmmoType) to High(TAmmoType) do |
1861 | 1939 |
if (Ammoz[i].Ammo.Propz and ammoprop_Utility) = 0 then |
1940 |
inc(t, Ammoz[i].Probability); |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1941 |
if (t > 0) then |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1942 |
begin |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1943 |
FollowGear:= AddGear(0, 0, gtCase, 0, _0, _0, 0); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1944 |
t:= GetRandom(t); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1945 |
i:= Low(TAmmoType); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1946 |
if (Ammoz[i].Ammo.Propz and ammoprop_Utility) = 0 then |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1947 |
dec(t, Ammoz[i].Probability); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1948 |
while t >= 0 do |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1949 |
begin |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1950 |
inc(i); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1951 |
if (Ammoz[i].Ammo.Propz and ammoprop_Utility) = 0 then |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1952 |
dec(t, Ammoz[i].Probability) |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1953 |
end; |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1954 |
FollowGear^.Pos:= posCaseAmmo; |
2143
ad05f6b2d1c0
New baseball bat sound, steam when fire lands on water (needs new hiss sound), bubbles when hedgehog drowns, more messages on
nemo
parents:
2137
diff
changeset
|
1955 |
FollowGear^.State:= Longword(i); |
2619 | 1956 |
AddCaption(GetEventString(eidNewAmmoPack), cWhiteColor, capgrpGameState); |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1957 |
end |
295 | 1958 |
end; |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1959 |
14..19: begin |
1861 | 1960 |
t:= 0; |
1961 |
for i:= Low(TAmmoType) to High(TAmmoType) do |
|
1962 |
if (Ammoz[i].Ammo.Propz and ammoprop_Utility) <> 0 then |
|
1963 |
inc(t, Ammoz[i].Probability); |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1964 |
if (t > 0) then |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1965 |
begin |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1966 |
FollowGear:= AddGear(0, 0, gtCase, 0, _0, _0, 0); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1967 |
t:= GetRandom(t); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1968 |
i:= Low(TAmmoType); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1969 |
if (Ammoz[i].Ammo.Propz and ammoprop_Utility) <> 0 then |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1970 |
dec(t, Ammoz[i].Probability); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1971 |
while t >= 0 do |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1972 |
begin |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1973 |
inc(i); |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1974 |
if (Ammoz[i].Ammo.Propz and ammoprop_Utility) <> 0 then |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1975 |
dec(t, Ammoz[i].Probability) |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1976 |
end; |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1977 |
FollowGear^.Pos:= posCaseUtility; |
2143
ad05f6b2d1c0
New baseball bat sound, steam when fire lands on water (needs new hiss sound), bubbles when hedgehog drowns, more messages on
nemo
parents:
2137
diff
changeset
|
1978 |
FollowGear^.State:= Longword(i); |
2619 | 1979 |
AddCaption(GetEventString(eidNewUtilityPack), cWhiteColor, capgrpGameState); |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1980 |
end |
1861 | 1981 |
end; |
295 | 1982 |
end; |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1983 |
// handles case of no ammo or utility crates - considered also placing booleans in uAmmos and altering probabilities |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1984 |
if (FollowGear <> nil) then |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1985 |
begin |
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1986 |
FindPlace(FollowGear, true, 0, LAND_WIDTH); |
2376 | 1987 |
|
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1988 |
if (FollowGear <> nil) then |
2745 | 1989 |
PlaySound(sndReinforce, CurrentTeam^.voicepack) |
1865
ebc6dfca60d4
- nemo's patch: some animations, zero probability for infinite weapons
unc0rr
parents:
1863
diff
changeset
|
1990 |
end |
70 | 1991 |
end; |
1992 |
||
1515 | 1993 |
procedure FindPlace(var Gear: PGear; withFall: boolean; Left, Right: LongInt); |
70 | 1994 |
|
2659 | 1995 |
function CountNonZeroz(x, y, r, c: LongInt): LongInt; |
1515 | 1996 |
var i: LongInt; |
2695 | 1997 |
count: LongInt = 0; |
1515 | 1998 |
begin |
1753 | 1999 |
if (y and LAND_HEIGHT_MASK) = 0 then |
1760 | 2000 |
for i:= max(x - r, 0) to min(x + r, LAND_WIDTH - 4) do |
2659 | 2001 |
if Land[y, i] <> 0 then |
2002 |
begin |
|
2695 | 2003 |
inc(count); |
2004 |
if count = c then exit(count) |
|
2659 | 2005 |
end; |
2695 | 2006 |
CountNonZeroz:= count; |
1515 | 2007 |
end; |
70 | 2008 |
|
495 | 2009 |
var x: LongInt; |
1515 | 2010 |
y, sy: LongInt; |
2011 |
ar: array[0..511] of TPoint; |
|
2012 |
ar2: array[0..1023] of TPoint; |
|
2013 |
cnt, cnt2: Longword; |
|
2014 |
delta: LongInt; |
|
70 | 2015 |
begin |
386 | 2016 |
delta:= 250; |
2017 |
cnt2:= 0; |
|
16 | 2018 |
repeat |
1515 | 2019 |
x:= Left + LongInt(GetRandom(Delta)); |
2020 |
repeat |
|
2021 |
inc(x, Delta); |
|
2022 |
cnt:= 0; |
|
1939 | 2023 |
if topY > 1024 then |
2024 |
y:= 1024-Gear^.Radius * 2 |
|
2376 | 2025 |
else |
1939 | 2026 |
y:= topY-Gear^.Radius * 2; |
1753 | 2027 |
while y < LAND_HEIGHT do |
1515 | 2028 |
begin |
2029 |
repeat |
|
2030 |
inc(y, 2); |
|
2659 | 2031 |
until (y >= LAND_HEIGHT) or (CountNonZeroz(x, y, Gear^.Radius - 1, 1) = 0); |
2376 | 2032 |
|
1515 | 2033 |
sy:= y; |
2034 |
||
2035 |
repeat |
|
2036 |
inc(y); |
|
2659 | 2037 |
until (y >= LAND_HEIGHT) or (CountNonZeroz(x, y, Gear^.Radius - 1, 1) <> 0); |
2376 | 2038 |
|
1515 | 2039 |
if (y - sy > Gear^.Radius * 2) |
1753 | 2040 |
and (y < LAND_HEIGHT) |
2451
5affd0840927
New data files from Tiy, add gtFlame to avoidance list
nemo
parents:
2428
diff
changeset
|
2041 |
and (CheckGearsNear(x, y - Gear^.Radius, [gtFlame, gtHedgehog, gtMine, gtCase], 110, 110) = nil) then |
1515 | 2042 |
begin |
2043 |
ar[cnt].X:= x; |
|
2044 |
if withFall then ar[cnt].Y:= sy + Gear^.Radius |
|
2045 |
else ar[cnt].Y:= y - Gear^.Radius; |
|
2046 |
inc(cnt) |
|
2047 |
end; |
|
2376 | 2048 |
|
1515 | 2049 |
inc(y, 45) |
2050 |
end; |
|
2376 | 2051 |
|
1515 | 2052 |
if cnt > 0 then |
2053 |
with ar[GetRandom(cnt)] do |
|
2054 |
begin |
|
2055 |
ar2[cnt2].x:= x; |
|
2056 |
ar2[cnt2].y:= y; |
|
2057 |
inc(cnt2) |
|
2058 |
end |
|
2059 |
until (x + Delta > Right); |
|
2376 | 2060 |
|
1515 | 2061 |
dec(Delta, 60) |
386 | 2062 |
until (cnt2 > 0) or (Delta < 70); |
1515 | 2063 |
|
386 | 2064 |
if cnt2 > 0 then |
1515 | 2065 |
with ar2[GetRandom(cnt2)] do |
2066 |
begin |
|
2067 |
Gear^.X:= int2hwFloat(x); |
|
2068 |
Gear^.Y:= int2hwFloat(y); |
|
2069 |
{$IFDEF DEBUGFILE} |
|
2070 |
AddFileLog('Assigned Gear coordinates (' + inttostr(x) + ',' + inttostr(y) + ')'); |
|
2071 |
{$ENDIF} |
|
2072 |
end |
|
2073 |
else |
|
2074 |
begin |
|
2075 |
OutError('Can''t find place for Gear', false); |
|
2076 |
DeleteGear(Gear); |
|
2077 |
Gear:= nil |
|
2078 |
end |
|
10 | 2079 |
end; |
2080 |
||
2726 | 2081 |
function ModifyDamage(dmg: Longword; Gear: PGear): Longword; |
2728
640916bedea7
Adjust king movement in ammoshove, give king a damage bonus
nemo
parents:
2726
diff
changeset
|
2082 |
var i: hwFloat; |
2726 | 2083 |
begin |
2084 |
(* Invulnerability cannot be placed in here due to still needing kicks |
|
2085 |
Not without a new damage machine. |
|
2086 |
King check should be in here instead of ApplyDamage since Tiy wants them kicked less |
|
2087 |
*) |
|
2728
640916bedea7
Adjust king movement in ammoshove, give king a damage bonus
nemo
parents:
2726
diff
changeset
|
2088 |
i:= _1; |
640916bedea7
Adjust king movement in ammoshove, give king a damage bonus
nemo
parents:
2726
diff
changeset
|
2089 |
if (CurrentHedgehog <> nil) and CurrentHedgehog^.King then i:= _1_5; |
2741 | 2090 |
if (Gear^.Hedgehog <> nil) and (PHedgehog(Gear^.Hedgehog)^.King) then |
2728
640916bedea7
Adjust king movement in ammoshove, give king a damage bonus
nemo
parents:
2726
diff
changeset
|
2091 |
ModifyDamage:= hwRound(_0_01 * cDamageModifier * dmg * i * cDamagePercent * _0_5) |
2726 | 2092 |
else |
2728
640916bedea7
Adjust king movement in ammoshove, give king a damage bonus
nemo
parents:
2726
diff
changeset
|
2093 |
ModifyDamage:= hwRound(_0_01 * cDamageModifier * dmg * i * cDamagePercent) |
2726 | 2094 |
end; |
2095 |
||
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
2096 |
procedure init_uGears; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
2097 |
begin |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
2098 |
CurAmmoGear:= nil; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
2099 |
GearsList:= nil; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
2100 |
KilledHHs:= 0; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
2101 |
SuddenDeathDmg:= false; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
2102 |
SpeechType:= 1; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
2103 |
TrainingTargetGear:= nil; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
2104 |
skipFlag:= false; |
2716
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
2105 |
|
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
2106 |
AllInactive:= false; |
b9ca1bfca24f
complete the replacement of init/free wrappers for every unit
koda
parents:
2699
diff
changeset
|
2107 |
PrvInactive:= false; |
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
2108 |
end; |
4 | 2109 |
|
2699
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
2110 |
procedure free_uGears; |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
2111 |
begin |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
2112 |
FreeGearsList(); |
249adefa9c1c
replace initialization/finalization statements with custom init functions
koda
parents:
2695
diff
changeset
|
2113 |
end; |
4 | 2114 |
|
2451
5affd0840927
New data files from Tiy, add gtFlame to avoidance list
nemo
parents:
2428
diff
changeset
|
2115 |
end. |