mirror of
https://github.com/bulletphysics/bullet3
synced 2024-12-15 14:10:11 +00:00
7503418c72
Add several MSVC optimization flags to cmake. Bump up VERSION because serialization format changed Expose btScalar& jointMaxForce, btScalar& jointMaxVelocity to 'getJointInfo2' API, add backwards compatibility to examples\Importers\ImportURDFDemo\URDFImporterInterface::getJointInfo. pybullet: expose 4 more fields to getJointInfo: jointLowerLimit/jointUpperLimit/jointMaxForce/jointMaxVelocity fix performance issue in CMD_ACTUAL_STATE_UPDATE_COMPLETED
127 lines
3.4 KiB
C++
127 lines
3.4 KiB
C++
|
|
#include "SharedMemoryInProcessPhysicsC_API.h"
|
|
#include "../Utils/b3Clock.h"
|
|
|
|
#include "PhysicsClientSharedMemory.h"
|
|
#include"../ExampleBrowser/InProcessExampleBrowser.h"
|
|
|
|
#include "Bullet3Common/b3Logging.h"
|
|
class InProcessPhysicsClientSharedMemoryMainThread : public PhysicsClientSharedMemory
|
|
{
|
|
btInProcessExampleBrowserMainThreadInternalData* m_data;
|
|
b3Clock m_clock;
|
|
|
|
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()
|
|
{
|
|
|
|
{
|
|
if (btIsExampleBrowserMainThreadTerminated(m_data))
|
|
{
|
|
PhysicsClientSharedMemory::disconnectSharedMemory();
|
|
}
|
|
}
|
|
{
|
|
unsigned long int ms = m_clock.getTimeMilliseconds();
|
|
if (ms>20)
|
|
{
|
|
B3_PROFILE("m_clock.reset()");
|
|
|
|
m_clock.reset();
|
|
btUpdateInProcessExampleBrowserMainThread(m_data);
|
|
}
|
|
}
|
|
{
|
|
b3Clock::usleep(0);
|
|
}
|
|
const SharedMemoryStatus* stat = 0;
|
|
|
|
{
|
|
stat = PhysicsClientSharedMemory::processServerStatus();
|
|
}
|
|
|
|
return stat;
|
|
|
|
}
|
|
|
|
virtual bool submitClientCommand(const struct SharedMemoryCommand& command)
|
|
{
|
|
// btUpdateInProcessExampleBrowserMainThread(m_data);
|
|
return PhysicsClientSharedMemory::submitClientCommand(command);
|
|
}
|
|
|
|
};
|
|
|
|
b3PhysicsClientHandle b3CreateInProcessPhysicsServerAndConnectMainThread(int argc, char* argv[])
|
|
{
|
|
InProcessPhysicsClientSharedMemoryMainThread* cl = new InProcessPhysicsClientSharedMemoryMainThread(argc, argv);
|
|
cl->setSharedMemoryKey(SHARED_MEMORY_KEY);
|
|
cl->connect();
|
|
return (b3PhysicsClientHandle ) cl;
|
|
}
|
|
|
|
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);
|
|
SharedMemoryInterface* shMem = btGetSharedMemoryInterface(m_data);
|
|
free(newargv);
|
|
setSharedMemoryInterface(shMem);
|
|
}
|
|
|
|
virtual ~InProcessPhysicsClientSharedMemory()
|
|
{
|
|
setSharedMemoryInterface(0);
|
|
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;
|
|
}
|
|
|