git-svn-id: https://reactphysics3d.googlecode.com/svn/trunk@99 92aac97c-a6ce-11dd-a772-7fcde58d38e6

This commit is contained in:
chappuis.daniel 2009-02-13 11:26:15 +00:00
parent 9cf084f4ce
commit f4e061911c
6 changed files with 73 additions and 31 deletions

View File

@ -24,9 +24,13 @@
using namespace reactphysics3d; using namespace reactphysics3d;
// Constructor // Constructor
DynamicEngine::DynamicEngine(DynamicWorld& world, const Time& timeStep) DynamicEngine::DynamicEngine(DynamicWorld* world, const Time& timeStep)
:PhysicsEngine(world, timeStep) { :PhysicsEngine(world, timeStep) {
// Check if the pointer to the world is not NULL
if (world == 0) {
// Throw an exception
throw std::invalid_argument("Exception in PhysicsEngine constructor : World pointer cannot be NULL");
}
} }
// Copy-constructor // Copy-constructor
@ -52,10 +56,12 @@ void DynamicEngine::updateBodyState(RigidBody* const rigidBody) {
// Update the physics simulation // Update the physics simulation
void DynamicEngine::update() { void DynamicEngine::update() {
// Check if the physics simulation is running
if (timer.getIsRunning()) {
// While the time accumulator is not empty // While the time accumulator is not empty
while(timer.getAccumulator() >= timer.getTimeStep().getValue()) { while(timer.getAccumulator() >= timer.getTimeStep().getValue()) {
// For each body in the dynamic world // For each body in the dynamic world
for(std::vector<Body*>::const_iterator it = world.getBodyListStartIterator(); it != world.getBodyListEndIterator(); ++it) { for(std::vector<Body*>::const_iterator it = world->getBodyListStartIterator(); it != world->getBodyListEndIterator(); ++it) {
// If the body is a RigidBody and if the rigid body motion is enabled // If the body is a RigidBody and if the rigid body motion is enabled
RigidBody* rigidBody = dynamic_cast<RigidBody*>(*it); RigidBody* rigidBody = dynamic_cast<RigidBody*>(*it);
if (rigidBody && rigidBody->getIsMotionEnabled()) { if (rigidBody && rigidBody->getIsMotionEnabled()) {
@ -69,7 +75,7 @@ void DynamicEngine::update() {
} }
// For each body in the dynamic world // For each body in the dynamic world
for(std::vector<Body*>::const_iterator it = world.getBodyListStartIterator(); it != world.getBodyListEndIterator(); ++it) { for(std::vector<Body*>::const_iterator it = world->getBodyListStartIterator(); it != world->getBodyListEndIterator(); ++it) {
// If the body is a RigidBody and if the rigid body motion is enabled // If the body is a RigidBody and if the rigid body motion is enabled
RigidBody* rigidBody = dynamic_cast<RigidBody*>(*it); RigidBody* rigidBody = dynamic_cast<RigidBody*>(*it);
if (rigidBody && rigidBody->getIsMotionEnabled()) { if (rigidBody && rigidBody->getIsMotionEnabled()) {
@ -78,4 +84,5 @@ void DynamicEngine::update() {
rigidBody->setInterpolationFactor(timer.getInterpolationFactor()); rigidBody->setInterpolationFactor(timer.getInterpolationFactor());
} }
} }
}
} }

View File

@ -46,7 +46,7 @@ class DynamicEngine : public PhysicsEngine {
void updateBodyState(RigidBody* const rigidBody); // Update the state of a rigid body void updateBodyState(RigidBody* const rigidBody); // Update the state of a rigid body
public : public :
DynamicEngine(DynamicWorld& world, const Time& timeStep); // Constructor DynamicEngine(DynamicWorld* world, const Time& timeStep); // Constructor
DynamicEngine(const DynamicEngine& engine); // Copy-constructor DynamicEngine(const DynamicEngine& engine); // Copy-constructor
virtual ~DynamicEngine(); // Destructor virtual ~DynamicEngine(); // Destructor

View File

@ -24,9 +24,13 @@
using namespace reactphysics3d; using namespace reactphysics3d;
// Constructor // Constructor
PhysicsEngine::PhysicsEngine(PhysicsWorld& world, const Time& timeStep) PhysicsEngine::PhysicsEngine(PhysicsWorld* world, const Time& timeStep) throw (std::invalid_argument)
: world(world), timer(Time(0.0), timeStep) { : world(world), timer(Time(0.0), timeStep) {
// Check if the pointer to the world is not NULL
if (world == 0) {
// Throw an exception
throw std::invalid_argument("Exception in PhysicsEngine constructor : World pointer cannot be NULL");
}
} }
// Copy-constructor // Copy-constructor

View File

@ -35,17 +35,42 @@ namespace reactphysics3d {
*/ */
class PhysicsEngine { class PhysicsEngine {
protected : protected :
PhysicsWorld world; // Physics world of the physics engine PhysicsWorld* world; // Pointer to the physics world of the physics engine
Timer timer; // Timer of the physics engine Timer timer; // Timer of the physics engine
public : public :
PhysicsEngine(PhysicsWorld& world, const Time& timeStep); // Constructor PhysicsEngine(PhysicsWorld* world, const Time& timeStep) throw (std::invalid_argument); // Constructor
PhysicsEngine(const PhysicsEngine& engine); // Copy-constructor PhysicsEngine(const PhysicsEngine& engine); // Copy-constructor
virtual ~PhysicsEngine(); // Destructor virtual ~PhysicsEngine(); // Destructor
virtual void start(); // Start the physics simulation
virtual void stop(); // Stop the physics simulation
virtual void update()=0; // Update the physics simulation virtual void update()=0; // Update the physics simulation
void initializeDisplayTime(const Time& displayTime); // Initialize the display time
void updateDisplayTime(const Time& newDisplayTime); // Update the display time
}; };
// --- Inline functions --- //
// Start the physics simulation
inline void PhysicsEngine::start() {
timer.setIsRunning(true);
}
inline void PhysicsEngine::stop() {
// TODO : Implement this method
}
// Initialize the display time
inline void PhysicsEngine::initializeDisplayTime(const Time& displayTime) {
timer.setCurrentDisplayTime(displayTime);
}
// Update the display time
inline void PhysicsEngine::updateDisplayTime(const Time& newDisplayTime) {
timer.updateDisplayTime(newDisplayTime);
}
} }
#endif #endif

View File

@ -30,7 +30,6 @@ Timer::Timer(const Time& initialTime, const Time& timeStep) throw(std::invalid_a
if (timeStep.getValue() != 0.0) { if (timeStep.getValue() != 0.0) {
accumulator = 0.0; accumulator = 0.0;
isRunning = false; isRunning = false;
} }
else { else {
// We throw an exception // We throw an exception

View File

@ -23,6 +23,7 @@
// Libraries // Libraries
#include "../physics/physics.h" #include "../physics/physics.h"
#include <stdexcept> #include <stdexcept>
#include <iostream>
// Namespace ReactPhysics3D // Namespace ReactPhysics3D
namespace reactphysics3d { namespace reactphysics3d {
@ -53,6 +54,7 @@ class Timer {
bool getIsRunning() const; // Return if the timer is running bool getIsRunning() const; // Return if the timer is running
void setIsRunning(bool isRunning); // Set if the timer is running void setIsRunning(bool isRunning); // Set if the timer is running
double getAccumulator() const; // Return the accumulator value double getAccumulator() const; // Return the accumulator value
void setCurrentDisplayTime(const Time& displayTime); // Set the current display time
void update(); // Update the timer void update(); // Update the timer
double getInterpolationFactor() const; // Compute and return the interpolation factor between two body states double getInterpolationFactor() const; // Compute and return the interpolation factor between two body states
@ -103,6 +105,11 @@ inline double Timer::getAccumulator() const {
return accumulator; return accumulator;
} }
// Set the current display time
inline void Timer::setCurrentDisplayTime(const Time& currentDisplayTime) {
this->currentDisplayTime = currentDisplayTime;
}
// Update the timer // Update the timer
inline void Timer::update() { inline void Timer::update() {
// Update the current time of the physics engine // Update the current time of the physics engine