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

Engine.Decoration


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
//=============================================================================
// Decoration.
//=============================================================================
class Decoration extends Actor
    abstract
    placeable
    native;

// If set, the pyrotechnic or explosion when item is damaged.
var()  class<actor> EffectWhenDestroyed;
var() bool bPushable;
var() bool bDamageable;
var bool bPushSoundPlaying;
var bool bSplash;

var() sound PushSound, EndPushSound;
var const int    numLandings;       // Used by engine physics.
var() class<inventory> contents;    // spawned when destroyed

var()   int     NumFrags;       // number of fragments to spawn when destroyed
var()   texture FragSkin;       // skin to use for fragments
var()   class<Fragment> FragType;   // type of fragment to use
var     vector FragMomentum;        // momentum to be imparted to frags when destroyed
var()   int     Health;
var()   float  SplashTime;

var const NavigationPoint LastAnchor;       // recent nearest path
var     float   LastValidAnchorTime;    // last time a valid anchor was found

event NotReachableBy(Pawn P); // called when FindPathToward this decoration fails (used by GameObjects)

function bool CanSplash()
{
    if ( (Level.TimeSeconds - SplashTime > 0.25)
        && (Physics == PHYS_Falling)
        && (Abs(Velocity.Z) > 100) )
    {
        SplashTime = Level.TimeSeconds;
        return true;
    }
    return false;
}

function Drop(vector newVel);

function Landed(vector HitNormal)
{
    local rotator NewRot;

    if (Velocity.Z<-500) 
        TakeDamage(100,Pawn(Owner),HitNormal,HitNormal*10000,class'Crushed');   
    Velocity = vect(0,0,0);
    NewRot = Rotation;
    NewRot.Pitch = 0;
    NewRot.Roll = 0;
    SetRotation(NewRot);
}

function HitWall (vector HitNormal, actor Wall)
{
    Landed(HitNormal);
}

function TakeDamage( int NDamage, Pawn instigatedBy, Vector hitlocation, 
                    Vector momentum, class<DamageType> damageType)
{
    Instigator = InstigatedBy;
    if (!bDamageable || (Health<0) ) 
        Return;
    if ( Instigator != None )
        MakeNoise(1.0);
    Health -= NDamage;
    FragMomentum = Momentum;
    if (Health <0)  
        Destroy();      
    else 
    {
        SetPhysics(PHYS_Falling);
        Momentum.Z = 1000;
        Velocity=Momentum/Mass;
    }
}

singular function PhysicsVolumeChange( PhysicsVolume NewVolume )
{
    if( NewVolume.bWaterVolume )
    {
        if( bSplash && !PhysicsVolume.bWaterVolume && Mass<=Buoyancy 
            && ((Abs(Velocity.Z) < 100) || (Mass == 0)) && (FRand() < 0.05) && !PlayerCanSeeMe() )
        {
            bSplash = false;
            SetPhysics(PHYS_None);
        }
    }
    if( PhysicsVolume.bWaterVolume && (Buoyancy > Mass) )
    {
        if( Buoyancy > 1.1 * Mass )
            Buoyancy = 0.95 * Buoyancy; // waterlog
        else if( Buoyancy > 1.03 * Mass )
            Buoyancy = 0.99 * Buoyancy;
    }
}

function Trigger( actor Other, pawn EventInstigator )
{
    Instigator = EventInstigator;
    TakeDamage( 1000, Instigator, Location, Vect(0,0,1)*900, class'Crushed');
}

singular function BaseChange()
{
    if( Velocity.Z < -500 )
        TakeDamage( (1-Velocity.Z/30),Instigator,Location,vect(0,0,0) , class'Crushed');

    if( base == None )
    { 
        if ( !bInterpolating && bPushable && (Physics == PHYS_None) )
            SetPhysics(PHYS_Falling);
    }
    else if( Pawn(Base) != None )
    {
        Base.TakeDamage( (1-Velocity.Z/400)* mass/Base.Mass,Instigator,Location,0.5 * Velocity , class'Crushed');
        Velocity.Z = 100;
        if (FRand() < 0.5)
            Velocity.X += 70;
        else
            Velocity.Y += 70;
        SetPhysics(PHYS_Falling);
    }
    else if( Decoration(Base)!=None && Velocity.Z<-500 )
    {
        Base.TakeDamage((1 - Mass/Base.Mass * Velocity.Z/30), Instigator, Location, 0.2 * Velocity, class'Crushed');
        Velocity.Z = 100;
        if (FRand() < 0.5)
            Velocity.X += 70;
        else
            Velocity.Y += 70;
        SetPhysics(PHYS_Falling);
    }
    else
        instigator = None;
}

simulated function Destroyed()
{
    local inventory dropped;
    local int i;
    local Fragment s;
    local float BaseSize;

    if ( Role == ROLE_Authority )
    {
        if( (Contents!=None) && !Level.bStartup )
        {
            dropped = Spawn(Contents);
            dropped.DropFrom(Location);
        }   

        TriggerEvent( Event, Self, None);

        if ( bPushSoundPlaying )
            PlaySound(EndPushSound, SLOT_Misc);
    }
        
    if ( (Level.NetMode != NM_DedicatedServer ) 
        && !PhysicsVolume.bDestructive
        && (NumFrags > 0) && (FragType != None) )
    {
        // spawn fragments
        BaseSize = 0.8 * sqrt(CollisionRadius*CollisionHeight)/NumFrags;
        for ( i=0; i<numfrags; i++ )
        {
            s = Spawn( FragType, Owner,,Location + CollisionRadius * VRand());
            s.CalcVelocity(FragMomentum);
            if ( FragSkin != None )
                s.Skins[0] = FragSkin;
            s.SetDrawScale(BaseSize * (0.5+0.7*FRand()));
        }
    }

    Super.Destroyed();
}

function Timer()
{
    PlaySound(EndPushSound, SLOT_Misc);
    bPushSoundPlaying=False;
}

function Bump( actor Other )
{
    local float speed, oldZ;
    if( bPushable && (Pawn(Other)!=None) && (Other.Mass > 40) )
    {
        oldZ = Velocity.Z;
        speed = VSize(Other.Velocity);
        Velocity = Other.Velocity * FMin(120.0, 20 + speed)/speed;
        if ( Physics == PHYS_None ) 
        {
            Velocity.Z = 25;
            if (!bPushSoundPlaying) 
            {
                PlaySound(PushSound, SLOT_Misc);
                bPushSoundPlaying = True;
            }           
        }
        else
            Velocity.Z = oldZ;
        SetPhysics(PHYS_Falling);
        SetTimer(0.3,False);
        Instigator = Pawn(Other);
    }
}

defaultproperties
{
     DrawType=DT_Mesh
     bStatic=True
     bStasis=True
     bOrientOnSlope=True
     NetUpdateFrequency=10.000000
     bCanBeDamaged=True
     bShouldBaseAtStartup=True
}

Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames
Class file time: Mon 23/10/2006 20:25:18.000 - Creation time: Wed 7/2/2007 19:16:36.984 - Created with UnCodeX