| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639 |
- #include "RemoteGUIHelper.h"
- #include "../CommonInterfaces/CommonExampleInterface.h"
- #include "../CommonInterfaces/CommonGUIHelperInterface.h"
- #include "Bullet3Common/b3Logging.h"
- #include "GraphicsSharedMemoryCommands.h"
- #include "PosixSharedMemory.h"
- #include "Win32SharedMemory.h"
- #include "GraphicsSharedMemoryBlock.h"
- #include "Bullet3Common/b3Scalar.h"
- #include "LinearMath/btMinMax.h"
- #include "BulletCollision/CollisionDispatch/btCollisionObject.h"
- #include "BulletCollision/CollisionShapes/btCollisionShape.h"
- #include "Bullet3Common/b3AlignedObjectArray.h"
- #include "BulletDynamics/Dynamics/btDiscreteDynamicsWorld.h"
- struct RemoteGUIHelperInternalData
- {
- // GUIHelperInterface* m_guiHelper;
- bool m_waitingForServer;
- GraphicsSharedMemoryBlock* m_testBlock1;
- SharedMemoryInterface* m_sharedMemory;
- GraphicsSharedMemoryStatus m_lastServerStatus;
- int m_sharedMemoryKey;
- bool m_isConnected;
- RemoteGUIHelperInternalData()
- : m_waitingForServer(false),
- m_testBlock1(0)
- {
- #ifdef _WIN32
- m_sharedMemory = new Win32SharedMemoryClient();
- #else
- m_sharedMemory = new PosixSharedMemory();
- #endif
- m_sharedMemoryKey = GRAPHICS_SHARED_MEMORY_KEY;
- m_isConnected = false;
- connect();
- }
- virtual ~RemoteGUIHelperInternalData()
- {
- disconnect();
- delete m_sharedMemory;
- }
- virtual bool isConnected()
- {
- return m_isConnected;
- }
- bool canSubmitCommand() const
- {
- if (m_isConnected && !m_waitingForServer)
- {
- if (m_testBlock1->m_magicId == GRAPHICS_SHARED_MEMORY_MAGIC_NUMBER)
- {
- return true;
- }
- else
- {
- return false;
- }
- }
- return false;
- }
- struct GraphicsSharedMemoryCommand* getAvailableSharedMemoryCommand()
- {
- static int sequence = 0;
- if (m_testBlock1)
- {
- m_testBlock1->m_clientCommands[0].m_sequenceNumber = sequence++;
- return &m_testBlock1->m_clientCommands[0];
- }
- return 0;
- }
- bool submitClientCommand(const GraphicsSharedMemoryCommand& command)
- {
- /// at the moment we allow a maximum of 1 outstanding command, so we check for this
- // once the server processed the command and returns a status, we clear the flag
- // "m_data->m_waitingForServer" and allow submitting the next command
- btAssert(!m_waitingForServer);
- if (!m_waitingForServer)
- {
- //printf("submit command of type %d\n", command.m_type);
- if (&m_testBlock1->m_clientCommands[0] != &command)
- {
- m_testBlock1->m_clientCommands[0] = command;
- }
- m_testBlock1->m_numClientCommands++;
- m_waitingForServer = true;
- return true;
- }
- return false;
- }
- const GraphicsSharedMemoryStatus* processServerStatus()
- {
- // SharedMemoryStatus* stat = 0;
- if (!m_testBlock1)
- {
- m_lastServerStatus.m_type = GFX_CMD_SHARED_MEMORY_NOT_INITIALIZED;
- return &m_lastServerStatus;
- }
- if (!m_waitingForServer)
- {
- return 0;
- }
- if (m_testBlock1->m_magicId != GRAPHICS_SHARED_MEMORY_MAGIC_NUMBER)
- {
- m_lastServerStatus.m_type = GFX_CMD_SHARED_MEMORY_NOT_INITIALIZED;
- return &m_lastServerStatus;
- }
- if (m_testBlock1->m_numServerCommands >
- m_testBlock1->m_numProcessedServerCommands)
- {
- B3_PROFILE("processServerCMD");
- b3Assert(m_testBlock1->m_numServerCommands ==
- m_testBlock1->m_numProcessedServerCommands + 1);
- const GraphicsSharedMemoryStatus& serverCmd = m_testBlock1->m_serverCommands[0];
- m_lastServerStatus = serverCmd;
- // EnumSharedMemoryServerStatus s = (EnumSharedMemoryServerStatus)serverCmd.m_type;
- // consume the command
- switch (serverCmd.m_type)
- {
- case GFX_CMD_CLIENT_COMMAND_COMPLETED:
- {
- B3_PROFILE("CMD_CLIENT_COMMAND_COMPLETED");
- break;
- }
- default:
- {
- }
- }
- m_testBlock1->m_numProcessedServerCommands++;
- // we don't have more than 1 command outstanding (in total, either server or client)
- b3Assert(m_testBlock1->m_numProcessedServerCommands ==
- m_testBlock1->m_numServerCommands);
- if (m_testBlock1->m_numServerCommands ==
- m_testBlock1->m_numProcessedServerCommands)
- {
- m_waitingForServer = false;
- }
- else
- {
- m_waitingForServer = true;
- }
- return &m_lastServerStatus;
- }
- return 0;
- }
- bool connect()
- {
- /// server always has to create and initialize shared memory
- bool allowCreation = false;
- m_testBlock1 = (GraphicsSharedMemoryBlock*)m_sharedMemory->allocateSharedMemory(
- m_sharedMemoryKey, GRAPHICS_SHARED_MEMORY_SIZE, allowCreation);
- if (m_testBlock1)
- {
- if (m_testBlock1->m_magicId != GRAPHICS_SHARED_MEMORY_MAGIC_NUMBER)
- {
- b3Error("Error connecting to shared memory: please start server before client\n");
- m_sharedMemory->releaseSharedMemory(m_sharedMemoryKey,
- GRAPHICS_SHARED_MEMORY_SIZE);
- m_testBlock1 = 0;
- return false;
- }
- else
- {
- m_isConnected = true;
- }
- }
- else
- {
- b3Warning("Cannot connect to shared memory");
- return false;
- }
- return true;
- }
- void disconnect()
- {
- if (m_isConnected && m_sharedMemory)
- {
- m_sharedMemory->releaseSharedMemory(m_sharedMemoryKey, GRAPHICS_SHARED_MEMORY_SIZE);
- }
- m_isConnected = false;
- }
- };
- RemoteGUIHelper::RemoteGUIHelper()
- {
- m_data = new RemoteGUIHelperInternalData;
- if (m_data->canSubmitCommand())
- {
- removeAllGraphicsInstances();
- }
- }
- RemoteGUIHelper::~RemoteGUIHelper()
- {
- delete m_data;
- }
- bool RemoteGUIHelper::isConnected() const
- {
- return m_data->isConnected();
- }
- void RemoteGUIHelper::setVisualizerFlag(int flag, int enable)
- {
- GraphicsSharedMemoryCommand* cmd = m_data->getAvailableSharedMemoryCommand();
- if (cmd)
- {
- cmd->m_updateFlags = 0;
- cmd->m_visualizerFlagCommand.m_visualizerFlag = flag;
- cmd->m_visualizerFlagCommand.m_enable = enable;
- cmd->m_type = GFX_CMD_SET_VISUALIZER_FLAG;
- m_data->submitClientCommand(*cmd);
- }
- const GraphicsSharedMemoryStatus* status = 0;
- while ((status = m_data->processServerStatus()) == 0)
- {
- }
- }
- void RemoteGUIHelper::createRigidBodyGraphicsObject(btRigidBody* body, const btVector3& color)
- {
- printf("createRigidBodyGraphicsObject\n");
- }
- bool RemoteGUIHelper::getCameraInfo(int* width, int* height, float viewMatrix[16], float projectionMatrix[16], float camUp[3], float camForward[3], float hor[3], float vert[3], float* yaw, float* pitch, float* camDist, float camTarget[3]) const
- {
- GraphicsSharedMemoryCommand* cmd = m_data->getAvailableSharedMemoryCommand();
- if (cmd)
- {
-
- cmd->m_updateFlags = 0;
- cmd->m_type = GFX_CMD_GET_CAMERA_INFO;
- m_data->submitClientCommand(*cmd);
- }
- const GraphicsSharedMemoryStatus* status = 0;
- while ((status = m_data->processServerStatus()) == 0)
- {
- }
- if (status->m_type == GFX_CMD_GET_CAMERA_INFO_COMPLETED)
- {
- *width = status->m_getCameraInfoStatus.width;
- *height = status->m_getCameraInfoStatus.height;
- for (int i = 0; i < 16; i++)
- {
- viewMatrix[i] = status->m_getCameraInfoStatus.viewMatrix[i];
- projectionMatrix[i] = status->m_getCameraInfoStatus.projectionMatrix[i];
- }
- for (int i = 0; i < 3; i++)
- {
- camUp[i] = status->m_getCameraInfoStatus.camUp[i];
- camForward[i] = status->m_getCameraInfoStatus.camForward[i];
- hor[i] = status->m_getCameraInfoStatus.hor[i];
- vert[i] = status->m_getCameraInfoStatus.vert[i];
- camTarget[i] = status->m_getCameraInfoStatus.camTarget[i];
- }
- *yaw = status->m_getCameraInfoStatus.yaw;
- *pitch = status->m_getCameraInfoStatus.pitch;
- *camDist = status->m_getCameraInfoStatus.camDist;
- return true;
- }
- return false;
- }
- void RemoteGUIHelper::createCollisionObjectGraphicsObject(btCollisionObject* body, const btVector3& color)
- {
- if (body->getUserIndex() < 0)
- {
- btCollisionShape* shape = body->getCollisionShape();
- btTransform startTransform = body->getWorldTransform();
- int graphicsShapeId = shape->getUserIndex();
- if (graphicsShapeId >= 0)
- {
- // btAssert(graphicsShapeId >= 0);
- //the graphics shape is already scaled
- float localScaling[4] = {1.f, 1.f, 1.f, 1.f};
- float colorRGBA[4] = {(float)color[0], (float)color[1], (float)color[2], (float)color[3]};
- float pos[4] = {(float)startTransform.getOrigin()[0], (float)startTransform.getOrigin()[1], (float)startTransform.getOrigin()[2], (float)startTransform.getOrigin()[3]};
- float orn[4] = {(float)startTransform.getRotation()[0], (float)startTransform.getRotation()[1], (float)startTransform.getRotation()[2], (float)startTransform.getRotation()[3]};
- int graphicsInstanceId = registerGraphicsInstance(graphicsShapeId, pos, orn, colorRGBA, localScaling);
- body->setUserIndex(graphicsInstanceId);
- }
- }
- }
- void RemoteGUIHelper::createCollisionShapeGraphicsObject(btCollisionShape* collisionShape)
- {
- printf("createCollisionShapeGraphicsObject\n");
- }
- void RemoteGUIHelper::syncPhysicsToGraphics(const btDiscreteDynamicsWorld* rbWorld)
- {
- }
- void RemoteGUIHelper::syncPhysicsToGraphics2(const btDiscreteDynamicsWorld* rbWorld)
- {
- b3AlignedObjectArray<GUISyncPosition> updatedPositions;
- int numCollisionObjects = rbWorld->getNumCollisionObjects();
- {
- B3_PROFILE("write all InstanceTransformToCPU2");
- for (int i = 0; i < numCollisionObjects; i++)
- {
- //B3_PROFILE("writeSingleInstanceTransformToCPU");
- btCollisionObject* colObj = rbWorld->getCollisionObjectArray()[i];
- btCollisionShape* collisionShape = colObj->getCollisionShape();
- btVector3 pos = colObj->getWorldTransform().getOrigin();
- btQuaternion orn = colObj->getWorldTransform().getRotation();
- int index = colObj->getUserIndex();
- if (index >= 0)
- {
- GUISyncPosition p;
- p.m_graphicsInstanceId = index;
- for (int q = 0; q < 4; q++)
- {
- p.m_pos[q] = pos[q];
- p.m_orn[q] = orn[q];
- }
- updatedPositions.push_back(p);
- }
- }
- }
- if (updatedPositions.size())
- {
- syncPhysicsToGraphics2(&updatedPositions[0], updatedPositions.size());
- }
- }
- void RemoteGUIHelper::syncPhysicsToGraphics2(const GUISyncPosition* positions, int numPositions)
- {
- GraphicsSharedMemoryCommand* cmd = m_data->getAvailableSharedMemoryCommand();
- if (cmd)
- {
- uploadData((unsigned char*)positions, numPositions * sizeof(GUISyncPosition), 0);
- cmd->m_updateFlags = 0;
- cmd->m_syncTransformsCommand.m_numPositions = numPositions;
- cmd->m_type = GFX_CMD_SYNCHRONIZE_TRANSFORMS;
- m_data->submitClientCommand(*cmd);
- }
- const GraphicsSharedMemoryStatus* status = 0;
- while ((status = m_data->processServerStatus()) == 0)
- {
- }
- }
- void RemoteGUIHelper::render(const btDiscreteDynamicsWorld* rbWorld)
- {
- }
- void RemoteGUIHelper::createPhysicsDebugDrawer(btDiscreteDynamicsWorld* rbWorld)
- {
- }
- int RemoteGUIHelper::uploadData(const unsigned char* data, int sizeInBytes, int slot)
- {
- int chunkSize = GRAPHICS_SHARED_MEMORY_MAX_STREAM_CHUNK_SIZE;
- int remainingBytes = sizeInBytes;
- int offset = 0;
- while (remainingBytes)
- {
- btAssert(remainingBytes >= 0);
- int curBytes = btMin(remainingBytes, chunkSize);
- GraphicsSharedMemoryCommand* cmd = m_data->getAvailableSharedMemoryCommand();
- if (cmd)
- {
- for (int i = 0; i < curBytes; i++)
- {
- m_data->m_testBlock1->m_bulletStreamData[i] = data[i + offset];
- }
- cmd->m_updateFlags = 0;
- cmd->m_type = GFX_CMD_UPLOAD_DATA;
- cmd->m_uploadDataCommand.m_numBytes = curBytes;
- cmd->m_uploadDataCommand.m_dataOffset = offset;
- cmd->m_uploadDataCommand.m_dataSlot = slot;
- m_data->submitClientCommand(*cmd);
- const GraphicsSharedMemoryStatus* status = 0;
- while ((status = m_data->processServerStatus()) == 0)
- {
- }
- offset += curBytes;
- remainingBytes -= curBytes;
- }
- }
- return 0;
- }
- int RemoteGUIHelper::registerTexture(const unsigned char* texels, int width, int height)
- {
- int textureId = -1;
- //first upload all data
- GraphicsSharedMemoryCommand* cmd = m_data->getAvailableSharedMemoryCommand();
- if (cmd)
- {
- int sizeInBytes = width * height * 3; //rgb
- uploadData(texels, sizeInBytes, 0);
- cmd->m_updateFlags = 0;
- cmd->m_type = GFX_CMD_REGISTER_TEXTURE;
- cmd->m_registerTextureCommand.m_width = width;
- cmd->m_registerTextureCommand.m_height = height;
- m_data->submitClientCommand(*cmd);
- const GraphicsSharedMemoryStatus* status = 0;
- while ((status = m_data->processServerStatus()) == 0)
- {
- }
- if (status->m_type == GFX_CMD_REGISTER_TEXTURE_COMPLETED)
- {
- textureId = status->m_registerTextureStatus.m_textureId;
- }
- }
- return textureId;
- }
- int RemoteGUIHelper::registerGraphicsShape(const float* vertices, int numvertices, const int* indices, int numIndices, int primitiveType, int textureId)
- {
- int shapeId = -1;
- GraphicsSharedMemoryCommand* cmd = m_data->getAvailableSharedMemoryCommand();
- if (cmd)
- {
- uploadData((unsigned char*)vertices, numvertices * 9 * sizeof(float), 0);
- uploadData((unsigned char*)indices, numIndices * sizeof(int), 1);
- cmd->m_type = GFX_CMD_REGISTER_GRAPHICS_SHAPE;
- cmd->m_updateFlags = 0;
- cmd->m_registerGraphicsShapeCommand.m_numVertices = numvertices;
- cmd->m_registerGraphicsShapeCommand.m_numIndices = numIndices;
- cmd->m_registerGraphicsShapeCommand.m_primitiveType = primitiveType;
- cmd->m_registerGraphicsShapeCommand.m_textureId = textureId;
- m_data->submitClientCommand(*cmd);
- const GraphicsSharedMemoryStatus* status = 0;
- while ((status = m_data->processServerStatus()) == 0)
- {
- }
- if (status->m_type == GFX_CMD_REGISTER_GRAPHICS_SHAPE_COMPLETED)
- {
- shapeId = status->m_registerGraphicsShapeStatus.m_shapeId;
- }
- }
- return shapeId;
- }
- int RemoteGUIHelper::registerGraphicsInstance(int shapeIndex, const float* position, const float* quaternion, const float* color, const float* scaling)
- {
- int graphicsInstanceId = -1;
- GraphicsSharedMemoryCommand* cmd = m_data->getAvailableSharedMemoryCommand();
- if (cmd)
- {
- cmd->m_type = GFX_CMD_REGISTER_GRAPHICS_INSTANCE;
- cmd->m_updateFlags = 0;
- cmd->m_registerGraphicsInstanceCommand.m_shapeIndex = shapeIndex;
- for (int i = 0; i < 4; i++)
- {
- cmd->m_registerGraphicsInstanceCommand.m_position[i] = position[i];
- cmd->m_registerGraphicsInstanceCommand.m_quaternion[i] = quaternion[i];
- cmd->m_registerGraphicsInstanceCommand.m_color[i] = color[i];
- cmd->m_registerGraphicsInstanceCommand.m_scaling[i] = scaling[i];
- }
- m_data->submitClientCommand(*cmd);
- const GraphicsSharedMemoryStatus* status = 0;
- while ((status = m_data->processServerStatus()) == 0)
- {
- }
- if (status->m_type == GFX_CMD_REGISTER_GRAPHICS_INSTANCE_COMPLETED)
- {
- graphicsInstanceId = status->m_registerGraphicsInstanceStatus.m_graphicsInstanceId;
- }
- }
- return graphicsInstanceId;
- }
- void RemoteGUIHelper::removeAllGraphicsInstances()
- {
- GraphicsSharedMemoryCommand* cmd = m_data->getAvailableSharedMemoryCommand();
- if (cmd)
- {
- cmd->m_updateFlags = 0;
- cmd->m_type = GFX_CMD_REMOVE_ALL_GRAPHICS_INSTANCES;
- m_data->submitClientCommand(*cmd);
- const GraphicsSharedMemoryStatus* status = 0;
- while ((status = m_data->processServerStatus()) == 0)
- {
- }
- }
- }
- void RemoteGUIHelper::removeGraphicsInstance(int graphicsUid)
- {
- GraphicsSharedMemoryCommand* cmd = m_data->getAvailableSharedMemoryCommand();
- if (cmd)
- {
- cmd->m_updateFlags = 0;
- cmd->m_type = GFX_CMD_REMOVE_SINGLE_GRAPHICS_INSTANCE;
- cmd->m_removeGraphicsInstanceCommand.m_graphicsUid = graphicsUid;
- m_data->submitClientCommand(*cmd);
- const GraphicsSharedMemoryStatus* status = 0;
- while ((status = m_data->processServerStatus()) == 0)
- {
- }
- }
- }
- void RemoteGUIHelper::changeScaling(int instanceUid, const double scaling[3])
- {
- }
- void RemoteGUIHelper::changeRGBAColor(int instanceUid, const double rgbaColor[4])
- {
- GraphicsSharedMemoryCommand* cmd = m_data->getAvailableSharedMemoryCommand();
- if (cmd)
- {
- cmd->m_updateFlags = 0;
- cmd->m_type = GFX_CMD_CHANGE_RGBA_COLOR;
- cmd->m_changeRGBAColorCommand.m_graphicsUid = instanceUid;
- for (int i = 0; i < 4; i++)
- {
- cmd->m_changeRGBAColorCommand.m_rgbaColor[i] = rgbaColor[i];
- }
- m_data->submitClientCommand(*cmd);
- const GraphicsSharedMemoryStatus* status = 0;
- while ((status = m_data->processServerStatus()) == 0)
- {
- }
- }
- }
- Common2dCanvasInterface* RemoteGUIHelper::get2dCanvasInterface()
- {
- return 0;
- }
- CommonParameterInterface* RemoteGUIHelper::getParameterInterface()
- {
- return 0;
- }
- CommonRenderInterface* RemoteGUIHelper::getRenderInterface()
- {
- return 0;
- }
- CommonGraphicsApp* RemoteGUIHelper::getAppInterface()
- {
- return 0;
- }
- void RemoteGUIHelper::setUpAxis(int axis)
- {
- GraphicsSharedMemoryCommand* cmd = m_data->getAvailableSharedMemoryCommand();
- if (cmd)
- {
- cmd->m_updateFlags = 0;
- cmd->m_upAxisYCommand.m_enableUpAxisY = axis == 1;
- cmd->m_type = GFX_CMD_0;
- m_data->submitClientCommand(*cmd);
- const GraphicsSharedMemoryStatus* status = 0;
- while ((status = m_data->processServerStatus()) == 0)
- {
- }
- }
- }
- void RemoteGUIHelper::resetCamera(float camDist, float yaw, float pitch, float camPosX, float camPosY, float camPosZ)
- {
- }
- void RemoteGUIHelper::copyCameraImageData(const float viewMatrix[16], const float projectionMatrix[16],
- unsigned char* pixelsRGBA, int rgbaBufferSizeInPixels,
- float* depthBuffer, int depthBufferSizeInPixels,
- int* segmentationMaskBuffer, int segmentationMaskBufferSizeInPixels,
- int startPixelIndex, int width, int height, int* numPixelsCopied)
- {
- if (numPixelsCopied)
- *numPixelsCopied = 0;
- }
- void RemoteGUIHelper::setProjectiveTextureMatrices(const float viewMatrix[16], const float projectionMatrix[16])
- {
- }
- void RemoteGUIHelper::setProjectiveTexture(bool useProjectiveTexture)
- {
- }
- void RemoteGUIHelper::autogenerateGraphicsObjects(btDiscreteDynamicsWorld* rbWorld)
- {
- }
- void RemoteGUIHelper::drawText3D(const char* txt, float posX, float posZY, float posZ, float size)
- {
- }
- void RemoteGUIHelper::drawText3D(const char* txt, float position[3], float orientation[4], float color[4], float size, int optionFlag)
- {
- }
- int RemoteGUIHelper::addUserDebugLine(const double debugLineFromXYZ[3], const double debugLineToXYZ[3], const double debugLineColorRGB[3], double lineWidth, double lifeTime, int trackingVisualShapeIndex, int replaceItemUid)
- {
- return -1;
- }
- int RemoteGUIHelper::addUserDebugPoints(const double debugPointPositionXYZ[3], const double debugPointColorRGB[3], double pointSize, double lifeTime, int trackingVisualShapeIndex, int replaceItemUid, int debugPointNum)
- {
- return -1;
- }
- void RemoteGUIHelper::removeUserDebugItem(int debugItemUniqueId)
- {
- }
- void RemoteGUIHelper::removeAllUserDebugItems()
- {
- }
|