[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: |
---|
[1552] | 23 | * ... |
---|
[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> |
---|
| 35 | #include <OgreParticleEmitter.h> |
---|
| 36 | |
---|
[1563] | 37 | #include "core/OrxonoxClass.h" |
---|
[1505] | 38 | #include "util/Math.h" |
---|
| 39 | |
---|
[1552] | 40 | #define getAllEmitters() \ |
---|
| 41 | storeThisAsCurrentParticleInterface(); \ |
---|
| 42 | for (unsigned int i = 0; i < ParticleInterface::getCurrentParticleInterface()->getNumEmitters(); ++i) \ |
---|
| 43 | ParticleInterface::getCurrentParticleInterface()->getEmitter(i) |
---|
[1505] | 44 | |
---|
| 45 | namespace orxonox |
---|
| 46 | { |
---|
[1563] | 47 | class _OrxonoxExport ParticleInterface : public OrxonoxClass |
---|
[1505] | 48 | { |
---|
[1552] | 49 | public: |
---|
[1563] | 50 | ParticleInterface(const std::string& templateName, LODParticle::LOD detaillevel); |
---|
[1552] | 51 | ~ParticleInterface(); |
---|
[1505] | 52 | |
---|
[1552] | 53 | inline Ogre::ParticleSystem* getParticleSystem() const |
---|
| 54 | { return this->particleSystem_; } |
---|
[1505] | 55 | |
---|
[1552] | 56 | void addToSceneNode(Ogre::SceneNode* sceneNode); |
---|
| 57 | void detachFromSceneNode(); |
---|
[1505] | 58 | |
---|
[1552] | 59 | Ogre::ParticleEmitter* createNewEmitter(); |
---|
| 60 | Ogre::ParticleEmitter* getEmitter(unsigned int emitterNr) const; |
---|
| 61 | void removeEmitter(unsigned int emitterNr); |
---|
| 62 | void removeAllEmitters(); |
---|
| 63 | unsigned int getNumEmitters() const; |
---|
[1505] | 64 | |
---|
[1552] | 65 | Ogre::ParticleAffector* addAffector(const std::string& name); |
---|
| 66 | Ogre::ParticleAffector* getAffector(unsigned int affectorNr) const; |
---|
| 67 | void removeAffector(unsigned int affectorNr); |
---|
| 68 | void removeAllAffectors(); |
---|
| 69 | unsigned int getNumAffectors() const; |
---|
[1505] | 70 | |
---|
[1552] | 71 | float getSpeedFactor() const; |
---|
| 72 | void setSpeedFactor(float factor); |
---|
| 73 | bool getKeepParticlesInLocalSpace() const; |
---|
| 74 | void setKeepParticlesInLocalSpace(bool keep); |
---|
[1505] | 75 | |
---|
[1552] | 76 | void setEnabled(bool enable); |
---|
[1563] | 77 | void detailLevelChanged(unsigned int newlevel); |
---|
[1505] | 78 | |
---|
[1552] | 79 | inline void storeThisAsCurrentParticleInterface() |
---|
| 80 | { ParticleInterface::currentParticleInterface_s = this; } |
---|
| 81 | inline static ParticleInterface* getCurrentParticleInterface() |
---|
| 82 | { return ParticleInterface::currentParticleInterface_s; } |
---|
[1505] | 83 | |
---|
[1552] | 84 | private: |
---|
[1563] | 85 | void updateVisibility(); |
---|
| 86 | |
---|
[1552] | 87 | static ParticleInterface* currentParticleInterface_s; |
---|
| 88 | static unsigned int counter_s; |
---|
| 89 | Ogre::SceneNode* sceneNode_; |
---|
| 90 | Ogre::ParticleSystem* particleSystem_; |
---|
[1563] | 91 | bool bVisible_; |
---|
| 92 | bool bEnabled_; |
---|
| 93 | unsigned int detaillevel_; //!< Detail level of this particle effect (0: off, 1: low, 2: normal, 3: high) |
---|
[1505] | 94 | }; |
---|
| 95 | } |
---|
| 96 | |
---|
| 97 | #endif /* _ParticleInterface_H__ */ |
---|