Go to the documentation of this file.00001 #include <hrpModel/ModelLoaderUtil.h>
00002 #include <hrpModel/Link.h>
00003 #include <hrpUtil/OnlineViewerUtil.h>
00004 #include <hrpModel/OnlineViewerUtil.h>
00005 #include <iostream>
00006 #include <fstream>
00007 #include "scc.h"
00008
00009 using namespace OpenHRP;
00010 using namespace hrp;
00011
00012 int main(int argc, char *argv[])
00013 {
00014 if (argc < 3){
00015 std::cerr << "Usage: " << argv[0] << "[VRML model] [log file] [-olv] [linkName1:linkNam2 ...]"
00016 << std::endl;
00017 return 1;
00018 }
00019
00020 hrp::LinkNamePairList pairs;
00021 bool useOLV=false;
00022 for (int i=3; i<argc; i++){
00023 std::string str = argv[i];
00024 std::string::size_type pos;
00025 if ((pos = str.find(":")) != std::string::npos){
00026 std::string link1 = str.substr(0, pos);
00027 std::string link2 = str.substr(pos+1);
00028 std::cerr << "[" << link1 << "],[" << link2 << "]" << std::endl;
00029 pairs.push_back(std::make_pair(link1, link2));
00030 }else if(str=="-olv"){
00031 useOLV=true;
00032 }
00033 }
00034
00035 hrp::BodyPtr robot = hrp::BodyPtr(new hrp::Body());
00036 if (!loadBodyFromModelLoader(robot, argv[1],
00037 argc, argv, true)){
00038 std::cerr << "Error: failed to load model[" << argv[1] << "]"
00039 << std::endl;
00040 return 2;
00041 }
00042
00043 hrp::SelfCollisionChecker scc(robot, pairs);
00044 std::cerr << scc.numOfCheckPairs() << " pairs are defined" << std::endl;
00045
00046 OpenHRP::OnlineViewer_var olv;
00047 if (useOLV){
00048 olv = getOnlineViewer(argc, argv);
00049 olv->load(robot->name().c_str(), argv[1]);
00050 olv->clearLog();
00051 }
00052 OpenHRP::WorldState wstate;
00053 wstate.characterPositions.length(1);
00054 setupCharacterPosition(wstate.characterPositions[0], robot);
00055
00056 std::ifstream ifs(argv[2]);
00057 double tm, q[robot->numJoints()];
00058
00059 int ret = 0;
00060 ifs >> tm;
00061 while (!ifs.eof()){
00062 for (unsigned int i=0; i<robot->numJoints(); i++){
00063 ifs >> q[i];
00064 }
00065 pairs = scc.check(q);
00066 for (unsigned int i=0; i<pairs.size(); i++){
00067 std::cout << tm << " " << pairs[i].first << ":" << pairs[i].second
00068 << std::endl;
00069 ret = 3;
00070 }
00071 if (useOLV){
00072 wstate.time = tm;
00073 updateCharacterPosition(wstate.characterPositions[0], robot);
00074 olv->update(wstate);
00075 }
00076 ifs >> tm;
00077 }
00078
00079 return ret;
00080 }