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

ParticleSystems.ParticleSprayer


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
00318
00319
00320
00321
00322
00323
00324
00325
00326
00327
00328
00329
00330
00331
00332
00333
00334
00335
00336
00337
00338
00339
00340
00341
00342
00343
00344
00345
00346
00347
00348
00349
00350
00351
00352
00353
00354
00355
00356
00357
00358
00359
00360
00361
00362
00363
00364
00365
00366
00367
00368
00369
00370
00371
00372
00373
00374
00375
00376
00377
00378
00379
00380
00381
00382
00383
00384
00385
00386
00387
00388
00389
00390
00391
00392
00393
00394
00395
00396
00397
00398
00399
00400
00401
00402
00403
00404
00405
00406
00407
00408
00409
00410
00411
00412
00413
00414
00415
00416
00417
00418
00419
00420
00421
00422
00423
00424
00425
00426
00427
00428
00429
00430
00431
00432
00433
00434
00435
00436
00437
00438
00439
00440
00441
00442
00443
00444
00445
00446
00447
00448
00449
00450
00451
00452
00453
//------------------------------------------------------------------------------
// ParticleSprayer.uc
// $Author: Mfox $
// $Date: 6/25/02 11:40p $
// $Revision: 6 $
//
// Description:	
//------------------------------------------------------------------------------
// How to use this class:
//
// + Place in a level.
// + Aim in the desired direction.
// + Set properties as desired.
//------------------------------------------------------------------------------
// Todo:
//
// + Decide whether ParticleSprayers should have no replication, or if they 
//   should be triggered, etc on the server-side, and have the variables
//   replicated to the clients.  Currently there is no replication.  
//   If we ever want to do puzzles with it, it should probably run server-side
//   and replicate changes to the clients.
//
// + Add rotation interpolation.
//
//------------------------------------------------------------------------------
class ParticleSprayer extends Actor
	placeable
	native;

#exec OBJ LOAD FILE=Textures\U2Particles.utx PACKAGE=ParticleSystems

// Defines a cone that the particles will be sprayed from.
// An angle in degress centered on our rotation vector.
var() float Spread;

// Number of particles emitted per second.
var() float Volume;

// Direction and magnitude of acceleration to apply to particles.
var() vector Gravity;

// Sprites to be used as particles.
struct STRUCT_Particle
{
	var() float LifeSpan;			// Number of seconds before destruction.

	var() float Weight;				// Relative probability of being chosen with DIST_Random.

	var() float MaxInitialVelocity;	// Velocity to start out with.
	var() float MinInitialVelocity;

	var() float MaxDrawScale;		// DrawScale to start out with.
	var() float MinDrawScale;

	var() float MaxScaleGlow;		// ScaleGlow to start out with.
	var() float MinScaleGlow;

	var() byte  GrowPhase;			// Number of toggles per lifespan.	(Toggles meaning inverting the GrowRate)
	var() float MaxGrowRate;		// DrawScale per second.	(positive values mean grow)
	var() float MinGrowRate;		//							(negative values mean shrink) 

	var() byte  FadePhase;			// Number of toggles per lifespan.	(Toggles meaning inverting the FadeRate)
	var() float MaxFadeRate;		// ScaleGlow per second.	(positive values mean fade in)
	var() float MinFadeRate;		//							(negative values mean fade out)
};

// Extra mesh related data.
struct AdditionalData
{
	var() rotator MaxInitialRotation;
	var() rotator MinInitialRotation;
	var() rotator MaxRotationRate;
	var() rotator MinRotationRate;
};

// Mesh animation rates.
var(Display) float MaxAnimRate;
var(Display) float MinAnimRate;

// Number of templates in the template array.
// When adding to the template/particles array, you will have to fill the slots in order
// so as not to cause the C++ code to reference Null data.  In addition, you will have
// to explicitly define how many templates have been filled in using this variable.
var() byte NumTemplates;

// Templates used to create the actual particles from.
var() STRUCT_Particle Templates[16];

// Used internally for linear distributions.
// (stored seperately since adding more stuff to the Particle struct doesn't shine in 
// the face of binary compatibility too well.)
var float Frequencies[16];
var float CumulativeFreqs[16];

// If you are using Linear Distribution, you need to set this variable to True if you change
// any of the templates' weights.  This tells the RenderIterator to update itself accordingly.
// Once the RI is up to date (i.e. the next time the frame is drawn), this variable will
// automatically be reset to false.
var() bool bLinearFrequenciesChanged;

// Extra data for meshes.
var() AdditionalData MeshData[16];

// Associated sprites to use with the above templates.
// This is kept seperate from the struct since it tends to crash UnrealEd when it's part of the Templates stuct.
var() Texture Particles[16];

var() enum EDistribution
{
	DIST_Random,	// Randomly pick a particle from the particle list.
	DIST_Linear		// Cyclically iterate though the particle list.
} ParticleDistribution;

// Number of iterations to prime the particle system with.
// (Assumes a 30 fps frame rate).
var() float PrimeCount;

// How long we stay on when TriggerTimed.
var() float TimerDuration;

// Used interally for TriggerTimed (see UParticleSprayerRI.cpp).
var float InternalTimer;

// Are we initially on?
var() bool bInitiallyOn;

// Are we on? - Used internally.  Can be used to turn particle systems on and off in UnrealEd.
var() bool bOn;

// If set, particles generate from this actor's location.
var Actor FollowActor;

// Absolute offset from our FollowActor (if we have one).
// Note: This is _not_ relative to the FollowActor's rotation.
var vector FollowOffset;

// Offset relative to our FollowActor.
// Note: This is maintainted internally.  
// Use SetFolowActor to attach this particle sprayer to an actor.
var vector RelativeOffset;
var rotator RelativeRotation;

// Percentage of the visibility radius used to scale the volume of the particle sprayer.
var() float VolumeScalePct;	// A number from 0.0 to 1.0.

// Clip using line of sight check?
var() bool bLOSClip;

// Minimum volume that Level->Engine-Client->ParticleDensity is allowed to scale us to.
var() float MinVolume;

// Decal support.
var(Decals) class<Decal> DecalType;	// Type of Decals to spray.
var(Decals) float DecalPercent;		// Percent of decals per particles.
var(Decals) float DecalMinLifeSpan, DecalMaxLifeSpan;	// Set to zero to use decal's default values.
var float DecalTimer;

// Interpolation.
var() bool bInterpolate;

// Grouping support.
var() bool bGrouped;
var() bool bRotationGrouped;
var() vector RotationPoint;

// Wind support.
var() bool bIsWindResistant;

// Do we need the overhead of the tick function below (for decals, etc).
var() bool bDisableTick;

/*
replication
{
	reliable if( Role==ROLE_Authority && bNetInitial )
		Volume, MinVolume, 
		FollowActor, RelativeOffset, RelativeRotation;

	reliable if( Role==ROLE_Authority )
		bOn, Gravity;

	unreliable if( Role==ROLE_Authority )
		Templates, Particles;
}
replication
{
	reliable if( Role==ROLE_Authority )
		Spread,
		Volume,
		Gravity,
		MaxAnimRate,
		MinAnimRate,
		NumTemplates,
		Templates,
		MeshData,
		Particles,
		ParticleDistribution,
		PrimeCount,
		TimerDuration,
		InternalTimer,
		bInitiallyOn,
		bOn,
		FollowActor,
		FollowOffset,
		RelativeOffset,
		RelativeRotation,
		VolumeScalePct,
		bLOSClip,
		MinVolume,
		DecalType,
		DecalPercent,
		DecalMinLifeSpan,
		DecalMaxLifeSpan,
		DecalTimer,
		bInterpolate,
		bGrouped,
		bRotationGrouped,
		RotationPoint,
		bIsWindResistant,
		bDisableTick;
}
*/

//------------------------------------------------------------------------------
// Use to shift all particles in the current system by the given vector.
//------------------------------------------------------------------------------
native(1003) final function ShiftParticles( vector Delta );

//------------------------------------------------------------------------------
// Used to rotation all particles in the current system by the given rotation
// about the given point.  (Defaults to rotation about its own Location.)
//------------------------------------------------------------------------------
native(1004) final function RotateParticles( rotator Delta, optional vector Origin );

//------------------------------------------------------------------------------
simulated event PreBeginPlay()
{
	// Force Linear frequencies to be recalculated if used.
	bLinearFrequenciesChanged = true;

	// Ensure we start with a fresh render iterator.
	if( RenderInterface != None )
	{
		RenderInterface.Delete();
		RenderInterface = None;
	}

	Super.PreBeginPlay();
	
	bOn = bInitiallyOn;

	if( bDisableTick )
	{
		Disable('Tick');
	}
}

//------------------------------------------------------------------------------
// Toggles us on and off when triggered.
//------------------------------------------------------------------------------
simulated state() TriggerToggle
{
	simulated function Trigger( Actor Other, Pawn EventInstigator, optional name EventName )
	{
		bOn = !bOn;
	}
}

