Particle Universe  1.2
ParticleUniverse::TextureRotator Class Reference

#include <ParticleUniverseTextureRotator.h>

Inheritance diagram for ParticleUniverse::TextureRotator:

Public Member Functions

 TextureRotator (void)
 
virtual ~TextureRotator (void)
 
bool useOwnRotationSpeed (void) const
 
void setUseOwnRotationSpeed (bool useOwnRotationSpeed)
 
DynamicAttributegetRotationSpeed (void) const
 
void setRotationSpeed (DynamicAttribute *dynRotationSpeed)
 
DynamicAttributegetRotation (void) const
 
void setRotation (DynamicAttribute *dynRotation)
 
virtual void copyAttributesTo (ParticleAffector *affector)
 
Radian _calculateRotation (void)
 
Radian _calculateRotationSpeed (Particle *particle)
 
virtual void _initParticleForEmission (Particle *particle)
 
virtual void _affect (ParticleTechnique *particleTechnique, Particle *particle, Real timeElapsed)
 
- Public Member Functions inherited from ParticleUniverse::ParticleAffector
 ParticleAffector (void)
 
virtual ~ParticleAffector (void)
 
const AffectSpecialisationgetAffectSpecialisation (void) const
 
void setAffectSpecialisation (const AffectSpecialisation &affectSpecialisation)
 
const StringgetAffectorType (void) const
 
void setAffectorType (const String &affectorType)
 
const StringgetName (void) const
 
void setName (const String &name)
 
ParticleTechniquegetParentTechnique (void) const
 
void setParentTechnique (ParticleTechnique *parentTechnique)
 
virtual void _prepare (ParticleTechnique *particleTechnique)
 
virtual void _unprepare (ParticleTechnique *particleTechnique)
 
virtual void _notifyStart (void)
 
virtual void _notifyStop (void)
 
virtual void _notifyPause (void)
 
virtual void _notifyResume (void)
 
virtual void _notifyRescaled (const Vector3 &scale)
 
virtual void _preProcessParticles (ParticleTechnique *particleTechnique, Real timeElapsed)
 
virtual void _firstParticle (ParticleTechnique *particleTechnique, Particle *particle, Real timeElapsed)
 
virtual void _initForEmission (void)
 
virtual void _initForExpiration (ParticleTechnique *technique, Real timeElapsed)
 
void _processParticle (ParticleTechnique *particleTechnique, Particle *particle, Real timeElapsed, bool firstParticle)
 
virtual void _postProcessParticles (ParticleTechnique *technique, Real timeElapsed)
 
void addEmitterToExclude (const String &emitterName)
 
void removeEmitterToExclude (const String &emitterName)
 
void removeAllEmittersToExclude (void)
 
const list< String > & getEmittersToExclude (void) const
 
bool hasEmitterToExclude (const String &emitterName)
 
virtual void copyParentAttributesTo (ParticleAffector *affector)
 
const Vector3getDerivedPosition (void)
 
Real _calculateAffectSpecialisationFactor (const Particle *particle)
 
- Public Member Functions inherited from ParticleUniverse::Particle
 Particle (void)
 
virtual ~Particle (void)
 
bool _isMarkedForEmission (void) const
 
void _setMarkedForEmission (bool markedForEmission)
 
virtual bool isEnabled (void) const
 
virtual void setEnabled (bool enabled)
 
void _setOriginalEnabled (bool originalEnabled)
 
bool _getOriginalEnabled (void) const
 
bool isFreezed (void) const
 
void setFreezed (bool freezed)
 
void setEventFlags (uint32 flags)
 
void addEventFlags (uint32 flags)
 
void removeEventFlags (uint32 flags)
 
uint32 getEventFlags (void) const
 
bool hasEventFlags (uint32 flags) const
 
void copyBehaviours (ParticleBehaviourList &behaviours)
 
virtual void _process (ParticleTechnique *technique, Real timeElapsed)
 
ParticleBehaviourgetBehaviour (const String &behaviourType)
 
Real calculateVelocity (void) const
 
virtual void copyAttributesTo (Particle *particle)
 
- Public Member Functions inherited from ParticleUniverse::IAlias
 IAlias (void)
 
virtual ~IAlias (void)
 
const StringgetAliasName (void) const
 
void setAliasName (String aliasName)
 
const AliasType getAliasType (void) const
 
void setAliasType (AliasType aliasType)
 
- Public Member Functions inherited from ParticleUniverse::IElement
 IElement (void)
 
virtual ~IElement (void)
 

Static Public Attributes

static const bool DEFAULT_USE_OWN_SPEED
 
static const Real DEFAULT_ROTATION_SPEED
 
static const Real DEFAULT_ROTATION
 
- Static Public Attributes inherited from ParticleUniverse::ParticleAffector
static const bool DEFAULT_ENABLED
 
static const Vector3 DEFAULT_POSITION
 
static const AffectSpecialisation DEFAULT_SPECIALISATION
 
- Static Public Attributes inherited from ParticleUniverse::Particle
static Real DEFAULT_TTL
 
static Real DEFAULT_MASS
 

Protected Attributes

bool mUseOwnRotationSpeed
 
Radian mScaledRotationSpeed
 
Radian twoPiRad
 
DynamicAttributemDynRotation
 
DynamicAttributemDynRotationSpeed
 
DynamicAttributeFactory mDynamicAttributeFactory
 
DynamicAttributeHelper mDynamicAttributeHelper
 
- Protected Attributes inherited from ParticleUniverse::ParticleAffector
ParticleTechniquemParentTechnique
 
String mAffectorType
 
String mName
 
AffectSpecialisation mAffectSpecialisation
 
list< StringmExcludedEmitters
 
Vector3 _mAffectorScale
 
