mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-11 22:54:34 +00:00
update bullet so it actually works
Moved the addSourceDirectory for physics/Bullet into the Engine/Source/CMakeLists.txt file that way it can actually appear where we expect it to in the solution explorer.
This commit is contained in:
parent
c7be48130a
commit
13fa178cf6
5986 changed files with 1811270 additions and 453803 deletions
37
Engine/lib/bullet/examples/SharedMemory/PhysicsClientGRPC.h
Normal file
37
Engine/lib/bullet/examples/SharedMemory/PhysicsClientGRPC.h
Normal file
|
|
@ -0,0 +1,37 @@
|
|||
#ifndef PHYSICS_CLIENT_GRPC_H
|
||||
#define PHYSICS_CLIENT_GRPC_H
|
||||
|
||||
#include "PhysicsDirect.h"
|
||||
#include "PhysicsCommandProcessorInterface.h"
|
||||
|
||||
class GRPCNetworkedPhysicsProcessor : public PhysicsCommandProcessorInterface
|
||||
{
|
||||
struct GRPCNetworkedInternalData* m_data;
|
||||
|
||||
public:
|
||||
GRPCNetworkedPhysicsProcessor(const char* hostName, int port);
|
||||
|
||||
virtual ~GRPCNetworkedPhysicsProcessor();
|
||||
|
||||
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);
|
||||
|
||||
virtual void reportNotifications() {}
|
||||
};
|
||||
|
||||
#endif //PHYSICS_CLIENT_GRPC_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue