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 "
42  "implemented."),
43  BidirectionalPort("output_key", "Name of the blackboard entry where the "
44  "value "
45  "should be written")};
46  }
47 
48 private:
49  virtual BT::NodeStatus tick() override
50  {
51  std::string key, value;
52  if (!getInput("output_key", key))
53  {
54  throw RuntimeError("missing port [output_key]");
55  }
56  if (!getInput("value", value))
57  {
58  throw RuntimeError("missing port [value]");
59  }
60  setOutput("output_key", value);
61  return NodeStatus::SUCCESS;
62  }
63 };
64 } // namespace BT
65 
66 #endif
std::pair< std::string, PortInfo > InputPort(StringView name, StringView description={})
Definition: basic_types.h:293
SetBlackboard(const std::string &name, const NodeConfiguration &config)
std::pair< std::string, PortInfo > BidirectionalPort(StringView name, StringView description={})
Definition: basic_types.h:307
const NodeConfiguration & config() const
Definition: tree_node.cpp:127
Result setOutput(const std::string &key, const T &value)
Definition: tree_node.h:293
The SyncActionNode is an ActionNode that explicitly prevents the status RUNNING and doesn&#39;t require a...
Definition: action_node.h:52
const std::string & name() const
Name of the instance, not the type.
Definition: tree_node.cpp:101
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:232
static PortsList providedPorts()
std::unordered_map< std::string, PortInfo > PortsList
Definition: basic_types.h:333
void setRegistrationID(StringView ID)
Definition: tree_node.cpp:201
NodeStatus
Definition: basic_types.h:35


behaviortree_cpp_v3
Author(s): Michele Colledanchise, Davide Faconti
autogenerated on Mon Jul 3 2023 02:50:14