//------------------------------------------------------------------------------
// Toggled when Triggered.
// Toggled back to initial state when UnTriggered.
//------------------------------------------------------------------------------
simulated state() TriggerControl
{
	simulated function Trigger( Actor Other, Pawn EventInstigator, optional name EventName )
	{
		bOn = !bInitiallyOn;
	}

	simulated function UnTrigger( Actor Other, Pawn EventInstigator, optional name EventName )
	{
		bOn = bInitiallyOn;
	}
}

//------------------------------------------------------------------------------
// Toggled when triggered.
// Toggled back to initial state after TimerDuration seconds.
//------------------------------------------------------------------------------
simulated state() TriggerTimed
{
	simulated function Trigger( Actor Other, Pawn EventInstigator, optional name EventName )
	{
		bOn = !bInitiallyOn;
		//SetTimer( TimerDuration, false );
		InternalTimer = TimerDuration;	// Maintained in UParticleSprayerRI.cpp
	}

/* -- Moved to UParticleSprayerRI.cpp
	simulated event Timer()
	{
		bOn = bInitiallyOn;
	}
*/
}

//------------------------------------------------------------------------------
simulated event Tick( float DeltaTime )
{
	local Decal D;
	local int Index;
	local float IScaledVolume;	// inverse scaled volume.

	Super.Tick( DeltaTime );

	// Create new decals as needed.
	if( DecalType != None && bOn && NumTemplates > 0 && Volume > 0.0 )
	{
		DecalTimer += DeltaTime;
		IScaledVolume = 1.0 / (Volume * DecalPercent);
		while( DecalTimer >= IScaledVolume )
		{
			// Update the timer according to the set Volume.
			DecalTimer -= IScaledVolume;

			// Throw a decal using a random Template.
			Index = Rand( NumTemplates );
			D = Spawn( DecalType,,, Location );
			if( D != None )
			{
				D.Velocity = class'Util'.static.CalcSprayDirection( Rotation, Spread ) * RandRange( Templates[Index].MinInitialVelocity, Templates[Index].MaxInitialVelocity );
				D.LifeSpan = RandRange( DecalMinLifeSpan, DecalMaxLifeSpan );
			}
		}
	}

	// Update location.
	if( FollowActor != None )
	{
		FollowOffset = RelativeOffset >> FollowActor.Rotation;
		SetLocation( FollowActor.Location + FollowOffset );
		SetRotation( FollowActor.Rotation + RelativeRotation );
	}
}

//------------------------------------------------------------------------------
// Use this instead of SetBase to attach a particle sprayer to an Actor.
// Set the location and rotation of the particle sprayer relative to the
// actor you are attaching it to, before calling this function.
//------------------------------------------------------------------------------
simulated function SetFollowActor( Actor Other )
{
	FollowActor = Other;
	RelativeOffset = (Location - Other.Location) << FollowActor.Rotation;
	FollowOffset = RelativeOffset >> FollowActor.Rotation;

	RelativeRotation = Rotation - Other.Rotation;
}

