mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-14 05:40:05 +00:00
433d11d8cf
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.
40 lines
1011 B
C++
40 lines
1011 B
C++
#ifndef PHYSICS_CLIENT_TCP_H
|
|
#define PHYSICS_CLIENT_TCP_H
|
|
|
|
#include "PhysicsDirect.h"
|
|
#include "PhysicsServerCommandProcessor.h"
|
|
|
|
class TcpNetworkedPhysicsProcessor : public PhysicsCommandProcessorInterface
|
|
{
|
|
|
|
struct TcpNetworkedInternalData* m_data;
|
|
|
|
public:
|
|
TcpNetworkedPhysicsProcessor(const char* hostName, int port);
|
|
|
|
virtual ~TcpNetworkedPhysicsProcessor();
|
|
|
|
virtual bool connect();
|
|
|
|
virtual void disconnect();
|
|
|
|
virtual bool isConnected() const;
|
|
|
|
virtual bool processCommand(const struct SharedMemoryCommand& clientCmd, struct SharedMemoryStatus& serverStatusOut, char* bufferServerToClient, int bufferSizeInBytes);
|
|
|
|
virtual bool receiveStatus(struct SharedMemoryStatus& serverStatusOut, char* bufferServerToClient, int bufferSizeInBytes);
|
|
|
|
virtual void renderScene(int renderFlags);
|
|
|
|
virtual void physicsDebugDraw(int debugDrawFlags);
|
|
|
|
virtual void setGuiHelper(struct GUIHelperInterface* guiHelper);
|
|
|
|
virtual void setTimeOut(double timeOutInSeconds);
|
|
|
|
};
|
|
|
|
|
|
#endif //PHYSICS_CLIENT_TCP_H
|
|
|