]> ruin.nu Git - popboot.git/blobdiff - node.h
delete remaining actions
[popboot.git] / node.h
diff --git a/node.h b/node.h
index 31568fc5a6b910ec44a91b7f71c97e0a2d4ab366..272bee93bc565977f03a9499f8d02f8255ed7831 100644 (file)
--- a/node.h
+++ b/node.h
@@ -2,18 +2,41 @@
 #define __node_h__
 
 #include <vector>
+#include <utility>
 #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;
+               void satisfyCondition(std::string effect);
 
        protected:
-               Action _action;
+               const Action* _action;
                std::vector<Node*> _children;
+               Preconditions _preconditions;
+               bool _executed;
+               Literals _effects;
+};
+
+class StartNode :public Node {
+       public:
+               StartNode(const Literals& init);
+               ~StartNode(){delete _action;}
+};
+
+class EndNode :public Node {
+       public:
+               EndNode(const Literals& goal);
+               ~EndNode(){delete _action;}
 };
 
 #endif