public GetMapActionGoal(HeaderMsg header, GoalIDMsg goal_id, GetMapGoal goal) : base(header, goal_id)
 {
     this.goal = goal;
 }
Exemple #2
0
    private static void CancelTF2Action()
    {
        GoalIDMsg msg = new GoalIDMsg(ROSTimeHelper.GetCurrentTime(), "");

        ROSCommunicationManager.Instance.ros.Publish(TF2WebRepublisherCancelPublisher.GetMessageTopic(), msg);
    }
Exemple #3
0
 public LearningRequestActionGoalMsg(HeaderMsg header, GoalIDMsg goal_id, LearningRequestGoalMsg goal)
 {
     _header  = header;
     _goal_id = goal_id;
     _goal    = goal;
 }
 public LookupTransformActionGoal(HeaderMsg header, GoalIDMsg goal_id, LookupTransformGoal goal) : base(header, goal_id)
 {
     this.goal = goal;
 }
Exemple #5
0
 public MoveBaseActionGoal(HeaderMsg header, GoalIDMsg goal_id, MoveBaseGoal goal) : base(header, goal_id)
 {
     this.goal = goal;
 }
Exemple #6
0
 public LearningRequestActionGoalMsg(JSONNode msg)
 {
     _header  = new HeaderMsg(msg["header"]);
     _goal_id = new GoalIDMsg(msg["goal_id"]);
     _goal    = new LearningRequestGoalMsg(msg["goal"]);
 }
 public ActionGoal(HeaderMsg header, GoalIDMsg goal_id)
 {
     this.header  = header;
     this.goal_id = goal_id;
 }
Exemple #8
0
 public GoalStatusMsg(JSONNode msg)
 {
     _goal_id = new GoalIDMsg(msg["goal_id"]);
     _status  = (Status)UInt16.Parse(msg["status"]);
     _text    = msg["text"];
 }
Exemple #9
0
 public MoveBaseActionGoalMsg(MoveBaseGoalMsg goal, GoalIDMsg goal_id, HeaderMsg header)
 {
     _goal    = goal;
     _goal_id = goal_id;
     _header  = header;
 }
 public ActionGoal()
 {
     header  = new HeaderMsg();
     goal_id = new GoalIDMsg();
 }
Exemple #11
0
 public MoveBaseActionGoalMsg(JSONNode msg)
 {
     _goal    = new MoveBaseGoalMsg(msg["goal"]);
     _goal_id = new GoalIDMsg(msg["goal_id"]);
     _header  = new HeaderMsg(msg["header"]);
 }
Exemple #12
0
 public static string ToYAMLString(GoalIDMsg msg)
 {
     return(msg.ToYAMLString());
 }
Exemple #13
0
 public GoalStatusMsg(GoalIDMsg goal_id, Status status, string text)
 {
     _goal_id = goal_id;
     _status  = status;
     _text    = text;
 }
Exemple #14
0
 public TFSubscriptionActionGoalMsg(JSONNode msg)
 {
     _header  = new HeaderMsg(msg["header"]);
     _goal_id = new GoalIDMsg(msg["goal_id"]);
     _goal    = new TFSubscriptionGoalMsg(msg["goal"]);
 }
 protected ActionGoal(MessageDeserializer deserializer)
 {
     this.header  = HeaderMsg.Deserialize(deserializer);
     this.goal_id = GoalIDMsg.Deserialize(deserializer);
 }
Exemple #16
0
 public TFSubscriptionActionGoalMsg(HeaderMsg header, GoalIDMsg goal_id, TFSubscriptionGoalMsg goal)
 {
     _header  = header;
     _goal_id = goal_id;
     _goal    = goal;
 }
Exemple #17
0
 public ObjectRecognitionActionGoal(HeaderMsg header, GoalIDMsg goal_id, ObjectRecognitionGoal goal) : base(header, goal_id)
 {
     this.goal = goal;
 }