//------------------------------------------------------------------------------
// Struct Accessor functions.
//
// (Due to "Context expression: Variable is too large (896 bytes, 255 max)" limitation of UnrealScript.)
//------------------------------------------------------------------------------
simulated function SetParticleLifeSpan				( float LifeSpan,			int Index ){	Templates[ Index ].LifeSpan				= LifeSpan;				}
simulated function SetParticleWeight				( float Weight,				int Index ){	Templates[ Index ].Weight				= Weight;				}
simulated function SetParticleMaxInitialVelocity	( float MaxInitialVelocity,	int Index ){	Templates[ Index ].MaxInitialVelocity	= MaxInitialVelocity;	}
simulated function SetParticleMinInitialVelocity	( float MinInitialVelocity,	int Index ){	Templates[ Index ].MinInitialVelocity	= MinInitialVelocity;	}
simulated function SetParticleMaxDrawScale			( float MaxDrawScale,		int Index ){	Templates[ Index ].MaxDrawScale			= MaxDrawScale;			}
simulated function SetParticleMinDrawScale			( float MinDrawScale,		int Index ){	Templates[ Index ].MinDrawScale			= MinDrawScale;			}
simulated function SetParticleMaxScaleGlow			( float MaxScaleGlow,		int Index ){	Templates[ Index ].MaxScaleGlow			= MaxScaleGlow;			}
simulated function SetParticleMinScaleGlow			( float MinScaleGlow,		int Index ){	Templates[ Index ].MinScaleGlow			= MinScaleGlow;			}
simulated function SetParticleGrowPhase				( byte  GrowPhase,			int Index ){	Templates[ Index ].GrowPhase			= GrowPhase;			}
simulated function SetParticleMaxGrowRate			( float MaxGrowRate,		int Index ){	Templates[ Index ].MaxGrowRate			= MaxGrowRate;			}
simulated function SetParticleMinGrowRate			( float MinGrowRate,		int Index ){	Templates[ Index ].MinGrowRate			= MinGrowRate;			}
simulated function SetParticleFadePhase				( byte  FadePhase,			int Index ){	Templates[ Index ].FadePhase			= FadePhase;			}
simulated function SetParticleMaxFadeRate			( float MaxFadeRate,		int Index ){	Templates[ Index ].MaxFadeRate			= MaxFadeRate;			}
simulated function SetParticleMinFadeRate			( float MinFadeRate,		int Index ){	Templates[ Index ].MinFadeRate			= MinFadeRate;			}
//------------------------------------------------------------------------------
simulated function float GetParticleLifeSpan			( int Index ){	return Templates[ Index ].LifeSpan;				}
simulated function float GetParticleWeight				( int Index ){	return Templates[ Index ].Weight;				}
simulated function float GetParticleMaxInitialVelocity	( int Index ){	return Templates[ Index ].MaxInitialVelocity;	}
simulated function float GetParticleMinInitialVelocity	( int Index ){	return Templates[ Index ].MinInitialVelocity;	}
simulated function float GetParticleMaxDrawScale		( int Index ){	return Templates[ Index ].MaxDrawScale;			}
simulated function float GetParticleMinDrawScale		( int Index ){	return Templates[ Index ].MinDrawScale;			}
simulated function float GetParticleMaxScaleGlow		( int Index ){	return Templates[ Index ].MaxScaleGlow;			}
simulated function float GetParticleMinScaleGlow		( int Index ){	return Templates[ Index ].MinScaleGlow;			}
simulated function byte  GetParticleGrowPhase			( int Index ){	return Templates[ Index ].GrowPhase;			}
simulated function float GetParticleMaxGrowRate			( int Index ){	return Templates[ Index ].MaxGrowRate;			}
simulated function float GetParticleMinGrowRate			( int Index ){	return Templates[ Index ].MinGrowRate;			}
simulated function byte  GetParticleFadePhase			( int Index ){	return Templates[ Index ].FadePhase;			}
simulated function float GetParticleMaxFadeRate			( int Index ){	return Templates[ Index ].MaxFadeRate;			}
simulated function float GetParticleMinFadeRate			( int Index ){	return Templates[ Index ].MinFadeRate;			}
//------------------------------------------------------------------------------
simulated function float GetDefaultParticleLifeSpan				( int Index ){	return default.Templates[ Index ].LifeSpan;				}
simulated function float GetDefaultParticleWeight				( int Index ){	return default.Templates[ Index ].Weight;				}
simulated function float GetDefaultParticleMaxInitialVelocity	( int Index ){	return default.Templates[ Index ].MaxInitialVelocity;	}
simulated function float GetDefaultParticleMinInitialVelocity	( int Index ){	return default.Templates[ Index ].MinInitialVelocity;	}
simulated function float GetDefaultParticleMaxDrawScale			( int Index ){	return default.Templates[ Index ].MaxDrawScale;			}
simulated function float GetDefaultParticleMinDrawScale			( int Index ){	return default.Templates[ Index ].MinDrawScale;			}
simulated function float GetDefaultParticleMaxScaleGlow			( int Index ){	return default.Templates[ Index ].MaxScaleGlow;			}
simulated function float GetDefaultParticleMinScaleGlow			( int Index ){	return default.Templates[ Index ].MinScaleGlow;			}
simulated function byte  GetDefaultParticleGrowPhase			( int Index ){	return default.Templates[ Index ].GrowPhase;			}
simulated function float GetDefaultParticleMaxGrowRate			( int Index ){	return default.Templates[ Index ].MaxGrowRate;			}
simulated function float GetDefaultParticleMinGrowRate			( int Index ){	return default.Templates[ Index ].MinGrowRate;			}
simulated function byte  GetDefaultParticleFadePhase			( int Index ){	return default.Templates[ Index ].FadePhase;			}
simulated function float GetDefaultParticleMaxFadeRate			( int Index ){	return default.Templates[ Index ].MaxFadeRate;			}
simulated function float GetDefaultParticleMinFadeRate			( int Index ){	return default.Templates[ Index ].MinFadeRate;			}
//------------------------------------------------------------------------------

