Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |
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 00117 00118 00119 00120 00121 00122 00123 00124 00125 00126 00127 00128 00129 00130 00131 00132 00133 00134 00135 00136 00137 00138 00139 00140 00141 00142 00143 00144 00145 00146 00147 00148 00149 00150 00151 00152 00153 00154 00155 00156 00157 00158 00159 00160 00161 00162 00163 00164 00165 00166 00167 00168 00169 00170 00171 00172 00173 00174 00175 00176 00177 00178 00179 00180 00181 00182 00183 |
//============================================================================= // $Author: Aleiby $ // $Date: 11/22/02 1:00a $ // $Revision: 17 $ //============================================================================= //------------------------------------------------------------------------------ // Name: PulseLineGenerator.uc // Author: Aaron R Leiby // Date: 15 August 2000 //------------------------------------------------------------------------------ // Description: //------------------------------------------------------------------------------ // How to use this class: //------------------------------------------------------------------------------ class PulseLineGenerator extends ParticleGenerator placeable native; #exec OBJ LOAD FILE=Textures\U2Particles.utx PACKAGE=ParticleSystems struct native TConnectionInfo { var() vector Start; var() vector End; var float Length; var() Actor StartActor; var() Actor EndActor; }; //NOTE: This was originally added to the connection info, //but struct serialization sucks and this broke existing maps. var() Actor MeshOwner; var() string StartBone; var() string EndBone; var() array<TConnectionInfo> Connections; var(Damage) float DamageTime; // time between damage traces. var float DamageTimer; var(Damage) int DamageAmount; var(Damage) vector DamageMomentum; var(Damage) class<DamageType> DamageType; var(Damage) string DamageEffect; var(Damage) name DamageEvent; var(Damage) float DamageSleep; var() Material BeamTexture; var() Range BeamSegLength; var() color BeamColor; var() Range BeamWidth; var() float BeamTextureWidth; var() Range NumBeams; var() ERenderStyle BeamStyle; var() Material SpriteJointTexture; var() Range SpriteJointSize; var() color SpriteJointColor; var() ERenderStyle SpriteJointStyle; var() class<ParticleTemplate> TemplateClass; /* replication { unreliable if( Role==ROLE_Authority ) Start, End; unreliable if( Role==ROLE_Authority && bNetInitial ) BeamTexture , BeamSegLength , BeamColor , BeamWidth , BeamTextureWidth , NumBeams , BeamStyle , SpriteJointTexture , SpriteJointSize , SpriteJointColor , SpriteJointStyle ; } */ simulated function AddConnection( vector Start, vector End ) { local vector Extent; local int i; i = Connections.length; Connections.length = i+1; Connections[i].Start = Start; Connections[i].End = End; // Set collision radius for visibility until we are rendered the first time. Extent = Start - End; SetCollisionSize( FMax( Abs(Extent.X), Abs(Extent.Y) ), Abs(Extent.Z) ); } simulated function SetMeshOwner( int i, Actor A ){ /*Connections[i].*/MeshOwner=A; } // Fix ARL: May not work well with RampUp/RampDown. simulated event TurnOn(){ Super.TurnOn(); Enable('Tick'); } simulated event TurnOff(){ Super.TurnOff(); Disable('Tick'); } //------------------------------------------------------------------------------ event Tick( float DeltaTime ) { local CheckResult Hit; local Actor TraceActor; local int i; if( !bOn || DamageTime <= 0 ) { Disable('Tick'); return; } DamageTimer += DeltaTime; if( DamageTimer >= DamageTime ) { DamageTimer = 0; for( i=0; i<Connections.length; i++ ) if( !SingleLineCheck( Hit, Self, Connections[i].End, Connections[i].Start, TRACE_Pawns ) ) { if (DamageAmount>0) Hit.Actor.TakeDamage( DamageAmount, Instigator, Hit.Location, DamageMomentum, DamageType ); if (DamageEvent!='') class'TriggerHelper'.static.IterateTriggerActors( Self, class'Actor', Hit.Actor, Hit.Actor.Instigator, DamageEvent, false ); SpawnSparks( Hit ); DamageTimer = -DamageSleep; } } } //------------------------------------------------------------------------------ protected function SpawnSparks( CheckResult Hit ) { local ParticleSalamander Sparks; if( DamageEffect != "" ) { Sparks = ParticleSalamander(class'ParticleGenerator'.static.DynamicCreateNew( Self, class'ParticleSalamander', DamageEffect, Hit.Location )); Sparks.SetRotation( rotator(Hit.Normal) ); Sparks.ParticleLifeSpan = Sparks.TimerDuration + Sparks.GetMaxLifeSpan(); Sparks.Trigger( Self, Instigator ); } } defaultproperties { DamageAmount=1 DamageEffect="Sparks02.ParticleSalamander0" BeamTexture=Texture'ParticleSystems.Pulse.GlowBeam' BeamSegLength=(A=3.000000,B=8.000000) BeamColor=(B=255,G=255,R=255) BeamWidth=(A=1.000000,B=4.000000) BeamTextureWidth=3.000000 NumBeams=(A=3.000000,B=3.000000) BeamStyle=STY_Translucent SpriteJointTexture=Texture'ParticleSystems.Pulse.GlowFuzz' SpriteJointSize=(A=4.000000,B=6.000000) SpriteJointColor=(B=128,G=128,R=128) SpriteJointStyle=STY_Translucent TemplateClass=Class'ParticleSystems.PulseLineTemplate' bAlwaysRelevant=true RemoteRole=ROLE_SimulatedProxy VisibilityRadius=0.000000 VisibilityHeight=0.000000 bMustFace=false UseReticleOnEvents(0)="UseReticleText" UseReticleOnEvents(1)="UseReticleCorners" UseReticleOnEvents(2)="UseReticleTopBars" ProximityReticleOnEvents(0)="ProximityReticleCorners" ProximityReticleOnEvents(1)="ProximityReticleTopBars" } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |