set_blackboard_node.h
Go to the documentation of this file.
1 /* Copyright (C) 2018-2020 Davide Faconti, Eurecat - All Rights Reserved
2 *
3 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"),
4 * to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense,
5 * and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6 * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
7 *
8 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
9 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
10 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
11 */
12 
13 #ifndef ACTION_SETBLACKBOARD_NODE_H
14 #define ACTION_SETBLACKBOARD_NODE_H
15 
17 
18 namespace BT
19 {
31 {
32  public:
33  SetBlackboard(const std::string& name, const NodeConfiguration& config)
34  : SyncActionNode(name, config)
35  {
36  setRegistrationID("SetBlackboard");
37  }
38 
40  {
41  return { InputPort("value", "Value represented as a string. convertFromString must be implemented."),
42  BidirectionalPort("output_key", "Name of the blackboard entry where the value should be written") };
43  }
44 
45  private:
46  virtual BT::NodeStatus tick() override
47  {
48  std::string key, value;
49  if ( !getInput("output_key", key) )
50  {
51  throw RuntimeError("missing port [output_key]");
52  }
53  if ( !getInput("value", value) )
54  {
55  throw RuntimeError("missing port [value]");
56  }
57  setOutput("output_key", value);
58  return NodeStatus::SUCCESS;
59  }
60 };
61 }
62 
63 #endif
const std::string & name() const
Name of the instance, not the type.
Definition: tree_node.cpp:73
SetBlackboard(const std::string &name, const NodeConfiguration &config)
const NodeConfiguration & config() const
Definition: tree_node.cpp:99
std::pair< std::string, PortInfo > BidirectionalPort(StringView name, StringView description={})
Definition: basic_types.h:295
Result setOutput(const std::string &key, const T &value)
Definition: tree_node.h:243
The SyncActionNode is an ActionNode that explicitly prevents the status RUNNING and doesn&#39;t require a...
Definition: action_node.h:53
virtual BT::NodeStatus tick() override
Method to be implemented by the user.
The SetBlackboard is action used to store a string into an entry of the Blackboard specified in "outp...
Result getInput(const std::string &key, T &destination) const
Definition: tree_node.h:192
static PortsList providedPorts()
std::unordered_map< std::string, PortInfo > PortsList
Definition: basic_types.h:317
void setRegistrationID(StringView ID)
Definition: tree_node.h:163
NodeStatus
Definition: basic_types.h:35
std::pair< std::string, PortInfo > InputPort(StringView name, StringView description={})
Definition: basic_types.h:283


behaviotree_cpp_v3
Author(s): Michele Colledanchise, Davide Faconti
autogenerated on Tue May 4 2021 02:56:25