Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/orxonox/trunk/src/lib/physics/physics_engine.h @ 4519

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

orxonox/trunk: changed all getInstances into inline functions to save some (minor) time

File size: 1.3 KB
Line 
1/*!
2    \file physics_engine.h
3    \brief Definition of the ... singleton Class
4   
5*/
6
7#ifndef _PHYSICS_ENGINE_H
8#define _PHYSICS_ENGINE_H
9
10#include "base_object.h"
11
12#include "physics_connection.h"
13#include "physics_interface.h"
14#include "field.h"
15
16// Forward Declaration
17template<class T> class tList;
18
19
20//! A default singleton class.
21class PhysicsEngine : public BaseObject {
22
23 public:
24  virtual ~PhysicsEngine(void);
25  /** \returns a Pointer to the only object of this Class */
26  inline static PhysicsEngine* getInstance(void) { if (!singletonRef) singletonRef = new PhysicsEngine();  return singletonRef; };
27
28  void addPhysicsInterface(PhysicsInterface* physicsInterface);
29  void removePhysicsInterface(PhysicsInterface* physicsInterface);
30
31  void addField(Field* field);
32  void removeField(Field* field);
33
34  void addConnection(PhysicsConnection* connection);
35  void removeConnection(PhysicsConnection* connection);
36
37  void tick(float dt);
38
39  void debug(void) const;
40
41 private:
42  PhysicsEngine(void);
43  static PhysicsEngine* singletonRef;      //!< the singleton reference of the PhysicsEngine
44
45  tList<PhysicsInterface>* interfaces;     //!< a list of physically based objects
46  tList<Field>* fields;                    //!< a list of physicsl fields.
47  tList<PhysicsConnection>* connections;   //!< a list of physical connections
48};
49
50
51
52#endif /* _PHYSICS_ENGINE_H */
Note: See TracBrowser for help on using the repository browser.