]> ruin.nu Git - icfp05.git/blobdiff - botsrc/bot.h
banks with guarding cops is BAD.. and public inheritance is more useful than private
[icfp05.git] / botsrc / bot.h
index 731a106a4a1dbcc847ee41f2fd65da03c1ac96dd..a5f469b580becc9b390b20b7dbbd9ca11ce92e03 100644 (file)
@@ -65,9 +65,10 @@ struct SPInfo{
 };
 
 
-struct SPGoal{
-       virtual ~SPGoal(){}
-       virtual int operator()(const SPInfo* node) const = 0;
+class SPGoal{
+       public:
+               virtual ~SPGoal(){}
+               virtual int operator()(const SPInfo* node) const = 0;
 };
 
 class Bot {
@@ -99,16 +100,18 @@ class Bot {
        int _smell;
 };
 
-struct SimpleSPGoal : public SPGoal{
+class SimpleSPGoal : public SPGoal{
        std::string _to;
+       public:
        SimpleSPGoal(std::string to);
        int operator()(const SPInfo* node) const;
 };
 
-struct FindPlayer : SPGoal{
+class FindPlayer : public SPGoal{
        int _limit;
        const __gnu_cxx::hash_map<std::string, Player>& _players;
        PlayerType _type;
+       public:
        FindPlayer(const __gnu_cxx::hash_map<std::string, Player>& players, PlayerType type, int limit = 0);
        int operator()(const SPInfo* node) const;
 };