2015-11-23 04:50:32 +00:00
|
|
|
#ifndef PHYSICS_SERVER_COMMAND_PROCESSOR_H
|
|
|
|
#define PHYSICS_SERVER_COMMAND_PROCESSOR_H
|
|
|
|
|
|
|
|
#include "LinearMath/btVector3.h"
|
|
|
|
|
2016-11-04 20:15:10 +00:00
|
|
|
#include "PhysicsCommandProcessorInterface.h"
|
|
|
|
|
2015-11-23 04:50:32 +00:00
|
|
|
struct SharedMemLines
|
|
|
|
{
|
|
|
|
btVector3 m_from;
|
|
|
|
btVector3 m_to;
|
|
|
|
btVector3 m_color;
|
|
|
|
};
|
|
|
|
|
2016-11-04 20:15:10 +00:00
|
|
|
|
|
|
|
|
2015-11-23 04:50:32 +00:00
|
|
|
///todo: naming. Perhaps PhysicsSdkCommandprocessor?
|
2016-11-04 20:15:10 +00:00
|
|
|
class PhysicsServerCommandProcessor : public PhysicsCommandProcessorInterface
|
2015-11-23 04:50:32 +00:00
|
|
|
{
|
|
|
|
|
|
|
|
struct PhysicsServerCommandProcessorInternalData* m_data;
|
|
|
|
|
2016-10-23 14:14:50 +00:00
|
|
|
//todo: move this to physics client side / Python
|
|
|
|
void createDefaultRobotAssets();
|
|
|
|
|
2015-11-23 04:50:32 +00:00
|
|
|
protected:
|
|
|
|
|
|
|
|
|
2016-06-13 17:11:28 +00:00
|
|
|
|
2016-11-04 20:15:10 +00:00
|
|
|
|
|
|
|
bool loadSdf(const char* fileName, char* bufferServerToClient, int bufferSizeInBytes, bool useMultiBody);
|
2016-06-13 17:11:28 +00:00
|
|
|
|
2015-11-23 04:50:32 +00:00
|
|
|
bool loadUrdf(const char* fileName, const class btVector3& pos, const class btQuaternion& orn,
|
2016-11-04 20:15:10 +00:00
|
|
|
bool useMultiBody, bool useFixedBase, int* bodyUniqueIdPtr, char* bufferServerToClient, int bufferSizeInBytes);
|
2015-11-23 04:50:32 +00:00
|
|
|
|
|
|
|
bool supportsJointMotor(class btMultiBody* body, int linkIndex);
|
2016-11-04 20:15:10 +00:00
|
|
|
|
2016-06-15 01:41:19 +00:00
|
|
|
int createBodyInfoStream(int bodyUniqueId, char* bufferServerToClient, int bufferSizeInBytes);
|
2016-08-10 01:40:12 +00:00
|
|
|
void deleteCachedInverseDynamicsBodies();
|
2015-11-23 04:50:32 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
PhysicsServerCommandProcessor();
|
|
|
|
virtual ~PhysicsServerCommandProcessor();
|
|
|
|
|
|
|
|
void createJointMotors(class btMultiBody* body);
|
2016-11-04 20:15:10 +00:00
|
|
|
|
2015-11-23 04:50:32 +00:00
|
|
|
virtual void createEmptyDynamicsWorld();
|
|
|
|
virtual void deleteDynamicsWorld();
|
|
|
|
|
2016-11-04 20:15:10 +00:00
|
|
|
virtual bool connect()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
|
|
|
|
virtual void disconnect() {}
|
|
|
|
|
|
|
|
virtual bool isConnected() const
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
virtual bool processCommand(const struct SharedMemoryCommand& clientCmd, struct SharedMemoryStatus& serverStatusOut, char* bufferServerToClient, int bufferSizeInBytes);
|
|
|
|
|
|
|
|
virtual bool receiveStatus(struct SharedMemoryStatus& serverStatusOut, char* bufferServerToClient, int bufferSizeInBytes)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
};
|
2015-11-23 04:50:32 +00:00
|
|
|
|
|
|
|
virtual void renderScene();
|
|
|
|
virtual void physicsDebugDraw(int debugDrawFlags);
|
|
|
|
virtual void setGuiHelper(struct GUIHelperInterface* guiHelper);
|
|
|
|
|
|
|
|
//@todo(erwincoumans) Should we have shared memory commands for picking objects?
|
|
|
|
///The pickBody method will try to pick the first body along a ray, return true if succeeds, false otherwise
|
|
|
|
virtual bool pickBody(const btVector3& rayFromWorld, const btVector3& rayToWorld);
|
|
|
|
virtual bool movePickedBody(const btVector3& rayFromWorld, const btVector3& rayToWorld);
|
|
|
|
virtual void removePickingConstraint();
|
|
|
|
|
|
|
|
void enableCommandLogging(bool enable, const char* fileName);
|
|
|
|
void replayFromLogFile(const char* fileName);
|
2016-07-18 06:50:11 +00:00
|
|
|
void replayLogCommand(char* bufferServerToClient, int bufferSizeInBytes );
|
|
|
|
void stepSimulationRealTime(double dtInSec);
|
2016-04-14 00:21:43 +00:00
|
|
|
void applyJointDamping(int bodyUniqueId);
|
2015-11-23 04:50:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif //PHYSICS_SERVER_COMMAND_PROCESSOR_H
|