mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-14 22:00:05 +00:00
db008ab3c2
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
110 lines
3.4 KiB
C++
110 lines
3.4 KiB
C++
#ifndef PHYSICS_SERVER_COMMAND_PROCESSOR_H
|
|
#define PHYSICS_SERVER_COMMAND_PROCESSOR_H
|
|
|
|
#include "LinearMath/btVector3.h"
|
|
|
|
#include "PhysicsCommandProcessorInterface.h"
|
|
|
|
struct SharedMemLines
|
|
{
|
|
btVector3 m_from;
|
|
btVector3 m_to;
|
|
btVector3 m_color;
|
|
};
|
|
|
|
|
|
|
|
///todo: naming. Perhaps PhysicsSdkCommandprocessor?
|
|
class PhysicsServerCommandProcessor : public PhysicsCommandProcessorInterface
|
|
{
|
|
|
|
struct PhysicsServerCommandProcessorInternalData* m_data;
|
|
|
|
|
|
|
|
//todo: move this to physics client side / Python
|
|
void createDefaultRobotAssets();
|
|
|
|
void resetSimulation();
|
|
|
|
protected:
|
|
|
|
|
|
|
|
|
|
bool loadSdf(const char* fileName, char* bufferServerToClient, int bufferSizeInBytes, bool useMultiBody, int flags);
|
|
|
|
bool loadUrdf(const char* fileName, const class btVector3& pos, const class btQuaternion& orn,
|
|
bool useMultiBody, bool useFixedBase, int* bodyUniqueIdPtr, char* bufferServerToClient, int bufferSizeInBytes, int flags=0);
|
|
|
|
bool loadMjcf(const char* fileName, char* bufferServerToClient, int bufferSizeInBytes, bool useMultiBody, int flags);
|
|
|
|
bool processImportedObjects(const char* fileName, char* bufferServerToClient, int bufferSizeInBytes, bool useMultiBody, int flags, class URDFImporterInterface& u2b);
|
|
|
|
bool supportsJointMotor(class btMultiBody* body, int linkIndex);
|
|
|
|
int createBodyInfoStream(int bodyUniqueId, char* bufferServerToClient, int bufferSizeInBytes);
|
|
void deleteCachedInverseDynamicsBodies();
|
|
void deleteCachedInverseKinematicsBodies();
|
|
void deleteStateLoggers();
|
|
|
|
public:
|
|
PhysicsServerCommandProcessor();
|
|
virtual ~PhysicsServerCommandProcessor();
|
|
|
|
void createJointMotors(class btMultiBody* body);
|
|
|
|
virtual void createEmptyDynamicsWorld();
|
|
virtual void deleteDynamicsWorld();
|
|
|
|
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;
|
|
};
|
|
|
|
virtual void renderScene(int renderFlags);
|
|
virtual void physicsDebugDraw(int debugDrawFlags);
|
|
virtual void setGuiHelper(struct GUIHelperInterface* guiHelper);
|
|
virtual void syncPhysicsToGraphics();
|
|
|
|
|
|
//@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();
|
|
|
|
//logging /playback the shared memory commands
|
|
void enableCommandLogging(bool enable, const char* fileName);
|
|
void replayFromLogFile(const char* fileName);
|
|
void replayLogCommand(char* bufferServerToClient, int bufferSizeInBytes );
|
|
|
|
//logging of object states (position etc)
|
|
void logObjectStates(btScalar timeStep);
|
|
void processCollisionForces(btScalar timeStep);
|
|
|
|
void stepSimulationRealTime(double dtInSec, const struct b3VRControllerEvent* vrEvents, int numVREvents, const struct b3KeyboardEvent* keyEvents, int numKeyEvents);
|
|
void enableRealTimeSimulation(bool enableRealTimeSim);
|
|
void applyJointDamping(int bodyUniqueId);
|
|
|
|
virtual void setTimeOut(double timeOutInSeconds);
|
|
};
|
|
|
|
#endif //PHYSICS_SERVER_COMMAND_PROCESSOR_H
|