X-Git-Url: https://ruin.nu/git/?p=popboot.git;a=blobdiff_plain;f=action.h;h=606857d8524ade62545f3455d8984e0dfbe4325a;hp=60206a391c76119853c3beaf9fbde219f2f284c8;hb=d385ba13a2ded8ce22b83c82d8a50c89a5d1d63e;hpb=eb5481635b31a8517a2f443ca7b414e4ff515028 diff --git a/action.h b/action.h index 60206a3..606857d 100644 --- a/action.h +++ b/action.h @@ -1,19 +1,57 @@ #ifndef __ACTION_H__ #define __ACTION_H__ -typedef literals std::vector; +#include +#include +#include +typedef std::vector Literals; +typedef __gnu_cxx::hash_map Preconditions; +typedef __gnu_cxx::hash_map EffectsMap; + +namespace __gnu_cxx { + + template< typename CharT, typename Traits, typename Alloc > + struct hash< std::basic_string > { + size_t operator()(const std::basic_string& s) const { + + const std::collate& c = std::use_facet< std::collate >(std::locale()); + + return c.hash(s.c_str(), s.c_str() + s.size()); + + } + + }; + + template< typename CharT, typename Traits, typename Alloc > + struct hash< const std::basic_string > { //yes you need this version aswell! + + size_t operator()(const std::basic_string& s) const { + + const std::collate& c = std::use_facet< std::collate >(std::locale()); + + return c.hash(s.c_str(), s.c_str() + s.size()); + } + + }; +}; class Action { public: - Action(std::string executable, literals preconditions, literals effects); - const literals effects() const; - const literals preconditions() const; + Action(std::string name, const Preconditions& preconditions, std::string executable, const EffectsMap& effects); + Action(const Action& action); + Action(){}; + const Literals& effects(int value) const; + const Preconditions& preconditions() const; + const std::string& name() const; int execute() const; protected: + std::string _name; std::string _executable; - literals _preconditions; - literals _effects; + Preconditions _preconditions; + EffectsMap _effects; + static const Literals _empty; }; + #endif