Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/lib/graphics/particles/particle_engine.h @ 3966

Last change on this file since 3966 was 3966, checked in by bensch, 19 years ago

orxonox/trunk: merged branches/particleEngine into the trunk, because of the new vector class
merged with command:
svn merge -r 3922:HEAD particleEngine/ ../trunk/

not merged src/story_entities/world.cc. will do this at a later time (do not forget)

File size: 1.2 KB
Line 
1/*!
2    \file particle_engine.h
3    \brief Definition of the ParticleEngine
4*/
5
6#ifndef _PARTICLE_ENGINE_H
7#define _PARTICLE_ENGINE_H
8
9#include "base_object.h"
10
11// FORWARD DEFINITION
12template<class T> class tList;
13class ParticleSystem;
14class ParticleEmitter;
15
16struct ParticleConnection
17{
18  ParticleEmitter* emitter;    //!< The emitter to emit system from.
19  ParticleSystem* system;      //!< The Particles emitted from emitter.
20};
21
22//! A default singleton class.
23class ParticleEngine : public BaseObject {
24
25 public:
26  static ParticleEngine* getInstance(void);
27  virtual ~ParticleEngine(void);
28
29  void tick(float dt);
30  void draw(void);
31
32  void addSystem(ParticleSystem* system);
33  void addEmitter(ParticleEmitter* emitter);
34  void addConnection(ParticleEmitter* emitter, ParticleSystem* system);
35
36  bool removeSystem(ParticleSystem* system);
37  bool removeEmitter(ParticleEmitter* emitter);
38  bool breakConnection(ParticleEmitter* emitter, ParticleSystem* system);
39  bool breakConnection(ParticleConnection* connection);
40
41  void debug();
42
43 private:
44  ParticleEngine(void);
45  static ParticleEngine* singletonRef;
46
47  tList<ParticleSystem>* systemList;
48  tList<ParticleEmitter>* emitterList;
49
50  tList<ParticleConnection>* connectionList;
51};
52
53#endif /* _PARTICLE_ENGINE_H */
Note: See TracBrowser for help on using the repository browser.