2016-03-07 22:56:16 +00:00
|
|
|
|
|
|
|
#include "SharedMemoryInProcessPhysicsC_API.h"
|
2016-04-14 15:51:20 +00:00
|
|
|
|
2016-03-07 22:56:16 +00:00
|
|
|
#include "PhysicsClientSharedMemory.h"
|
2016-03-07 23:12:33 +00:00
|
|
|
#include"../ExampleBrowser/InProcessExampleBrowser.h"
|
2016-04-14 15:51:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
class InProcessPhysicsClientSharedMemoryMainThread : public PhysicsClientSharedMemory
|
|
|
|
{
|
|
|
|
btInProcessExampleBrowserMainThreadInternalData* m_data;
|
2016-04-19 15:29:20 +00:00
|
|
|
|
2016-04-14 15:51:20 +00:00
|
|
|
public:
|
|
|
|
|
|
|
|
InProcessPhysicsClientSharedMemoryMainThread(int argc, char* argv[])
|
|
|
|
{
|
|
|
|
int newargc = argc+2;
|
|
|
|
char** newargv = (char**)malloc(sizeof(void*)*newargc);
|
|
|
|
for (int i=0;i<argc;i++)
|
|
|
|
newargv[i] = argv[i];
|
|
|
|
|
|
|
|
char* t0 = (char*)"--logtostderr";
|
|
|
|
char* t1 = (char*)"--start_demo_name=Physics Server";
|
|
|
|
newargv[argc] = t0;
|
|
|
|
newargv[argc+1] = t1;
|
|
|
|
m_data = btCreateInProcessExampleBrowserMainThread(newargc,newargv);
|
|
|
|
SharedMemoryInterface* shMem = btGetSharedMemoryInterfaceMainThread(m_data);
|
|
|
|
|
|
|
|
setSharedMemoryInterface(shMem);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual ~InProcessPhysicsClientSharedMemoryMainThread()
|
|
|
|
{
|
|
|
|
setSharedMemoryInterface(0);
|
|
|
|
btShutDownExampleBrowserMainThread(m_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
// return non-null if there is a status, nullptr otherwise
|
|
|
|
virtual const struct SharedMemoryStatus* processServerStatus()
|
|
|
|
{
|
2016-04-19 15:29:20 +00:00
|
|
|
if (btIsExampleBrowserMainThreadTerminated(m_data))
|
|
|
|
{
|
|
|
|
PhysicsClientSharedMemory::disconnectSharedMemory();
|
|
|
|
}
|
|
|
|
|
2016-04-14 15:51:20 +00:00
|
|
|
btUpdateInProcessExampleBrowserMainThread(m_data);
|
|
|
|
return PhysicsClientSharedMemory::processServerStatus();
|
2016-04-19 15:29:20 +00:00
|
|
|
|
|
|
|
|
2016-04-14 15:51:20 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual bool submitClientCommand(const struct SharedMemoryCommand& command)
|
|
|
|
{
|
|
|
|
// btUpdateInProcessExampleBrowserMainThread(m_data);
|
|
|
|
return PhysicsClientSharedMemory::submitClientCommand(command);
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
2016-03-07 22:56:16 +00:00
|
|
|
|
2016-04-14 15:51:20 +00:00
|
|
|
b3PhysicsClientHandle b3CreateInProcessPhysicsServerAndConnectMainThread(int argc, char* argv[])
|
|
|
|
{
|
|
|
|
InProcessPhysicsClientSharedMemoryMainThread* cl = new InProcessPhysicsClientSharedMemoryMainThread(argc, argv);
|
|
|
|
cl->setSharedMemoryKey(SHARED_MEMORY_KEY);
|
|
|
|
cl->connect();
|
|
|
|
return (b3PhysicsClientHandle ) cl;
|
|
|
|
}
|
2016-03-07 22:56:16 +00:00
|
|
|
|
|
|
|
class InProcessPhysicsClientSharedMemory : public PhysicsClientSharedMemory
|
|
|
|
{
|
|
|
|
btInProcessExampleBrowserInternalData* m_data;
|
|
|
|
public:
|
|
|
|
|
|
|
|
InProcessPhysicsClientSharedMemory(int argc, char* argv[])
|
|
|
|
{
|
|
|
|
int newargc = argc+2;
|
|
|
|
char** newargv = (char**)malloc(sizeof(void*)*newargc);
|
|
|
|
for (int i=0;i<argc;i++)
|
|
|
|
newargv[i] = argv[i];
|
|
|
|
|
|
|
|
char* t0 = (char*)"--logtostderr";
|
|
|
|
char* t1 = (char*)"--start_demo_name=Physics Server";
|
|
|
|
newargv[argc] = t0;
|
|
|
|
newargv[argc+1] = t1;
|
|
|
|
m_data = btCreateInProcessExampleBrowser(newargc,newargv);
|
2016-03-10 22:36:46 +00:00
|
|
|
SharedMemoryInterface* shMem = btGetSharedMemoryInterface(m_data);
|
|
|
|
|
|
|
|
setSharedMemoryInterface(shMem);
|
2016-03-07 22:56:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
virtual ~InProcessPhysicsClientSharedMemory()
|
|
|
|
{
|
2016-03-10 22:36:46 +00:00
|
|
|
setSharedMemoryInterface(0);
|
2016-03-07 22:56:16 +00:00
|
|
|
btShutDownExampleBrowser(m_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
b3PhysicsClientHandle b3CreateInProcessPhysicsServerAndConnect(int argc, char* argv[])
|
|
|
|
{
|
|
|
|
|
|
|
|
InProcessPhysicsClientSharedMemory* cl = new InProcessPhysicsClientSharedMemory(argc, argv);
|
|
|
|
cl->setSharedMemoryKey(SHARED_MEMORY_KEY);
|
|
|
|
cl->connect();
|
|
|
|
return (b3PhysicsClientHandle ) cl;
|
|
|
|
}
|
|
|
|
|