RCL - RoboCLuedo  v1.0
Francesco Ganci - S4143910 - Experimental Robotics Lab - Assignment 1
example_armor_cluedo_2.cpp
Go to the documentation of this file.
1 
2 
16 #include "ros/ros.h"
18 #include "armor_tools_armor_cluedo.h"
19 #include "armor_msgs/ArmorDirective.h"
20 #include "armor_msgs/ArmorDirectiveReq.h"
21 #include "armor_msgs/ArmorDirectiveRes.h"
22 
23 #include <iostream>
24 #include <string>
25 
26 int main( int argc, char* argv[] )
27 {
28  ros::init( argc, argv, "example_armor_cluedo_2" );
29  ros::NodeHandle nh;
30 
31 
32 
33 
34  // === before starting...
35 
36  ArmorCluedo armor;
37  armor.Init( "/root/ontologies/my_super_ontology.owl" );
38  armor.AddIndiv( "John", "PERSON" );
39  armor.AddIndiv( "Broccoli", "WEAPON" );
40  armor.AddIndiv( "Stadium", "PLACE" );
41  armor.AddIndiv( "SmartHypothesis", "HYPOTHESIS" );
42 
43  // REMEMBER TO UPDATE!
44  armor.UpdateOntology( );
45 
46 
47 
48 
49  // === ADD SOME PROPERTIES
50 
51  armor.SetObjectProperty( "where", "Smarthypothesis", "Stadium" );
52  armor.SetObjectProperty( "who", "Smarthypothesis", "John" );
53  armor.SetObjectProperty( "what", "Smarthypothesis", "Broccoli" );
54 
55  // REMEMBER TO UPDATE!
56  armor.UpdateOntology( );
57 
58 
59 
60 
61  // === CHECKINGS ON PROPERTIES
62 
63  // the main function is
64  std::vector<std::string> values = GetValuedOfIndiv( "where", "SmartHypothesis" );
65 
66 
67 
68 
69  return 0;
70 }
ArmorCluedo::AddIndiv
bool AddIndiv(std::string indivname, std::string classname, bool makeDisjoint=true)
add an individual to the ontology
Definition: armor_cluedo.cpp:53
ArmorCluedo::SetObjectProperty
bool SetObjectProperty(std::string prop, std::string Aelem, std::string Belem)
set a property true
Definition: armor_cluedo.cpp:131
ArmorCluedo::Init
bool Init(std::string ontologyPath)
initizalize the interface
Definition: armor_cluedo.cpp:34
ArmorTools::UpdateOntology
bool UpdateOntology()
send the command REASON
Definition: armor_tools.cpp:246
main
int main(int argc, char *argv[])
Definition: example_armor_cluedo_2.cpp:26
ArmorCluedo
additional utilities for aRMOR
Definition: armor_cluedo.h:56
armor_tools.h
A minimal C++ client for aRMOR.