]> ruin.nu Git - popboot.git/blobdiff - planner.h
delete remaining actions
[popboot.git] / planner.h
index 4846fd9166a908b0a0d54b7b592455d24cfce0b5..f00c61473382884c6c42bf427614278c627c851f 100644 (file)
--- a/planner.h
+++ b/planner.h
@@ -1,12 +1,31 @@
 #ifndef __PLANNER_H__
 #define __PLANNER_H__
-#include <hash_map>
+
+#include <ext/hash_map>
+#include <vector>
+#include "action.h"
+
+class Node;
 
 class Planner {
        public:
+               Planner(std::vector<Action> actions, Literals init, Literals goal);
+               ~Planner();
+
+               void execute();
 
        protected:
-               Node start;
-               std::hash_map addedNodes;
+
+               void makePlan(Node* node);
+               void addNode(Node* node);
+               
+               Node* _start;
+               Node* _finish;
+               __gnu_cxx::hash_map<std::string,Node*> _addedEffects;
+               __gnu_cxx::hash_map<std::string,Action*> _actionEffects;
+               Literals _init;
+               Literals _goal;
+               std::vector<Node*> _addedNodes;
+               std::vector<Action*> _actions;
 };
 #endif