00001 /* Copyright (C) 2015-2018 Michele Colledanchise - All Rights Reserved 00002 * Copyright (C) 2018 Davide Faconti - All Rights Reserved 00003 * 00004 * Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), 00005 * to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, 00006 * 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: 00007 * The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 00008 * 00009 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 00010 * 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, 00011 * 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. 00012 */ 00013 00014 #ifndef CONDITIONNODE_H 00015 #define CONDITIONNODE_H 00016 00017 #include "leaf_node.h" 00018 00019 namespace BT 00020 { 00021 class ConditionNode : public LeafNode 00022 { 00023 public: 00024 ConditionNode(const std::string& name, const NodeParameters& parameters = NodeParameters()); 00025 00026 virtual ~ConditionNode() override = default; 00027 00028 // The method used to interrupt the execution of the node 00029 virtual void halt() override; 00030 00031 virtual NodeType type() const override final 00032 { 00033 return NodeType::CONDITION; 00034 } 00035 }; 00036 00048 class SimpleConditionNode : public ConditionNode 00049 { 00050 public: 00051 typedef std::function<NodeStatus(TreeNode&)> TickFunctor; 00052 00053 // Constructor: you must provide the function to call when tick() is invoked 00054 SimpleConditionNode(const std::string& name, TickFunctor tick_functor, 00055 const NodeParameters& params = NodeParameters()); 00056 00057 ~SimpleConditionNode() override = default; 00058 00059 virtual void halt() override 00060 { 00061 // not supported 00062 } 00063 00064 protected: 00065 virtual NodeStatus tick() override; 00066 00067 TickFunctor tick_functor_; 00068 }; 00069 } 00070 00071 #endif