int On_VS_Connected(Aris::Core::MSG &msg) { cout<<"Received Connection from Vision System:"<<endl; cout<<" Remote IP is: "<<msg.GetDataAddress()+sizeof(int)<<endl; cout<<" Port is : "<<*((int*)msg.GetDataAddress()) << endl << endl; return 0; }
//MSG call back functions int On_CS_Connected(Aris::Core::MSG &msg) { cout<<"Received Connection from Control System:"<<endl; cout<<" Remote IP is: "<<msg.GetDataAddress()+sizeof(int)<<endl; cout<<" Port is : "<<*((int*)msg.GetDataAddress()) << endl << endl; Aris::Core::MSG data(0,0); ControlSystem.SendData(data); return 0; }
int On_VS_DataReceived(Aris::Core::CONN *pConn, Aris::Core::MSG &data) { cout<<"receive data from visual system"<<endl; double *map = new double [data.GetLength()/sizeof(double)]; memcpy(map, data.GetDataAddress(), data.GetLength() ); static double currentH[6],nextH[6]; memcpy(nextH,map,sizeof(nextH)); HexIII.MotionPlanWithKinect(currentH,nextH,*Gait_Calculated_From_Map); memcpy(currentH,nextH,sizeof(nextH)); delete[] map; for(int j=0;j<GAIT_ADAPTIVEWALK_LEN;j++) { for(int i=0;i<GAIT_WIDTH;i++) { CGait::GaitAdaptiveWalk[j][i]=-(int)(Gait_Calculated_From_Map[j][i]); } } Aris::Core::MSG controldata; controldata.SetMsgID(WALKADAPTIVE); cs.NRT_PostMsg(controldata); return 0; }
int show(const Aris::Core::MSG &msg) { cout << "Msg Length:" << msg.GetLength()<<endl; cout << "Msg MsgID :" << msg.GetMsgID()<<endl; //cout << "Msg Type :" << msg.GetType()<<endl; cout << "Msg Data :" << msg.GetDataAddress()<<endl<<endl; return 0; }
int OnVisualSystemDataNeeded(Aris::Core::MSG &msg) { static int i = 0; cout<<"Capture "<<i<<" begin!!!"<<endl; visionsensor.capture(&i); while(1) { if(i>40) { Kinect::ControlCommand = NoValidCommand; Aris::Core::MSG data; data.SetLength(1 * sizeof(int)); memset(data.GetDataAddress(), 0, data.GetLength()); data.Copy(&Kinect::ControlCommand, sizeof(i)); pVisualSystem->SendData(data); break; } else { if(Kinect::IsCaptureEnd == true) { Kinect::IsCaptureEnd = false; Aris::Core::MSG data; data.SetLength(1 * sizeof(int)); memset(data.GetDataAddress(), 0, data.GetLength()); data.Copy(&Kinect::ControlCommand, sizeof(i)); pVisualSystem->SendData(data); break; } } } return 0; }
int On_CS_DataReceived(Aris::Core::CONN *pConn, Aris::Core::MSG &data) { int cmd_id=data.GetMsgID(); Aris::Core::MSG CMD; CMD.SetMsgID(CS_CMD_Received); CMD.SetLength(sizeof(int)); CMD.Copy(&cmd_id,sizeof(int)); // if the cmd has data, it should be repost together CMD.CopyMore(data.GetDataAddress(), data.GetLength()); cout<<"received CMD is "<<cmd_id<<endl; PostMsg(CMD); return 0; }
int SendRequest(int argc, char *argv[], const char *xmlFileName) { /*需要去除命令名的路径和扩展名*/ std::string cmdName(argv[0]); #ifdef PLATFORM_IS_WINDOWS if (cmdName.rfind('\\')) { cmdName = cmdName.substr(cmdName.rfind('\\') + 1, cmdName.npos); } #endif #ifdef PLATFORM_IS_LINUX if (cmdName.rfind('/')) { cmdName = cmdName.substr(cmdName.rfind('/') + 1, cmdName.npos); } #endif if (cmdName.rfind('.')) { cmdName = cmdName.substr(0, cmdName.rfind('.')); } /*添加命令的所有参数*/ for (int i = 1; i < argc; ++i) { cmdName = cmdName + " " + argv[i]; } /*构造msg,这里需要先copy命令名称,然后依次copy各个参数*/ Aris::Core::MSG msg; msg.Copy(cmdName.c_str()); /*连接并发送msg*/ Aris::Core::DOCUMENT doc; if (doc.LoadFile(xmlFileName) != 0) throw std::logic_error("failed to read configuration xml file"); std::string ip = doc.RootElement()->FirstChildElement("Server")->FirstChildElement("Connection")->Attribute("IP"); std::string port = doc.RootElement()->FirstChildElement("Server")->FirstChildElement("Connection")->Attribute("Port"); Aris::Core::CONN conn; while (true) { try { conn.Connect(ip.c_str(), port.c_str()); break; } catch (std::exception &) { std::cout << "failed to connect server, will retry in 1 second" << std::endl; Aris::Core::Sleep(1000); } } Aris::Core::MSG ret = conn.SendRequest(msg); /*错误处理*/ if (ret.GetLength() > 0) { std::cout << "cmd has fault, please regard to following information:" << std::endl; std::cout << " " << ret.GetDataAddress() << std::endl; } else { std::cout << "send command successful" << std::endl; } return 0; }
int On_VS_DataReceived(Aris::Core::CONN *pConn, Aris::Core::MSG &data) { cout<<"Calibration Singnal Recieved"<<endl; int num; memcpy(&num,data.GetDataAddress(),data.GetLength()); //stop num >= 54 if (num >= 62 ) { cout<<"Calibration finished"<<endl; CGait::IsAutoCalibrateRegistered = false; } else { ifstream inf; stringstream filenum; string filename; filenum<<(num-1); filename = "./calibration_txt/"+filenum.str() + "F.txt"; inf.open(filename); int Line_Num; double temp; for(int i=0;i<GAIT_AUTOCALIB_LEN/2;i++) { inf>>Line_Num; for(int j=0;j<GAIT_WIDTH;j++) { inf>>temp; CGait::GaitAutoCalib[i][j]=-(int)temp; } } inf.close(); filenum.str(""); filename.clear(); filenum<<num; filename = "./calibration_txt/"+filenum.str()+".txt"; inf.open(filename); for(int i=GAIT_AUTOCALIB_LEN/2;i<GAIT_AUTOCALIB_LEN;i++) { inf>>Line_Num; for(int j=0;j<GAIT_WIDTH;j++) { inf>>temp; CGait::GaitAutoCalib[i][j]=-(int)temp; } } inf.close(); cout<<"Calibration "<<num<<" begin"<<endl; cout<<CGait::GaitAutoCalib[3999][0]<<endl; EGAIT cmd=GAIT_AUTO_CALIBRATION; Aris::Core::MSG data; data.SetLength(sizeof(cmd)); data.Copy(&cmd,sizeof(cmd)); cout<<"Send Message to CS"<<endl; cs.NRT_SendData(data); } return 0; }
int On_VS_DataReceived(Aris::Core::CONN *pConn, Aris::Core::MSG &data) { cout<<"receive data from visual system"<<endl; switch (data.GetMsgID()) { case 34: { cout<<"MOVE!"<<endl; CGait::IsMove = true; double *move_data = new double [data.GetLength()/sizeof(double)]; memcpy(move_data, data.GetDataAddress(), data.GetLength()); cout<<move_data[0]<<" "<<move_data[1]<<" "<<move_data[2]<<endl; HexIII.RobotMove(move_data, *Gait_Move_Map); for(int j=0;j<GAIT_MOVE_MAP_LEN;j++) { for(int i=0;i<GAIT_WIDTH;i++) { CGait::GaitMoveMap[j][i]=-(int)(Gait_Move_Map[j][i]); } } Aris::Core::MSG controlcmd; controlcmd.SetMsgID(MOVE); cout<<"Send MOVE Message to CS"<<endl; cs.NRT_PostMsg(controlcmd); } break; case 35: { cout<<"TURN!"<<endl; CGait::IsTurn = true; double *turn_data = new double [data.GetLength()/sizeof(double)]; memcpy(turn_data, data.GetDataAddress(), data.GetLength()); *turn_data = *turn_data*180/M_PI; cout<<*turn_data<<endl; HexIII.RobotTurn(turn_data, *Gait_Turn_Map); for(int j=0;j<GAIT_TURN_MAP_LEN;j++) { for(int i=0;i<GAIT_WIDTH;i++) { CGait::GaitTurnMap[j][i]=-(int)(Gait_Turn_Map[j][i]); } } Aris::Core::MSG controlcmd; controlcmd.SetMsgID(TURN); cout<<"Send TURN Message to CS"<<endl; cs.NRT_PostMsg(controlcmd); } break; case 36: { cout<<"STEP UP!"<<endl; CGait::IsStepUp = true; double *map = new double [data.GetLength()/sizeof(double)]; memcpy(map, data.GetDataAddress(), data.GetLength()); static double StepUP_currentH[6] = {-1.05, -1.05, -1.05, -1.05, -1.05, -1.05}; static double StepUP_nextH[6]; memcpy(StepUP_nextH,map,sizeof(StepUP_nextH)); if(StepUP_currentH[0] == -0.85&&StepUP_currentH[1] == -0.85&&StepUP_currentH[2] == -0.85 &&StepUP_currentH[3] == -0.85&&StepUP_currentH[4] == -0.85&&StepUP_currentH[5] == -0.85 &&StepUP_nextH[0] == -0.85&&StepUP_nextH[1] == -0.85&&StepUP_nextH[2] == -0.85 &&StepUP_nextH[3] == -0.85&&StepUP_nextH[4] == -0.85&&StepUP_nextH[5] == -0.85) { cout<<"STEPUP FINISHED"<<endl; CGait::IsStepUp = false; delete[] map; Vision_Msg visioncmd = Vision_UpperControl; Aris::Core::MSG visionmsg; visionmsg.SetMsgID(VS_Capture); visionmsg.SetLength(sizeof(visioncmd)); visionmsg.Copy(&visioncmd, sizeof(visioncmd)); PostMsg(visionmsg); } else { double StepUpLen = 0.325; HexIII.RobotStepUp(&StepUpLen,StepUP_currentH,StepUP_nextH,*Gait_StepUp__Map); memcpy(StepUP_currentH,StepUP_nextH,sizeof(StepUP_nextH)); delete[] map; for(int j=0;j<GAIT_STEPUPANDDOWN_LEN;j++) { for(int i=0;i<GAIT_WIDTH;i++) { CGait::GaitStepUpMap[j][i]=-(int)(Gait_StepUp__Map[j][i]); } } Aris::Core::MSG controldata; controldata.SetMsgID(STEPUP); cs.NRT_PostMsg(controldata); } } break; case 37: { if(data.GetLength() == sizeof(int)) { Vision_Msg visioncmd = Vision_StepDown; Aris::Core::MSG visionmsg; visionmsg.SetMsgID(VS_Capture); visionmsg.SetLength(sizeof(visioncmd)); visionmsg.Copy(&visioncmd, sizeof(visioncmd)); PostMsg(visionmsg); } else { CGait::IsStepDown = true; cout<<"STEP DOWN!"<<endl; double *map = new double [data.GetLength()/sizeof(double)]; memcpy(map, data.GetDataAddress(), data.GetLength()); static double StepDown_currentH[6] = {-0.85, -0.85, -0.85, -0.85, -0.85, -0.85}; static double StepDown_nextH[6]; memcpy(StepDown_nextH,map,sizeof(StepDown_nextH)); if(StepDown_currentH[0] == -1.05&&StepDown_currentH[1] == -1.05&&StepDown_currentH[2] == -1.05 &&StepDown_currentH[3] == -1.05&&StepDown_currentH[4] == -1.05&&StepDown_currentH[5] == -1.05 &&StepDown_nextH[0] == -1.05&&StepDown_nextH[1] == -1.05&&StepDown_nextH[2] == -1.05 &&StepDown_nextH[3] == -1.05&&StepDown_nextH[4] == -1.05&&StepDown_nextH[5] == -1.05) { delete[] map; CGait::IsStepDown = false; cout<<"STEPDOWN FINISHED!"<<endl; cout<<"ENDISCOVER!"<<endl; CGait::IsEndDiscoverStart = true; Aris::Core::MSG controlcmd; controlcmd.SetMsgID(ENDDISCOVER); cout<<"Send ENDDISCOVER Message to CS"<<endl; cs.NRT_PostMsg(controlcmd); } else { double StepDownLen = 0.325; HexIII.RobotStepDown(&StepDownLen,StepDown_currentH,StepDown_nextH,*Gait_StepDown__Map); memcpy(StepDown_currentH,StepDown_nextH,sizeof(StepDown_nextH)); delete[] map; for(int j=0;j<GAIT_STEPUPANDDOWN_LEN;j++) { for(int i=0;i<GAIT_WIDTH;i++) { CGait::GaitStepDownMap[j][i]=-(int)(Gait_StepDown__Map[j][i]); } } Aris::Core::MSG controldata; controldata.SetMsgID(STEPDOWN); cs.NRT_PostMsg(controldata); } } } break; case 38: { if(data.GetLength() == sizeof(int)) { Vision_Msg visioncmd = Vision_StepOver; Aris::Core::MSG visionmsg; visionmsg.SetMsgID(VS_Capture); visionmsg.SetLength(sizeof(visioncmd)); visionmsg.Copy(&visioncmd, sizeof(visioncmd)); PostMsg(visionmsg); } else { cout<<"STEPOVER!"<<endl; CGait::IsStepOver = true; double *stepover_data = new double [data.GetLength()/sizeof(double)]; memcpy(stepover_data, data.GetDataAddress(), data.GetLength()); int count = int(stepover_data[0]); if(count == 5) { CGait::IsStepOver = false; cout<<"STEPOVER FINISHED!"<<endl; Vision_Msg visioncmd = Vision_UpperControl; Aris::Core::MSG visionmsg; visionmsg.SetMsgID(VS_Capture); visionmsg.SetLength(sizeof(visioncmd)); visionmsg.Copy(&visioncmd, sizeof(visioncmd)); PostMsg(visionmsg); } else { double move_data[3]; move_data[0] = stepover_data[1]; move_data[1] = stepover_data[2]; move_data[2] = stepover_data[3]; cout<<"Move Data From Sensor"<<endl; cout<<"Move X: "<<move_data[0]<<endl; cout<<"Move Y: "<<move_data[1]<<endl; cout<<"Move Z: "<<move_data[2]<<endl; HexIII.RobotMove(move_data, *Gait_Move_Map); for(int j=0;j<GAIT_MOVE_MAP_LEN;j++) { for(int i=0;i<GAIT_WIDTH;i++) { CGait::GaitMoveMap[j][i]=-(int)(Gait_Move_Map[j][i]); } } Aris::Core::MSG controlcmd; controlcmd.SetMsgID(MOVE); cout<<"Send MOVE Message to CS"<<endl; cs.NRT_PostMsg(controlcmd); } } } break; case 39: { cout<<"BEGINDISCOVER!"<<endl; CGait::IsBeginDiscoverStart = true; Aris::Core::MSG controlcmd; controlcmd.SetMsgID(BEGINDISCOVER); cout<<"Send BEGINDISCOVER Message to CS"<<endl; cs.NRT_PostMsg(controlcmd); } break; case 40: { cout<<"Vision Control Singnal Recieved, Beging Walk Avoid!"<<endl; int command; memcpy(&command, data.GetDataAddress(), data.GetLength()); Aris::Core::MSG controlcmd; switch (command) { case 0: CGait::IsWalkAvoidRegistered = false; break; case 1: { controlcmd.SetMsgID(FORWARD); cout<<"Send GAIT_MOVE Message to CS"<<endl; cs.NRT_PostMsg(controlcmd); } break; case 2: { controlcmd.SetMsgID(BACKWARD); cout<<"Send GAIT_MOVE_BACK Message to CS"<<endl; cs.NRT_PostMsg(controlcmd); } break; case 3: { controlcmd.SetMsgID(TURNLEFT); cout<<"Send GAIT_TURN_LEFT Message to CS"<<endl; cs.NRT_PostMsg(controlcmd); } break; case 4: { controlcmd.SetMsgID(TURNRIGHT); cout<<"Send GAIT_TURN_RIGHT Message to CS"<<endl; cs.NRT_PostMsg(controlcmd); } break; default: break; } } break; default: break; } return 0; }