RCL - RoboCLuedo  v1.0
Francesco Ganci - S4143910 - Experimental Robotics Lab - Assignment 1
example_armor_tools_2.cpp
Go to the documentation of this file.
1 
2 
17 #include "ros/ros.h"
19 #include "armor_msgs/ArmorDirective.h"
20 #include "armor_msgs/ArmorDirectiveReq.h"
21 #include "armor_msgs/ArmorDirectiveRes.h"
22 
23 int main( int argc, char* argv[] )
24 {
25  ros::init( argc, argv, "example_armor_tools_2" );
26  ros::NodeHandle nh;
27 
28  // preparing the client
29  ArmorTools armor( );
30  if( !armor.ConnectAndLoad( "/root/ontologies/civetta_ontology.owl" ) )
31  {
32  // something went wrong...
33  }
34 
35  // call aRMOR
36  armor.SendCommand( "ADD", "IND", "CLASS", "pizza", "WEAPON" );
37 
38  // REMEMBER TO UPDATE after the callings!
39  armor.UpdateOntology( );
40 
41  return 0;
42 }
ArmorTools::ConnectAndLoad
bool ConnectAndLoad(std::string path, std::string uri=ARMOR_DEFAULT_URI, bool manipulationFlag=true, std::string reasoner=ARMOR_DEFAULT_REASONER, bool buffered_reasoner=true)
connect to the server and load the ontology from file.
Definition: armor_tools.cpp:213
main
int main(int argc, char *argv[])
Definition: example_armor_tools_2.cpp:23
ArmorTools::UpdateOntology
bool UpdateOntology()
send the command REASON
Definition: armor_tools.cpp:246
ArmorTools::SendCommand
bool SendCommand(std::string command, std::string first_spec="", std::string second_spec="", std::string arg1="", std::string arg2="", std::string arg3="", std::string arg4="", std::string arg5="", bool printRequest=false)
fill in a command and send it to aRMOR
Definition: armor_tools.cpp:360
ArmorTools
A minimal C++ client for aRMOR.
Definition: armor_tools.h:90
armor_tools.h
A minimal C++ client for aRMOR.