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 00305 00306 00307 00308 00309 00310 00311 00312 00313 00314 00315 00316 00317 |
//============================================================================= // PhysicsVolume: a bounding volume which affects actor physics // Each Actor is affected at any time by one PhysicsVolume // This is a built-in Unreal class and it shouldn't be modified. //============================================================================= class PhysicsVolume extends Volume native nativereplication; var() vector ZoneVelocity; var() vector Gravity; var vector BACKUP_Gravity; var() float GroundFriction; var() float TerminalVelocity; var() float DamagePerSec; var() class<DamageType> DamageType; var() int Priority; // determines which PhysicsVolume takes precedence if they overlap var() sound EntrySound; //only if waterzone var() sound ExitSound; // only if waterzone var() editinline I3DL2Listener VolumeEffect; var() class<actor> EntryActor; // e.g. a splash (only if water zone) var() class<actor> ExitActor; // e.g. a splash (only if water zone) var() class<actor> PawnEntryActor; // when pawn center enters volume var() float FluidFriction; var() vector ViewFlash, ViewFog; var() bool bPainCausing; // Zone causes pain. var bool BACKUP_bPainCausing; var() bool bDestructive; // Destroys most actors which enter it. var() bool bNoInventory; var() bool bMoveProjectiles;// this velocity zone should impart velocity to projectiles and effects var() bool bBounceVelocity; // this velocity zone should bounce actors that land in it var() bool bNeutralZone; // Players can't take damage in this zone. var() bool bWaterVolume; var() bool bNoDecals; var() bool bDamagesVehicles; // Distance Fog var(VolumeFog) bool bDistanceFog; // There is distance fog in this physicsvolume. var(VolumeFog) color DistanceFogColor; var(VolumeFog) float DistanceFogStart; var(VolumeFog) float DistanceFogEnd; // Karma var(Karma) float KExtraLinearDamping; // Extra damping applied to Karma actors in this volume. var(Karma) float KExtraAngularDamping; var(Karma) float KBuoyancy; // How buoyant Karma things are in this volume (if bWaterVolume true). Multiplied by Actors KarmaParams->KBuoyancy. var Info PainTimer; var PhysicsVolume NextPhysicsVolume; replication { // Things the server should send to the client. reliable if( bNetDirty && (Role==ROLE_Authority) ) Gravity; } simulated function PreBeginPlay() { if ( Base == None ) { RemoteRole = ROLE_None; bAlwaysRelevant = false; // true by default to put it in the networked list of static actors, turn back on if change gravity or base } super.PreBeginPlay(); } simulated function PostBeginPlay() { super.PostBeginPlay(); BACKUP_Gravity = Gravity; BACKUP_bPainCausing = bPainCausing; if( VolumeEffect == None && bWaterVolume ) VolumeEffect = new(Level.xLevel) class'EFFECT_WaterVolume'; } /* Reset() reset actor to initial state - used when restarting level without reloading. */ function Reset() { Gravity = BACKUP_Gravity; bPainCausing = BACKUP_bPainCausing; NetUpdateTime = Level.TimeSeconds - 1; } /* Called when an actor in this PhysicsVolume changes its physics mode */ event PhysicsChangedFor(Actor Other); event ActorEnteredVolume(Actor Other); event ActorLeavingVolume(Actor Other); simulated event PawnEnteredVolume(Pawn Other) { local vector HitLocation,HitNormal; local Actor SpawnedEntryActor; if ( bWaterVolume && (Level.TimeSeconds - Other.SplashTime > 0.3) && (PawnEntryActor != None) && !Level.bDropDetail && (Level.DetailMode != DM_Low) && EffectIsRelevant(Other.Location,false) ) { if ( !TraceThisActor(HitLocation, HitNormal, Other.Location - Other.CollisionHeight*vect(0,0,1), Other.Location + Other.CollisionHeight*vect(0,0,1)) ) { SpawnedEntryActor = Spawn(PawnEntryActor,Other,,HitLocation,rot(16384,0,0)); } } if ( (Role == ROLE_Authority) && Other.IsPlayerPawn() ) TriggerEvent(Event,self, Other); } event PawnLeavingVolume(Pawn Other) { if ( Other.IsPlayerPawn() ) UntriggerEvent(Event,self, Other); } function PlayerPawnDiedInVolume(Pawn Other) { UntriggerEvent(Event,self, Other); } singular event BaseChange() { if ( Base != None ) { bAlwaysRelevant = true; RemoteRole = ROLE_DumbProxy; } } /* TimerPop damage touched actors if pain causing. since PhysicsVolume is static, this function is actually called by a volumetimer */ function TimerPop(VolumeTimer T) { local actor A; local bool bFound; if ( T == PainTimer ) { if ( !bPainCausing ) { PainTimer.Destroy(); return; } ForEach TouchingActors(class'Actor', A) if ( A.bCanBeDamaged && !A.bStatic ) { CausePainTo(A); bFound = true; } if ( !bFound ) PainTimer.Destroy(); } } function Trigger( actor Other, pawn EventInstigator ) { local Pawn P; // turn zone damage on and off if (DamagePerSec != 0) { bPainCausing = !bPainCausing; if ( bPainCausing ) { if ( PainTimer == None ) PainTimer = spawn(class'VolumeTimer', self); ForEach TouchingActors(class'Pawn', P) CausePainTo(P); } } } simulated event touch(Actor Other) { local Pawn P; local bool bFoundPawn; Super.Touch(Other); if ( Other == None ) return; if ( (Other.Role == ROLE_Authority) || Other.bNetTemporary ) { if ( bNoInventory && (Pickup(Other) != None) && (Other.Owner == None) ) { Other.LifeSpan = 1.5; return; } if ( bMoveProjectiles && (ZoneVelocity != vect(0,0,0)) ) { if ( Other.Physics == PHYS_Projectile ) Other.Velocity += ZoneVelocity; else if ( (Other.Base == None) && Other.IsA('Emitter') && (Other.Physics == PHYS_None) ) { Other.SetPhysics(PHYS_Projectile); Other.Velocity += ZoneVelocity; } } if ( bPainCausing ) { if ( Other.bDestroyInPainVolume ) { Other.Destroy(); return; } if ( Other.bCanBeDamaged && !Other.bStatic ) { CausePainTo(Other); if ( Other == None ) return; if ( Role == ROLE_Authority ) { if ( PainTimer == None ) PainTimer = Spawn(class'VolumeTimer', self); else if ( Pawn(Other) != None ) { ForEach TouchingActors(class'Pawn', P) if ( (P != Other) && P.bCanBeDamaged ) { bFoundPawn = true; break; } if ( !bFoundPawn ) PainTimer.SetTimer(1.0,true); } } } } } if ( bWaterVolume && Other.CanSplash() ) PlayEntrySplash(Other); } simulated function PlayEntrySplash(Actor Other) { local vector StartLoc, Vel2D; if( EntrySound != None ) { Other.PlaySound(EntrySound, SLOT_Interact, Other.TransientSoundVolume); if ( Other.Instigator != None ) MakeNoise(1); } if( (EntryActor != None) && (Level.NetMode != NM_DedicatedServer) ) { StartLoc = Other.Location - Other.CollisionHeight*vect(0,0,0.8); if ( Other.CollisionRadius > 0 ) { Vel2D = Other.Velocity; Vel2D.Z = 0; if ( VSize(Vel2D) > 100 ) StartLoc = StartLoc + Normal(Vel2D) * CollisionRadius; } Spawn(EntryActor,,,StartLoc,rot(16384,0,0)); } } simulated event untouch(Actor Other) { if ( bWaterVolume && Other.CanSplash() ) PlayExitSplash(Other); } simulated function PlayExitSplash(Actor Other) { if( ExitSound != None ) Other.PlaySound(ExitSound, SLOT_Interact, Other.TransientSoundVolume); if( (ExitActor != None) && (Level.NetMode != NM_DedicatedServer) ) Spawn(ExitActor,,,Other.Location - Other.CollisionHeight*vect(0,0,0.8),rot(16384,0,0)); } function CausePainTo(Actor Other) { local float depth; local Pawn P; // FIXMEZONE figure out depth of actor, and base pain on that!!! depth = 1; P = Pawn(Other); if ( DamagePerSec > 0 ) { if ( Region.Zone.bSoftKillZ && (Other.Physics != PHYS_Walking) ) return; Other.TakeDamage(int(DamagePerSec * depth), None, Location, vect(0,0,0), DamageType); if ( (P != None) && (P.Controller != None) ) P.Controller.PawnIsInPain(self); } else { if ( (P != None) && (P.Health < P.HealthMax) ) P.Health = Min(P.HealthMax, P.Health - depth * DamagePerSec); } } defaultproperties { Gravity=(Z=-950.000000) GroundFriction=8.000000 TerminalVelocity=2500.000000 FluidFriction=0.300000 bDamagesVehicles=Wahr KBuoyancy=1.000000 bAlwaysRelevant=Wahr bOnlyDirtyReplication=Wahr NetUpdateFrequency=0.100000 } |
Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
previous class next class | frames no frames |