Cytopia  0.3
A city building simulation game
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ZoneArea.cxx File Reference
+ Include dependency graph for ZoneArea.cxx:

Go to the source code of this file.

Functions

void mergeZoneAreas (ZoneArea &mainZone, ZoneArea &toBeMerged)
 

Function Documentation

◆ mergeZoneAreas()

void mergeZoneAreas ( ZoneArea mainZone,
ZoneArea toBeMerged 
)

Definition at line 7 of file ZoneArea.cxx.

8 {
9  mainZone.m_gridNodes.insert(mainZone.end(), toBeMerged.begin(), toBeMerged.end());
10  mainZone.m_hasPower |= toBeMerged.m_hasPower;
11  mainZone.m_hasWater |= toBeMerged.m_hasWater;
12  mainZone.xmin = std::min(mainZone.xmin, toBeMerged.xmin);
13  mainZone.xmax = std::max(mainZone.xmax, toBeMerged.xmax);
14  mainZone.ymin = std::min(mainZone.ymin, toBeMerged.ymin);
15  mainZone.ymax = std::max(mainZone.ymax, toBeMerged.ymax);
16 };
+ Here is the call graph for this function:
+ Here is the caller graph for this function:
MapGrid::begin
auto begin()
Definition: MapGrid.hxx:46
MapGrid::end
auto end()
Definition: MapGrid.hxx:47
ZoneArea::ymin
int ymin
Definition: ZoneArea.hxx:118
ZoneArea::ymax
int ymax
Definition: ZoneArea.hxx:118
ZoneArea::xmax
int xmax
Definition: ZoneArea.hxx:118
ZoneArea::xmin
int xmin
Definition: ZoneArea.hxx:118
MapGrid::m_gridNodes
std::vector< T > m_gridNodes
Definition: MapGrid.hxx:50
ZoneArea::m_hasPower
bool m_hasPower
Definition: ZoneArea.hxx:115
ZoneArea::m_hasWater
bool m_hasWater
Definition: ZoneArea.hxx:116