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 00184 00185 00186 00187 00188 00189 00190 00191 00192 00193 00194 00195 00196 00197 00198 00199 00200 00201 00202 00203 00204 00205 00206 00207 00208 00209 00210 00211 00212 00213 00214 00215 00216 00217 00218 00219 00220 00221 00222 00223 00224 00225 00226 00227 00228 00229 00230 00231 00232 00233 00234 00235 00236 00237 00238 00239 00240 00241 00242 00243 00244 00245 00246 00247 00248 00249 00250 00251 00252 00253 00254 00255 00256 00257 00258 00259 00260 00261 00262 00263 00264 00265 00266 00267 00268 00269 00270 00271 00272 00273 00274 00275 00276 00277 00278 00279 00280 00281 00282 00283 00284 00285 00286 00287 00288 00289 00290 00291 00292 00293 00294 00295 00296 00297 00298 00299 00300 00301 00302 00303 00304 |
//============================================================================= // Projectile. // // A delayed-hit projectile that moves around for some time after it is created. //============================================================================= class Projectile extends Actor abstract native; //----------------------------------------------------------------------------- // Projectile variables. // Motion information. var float Speed; // Initial speed of projectile. var float MaxSpeed; // Limit on speed of projectile (0 means no limit) var float TossZ; var Actor ZeroCollider; var bool bSwitchToZeroCollision; // if collisionextent nonzero, and hit actor with bBlockNonZeroExtents=0, switch to zero extent collision var bool bNoFX; // used to prevent effects when projectiles are destroyed (see LimitationVolume) var bool bReadyToSplash; var bool bSpecialCalcView; // Use the projectile's SpecialCalcView function instead of letting the playercontroller handle the camera // Damage attributes. var float Damage; var float DamageRadius; var float MomentumTransfer; // Momentum magnitude imparted by impacting projectile. var class<DamageType> MyDamageType; // Projectile sound effects var sound SpawnSound; // Sound made when projectile is spawned. var sound ImpactSound; // Sound made when projectile hits something. // explosion effects var class<Projector> ExplosionDecal; var float ExploWallOut; // distance to move explosions out from wall var Controller InstigatorController; var Actor LastTouched; var Actor HurtWall; var float MaxEffectDistance; var bool bScriptPostRender; // if true, PostRender2D() gets called simulated function PostBeginPlay() { local PlayerController PC; if ( Role == ROLE_Authority && Instigator != None && Instigator.Controller != None ) { if ( Instigator.Controller.ShotTarget != None && Instigator.Controller.ShotTarget.Controller != None ) Instigator.Controller.ShotTarget.Controller.ReceiveProjectileWarning( Self ); InstigatorController = Instigator.Controller; } if ( bDynamicLight && Level.NetMode != NM_DedicatedServer ) { PC = Level.GetLocalPlayerController(); if ( (PC == None) || (PC.ViewTarget == None) || (VSize(PC.ViewTarget.Location - Location) > 4000) ) { LightType = LT_None; bDynamicLight = false; } } bReadyToSplash = true; } function bool SpecialCalcView(out Actor ViewActor, out vector CameraLocation, out rotator CameraRotation, bool bBehindView); simulated function bool CanSplash() { return bReadyToSplash; } function Reset() { Destroy(); } simulated function bool CheckMaxEffectDistance(PlayerController P, vector SpawnLocation) { return !P.BeyondViewDistance(SpawnLocation,MaxEffectDistance); } /* HurtRadius() Hurt locally authoritative actors within the radius. */ simulated function HurtRadius( float DamageAmount, float DamageRadius, class<DamageType> DamageType, float Momentum, vector HitLocation ) { local actor Victims; local float damageScale, dist; local vector dir; if ( bHurtEntry ) return; bHurtEntry = true; foreach VisibleCollidingActors( class 'Actor', Victims, DamageRadius, HitLocation ) { // don't let blast damage affect fluid - VisibleCollisingActors doesn't really work for them - jag if( (Victims != self) && (Hurtwall != Victims) && (Victims.Role == ROLE_Authority) && !Victims.IsA('FluidSurfaceInfo') ) { dir = Victims.Location - HitLocation; dist = FMax(1,VSize(dir)); dir = dir/dist; damageScale = 1 - FMax(0,(dist - Victims.CollisionRadius)/DamageRadius); if ( Instigator == None || Instigator.Controller == None ) Victims.SetDelayedDamageInstigatorController( InstigatorController ); if ( Victims == LastTouched ) LastTouched = None; Victims.TakeDamage ( damageScale * DamageAmount, Instigator, Victims.Location - 0.5 * (Victims.CollisionHeight + Victims.CollisionRadius) * dir, (damageScale * Momentum * dir), DamageType ); if (Vehicle(Victims) != None && Vehicle(Victims).Health > 0) Vehicle(Victims).DriverRadiusDamage(DamageAmount, DamageRadius, InstigatorController, DamageType, Momentum, HitLocation); } } if ( (LastTouched != None) && (LastTouched != self) && (LastTouched.Role == ROLE_Authority) && !LastTouched.IsA('FluidSurfaceInfo') ) { Victims = LastTouched; LastTouched = None; dir = Victims.Location - HitLocation; dist = FMax(1,VSize(dir)); dir = dir/dist; damageScale = FMax(Victims.CollisionRadius/(Victims.CollisionRadius + Victims.CollisionHeight),1 - FMax(0,(dist - Victims.CollisionRadius)/DamageRadius)); if ( Instigator == None || Instigator.Controller == None ) Victims.SetDelayedDamageInstigatorController(InstigatorController); Victims.TakeDamage ( damageScale * DamageAmount, Instigator, Victims.Location - 0.5 * (Victims.CollisionHeight + Victims.CollisionRadius) * dir, (damageScale * Momentum * dir), DamageType ); if (Vehicle(Victims) != None && Vehicle(Victims).Health > 0) Vehicle(Victims).DriverRadiusDamage(DamageAmount, DamageRadius, InstigatorController, DamageType, Momentum, HitLocation); } bHurtEntry = false; } /* HurtRadius() Hurt locally authoritative actors within the radius. */ simulated function DelayedHurtRadius( float DamageAmount, float DamageRadius, class<DamageType> DamageType, float Momentum, vector HitLocation ) { HurtRadius(DamageAmount, DamageRadius, DamageType, Momentum, HitLocation); } //============== // Encroachment function bool EncroachingOn( actor Other ) { if ( (Other.Brush != None) || (Brush(Other) != None) ) return true; return false; } //============== // Touching simulated singular function Touch(Actor Other) { local vector HitLocation, HitNormal; if ( Other == None ) // Other just got destroyed in its touch? return; if ( Other.bProjTarget || Other.bBlockActors ) { LastTouched = Other; if ( Velocity == vect(0,0,0) || Other.IsA('Mover') ) { ProcessTouch(Other,Location); LastTouched = None; return; } if ( Other.TraceThisActor(HitLocation, HitNormal, Location, Location - 2*Velocity, GetCollisionExtent()) ) HitLocation = Location; ProcessTouch(Other, HitLocation); LastTouched = None; if ( (Role < ROLE_Authority) && (Other.Role == ROLE_Authority) && (Pawn(Other) != None) ) ClientSideTouch(Other, HitLocation); } } simulated function ClientSideTouch(Actor Other, Vector HitLocation) { Other.TakeDamage(Damage, instigator, Location, MomentumTransfer * Normal(Velocity), MyDamageType); } simulated function ProcessTouch(Actor Other, Vector HitLocation) { if ( Other != Instigator ) Explode(HitLocation,Normal(HitLocation-Other.Location)); } simulated singular function HitWall(vector HitNormal, actor Wall) { local PlayerController PC; if ( Role == ROLE_Authority ) { if ( !Wall.bStatic && !Wall.bWorldGeometry ) { if ( Instigator == None || Instigator.Controller == None ) Wall.SetDelayedDamageInstigatorController( InstigatorController ); Wall.TakeDamage( Damage, instigator, Location, MomentumTransfer * Normal(Velocity), MyDamageType); if (DamageRadius > 0 && Vehicle(Wall) != None && Vehicle(Wall).Health > 0) Vehicle(Wall).DriverRadiusDamage(Damage, DamageRadius, InstigatorController, MyDamageType, MomentumTransfer, Location); HurtWall = Wall; } MakeNoise(1.0); } Explode(Location + ExploWallOut * HitNormal, HitNormal); if ( (ExplosionDecal != None) && (Level.NetMode != NM_DedicatedServer) ) { if ( ExplosionDecal.Default.CullDistance != 0 ) { PC = Level.GetLocalPlayerController(); if ( !PC.BeyondViewDistance(Location, ExplosionDecal.Default.CullDistance) ) Spawn(ExplosionDecal,self,,Location, rotator(-HitNormal)); else if ( (Instigator != None) && (PC == Instigator.Controller) && !PC.BeyondViewDistance(Location, 2*ExplosionDecal.Default.CullDistance) ) Spawn(ExplosionDecal,self,,Location, rotator(-HitNormal)); } else Spawn(ExplosionDecal,self,,Location, rotator(-HitNormal)); } HurtWall = None; } simulated function BlowUp(vector HitLocation) { HurtRadius(Damage,DamageRadius, MyDamageType, MomentumTransfer, HitLocation ); if ( Role == ROLE_Authority ) MakeNoise(1.0); } simulated function Explode(vector HitLocation, vector HitNormal) { Destroy(); } simulated final function RandSpin(float spinRate) { DesiredRotation = RotRand(); RotationRate.Yaw = spinRate * 2 *FRand() - spinRate; RotationRate.Pitch = spinRate * 2 *FRand() - spinRate; RotationRate.Roll = spinRate * 2 *FRand() - spinRate; } simulated static function float GetRange() { if (default.LifeSpan == 0.0) return 15000; else return (default.MaxSpeed * default.LifeSpan); } function bool IsStationary() { return false; } // called if bScriptPostRender is true simulated event PostRender2D(Canvas C, float ScreenLocX, float ScreenLocY); defaultproperties { MaxSpeed=2000.000000 TossZ=100.000000 DamageRadius=220.000000 MyDamageType=Class'Engine.DamageType' DrawType=DT_Mesh bAcceptsProjectors=Falsch bNetTemporary=Wahr bReplicateInstigator=Wahr bNetInitialRotation=Wahr Physics=PHYS_Projectile RemoteRole=ROLE_SimulatedProxy NetPriority=2.500000 LifeSpan=14.000000 Texture=Texture'Engine.S_Camera' bUnlit=Wahr bGameRelevant=Wahr bCanBeDamaged=Wahr bDisturbFluidSurface=Wahr SoundVolume=0 CollisionRadius=0.000000 CollisionHeight=0.000000 bCollideActors=Wahr bCollideWorld=Wahr bUseCylinderCollision=Wahr } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |