[1505] | 1 | /* |
---|
| 2 | * ORXONOX - the hottest 3D action shooter ever to exist |
---|
| 3 | * > www.orxonox.net < |
---|
| 4 | * |
---|
| 5 | * |
---|
| 6 | * License notice: |
---|
| 7 | * |
---|
| 8 | * This program is free software; you can redistribute it and/or |
---|
| 9 | * modify it under the terms of the GNU General Public License |
---|
| 10 | * as published by the Free Software Foundation; either version 2 |
---|
| 11 | * of the License, or (at your option) any later version. |
---|
| 12 | * |
---|
| 13 | * This program is distributed in the hope that it will be useful, |
---|
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 16 | * GNU General Public License for more details. |
---|
| 17 | * |
---|
| 18 | * You should have received a copy of the GNU General Public License |
---|
| 19 | * along with this program; if not, write to the Free Software |
---|
| 20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
---|
| 21 | * |
---|
| 22 | * Author: |
---|
[2087] | 23 | * Fabian 'x3n' Landau |
---|
[1505] | 24 | * Co-authors: |
---|
| 25 | * ... |
---|
| 26 | * |
---|
| 27 | */ |
---|
| 28 | |
---|
| 29 | #ifndef _ParticleInterface_H__ |
---|
| 30 | #define _ParticleInterface_H__ |
---|
| 31 | |
---|
| 32 | #include "OrxonoxPrereqs.h" |
---|
| 33 | |
---|
| 34 | #include <string> |
---|
[2662] | 35 | #include <OgrePrerequisites.h> |
---|
[1505] | 36 | |
---|
[1563] | 37 | #include "core/OrxonoxClass.h" |
---|
[1505] | 38 | #include "util/Math.h" |
---|
[2896] | 39 | #include "tools/TimeFactorListener.h" |
---|
[1505] | 40 | |
---|
[1552] | 41 | #define getAllEmitters() \ |
---|
| 42 | storeThisAsCurrentParticleInterface(); \ |
---|
| 43 | for (unsigned int i = 0; i < ParticleInterface::getCurrentParticleInterface()->getNumEmitters(); ++i) \ |
---|
| 44 | ParticleInterface::getCurrentParticleInterface()->getEmitter(i) |
---|
[1505] | 45 | |
---|
| 46 | namespace orxonox |
---|
| 47 | { |
---|
[2662] | 48 | class _OrxonoxExport ParticleInterface : public TimeFactorListener |
---|
[2087] | 49 | { |
---|
| 50 | public: |
---|
| 51 | ParticleInterface(Ogre::SceneManager* scenemanager, const std::string& templateName, LODParticle::LOD detaillevel); |
---|
| 52 | virtual ~ParticleInterface(); |
---|
[1505] | 53 | |
---|
[2087] | 54 | inline Ogre::ParticleSystem* getParticleSystem() const |
---|
| 55 | { return this->particleSystem_; } |
---|
[1505] | 56 | |
---|
[2087] | 57 | Ogre::ParticleEmitter* createNewEmitter(); |
---|
| 58 | Ogre::ParticleEmitter* getEmitter(unsigned int emitterNr) const; |
---|
| 59 | void removeEmitter(unsigned int emitterNr); |
---|
| 60 | void removeAllEmitters(); |
---|
| 61 | unsigned int getNumEmitters() const; |
---|
[1505] | 62 | |
---|
[2087] | 63 | Ogre::ParticleAffector* addAffector(const std::string& name); |
---|
| 64 | Ogre::ParticleAffector* getAffector(unsigned int affectorNr) const; |
---|
| 65 | void removeAffector(unsigned int affectorNr); |
---|
| 66 | void removeAllAffectors(); |
---|
| 67 | unsigned int getNumAffectors() const; |
---|
[1505] | 68 | |
---|
[2662] | 69 | inline float getSpeedFactor() const |
---|
| 70 | { return this->speedFactor_; } |
---|
[2087] | 71 | void setSpeedFactor(float factor); |
---|
| 72 | bool getKeepParticlesInLocalSpace() const; |
---|
| 73 | void setKeepParticlesInLocalSpace(bool keep); |
---|
[1505] | 74 | |
---|
[2087] | 75 | void setEnabled(bool enable); |
---|
| 76 | inline bool isEnabled() const |
---|
| 77 | { return this->bEnabled_; } |
---|
[1505] | 78 | |
---|
[2087] | 79 | void setVisible(bool visible); |
---|
| 80 | inline bool isVisible() const |
---|
| 81 | { return this->bVisible_; } |
---|
[1505] | 82 | |
---|
[2087] | 83 | void detailLevelChanged(unsigned int newlevel); |
---|
| 84 | void setDetailLevel(unsigned int level); |
---|
[1563] | 85 | |
---|
[2087] | 86 | inline void storeThisAsCurrentParticleInterface() |
---|
| 87 | { ParticleInterface::currentParticleInterface_s = this; } |
---|
| 88 | inline static ParticleInterface* getCurrentParticleInterface() |
---|
| 89 | { return ParticleInterface::currentParticleInterface_s; } |
---|
| 90 | |
---|
[2662] | 91 | protected: |
---|
| 92 | virtual void changedTimeFactor(float factor_new, float factor_old); |
---|
| 93 | |
---|
[2087] | 94 | private: |
---|
| 95 | void updateVisibility(); |
---|
| 96 | |
---|
| 97 | static ParticleInterface* currentParticleInterface_s; |
---|
| 98 | static unsigned int counter_s; |
---|
| 99 | |
---|
| 100 | Ogre::ParticleSystem* particleSystem_; |
---|
| 101 | bool bVisible_; |
---|
| 102 | bool bEnabled_; |
---|
| 103 | bool bAllowedByLOD_; |
---|
| 104 | unsigned int detaillevel_; //!< Detail level of this particle effect (0: off, 1: low, 2: normal, 3: high) |
---|
[2662] | 105 | float speedFactor_; |
---|
[2087] | 106 | Ogre::SceneManager* scenemanager_; |
---|
| 107 | }; |
---|
[1505] | 108 | } |
---|
| 109 | |
---|
| 110 | #endif /* _ParticleInterface_H__ */ |
---|