Expose COV_ENABLE_VR_RENDER_CONTROLLERS, to enable/disable rendering of controllers (and some frames) in VR Expose COV_ENABLE_RENDERING to enable/disable rendering. Fix some multi-threading issues (potential crashes), related to debug drawing/rendering in one thread, while changing the dynamics world/removing/resetSimulation in a different thread.
33 lines
947 B
C++
33 lines
947 B
C++
#ifndef PHYSICS_COMMAND_PROCESSOR_INTERFACE_H
|
|
#define PHYSICS_COMMAND_PROCESSOR_INTERFACE_H
|
|
|
|
enum PhysicsCOmmandRenderFlags
|
|
{
|
|
COV_DISABLE_SYNC_RENDERING=1
|
|
};
|
|
|
|
class PhysicsCommandProcessorInterface
|
|
{
|
|
|
|
public:
|
|
virtual ~PhysicsCommandProcessorInterface() {}
|
|
|
|
virtual bool connect()=0;
|
|
|
|
virtual void disconnect() = 0;
|
|
|
|
virtual bool isConnected() const = 0;
|
|
|
|
virtual bool processCommand(const struct SharedMemoryCommand& clientCmd, struct SharedMemoryStatus& serverStatusOut, char* bufferServerToClient, int bufferSizeInBytes) = 0;
|
|
|
|
virtual bool receiveStatus(struct SharedMemoryStatus& serverStatusOut, char* bufferServerToClient, int bufferSizeInBytes) = 0;
|
|
|
|
virtual void renderScene(int renderFlags) = 0;
|
|
virtual void physicsDebugDraw(int debugDrawFlags) = 0;
|
|
virtual void setGuiHelper(struct GUIHelperInterface* guiHelper) = 0;
|
|
virtual void setTimeOut(double timeOutInSeconds) = 0;
|
|
|
|
};
|
|
|
|
#endif //PHYSICS_COMMAND_PROCESSOR_INTERFACE_H
|