defaultproperties
{
	Spread=45.000000
	Volume=10.000000
	Templates(0)=(LifeSpan=1.000000,Weight=1.000000,MaxDrawScale=1.000000,MinDrawScale=1.000000,MaxScaleGlow=1.000000,MinScaleGlow=1.000000)
	Templates(1)=(LifeSpan=1.000000,Weight=1.000000,MaxDrawScale=1.000000,MinDrawScale=1.000000,MaxScaleGlow=1.000000,MinScaleGlow=1.000000)
	Templates(2)=(LifeSpan=1.000000,Weight=1.000000,MaxDrawScale=1.000000,MinDrawScale=1.000000,MaxScaleGlow=1.000000,MinScaleGlow=1.000000)
	Templates(3)=(LifeSpan=1.000000,Weight=1.000000,MaxDrawScale=1.000000,MinDrawScale=1.000000,MaxScaleGlow=1.000000,MinScaleGlow=1.000000)
	Templates(4)=(LifeSpan=1.000000,Weight=1.000000,MaxDrawScale=1.000000,MinDrawScale=1.000000,MaxScaleGlow=1.000000,MinScaleGlow=1.000000)
	Templates(5)=(LifeSpan=1.000000,Weight=1.000000,MaxDrawScale=1.000000,MinDrawScale=1.000000,MaxScaleGlow=1.000000,MinScaleGlow=1.000000)
	Templates(6)=(LifeSpan=1.000000,Weight=1.000000,MaxDrawScale=1.000000,MinDrawScale=1.000000,MaxScaleGlow=1.000000,MinScaleGlow=1.000000)
	Templates(7)=(LifeSpan=1.000000,Weight=1.000000,MaxDrawScale=1.000000,MinDrawScale=1.000000,MaxScaleGlow=1.000000,MinScaleGlow=1.000000)
	Templates(8)=(LifeSpan=1.000000,Weight=1.000000,MaxDrawScale=1.000000,MinDrawScale=1.000000,MaxScaleGlow=1.000000,MinScaleGlow=1.000000)
	Templates(9)=(LifeSpan=1.000000,Weight=1.000000,MaxDrawScale=1.000000,MinDrawScale=1.000000,MaxScaleGlow=1.000000,MinScaleGlow=1.000000)
	Templates(10)=(LifeSpan=1.000000,Weight=1.000000,MaxDrawScale=1.000000,MinDrawScale=1.000000,MaxScaleGlow=1.000000,MinScaleGlow=1.000000)
	Templates(11)=(LifeSpan=1.000000,Weight=1.000000,MaxDrawScale=1.000000,MinDrawScale=1.000000,MaxScaleGlow=1.000000,MinScaleGlow=1.000000)
	Templates(12)=(LifeSpan=1.000000,Weight=1.000000,MaxDrawScale=1.000000,MinDrawScale=1.000000,MaxScaleGlow=1.000000,MinScaleGlow=1.000000)
	Templates(13)=(LifeSpan=1.000000,Weight=1.000000,MaxDrawScale=1.000000,MinDrawScale=1.000000,MaxScaleGlow=1.000000,MinScaleGlow=1.000000)
	Templates(14)=(LifeSpan=1.000000,Weight=1.000000,MaxDrawScale=1.000000,MinDrawScale=1.000000,MaxScaleGlow=1.000000,MinScaleGlow=1.000000)
	Templates(15)=(LifeSpan=1.000000,Weight=1.000000,MaxDrawScale=1.000000,MinDrawScale=1.000000,MaxScaleGlow=1.000000,MinScaleGlow=1.000000)
	bLinearFrequenciesChanged=true
	bInitiallyOn=true
	VolumeScalePct=0.500000
	DecalPercent=0.100000
	bDisableTick=true
	bStatic=true
	RemoteRole=ROLE_None
	Rotation=(Pitch=16384)
	bSpecialRotationRep=true
	Texture=Texture'ParticleSystems.Icons.S_ParticleSprayer'
	VisibilityRadius=1600.000000
	VisibilityHeight=1600.000000
	Style=STY_Translucent
	bGameRelevant=true
	bDirectional=true
	RenderIteratorClass=Class'ParticleSystems.ParticleSprayerRI'
     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:40.000 - Creation time: sk 3-1-2016 10:48:40.777 - Created with UnCodeX