- Protected Attributes inherited from ParticleUniverse::Particle
uint32 mEventFlags
 
bool mMarkedForEmission
 
bool mEnabled
 
bool mFreezed
 
bool mOriginalEnabled
 
bool mOriginalEnabledSet
 
Vector3 mDerivedPosition
 
ParticleBehaviourList mBehaviours
 
- Protected Attributes inherited from ParticleUniverse::IAlias
String mAliasName
 
AliasType mAliasType
 

Additional Inherited Members

- Public Types inherited from ParticleUniverse::ParticleAffector
enum  AffectSpecialisation { AFSP_DEFAULT, AFSP_TTL_INCREASE, AFSP_TTL_DECREASE }
 
- Public Types inherited from ParticleUniverse::Particle
enum  ParticleType {
  PT_VISUAL, PT_TECHNIQUE, PT_EMITTER, PT_AFFECTOR,
  PT_SYSTEM
}
 
enum  ReservedParticleEventFlags { PEF_EXPIRED = 1<<0, PEF_EMITTED = 1<<1, PEF_COLLIDED = 1<<2 }
 
typedef vector< ParticleBehaviour * > ParticleBehaviourList
 
typedef ParticleBehaviourList::const_iterator ParticleBehaviourIterator
 
- Public Types inherited from ParticleUniverse::IAlias
enum  AliasType {
  AT_UNDEFINED, AT_TECHNIQUE, AT_RENDERER, AT_EMITTER,
  AT_AFFECTOR, AT_OBSERVER, AT_EXTERN, AT_HANDLER,
  AT_BEHAVIOUR
}
 
- Public Attributes inherited from ParticleUniverse::Particle
ParticleEmitterparentEmitter
 
Vector3 position
 
Vector3 direction
 
Real mass
 
Real timeToLive
 
Real totalTimeToLive
 
Real timeFraction
 
ParticleType particleType
 
Any mUserDefinedObject
 
PhysicsActorphysicsActor
 
IVisualDatavisualData
 
Vector3 originalPosition
 
Vector3 originalDirection
 
Real originalVelocity
 
Real originalDirectionLength
 
Real originalScaledDirectionLength
 
Vector3 latestPosition
 

Detailed Description

The TextureRotator rotates the texture(s) of a particle. In general it is possible to support individual rotation of each particle texture-set - the same as in the geometry rotator, setting mUseOwnRotationSpeed to true -, but in practice this isn't really usable, because usually all particles share the same material.

Constructor & Destructor Documentation

ParticleUniverse::TextureRotator::TextureRotator ( void  )
virtual ParticleUniverse::TextureRotator::~TextureRotator ( void  )
virtual

Member Function Documentation

virtual void ParticleUniverse::TextureRotator::_affect ( ParticleTechnique particleTechnique,
Particle particle,
Real  timeElapsed 
)
virtual

Affect a particle.

Parameters
particlePointer to a ParticleTechnique to which the particle belongs.
particlePointer to a Particle.
timeElapsedThe number of seconds which have elapsed since the last call.

Implements ParticleUniverse::ParticleAffector.

Radian ParticleUniverse::TextureRotator::_calculateRotation ( void  )

Returns a rotation set in the affector, depending on the type of dynamic attribute.

Radian ParticleUniverse::TextureRotator::_calculateRotationSpeed ( Particle particle)

Returns a rotation speed value, depending on the type of dynamic attribute.

virtual void ParticleUniverse::TextureRotator::_initParticleForEmission ( Particle particle)
virtual

Initialise a newly emitted particle.

Parameters
particlePointer to a Particle to initialise.

Reimplemented from ParticleUniverse::ParticleAffector.

virtual void ParticleUniverse::TextureRotator::copyAttributesTo ( ParticleAffector affector)
virtual

Copy attributes to another affector.

Reimplemented from ParticleUniverse::ParticleAffector.

DynamicAttribute* ParticleUniverse::TextureRotator::getRotation ( void  ) const

Returns the rotation defined in the the affector.

DynamicAttribute* ParticleUniverse::TextureRotator::getRotationSpeed ( void  ) const

Returns the rotation speed. This is the speed controlled by the affector.

void ParticleUniverse::TextureRotator::setRotation ( DynamicAttribute dynRotation)
void ParticleUniverse::TextureRotator::setRotationSpeed ( DynamicAttribute dynRotationSpeed)
void ParticleUniverse::TextureRotator::setUseOwnRotationSpeed ( bool  useOwnRotationSpeed)

Set the indication whether the 2D rotation speed of the particle itself is used.

bool ParticleUniverse::TextureRotator::useOwnRotationSpeed ( void  ) const

Returns an indication whether the 2D rotation speed is the same for all particles in this particle technique, or whether the 2D rotation speed of the particle itself is used.

Member Data Documentation

const Real ParticleUniverse::TextureRotator::DEFAULT_ROTATION
static
const Real ParticleUniverse::TextureRotator::DEFAULT_ROTATION_SPEED
static
const bool ParticleUniverse::TextureRotator::DEFAULT_USE_OWN_SPEED
static
DynamicAttributeFactory ParticleUniverse::TextureRotator::mDynamicAttributeFactory
protected

Helper factory

DynamicAttributeHelper ParticleUniverse::TextureRotator::mDynamicAttributeHelper
protected
DynamicAttribute* ParticleUniverse::TextureRotator::mDynRotation
protected
DynamicAttribute* ParticleUniverse::TextureRotator::mDynRotationSpeed
protected
Radian ParticleUniverse::TextureRotator::mScaledRotationSpeed
protected
bool ParticleUniverse::TextureRotator::mUseOwnRotationSpeed
protected
Radian ParticleUniverse::TextureRotator::twoPiRad
protected

The documentation for this class was generated from the following file: