// TerritoryManager.h // // Matei Zaharia matei@sprint.ca / matei@wildfiregames.com // // Calculates territory boundaries and maintains territory data. // // Usage: #ifndef TERRITORY_MANAGER_INCLUDED #define TERRITORY_MANAGER_INCLUDED #include "ps/Vector2D.h" #include "maths/Vector3D.h" #include "EntityHandles.h" class CUnit; class CPlayer; const float TERRITORY_PRECISION_STEP = 1.0f; class CTerritory { public: CPlayer* owner; // owner of the territory, or Gaia for none HEntity centre; // centre object of this territory std::vector boundary; // boundary polygon, in map coordinates private: // cached coordinates for the polygon's edge segments (conformed to the terrain) std::vector > edgeCoords; public: CTerritory(CPlayer* owner_, HEntity centre_, std::vector boundary_) : owner(owner_), centre(centre_), boundary(boundary_) {} const std::vector& GetEdgeCoords(size_t edge); void ClearEdgeCache(); }; class CTerritoryManager { std::vector m_Territories; CTerritory*** m_TerritoryMatrix; // m_TerritoryMatrix[x][z] points to the territory for tile (x, z) uint m_TilesPerSide; bool m_DelayedRecalculate; public: CTerritoryManager(); ~CTerritoryManager(); void Initialize(); // initialize, called after the game is fully loaded void Recalculate(); // recalculate the territory boundaries void DelayedRecalculate(); // recalculate the territory boundaries when next rendered void renderTerritories(); CTerritory* GetTerritory(int x, int z); // get the territory to which the given tile belongs CTerritory* GetTerritory(float x, float z); // get the territory to which the given world-space point belongs std::vector& GetTerritories() { return m_Territories; } private: void CalculateBoundary( std::vector& centres, size_t index, std::vector& boundary ); }; #endif