2015-11-23 04:50:32 +00:00
|
|
|
#ifndef PHYSICS_SERVER_SHARED_MEMORY_H
|
|
|
|
#define PHYSICS_SERVER_SHARED_MEMORY_H
|
|
|
|
|
|
|
|
#include "PhysicsServer.h"
|
|
|
|
|
|
|
|
class PhysicsServerSharedMemory : public PhysicsServer
|
|
|
|
{
|
|
|
|
struct PhysicsServerSharedMemoryInternalData* m_data;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
|
|
void releaseSharedMemory();
|
|
|
|
|
|
|
|
|
|
|
|
public:
|
2016-03-10 22:36:46 +00:00
|
|
|
PhysicsServerSharedMemory(class SharedMemoryInterface* sharedMem=0);
|
2015-11-23 04:50:32 +00:00
|
|
|
virtual ~PhysicsServerSharedMemory();
|
|
|
|
|
|
|
|
virtual void setSharedMemoryKey(int key);
|
|
|
|
|
|
|
|
//todo: implement option to allocated shared memory from client
|
|
|
|
virtual bool connectSharedMemory( struct GUIHelperInterface* guiHelper);
|
|
|
|
|
|
|
|
virtual void disconnectSharedMemory (bool deInitializeSharedMemory);
|
|
|
|
|
|
|
|
virtual void processClientCommands();
|
|
|
|
|
2017-03-02 20:33:22 +00:00
|
|
|
virtual void stepSimulationRealTime(double dtInSec,const struct b3VRControllerEvent* vrEvents, int numVREvents, const struct b3KeyboardEvent* keyEvents, int numKeyEvents);
|
2016-07-18 06:50:11 +00:00
|
|
|
|
2016-12-11 17:28:36 +00:00
|
|
|
virtual void enableRealTimeSimulation(bool enableRealTimeSim);
|
|
|
|
|
2015-11-23 04:50:32 +00:00
|
|
|
//bool supportsJointMotor(class btMultiBody* body, int linkIndex);
|
|
|
|
|
2016-11-17 00:12:59 +00:00
|
|
|
|
2015-11-23 04:50:32 +00:00
|
|
|
///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();
|
|
|
|
|
|
|
|
//for physicsDebugDraw and renderScene are mainly for debugging purposes
|
|
|
|
//and for physics visualization. The idea is that physicsDebugDraw can also send wireframe
|
|
|
|
//to a physics client, over shared memory
|
|
|
|
void physicsDebugDraw(int debugDrawFlags);
|
2017-05-16 19:19:03 +00:00
|
|
|
void renderScene(int renderFlags);
|
Improve debug text/line rendering, can be use to draw frames and text in local coordinate of an object / link.
example:
kuka = p.loadURDF("kuka_iiwa/model.urdf")
p.getNumJoints(kuka)
pybullet.addUserDebugLine([0,0,0],[0,0,0.1],[0,0,1],trackObjectUniqueId=2,trackLinkIndex=6)
pybullet.addUserDebugText("tip", [0,0,0.1],textColorRGB=[1,0,0],trackObjectUniqueId=2,trackLinkIndex=6)
Also allow to render text using a given orientation (instead of pointing to the camera), example:
pybullet.addUserDebugText("tip", [0,0,0.1],textColorRGB=[1,0,0],textOrientation=[0,0,0,1], trackObjectUniqueId=2,trackLinkIndex=6)
Add drawTexturedTriangleMesh, for drawing 3d text.
Expose readSingleInstanceTransformToCPU, to extract position/orientation from graphics index.
updateTexture: allow to not flip texels around up axis
2017-05-24 05:05:26 +00:00
|
|
|
void syncPhysicsToGraphics();
|
2015-11-23 04:50:32 +00:00
|
|
|
|
|
|
|
void enableCommandLogging(bool enable, const char* fileName);
|
|
|
|
void replayFromLogFile(const char* fileName);
|
|
|
|
|
2016-07-08 02:24:44 +00:00
|
|
|
void resetDynamicsWorld();
|
2015-11-23 04:50:32 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif //PHYSICS_SERVER_EXAMPLESHARED_MEMORY_H
|
|
|
|
|
|
|
|
|