#include "R2D2GraspExample.h" #include "../CommonInterfaces/CommonGraphicsAppInterface.h" #include "Bullet3Common/b3Quaternion.h" #include "Bullet3Common/b3AlignedObjectArray.h" #include "../CommonInterfaces/CommonRenderInterface.h" #include "../CommonInterfaces/CommonExampleInterface.h" #include "../CommonInterfaces/CommonGUIHelperInterface.h" #include "../SharedMemory/PhysicsServerSharedMemory.h" #include "../SharedMemory/PhysicsClientC_API.h" #include #include "b3RobotSimAPI.h" #include "../Utils/b3Clock.h" ///quick demo showing the right-handed coordinate system and positive rotations around each axis class R2D2GraspExample : public CommonExampleInterface { CommonGraphicsApp* m_app; GUIHelperInterface* m_guiHelper; b3RobotSimAPI m_robotSim; int m_options; int m_r2d2Index; float m_x; float m_y; float m_z; b3AlignedObjectArray m_movingInstances; enum { numCubesX = 20, numCubesY = 20 }; public: R2D2GraspExample(GUIHelperInterface* helper, int options) :m_app(helper->getAppInterface()), m_guiHelper(helper), m_options(options), m_r2d2Index(-1), m_x(0), m_y(0), m_z(0) { m_app->setUpAxis(2); } virtual ~R2D2GraspExample() { m_app->m_renderer->enableBlend(false); } virtual void physicsDebugDraw(int debugDrawMode) { } virtual void initPhysics() { bool connected = m_robotSim.connect(m_guiHelper); b3Printf("robotSim connected = %d",connected); if ((m_options & eROBOTIC_LEARN_GRASP)!=0) { { b3RobotSimLoadFileArgs args(""); args.m_fileName = "r2d2.urdf"; args.m_startPosition.setValue(0,0,.5); b3RobotSimLoadFileResults results; if (m_robotSim.loadFile(args, results) && results.m_uniqueObjectIds.size()==1) { int m_r2d2Index = results.m_uniqueObjectIds[0]; int numJoints = m_robotSim.getNumJoints(m_r2d2Index); b3Printf("numJoints = %d",numJoints); for (int i=0;im_renderer->renderScene(); } virtual void physicsDebugDraw() { } virtual bool mouseMoveCallback(float x,float y) { return false; } virtual bool mouseButtonCallback(int button, int state, float x, float y) { return false; } virtual bool keyboardCallback(int key, int state) { return false; } virtual void resetCamera() { float dist = 3; float pitch = -75; float yaw = 30; float targetPos[3]={-0.2,0.8,0.3}; if (m_app->m_renderer && m_app->m_renderer->getActiveCamera()) { m_app->m_renderer->getActiveCamera()->setCameraDistance(dist); m_app->m_renderer->getActiveCamera()->setCameraPitch(pitch); m_app->m_renderer->getActiveCamera()->setCameraYaw(yaw); m_app->m_renderer->getActiveCamera()->setCameraTargetPosition(targetPos[0],targetPos[1],targetPos[2]); } } }; class CommonExampleInterface* R2D2GraspExampleCreateFunc(struct CommonExampleOptions& options) { return new R2D2GraspExample(options.m_guiHelper, options.m_option); }