2015-07-14 22:30:17 +00:00
|
|
|
#ifndef PHYSICS_SERVER_SHARED_MEMORY_H
|
|
|
|
#define PHYSICS_SERVER_SHARED_MEMORY_H
|
2015-05-28 23:05:24 +00:00
|
|
|
|
2015-07-14 22:30:17 +00:00
|
|
|
class PhysicsServerSharedMemory
|
|
|
|
{
|
|
|
|
struct PhysicsServerInternalData* m_data;
|
2015-05-28 23:05:24 +00:00
|
|
|
|
2015-07-14 22:30:17 +00:00
|
|
|
protected:
|
2015-05-28 23:05:24 +00:00
|
|
|
|
2015-07-14 22:30:17 +00:00
|
|
|
void createJointMotors(class btMultiBody* body);
|
|
|
|
|
|
|
|
void releaseSharedMemory();
|
|
|
|
|
|
|
|
bool loadUrdf(const char* fileName, const class btVector3& pos, const class btQuaternion& orn,
|
|
|
|
bool useMultiBody, bool useFixedBase);
|
|
|
|
|
|
|
|
public:
|
|
|
|
PhysicsServerSharedMemory();
|
|
|
|
virtual ~PhysicsServerSharedMemory();
|
|
|
|
|
|
|
|
//todo: implement option to allocated shared memory from client
|
|
|
|
virtual bool connectSharedMemory(bool allowSharedMemoryInitialization, class btMultiBodyDynamicsWorld* dynamicsWorld, struct GUIHelperInterface* guiHelper);
|
|
|
|
|
|
|
|
virtual void disconnectSharedMemory (bool deInitializeSharedMemory);
|
|
|
|
|
|
|
|
virtual void processClientCommands();
|
|
|
|
|
|
|
|
bool supportsJointMotor(class btMultiBody* body, int linkIndex);
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif //PHYSICS_SERVER_EXAMPLESHARED_MEMORY_H
|
2015-05-28 23:05:24 +00:00
|
|
|
|
|
|
|
|