Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/physics/src/orxonox/tools/ParticleInterface.h @ 2296

Last change on this file since 2296 was 2296, checked in by rgrieder, 15 years ago

Made return value of WorldEntity::getNode() const —> Modifying the node_ will not anymore be allowed.
That change implicates:

  • Removed Ogre::SceneNode from ParticleInterface. It gets connected now by the ParticleEmitter
  • Added functions attachOgreObject and detachOgreObject to WorldEntity
  • changed all getNode()→attachObject(…) to attachOgreObject(…)
  • Property svn:eol-style set to native
File size: 3.8 KB
Line 
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:
23 *      Fabian 'x3n' Landau
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
37#include "core/OrxonoxClass.h"
38#include "util/Math.h"
39
40#define getAllEmitters() \
41  storeThisAsCurrentParticleInterface(); \
42  for (unsigned int i = 0; i < ParticleInterface::getCurrentParticleInterface()->getNumEmitters(); ++i) \
43    ParticleInterface::getCurrentParticleInterface()->getEmitter(i)
44
45namespace orxonox
46{
47    class _OrxonoxExport ParticleInterface : public OrxonoxClass
48    {
49        public:
50            ParticleInterface(Ogre::SceneManager* scenemanager, const std::string& templateName, LODParticle::LOD detaillevel);
51            virtual ~ParticleInterface();
52
53            inline Ogre::ParticleSystem* getParticleSystem() const
54                { return this->particleSystem_; }
55
56            Ogre::ParticleEmitter* createNewEmitter();
57            Ogre::ParticleEmitter* getEmitter(unsigned int emitterNr) const;
58            void removeEmitter(unsigned int emitterNr);
59            void removeAllEmitters();
60            unsigned int getNumEmitters() const;
61
62            Ogre::ParticleAffector* addAffector(const std::string& name);
63            Ogre::ParticleAffector* getAffector(unsigned int affectorNr) const;
64            void removeAffector(unsigned int affectorNr);
65            void removeAllAffectors();
66            unsigned int getNumAffectors() const;
67
68            float getSpeedFactor() const;
69            void setSpeedFactor(float factor);
70            bool getKeepParticlesInLocalSpace() const;
71            void setKeepParticlesInLocalSpace(bool keep);
72
73            void setEnabled(bool enable);
74            inline bool isEnabled() const
75                { return this->bEnabled_; }
76
77            void setVisible(bool visible);
78            inline bool isVisible() const
79                { return this->bVisible_; }
80
81            void detailLevelChanged(unsigned int newlevel);
82            void setDetailLevel(unsigned int level);
83
84            inline void storeThisAsCurrentParticleInterface()
85                { ParticleInterface::currentParticleInterface_s = this; }
86            inline static ParticleInterface* getCurrentParticleInterface()
87                { return ParticleInterface::currentParticleInterface_s; }
88
89        private:
90            void updateVisibility();
91
92            static ParticleInterface* currentParticleInterface_s;
93            static unsigned int       counter_s;
94
95            Ogre::ParticleSystem*     particleSystem_;
96            bool                      bVisible_;
97            bool                      bEnabled_;
98            bool                      bAllowedByLOD_;
99            unsigned int              detaillevel_;     //!< Detail level of this particle effect (0: off, 1: low, 2: normal, 3: high)
100            Ogre::SceneManager*       scenemanager_;
101    };
102}
103
104#endif /* _ParticleInterface_H__ */
Note: See TracBrowser for help on using the repository browser.