2015-11-23 04:50:32 +00:00
|
|
|
#ifndef PHYSICS_DIRECT_H
|
|
|
|
#define PHYSICS_DIRECT_H
|
|
|
|
|
|
|
|
//#include "SharedMemoryCommands.h"
|
|
|
|
|
|
|
|
#include "PhysicsClient.h"
|
|
|
|
#include "LinearMath/btVector3.h"
|
|
|
|
|
|
|
|
///PhysicsDirect executes the commands directly, without transporting them or having a separate server executing commands
|
2018-09-23 21:17:31 +00:00
|
|
|
class PhysicsDirect : public PhysicsClient
|
2015-11-23 04:50:32 +00:00
|
|
|
{
|
|
|
|
protected:
|
|
|
|
struct PhysicsDirectInternalData* m_data;
|
|
|
|
|
|
|
|
bool processDebugLines(const struct SharedMemoryCommand& orgCommand);
|
|
|
|
|
2016-06-04 02:03:56 +00:00
|
|
|
bool processCamera(const struct SharedMemoryCommand& orgCommand);
|
|
|
|
|
2018-09-23 21:17:31 +00:00
|
|
|
bool processContactPointData(const struct SharedMemoryCommand& orgCommand);
|
2016-09-02 01:28:39 +00:00
|
|
|
|
2016-11-10 19:22:22 +00:00
|
|
|
bool processOverlappingObjects(const struct SharedMemoryCommand& orgCommand);
|
|
|
|
|
2016-10-19 05:05:28 +00:00
|
|
|
bool processVisualShapeData(const struct SharedMemoryCommand& orgCommand);
|
2018-09-23 21:17:31 +00:00
|
|
|
|
|
|
|
void processBodyJointInfo(int bodyUniqueId, const struct SharedMemoryStatus& serverCmd);
|
2018-06-02 20:40:08 +00:00
|
|
|
|
|
|
|
void processAddUserData(const struct SharedMemoryStatus& serverCmd);
|
|
|
|
|
2016-11-04 20:15:10 +00:00
|
|
|
void postProcessStatus(const struct SharedMemoryStatus& serverCmd);
|
|
|
|
|
2017-01-10 22:57:16 +00:00
|
|
|
void resetData();
|
2017-05-04 04:53:29 +00:00
|
|
|
|
|
|
|
void removeCachedBody(int bodyUniqueId);
|
|
|
|
|
2015-11-23 04:50:32 +00:00
|
|
|
public:
|
2017-01-10 22:57:16 +00:00
|
|
|
PhysicsDirect(class PhysicsCommandProcessorInterface* physSdk, bool passSdkOwnership);
|
2018-09-23 21:17:31 +00:00
|
|
|
|
|
|
|
virtual ~PhysicsDirect();
|
2015-11-23 04:50:32 +00:00
|
|
|
|
2016-08-19 17:30:02 +00:00
|
|
|
// return true if connection succesfull, can also check 'isConnected'
|
|
|
|
//it is OK to pass a null pointer for the gui helper
|
2018-09-23 21:17:31 +00:00
|
|
|
virtual bool connect();
|
|
|
|
|
2015-11-23 04:50:32 +00:00
|
|
|
////todo: rename to 'disconnect'
|
2018-09-23 21:17:31 +00:00
|
|
|
virtual void disconnectSharedMemory();
|
2015-11-23 04:50:32 +00:00
|
|
|
|
2018-09-23 21:17:31 +00:00
|
|
|
virtual bool isConnected() const;
|
2015-11-23 04:50:32 +00:00
|
|
|
|
2018-09-23 21:17:31 +00:00
|
|
|
// return non-null if there is a status, nullptr otherwise
|
|
|
|
virtual const SharedMemoryStatus* processServerStatus();
|
2015-11-23 04:50:32 +00:00
|
|
|
|
2018-09-23 21:17:31 +00:00
|
|
|
virtual SharedMemoryCommand* getAvailableSharedMemoryCommand();
|
2015-11-23 04:50:32 +00:00
|
|
|
|
2018-09-23 21:17:31 +00:00
|
|
|
virtual bool canSubmitCommand() const;
|
2015-11-23 04:50:32 +00:00
|
|
|
|
2018-09-23 21:17:31 +00:00
|
|
|
virtual bool submitClientCommand(const struct SharedMemoryCommand& command);
|
2015-11-23 04:50:32 +00:00
|
|
|
|
2016-09-27 19:13:45 +00:00
|
|
|
virtual int getNumBodies() const;
|
|
|
|
|
|
|
|
virtual int getBodyUniqueId(int serialIndex) const;
|
|
|
|
|
|
|
|
virtual bool getBodyInfo(int bodyUniqueId, struct b3BodyInfo& info) const;
|
|
|
|
|
2018-09-23 21:17:31 +00:00
|
|
|
virtual int getNumJoints(int bodyIndex) const;
|
2015-11-23 04:50:32 +00:00
|
|
|
|
2018-09-23 21:17:31 +00:00
|
|
|
virtual bool getJointInfo(int bodyIndex, int jointIndex, struct b3JointInfo& info) const;
|
|
|
|
|
|
|
|
virtual int getNumUserConstraints() const;
|
|
|
|
|
|
|
|
virtual int getUserConstraintInfo(int constraintUniqueId, struct b3UserConstraint& info) const;
|
2015-11-23 04:50:32 +00:00
|
|
|
|
2017-05-04 01:25:25 +00:00
|
|
|
virtual int getUserConstraintId(int serialIndex) const;
|
2018-09-23 21:17:31 +00:00
|
|
|
|
2015-11-23 04:50:32 +00:00
|
|
|
///todo: move this out of the
|
2018-09-23 21:17:31 +00:00
|
|
|
virtual void setSharedMemoryKey(int key);
|
|
|
|
|
|
|
|
void uploadBulletFileToSharedMemory(const char* data, int len);
|
2015-11-23 04:50:32 +00:00
|
|
|
|
2018-06-16 15:14:00 +00:00
|
|
|
virtual void uploadRaysToSharedMemory(struct SharedMemoryCommand& command, const double* rayFromWorldArray, const double* rayToWorldArray, int numRays);
|
2015-11-23 04:50:32 +00:00
|
|
|
|
2018-09-23 21:17:31 +00:00
|
|
|
virtual int getNumDebugLines() const;
|
2015-11-23 04:50:32 +00:00
|
|
|
|
2018-09-23 21:17:31 +00:00
|
|
|
virtual const float* getDebugLinesFrom() const;
|
|
|
|
virtual const float* getDebugLinesTo() const;
|
|
|
|
virtual const float* getDebugLinesColor() const;
|
2015-11-23 04:50:32 +00:00
|
|
|
|
2016-05-31 17:23:04 +00:00
|
|
|
virtual void getCachedCameraImage(b3CameraImageData* cameraData);
|
2016-08-19 17:30:02 +00:00
|
|
|
|
2018-09-23 21:17:31 +00:00
|
|
|
virtual void getCachedContactPointInformation(struct b3ContactInformation* contactPointData);
|
2016-09-01 20:30:07 +00:00
|
|
|
|
2016-11-10 19:22:22 +00:00
|
|
|
virtual void getCachedOverlappingObjects(struct b3AABBOverlapData* overlappingObjects);
|
|
|
|
|
2016-10-19 05:05:28 +00:00
|
|
|
virtual void getCachedVisualShapeInformation(struct b3VisualShapeInformation* visualShapesInfo);
|
2018-09-23 21:17:31 +00:00
|
|
|
|
2018-01-04 03:17:28 +00:00
|
|
|
virtual void getCachedCollisionShapeInformation(struct b3CollisionShapeInformation* collisionShapesInfo);
|
|
|
|
|
2016-12-27 03:40:09 +00:00
|
|
|
virtual void getCachedVREvents(struct b3VREventsData* vrEventsData);
|
|
|
|
|
2017-03-02 20:33:22 +00:00
|
|
|
virtual void getCachedKeyboardEvents(struct b3KeyboardEventsData* keyboardEventsData);
|
|
|
|
|
2017-06-17 20:29:14 +00:00
|
|
|
virtual void getCachedMouseEvents(struct b3MouseEventsData* mouseEventsData);
|
|
|
|
|
2016-12-27 03:40:09 +00:00
|
|
|
virtual void getCachedRaycastHits(struct b3RaycastInformation* raycastHits);
|
2016-11-10 19:22:22 +00:00
|
|
|
|
2017-10-05 15:23:10 +00:00
|
|
|
virtual void getCachedMassMatrix(int dofCountCheck, double* massMatrix);
|
|
|
|
|
2017-01-23 03:08:31 +00:00
|
|
|
//the following APIs are for internal use for visualization:
|
2016-08-19 17:30:02 +00:00
|
|
|
virtual bool connect(struct GUIHelperInterface* guiHelper);
|
|
|
|
virtual void renderScene();
|
|
|
|
virtual void debugDraw(int debugDrawMode);
|
|
|
|
|
2017-02-24 23:34:11 +00:00
|
|
|
virtual void setTimeOut(double timeOutInSeconds);
|
|
|
|
virtual double getTimeOut() const;
|
2018-06-02 20:40:08 +00:00
|
|
|
|
2018-09-23 21:17:31 +00:00
|
|
|
virtual bool getCachedUserData(int userDataId, struct b3UserDataValue& valueOut) const;
|
|
|
|
virtual int getCachedUserDataId(int bodyUniqueId, int linkIndex, int visualShapeIndex, const char* key) const;
|
2018-07-03 15:45:19 +00:00
|
|
|
virtual int getNumUserData(int bodyUniqueId) const;
|
2018-09-23 21:17:31 +00:00
|
|
|
virtual void getUserDataInfo(int bodyUniqueId, int userDataIndex, const char** keyOut, int* userDataIdOut, int* linkIndexOut, int* visualShapeIndexOut) const;
|
|
|
|
|
2018-06-16 13:19:49 +00:00
|
|
|
virtual void pushProfileTiming(const char* timingName);
|
|
|
|
virtual void popProfileTiming();
|
2015-11-23 04:50:32 +00:00
|
|
|
};
|
|
|
|
|
2018-09-23 21:17:31 +00:00
|
|
|
#endif //PHYSICS_DIRECT_H
|