AutoAPMS
Resilient Robot Mission Management
Loading...
Searching...
No Matches
launch_executor.cpp
Go to the documentation of this file.
1// Copyright 2024 Robin Müller
2//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// https://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14
16#include "auto_apms_interfaces/action/start_tree_executor.hpp"
17
19{
20
21class LaunchExecutorAction : public RosActionNode<auto_apms_interfaces::action::StartTreeExecutor>
22{
23 double last_running_node_timestamp_ = 0;
24
25public:
27
28 static BT::PortsList providedPorts()
29 {
30 return providedBasicPorts({});
31 }
32
33 BT::NodeStatus onResultReceived(const WrappedResult& wr)
34 {
35 switch (wr.result->tree_result)
36 {
37 case ActionType::Result::TREE_RESULT_SUCCESS:
38 return BT::NodeStatus::SUCCESS;
39 default:
40 return BT::NodeStatus::FAILURE;
41 }
42 }
43
44 BT::NodeStatus onFeedback(const std::shared_ptr<const Feedback> feedback)
45 {
46 if (feedback->running_action_timestamp > last_running_node_timestamp_)
47 {
48 last_running_node_timestamp_ = feedback->running_action_timestamp;
49 RCLCPP_DEBUG(logger_, "%s - Tree '%s' is ticking node '%s'", getFullName().c_str(),
50 feedback->running_tree_identity.c_str(), feedback->running_action_name.c_str());
51 }
52 return BT::NodeStatus::RUNNING;
53 }
54};
55
56} // namespace auto_apms_behavior_tree
57
58AUTO_APMS_BEHAVIOR_TREE_REGISTER_NODE(auto_apms_behavior_tree::LaunchExecutorAction)
RosActionNode(const std::string &instance_name, const Config &config, const Context &context)
typename rclcpp_action::ClientGoalHandle< auto_apms_interfaces::action::StartTreeExecutor >::WrappedResult WrappedResult
#define AUTO_APMS_BEHAVIOR_TREE_REGISTER_NODE(type)
Macro for registering a behavior tree node plugin.
Definition node.hpp:30