X-Git-Url: https://ruin.nu/git/?a=blobdiff_plain;f=bs%2Ffleet.h;h=3bdab65924c5f9db08ffd1f2decf47fbeac5da3a;hb=a2ce63f561d091d9c3af49987d74849f9450c16b;hp=b6aaecd429ab85d31775f5777fba78feb9545a39;hpb=dc90594097a886eee49e9bfe45da6d4f9765179a;p=hbs.git diff --git a/bs/fleet.h b/bs/fleet.h index b6aaecd..3bdab65 100644 --- a/bs/fleet.h +++ b/bs/fleet.h @@ -19,13 +19,18 @@ #define FLEET_H #include +#include #include #include #include "unittype.h" - -//!This is the engine for the whole battlesystem. -/**This is the engine for the whole battlesystem. + template class MyComp { public: bool operator()(T,T) { return false; } }; +typedef std::map > FleetList; +typedef std::map UnitList; +typedef std::map > RaceList; +typedef std::map > ResourceList; +//! An abstraction of a fleet and the engine for the battle simulation. +/**This class and it's derivates is the engine for the whole battlesystem. * One of the few parts that I plan make fully portable. *\todo LOTS (I think ;) *@author Michael Andreen @@ -34,7 +39,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 +50,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 +63,13 @@ public: * \return The race, represented as a string. * \see setRace */ - std::string Race(); + std::string race() const; + + std::vector 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 +78,53 @@ 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. + */ + unsigned score(int tick = 0) const; + + void setFleet(std::string unittype, int number); + int fleet(std::string unittype, int tick = 0); + + int freeFleet(std:: string unittype, int tick = 0); + + static void setRaces(RaceList& races); + static void setUnits(UnitList& units); - static void setRaces(std::map >& races); - static void setUnits(std::map& units); + static const RaceList& Races(); + static const UnitList& Units(); + void addToThis(std::vector fleets, int tick = 0); + + void distributeLossesGains(std::vector fleets, int tick = 0); + + std::vector calculateSide(std::vector fleets, int stays = 0, int tick = 0); + + void takeShoot(std::string unittype, int number, std::map& hitunits); + void takeEMP(std::string unittype, int number); + void killFleet(std::string unittype, int number, int tick = 0); + + void setResource(std::string type, int number, int tick = 0); + int resource(std::string type, int tick = 0); + protected: + + std::string m_sName; std::string m_sRace; int m_iETA; - std::map > m_Fleet; + FleetList m_Fleet; + FleetList m_BlockedFleet; + ResourceList m_Resources; + - static std::map s_Units; - static std::map > s_Races; + static UnitList s_Units; + static RaceList s_Races; }; #endif