Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames

U2.DamageTypeImpl


00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086
00087
00088
00089
00090
00091
00092
00093
00094
00095
00096
00097
00098
00099
00100
00101
00102
00103
00104
00105
00106
00107
00108
00109
00110
00111
00112
00113
00114
00115
00116
//-----------------------------------------------------------------------------
// DamageTypeImpl.uc
// Created on: 2/18/2002
// Created by: Mark Poesch
// $Author: Mfox $
// $Date: 1/29/03 1:50p $
// $Revision: 4 $
//-----------------------------------------------------------------------------
// Replaces DamageHelperGeneric.uc.  The HandleDamage() call is invoked directly
// from the U2Pawn eventTakeDamage().  Whereas the DamageHelperGeneric was 
// pawn-centric (i.e., oriented toward creature-specific damage effects), the 
// U2DamageType is damage-centric (i.e., oriented toward damage type effects).
//
// Specific damage effects may be specified within U2DamageType sub-classes.
//
//-----------------------------------------------------------------------------
class DamageTypeImpl extends DamageType
	abstract;

#exec OBJ LOAD File=..\System\ParticleRes\Blood.u

//!!arl (mwp) move DamageTypeImpl.uc and Electrical subclass to ParticleSystems project in order to fix ParticleDamage.uc and PulseLineGenerator.uc?

var() ParticleGenerator ParticleEffect;
var() float DamageEffectOffsetMult;		// multiplier for offset of damage location along vector from actor location to hit location
var() float DamageClampMin;				// clamp min damage for scaling blood volume
var() float DamageClampMax;				// clamp max damage for scaling blood volume
var() float BaseDamageLevel;			// blood volume is scaled around this amount of damage


static function HandleDamageEffect( Actor Victim, float Damage, vector HitLocation )
{
	local ParticleGenerator EffectClass;
	local ParticleSalamander Particles;
	local vector SpawnLocation;
	local vector EffectVector;
	local rotator EffectRotation;
	local vector DirectionVector;
	local float EffectOffsetMultiplier;
	local U2Pawn U2P;
	
	// GoreDetailLevel handled by Actor.uc, using the ParticleGenerator's GoreLevel set in the effects package

	// handling for Victim-specific damage effects
	U2P = U2Pawn(Victim);
	
	if( U2P != None )
	{
		if( U2P.bOverridesDamageEffect )
			EffectClass = U2Pawn(Victim).GetDamageEffect( Damage, HitLocation );
		else
			EffectClass = default.ParticleEffect;
			
		EffectOffsetMultiplier = U2P.DamageEffectOffsetMultiplier;
	}
	else
	{
		EffectClass = default.ParticleEffect;
		EffectOffsetMultiplier = default.DamageEffectOffsetMult;
	}
	
	//Victim.DMTN( default.Class $ ".HandleDamageEffect for Victim: " $ Victim $ " Damage: " $ Damage $ " EffectClass: " $ EffectClass );
	//AddCylinder( HitLocation, 2, 2, ColorRed() );
	
	if( EffectClass != None )
	{
		Damage = FClamp( Damage, default.DamageClampMin, default.DamageClampMax );

		//!!mwp (mdf) blood scaling is borked -- get lots of blood even if damage is 0?
		// also, I'm not sure that DamageClampMin/Max are "intuitive" (I wrote the code
		// but I forget what the intent was). It seems to me that Min should be the 
		// min damage for the effect to be generated at all and Max should limit the
		// amount of damage?
		if( Damage > 0 )
		{
			// set the rotation so effect sprays along vector from center of actor through hit location?
			EffectVector		= HitLocation - Victim.Location;
			DirectionVector		= Normal(EffectVector);
			DirectionVector.Z	= 0.707; // angle spray upward at 45 degrees
			EffectRotation		= rotator( DirectionVector );
	
			// spawning at the hit location is problematic -- blood often seems 
			// to come out of thin air -- so spawn at center of hit actor +
			// PC/NPC-specific offset along vector towards hit location?
	
			SpawnLocation = Victim.Location + VSize(EffectVector) * EffectOffsetMultiplier * Normal(EffectVector);

			Particles = ParticleSalamander(class'ParticleGenerator'.static.CreateNew( Victim, EffectClass, SpawnLocation ));
			if( Particles != None )
			{
				Particles.SetRotation( EffectRotation );
				Particles.Trigger( Victim, Victim.Instigator );
				Particles.ParticleLifeSpan = Particles.GetMaxLifeSpan() + Particles.TimerDuration;
				Particles.SetBase( Victim );

//arl: this pretty much makes blood invisible for most weapons.  weapons are more important than cockroaches.  we'll have to find a better solution.
//				Particles.Volume *= (Damage/default.BaseDamageLevel);
			}
		}
	}
}

defaultproperties
{
	ParticleEffect=ParticleSalamander'Blood.ParticleSalamander2'
	DamageEffectOffsetMult=0.500000
	DamageClampMin=2.000000
	DamageClampMax=500.000000
	BaseDamageLevel=25.000000
     UseReticleOnEvents(0)="UseReticleText"
     UseReticleOnEvents(1)="UseReticleCorners"
     UseReticleOnEvents(2)="UseReticleTopBars"
     ProximityReticleOnEvents(0)="ProximityReticleCorners"
     ProximityReticleOnEvents(1)="ProximityReticleTopBars"
}

Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames
Class file time: sk 3-1-2016 10:38:42.000 - Creation time: sk 3-1-2016 10:48:38.000 - Created with UnCodeX