]> ruin.nu Git - hbs.git/blobdiff - bs/fleet.h
changed my internal structure from Fleet to Fleet*
[hbs.git] / bs / fleet.h
index b6aaecd429ab85d31775f5777fba78feb9545a39..c156545971078d921634f96fddecc7c41dd87795 100644 (file)
 #define FLEET_H
 
 #include <map>
+#include <ext/hash_map>
 #include <string>
 #include <vector>
 
 #include "unittype.h"
-
+ template<typename T> class MyComp { public: bool operator()(T,T) { return false; } };
+typedef std::map<std::string, std::vector<int> > FleetList;
+typedef std::map<std::string, UnitType>        UnitList;
+typedef std::map<std::string, std::vector<int> > RaceList;
 //!This is the engine for the whole battlesystem.
 /**This is the engine for the whole battlesystem.
   *    One of the few parts that I plan make fully portable.
@@ -34,7 +38,7 @@ class Fleet
 {
 public: 
        Fleet();
-       ~Fleet();
+       virtual ~Fleet();
 
        /**Sets the name that represents this fleet. Might be different a name
         * like foobar or some coordinates like 1:1:1. The name doesn't have to be unique,
@@ -45,7 +49,7 @@ public:
        /**Returns the name of this fleet.
         * \see setName
         */
-       std::string Name();
+       std::string name() const;
 
        /**The race string decides what type of ships this fleet can have.
         * The values must be feeded into this class.
@@ -58,11 +62,13 @@ public:
         * \return The race, represented as a string.
         * \see setRace
         */
-       std::string Race();
+       std::string race() const;
+
+       std::vector<int> RacesAllowed() const;
 
        /**Returns the total number of ships in this fleet
         */
-       int NumberOfShips();
+       int numberOfShips() const;
 
        /**Sets the estimated time of arrival. The time as a single integer,
         * in relation to the current time. For example if the current time is
@@ -71,19 +77,30 @@ public:
        void setETA(int eta);
        /**Return the estimated time of arrival. It's counted from the current time (tick).
         */
-       int  ETA();
+       int  ETA() const;
+
+
+       /**Returns the score. This value is the total resources spent on this fleet
+        * devided with 10.
+        * \param tick tells the function what tick you want the score from. 0 is 
+        * initial score before the fleet has landed.
+        */
+       virtual unsigned score(int tick = 0) const;
+
+       static void setRaces(RaceList& races);
+       static void setUnits(UnitList& units);
 
-       static void setRaces(std::map<std::string, std::vector<int> >& races);
-       static void setUnits(std::map<std::string, UnitType>& units);
+       static const RaceList& Races();
+       static const UnitList& Units();
 
 protected:
        std::string     m_sName;
        std::string     m_sRace;
        int         m_iETA;
-       std::map<std::string, std::vector<int> >        m_Fleet;
+       FleetList       m_Fleet;
 
-       static std::map<std::string, UnitType>  s_Units;
-       static std::map<std::string, std::vector<int> > s_Races;
+       static UnitList s_Units;
+       static RaceList s_Races;
 };
 
 #endif