Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051 package org.srs.srs_knowledge.task;
00052
00053 import java.io.*;
00054 import java.util.ArrayList;
00055 import ros.pkg.geometry_msgs.msg.Pose2D;
00056 import ros.pkg.geometry_msgs.msg.Pose;
00057 import org.srs.srs_knowledge.knowledge_engine.*;
00058 import org.srs.srs_knowledge.task.Task;
00059
00060 import org.json.simple.JSONArray;
00061 import org.json.simple.JSONObject;
00062 import org.json.simple.JSONValue;
00063 import org.json.simple.parser.ParseException;
00064 import org.json.simple.parser.JSONParser;
00065
00066 public class ActionFeedback {
00067 public ActionFeedback(String jsonGenericFeedback) throws ParseException {
00068 this.jsonFeedback = jsonGenericFeedback;
00069 JSONParser parser = new JSONParser();
00070 Object obj = parser.parse(this.jsonFeedback);
00071 this.jsonFBObject = (JSONObject)obj;
00072
00073 System.out.println("Constructor: using json feedback.");
00074 }
00075
00076 public Pose getDetectedObjectPose() {
00077 Pose pos = new Pose();
00078
00079 try {
00080 JSONObject fb = (JSONObject)this.jsonFBObject.get("feedback");
00081 String actionName = (String)fb.get("action");
00082 if(!actionName.equals("detect")) {
00083 System.out.println("Action type is not 'detect'... Format error");
00084 return null;
00085 }
00086 JSONObject detObj = (JSONObject)fb.get("object");
00087
00088 String objectName = (String)detObj.get("object_type");
00089 System.out.println("Detected object: " + objectName);
00090 JSONObject jsonPos = (JSONObject)fb.get("pose");
00091 pos.position.x = ((Number)(jsonPos.get("x"))).doubleValue();
00092 pos.position.y = ((Number)(jsonPos.get("y"))).doubleValue();
00093 pos.position.z = ((Number)(jsonPos.get("z"))).doubleValue();
00094 pos.orientation.x = ((Number)(jsonPos.get("rotx"))).doubleValue();
00095 pos.orientation.y = ((Number)(jsonPos.get("roty"))).doubleValue();
00096 pos.orientation.z = ((Number)(jsonPos.get("rotz"))).doubleValue();
00097 pos.orientation.w = ((Number)(jsonPos.get("rotw"))).doubleValue();
00098 System.out.println(this.jsonFeedback);
00099
00100 }
00101 catch(Exception e) {
00102 System.out.println(e.toString());
00103 return null;
00104 }
00105
00106 return pos;
00107 }
00108
00109 private String jsonFeedback = "";
00110 private JSONObject jsonFBObject = new JSONObject();
00111 }