151 lines
5.2 KiB
Ucode
151 lines
5.2 KiB
Ucode
class ScrnMagnum44Fire extends Magnum44Fire;
|
|
|
|
var float PenDmgReduction; //penetration damage reduction. 1.0 - no reduction, 25% reduction
|
|
var byte MaxPenetrations; //how many enemies can penetrate a single bullet
|
|
|
|
function DoTrace(Vector Start, Rotator Dir)
|
|
{
|
|
local Vector X,Y,Z, End, HitLocation, HitNormal, ArcEnd;
|
|
local Actor Other;
|
|
local byte HitCount, PenCounter, KillCount;
|
|
local float HitDamage;
|
|
local array<int> HitPoints;
|
|
local KFPawn HitPawn;
|
|
local array<Actor> IgnoreActors;
|
|
local Pawn DamagePawn;
|
|
local int i;
|
|
|
|
local KFMonster Monster;
|
|
local bool bWasDecapitated;
|
|
//local int OldHealth;
|
|
|
|
MaxRange();
|
|
|
|
Weapon.GetViewAxes(X, Y, Z);
|
|
if ( Weapon.WeaponCentered() )
|
|
{
|
|
ArcEnd = (Instigator.Location + Weapon.EffectOffset.X * X + 1.5 * Weapon.EffectOffset.Z * Z);
|
|
}
|
|
else
|
|
{
|
|
ArcEnd = (Instigator.Location + Instigator.CalcDrawOffset(Weapon) + Weapon.EffectOffset.X * X +
|
|
Weapon.Hand * Weapon.EffectOffset.Y * Y + Weapon.EffectOffset.Z * Z);
|
|
}
|
|
|
|
X = Vector(Dir);
|
|
End = Start + TraceRange * X;
|
|
HitDamage = DamageMax;
|
|
|
|
// HitCount isn't a number of max penetration. It is just to be sure we won't stuck in infinite loop
|
|
While( ++HitCount < 127 )
|
|
{
|
|
DamagePawn = none;
|
|
Monster = none;
|
|
|
|
Other = Instigator.HitPointTrace(HitLocation, HitNormal, End, HitPoints, Start,, 1);
|
|
if( Other==None )
|
|
{
|
|
Break;
|
|
}
|
|
else if( Other==Instigator || Other.Base == Instigator )
|
|
{
|
|
IgnoreActors[IgnoreActors.Length] = Other;
|
|
Other.SetCollision(false);
|
|
Start = HitLocation;
|
|
Continue;
|
|
}
|
|
|
|
if( ExtendedZCollision(Other)!=None && Other.Owner!=None )
|
|
{
|
|
IgnoreActors[IgnoreActors.Length] = Other;
|
|
IgnoreActors[IgnoreActors.Length] = Other.Owner;
|
|
Other.SetCollision(false);
|
|
Other.Owner.SetCollision(false);
|
|
DamagePawn = Pawn(Other.Owner);
|
|
Monster = KFMonster(Other.Owner);
|
|
}
|
|
|
|
if ( !Other.bWorldGeometry && Other!=Level )
|
|
{
|
|
HitPawn = KFPawn(Other);
|
|
|
|
if ( HitPawn != none )
|
|
{
|
|
// Hit detection debugging
|
|
/*log("PreLaunchTrace hit "$HitPawn.PlayerReplicationInfo.PlayerName);
|
|
HitPawn.HitStart = Start;
|
|
HitPawn.HitEnd = End;*/
|
|
if(!HitPawn.bDeleteMe)
|
|
HitPawn.ProcessLocationalDamage(int(HitDamage), Instigator, HitLocation, Momentum*X,DamageType,HitPoints);
|
|
|
|
// Hit detection debugging
|
|
/*if( Level.NetMode == NM_Standalone)
|
|
HitPawn.DrawBoneLocation();*/
|
|
|
|
IgnoreActors[IgnoreActors.Length] = Other;
|
|
IgnoreActors[IgnoreActors.Length] = HitPawn.AuxCollisionCylinder;
|
|
Other.SetCollision(false);
|
|
HitPawn.AuxCollisionCylinder.SetCollision(false);
|
|
DamagePawn = HitPawn;
|
|
}
|
|
else
|
|
{
|
|
if( DamagePawn == none )
|
|
DamagePawn = Pawn(Other);
|
|
|
|
if( KFMonster(Other)!=None )
|
|
{
|
|
IgnoreActors[IgnoreActors.Length] = Other;
|
|
Other.SetCollision(false);
|
|
Monster = KFMonster(Other);
|
|
//OldHealth = KFMonster(Other).Health;
|
|
}
|
|
bWasDecapitated = Monster != none && Monster.bDecapitated;
|
|
Other.TakeDamage(int(HitDamage), Instigator, HitLocation, Momentum*X, DamageType);
|
|
if ( DamagePawn != none && (DamagePawn.Health <= 0 || (Monster != none
|
|
&& !bWasDecapitated && Monster.bDecapitated)) )
|
|
{
|
|
KillCount++;
|
|
}
|
|
|
|
// debug info
|
|
// if ( KFMonster(Other) != none )
|
|
// log(String(class) $ ": Damage("$PenCounter$") = "
|
|
// $ int(HitDamage) $"/"$ (OldHealth-KFMonster(Other).Health)
|
|
// @ KFMonster(Other).MenuName , 'ScrnBalance');
|
|
}
|
|
if( ++PenCounter > MaxPenetrations || DamagePawn==None )
|
|
{
|
|
Break;
|
|
}
|
|
HitDamage *= PenDmgReduction;
|
|
Start = HitLocation;
|
|
}
|
|
else if ( HitScanBlockingVolume(Other)==None )
|
|
{
|
|
if( KFWeaponAttachment(Weapon.ThirdPersonActor)!=None )
|
|
KFWeaponAttachment(Weapon.ThirdPersonActor).UpdateHit(Other,HitLocation,HitNormal);
|
|
Break;
|
|
}
|
|
}
|
|
|
|
// Turn the collision back on for any actors we turned it off
|
|
if ( IgnoreActors.Length > 0 )
|
|
{
|
|
for (i=0; i<IgnoreActors.Length; i++)
|
|
{
|
|
if ( IgnoreActors[i] != none )
|
|
IgnoreActors[i].SetCollision(true);
|
|
}
|
|
}
|
|
}
|
|
|
|
defaultproperties
|
|
{
|
|
PenDmgReduction=0.500000
|
|
MaxPenetrations=4
|
|
DamageType=Class'ScrnBalanceSrv.ScrnDamTypeMagnum44Pistol'
|
|
DamageMax=90
|
|
AmmoClass=Class'ScrnBalanceSrv.ScrnMagnum44Ammo'
|
|
}
|