X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=bs%2Ffleet.h;h=047fc131844588dc03c3f2b97ec56073f1abb5e7;hb=15d92b3097a80faf26b8ce4cb4a6b957d17bc092;hp=3bdd4ce5719042c6e7d6818d0d41ccf151d0dc21;hpb=74e88b9621331f15ffc22565cb972c3e1e00425f;p=hbs.git diff --git a/bs/fleet.h b/bs/fleet.h index 3bdd4ce..047fc13 100644 --- a/bs/fleet.h +++ b/bs/fleet.h @@ -20,6 +20,7 @@ #include #include +#include #include "unittype.h" @@ -29,19 +30,65 @@ *\todo LOTS (I think ;) *@author Michael Andreen */ - class Fleet { public: Fleet(); ~Fleet(); -private: - std::string m_Name; - std::string m_Race; + /**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, + * since it's up to the rest of the program to handle that part. + * \see Name + */ + void setName(std::string sName); + /**Returns the name of this fleet. + * \see setName + */ + std::string Name() const; + + /**The race string decides what type of ships this fleet can have. + * The values must be feeded into this class. + * \param sRace This is just the name of the race. It's case-sensitive. + * \return If the race is available this function returns true, if not false is returned. The race is set in both cases though. + * \see Race + */ + bool setRace(std::string sRace); + /**Just returns what race this fleet belongs to.. + * \return The race, represented as a string. + * \see setRace + */ + std::string Race() const; + + std::vector RacesAllowed() const; + + /**Returns the total number of ships in this fleet + */ + 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 + * 10, and the arrival is at 12, then the eta is 2. + */ + void setETA(int eta); + /**Return the estimated time of arrival. It's counted from the current time (tick). + */ + int ETA() const; + + static void setRaces(std::map >& races); + static void setUnits(std::map& units); + + static const std::map >& Races(); + static const std::map& Units(); + +protected: + std::string m_sName; + std::string m_sRace; + int m_iETA; std::map > m_Fleet; - static std::map m_Units; + static std::map s_Units; + static std::map > s_Races; }; #endif