X-Git-Url: https://ruin.nu/git/?p=popboot.git;a=blobdiff_plain;f=node.h;h=b49d0109ee042005010a2bae4eb455395db8b57c;hp=31568fc5a6b910ec44a91b7f71c97e0a2d4ab366;hb=c9c72023d15decebe700ad0bfe3e8cbac9a85248;hpb=b177aeec472c3941b39b874a83883ff87a41919c diff --git a/node.h b/node.h index 31568fc..b49d010 100644 --- a/node.h +++ b/node.h @@ -2,18 +2,38 @@ #define __node_h__ #include +#include #include "action.h" class Node { public: - Node(Action action); + Node(const Action& action); + Node(); + Node(const Node& node); + virtual ~Node(){} void addChild(Node* node); - Action action(); + const Action& action() const; + void execute(const Literals& effects); + bool executed() const; + const Literals& effects() const; protected: Action _action; std::vector _children; + Preconditions _preconditions; + bool _executed; + Literals _effects; +}; + +class StartNode :public Node { + public: + StartNode(const Literals& init); +}; + +class EndNode :public Node { + public: + EndNode(const Literals& goal); }; #endif