Cytopia  0.3
A city building simulation game
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ZoneArea Class Reference

#include <ZoneArea.hxx>

+ Inheritance diagram for ZoneArea:
+ Collaboration diagram for ZoneArea:

Public Member Functions

 ZoneArea (ZoneNode zoneNode)
 
void addNode (ZoneNode zoneNode) override
 Add a zoneNode to this zoneArea. More...
 
void removeZoneNode (Point coordinate)
 Remove a zoneNode on a given coordinate from this zoneArea. More...
 
void setPowerSupply (bool hasPower)
 Set the power supply for this Area. More...
 
bool hasPowerSupply ()
 Get the Power supply for this Area. More...
 
void setWaterSupply (bool hasWater)
 Set the water supply for this Area. More...
 
bool hasWaterSupply ()
 Get the water supply for this Area. More...
 
ZoneType getZone () const
 Get the zone for this Area. More...
 
ZoneDensity getZoneDensity ()
 Get the zone density for this Area. More...
 
bool isVacant () const
 If this area has unoccupied nodes left. More...
 
void spawnBuildings ()
 Spawn buildings on nodes in this area if all demands are fulfilled. More...
 
bool isWithinBoundaries (Point coordinate) const
 Check if a given point is within the boundaries of this zone area. More...
 
void setVacancy (Point coordinate, bool vacancy)
 Set vacancy for this tile. More...
 
- Public Member Functions inherited from MapGrid< ZoneNode >
 MapGrid (ZoneNode node)
 
virtual ~MapGrid ()=0
 
size_t size ()
 
virtual void removeNode (Point coordinate)
 Remove a node on a given coordinate from this gridnode. More...
 
bool isNeighbor (Point coordinate) const
 If this coordinate is a neighbor of one of the node in the grid. More...
 
bool isMemberOf (Point coordinate) const
 If this coordinate is part of the grid. More...
 
auto begin ()
 
auto end ()
 

Private Member Functions

bool checkVacancy () const
 internal function to check for vacancy More...
 
TileSize getMaximumTileSize (Point originPoint)
 Returns the possible size of buildings that can be placed on this coordinate in a zone. More...
 

Private Attributes

ZoneType m_zoneType
 
ZoneDensity m_zoneDensity
 
bool m_hasPower = false
 
bool m_hasWater = false
 
bool m_isVacant = false
 
int xmin
 
int xmax
 
int ymin
 
int ymax
 

Friends

void mergeZoneAreas (ZoneArea &mainZone, ZoneArea &toBeMerged)
 

Additional Inherited Members

- Protected Attributes inherited from MapGrid< ZoneNode >
std::vector< ZoneNodem_gridNodes
 

Detailed Description

Definition at line 19 of file ZoneArea.hxx.

Constructor & Destructor Documentation

◆ ZoneArea()

ZoneArea::ZoneArea ( ZoneNode  zoneNode)

Definition at line 18 of file ZoneArea.cxx.

19  : MapGrid{zoneNode}, m_zoneType(zoneNode.zoneType), m_zoneDensity(zoneNode.zoneDensity),
20  xmin(std::max(0, zoneNode.coordinate.x - 1)), xmax(std::min(Settings::instance().mapSize, zoneNode.coordinate.x + 1)),
21  ymin(std::max(0, zoneNode.coordinate.y - 1)), ymax(std::min(Settings::instance().mapSize, zoneNode.coordinate.y + 1))
22 {
23  //update vacancy in case constructor is called with a zonenode
25 }

Member Function Documentation

◆ addNode()

void ZoneArea::addNode ( ZoneNode  zoneNode)
overridevirtual

Add a zoneNode to this zoneArea.

Parameters
zoneNodeZoneNode to add

Reimplemented from MapGrid< ZoneNode >.

Definition at line 106 of file ZoneArea.cxx.

107 {
108  m_gridNodes.push_back(zoneNode);
109 
110  //update vacancy
112 
113  if (zoneNode.coordinate.x == xmin)
114  {
115  xmin = std::max(0, xmin - 1);
116  }
117  else if (zoneNode.coordinate.x == xmax)
118  {
119  xmax = std::min(Settings::instance().mapSize, xmax + 1);
120  }
121  else if (zoneNode.coordinate.y == ymin)
122  {
123  ymin = std::max(0, ymin - 1);
124  }
125  else if (zoneNode.coordinate.y == ymax)
126  {
127  ymax = std::min(Settings::instance().mapSize, ymax + 1);
128  }
129 }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ checkVacancy()

bool ZoneArea::checkVacancy ( ) const
private

internal function to check for vacancy

Definition at line 59 of file ZoneArea.cxx.

60 {
61  return m_gridNodes.end() !=
62  std::find_if(m_gridNodes.begin(), m_gridNodes.end(), [](const ZoneNode &node) { return node.occupied == false; });
63 }
+ Here is the caller graph for this function:

◆ getMaximumTileSize()

TileSize ZoneArea::getMaximumTileSize ( Point  originPoint)
private

Returns the possible size of buildings that can be placed on this coordinate in a zone.

Parameters
originPointcoordinate where we want to know how many free zone tiles there are next to it
Returns
struct with height and with for the possible tilesize that can be placed on this coordinate

Definition at line 65 of file ZoneArea.cxx.

66 {
67  TileSize possibleSize = {1, 1};
68 
69  for (int distance = 1; distance <= possibleSize.width || distance <= possibleSize.height; distance++)
70  {
71  std::vector<Point> xDirection = PointFunctions::getArea({originPoint.x - distance, originPoint.y}, originPoint);
72  std::vector<Point> yDirection = PointFunctions::getArea(originPoint, {originPoint.x, originPoint.y + distance});
73  // check if there's a tile in x direction (top of the origin point)
74  bool increaseX = true;
75  bool increaseY = true;
76 
77  for (auto coord : xDirection)
78  {
79  if (!isMemberOf(coord))
80  {
81  increaseX = false;
82  break;
83  }
84  }
85  for (auto coord : yDirection)
86  {
87  if (!isMemberOf(coord))
88  {
89  increaseY = false;
90  break;
91  }
92  }
93 
94  if (increaseX)
95  {
96  possibleSize.width++;
97  }
98  if (increaseY)
99  {
100  possibleSize.height++;
101  }
102  }
103  return possibleSize;
104 }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getZone()

ZoneType ZoneArea::getZone ( ) const
inline

Get the zone for this Area.

Returns
zone for this area

Definition at line 71 of file ZoneArea.hxx.

71 { return m_zoneType; };

◆ getZoneDensity()

ZoneDensity ZoneArea::getZoneDensity ( )
inline

Get the zone density for this Area.

Returns
zone density for this area

Definition at line 78 of file ZoneArea.hxx.

78 { return m_zoneDensity; };

◆ hasPowerSupply()

bool ZoneArea::hasPowerSupply ( )
inline

Get the Power supply for this Area.

Returns
if the area has power supply

Definition at line 50 of file ZoneArea.hxx.

50 { return m_hasPower; };

◆ hasWaterSupply()

bool ZoneArea::hasWaterSupply ( )
inline

Get the water supply for this Area.

Returns
if the area has water supply

Definition at line 64 of file ZoneArea.hxx.

64 { return m_hasWater; };

◆ isVacant()

bool ZoneArea::isVacant ( ) const
inline

If this area has unoccupied nodes left.

Returns
if this zoneArea is vacant or not

Definition at line 85 of file ZoneArea.hxx.

85 { return m_isVacant; };

◆ isWithinBoundaries()

bool ZoneArea::isWithinBoundaries ( Point  coordinate) const
inline

Check if a given point is within the boundaries of this zone area.

Parameters
coordinatepoint to check
Returns
if a given point is with the boundaries of this zone area

Definition at line 98 of file ZoneArea.hxx.

99  {
100  return (xmin <= coordinate.x) && (xmax >= coordinate.x) && (ymin <= coordinate.y) && (ymax >= coordinate.y);
101  }

◆ removeZoneNode()

void ZoneArea::removeZoneNode ( Point  coordinate)

Remove a zoneNode on a given coordinate from this zoneArea.

Parameters
coordinateCoordinates of the mapNode with a zone tile

Definition at line 131 of file ZoneArea.cxx.

132 {
133  m_gridNodes.erase(std::remove_if(begin(), end(), [coordinate](const ZoneNode &node) { return node.coordinate == coordinate; }),
134  end());
135  //update vacancy
137 }
+ Here is the call graph for this function:

◆ setPowerSupply()

void ZoneArea::setPowerSupply ( bool  hasPower)
inline

Set the power supply for this Area.

Parameters
hasPowerwhether the area has power supply or not

Definition at line 43 of file ZoneArea.hxx.

43 { m_hasPower = hasPower; };

◆ setVacancy()

void ZoneArea::setVacancy ( Point  coordinate,
bool  vacancy 
)

Set vacancy for this tile.

Parameters
coordinateWhat tile to vacate / occupy
vacancytrue if vacant, false if occupied

Definition at line 139 of file ZoneArea.cxx.

140 {
141  auto node = std::find_if(begin(), end(), [coordinate](const ZoneNode &zNode) { return zNode.coordinate == coordinate; });
142  if (node != end())
143  {
144  if (vacancy)
145  {
146  node->occupied = false;
147  }
148  else
149  {
150  node->occupied = true;
151  }
153  }
154 }
+ Here is the call graph for this function:

◆ setWaterSupply()

void ZoneArea::setWaterSupply ( bool  hasWater)
inline

Set the water supply for this Area.

Parameters
hasWaterwhether the area has water supply or not

Definition at line 57 of file ZoneArea.hxx.

57 { m_hasWater = hasWater; };

◆ spawnBuildings()

void ZoneArea::spawnBuildings ( )

Spawn buildings on nodes in this area if all demands are fulfilled.

Definition at line 27 of file ZoneArea.cxx.

28 {
29  constexpr int amountOfBuildingsToSpawn = 5;
30  auto &randomizer = Randomizer::instance();
31  // shuffle mapNodes so placement of building looks random
32  randomizer.shuffle(begin(), end());
33 
34  int buildingsSpawned = 0;
35 
36  // pick every single zone node we have
37  for (auto &node : m_gridNodes)
38  {
39  if (buildingsSpawned >= amountOfBuildingsToSpawn)
40  {
41  break;
42  }
43  if (node.occupied)
44  {
45  continue;
46  }
47 
48  // get the maximum size we can spawn at this node
49  TileSize maxTileSize = getMaximumTileSize(node.coordinate);
50  std::string buildingTileID =
52 
53  // place the building
54  MapFunctions::instance().setTileID(buildingTileID, node.coordinate);
55  buildingsSpawned++;
56  }
57 }
+ Here is the call graph for this function:

Friends And Related Function Documentation

◆ mergeZoneAreas

void mergeZoneAreas ( ZoneArea mainZone,
ZoneArea toBeMerged 
)
friend

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 };

Member Data Documentation

◆ m_hasPower

bool ZoneArea::m_hasPower = false
private

Definition at line 115 of file ZoneArea.hxx.

◆ m_hasWater

bool ZoneArea::m_hasWater = false
private

Definition at line 116 of file ZoneArea.hxx.

◆ m_isVacant

bool ZoneArea::m_isVacant = false
private

Definition at line 117 of file ZoneArea.hxx.

◆ m_zoneDensity

ZoneDensity ZoneArea::m_zoneDensity
private

Definition at line 113 of file ZoneArea.hxx.

◆ m_zoneType

ZoneType ZoneArea::m_zoneType
private

Definition at line 112 of file ZoneArea.hxx.

◆ xmax

int ZoneArea::xmax
private

Definition at line 118 of file ZoneArea.hxx.

◆ xmin

int ZoneArea::xmin
private

Definition at line 118 of file ZoneArea.hxx.

◆ ymax

int ZoneArea::ymax
private

Definition at line 118 of file ZoneArea.hxx.

◆ ymin

int ZoneArea::ymin
private

Definition at line 118 of file ZoneArea.hxx.


The documentation for this class was generated from the following files:
TileSize::height
unsigned int height
Definition: tileData.hxx:89
MapGrid< ZoneNode >::begin
auto begin()
Definition: MapGrid.hxx:46
ZoneArea::checkVacancy
bool checkVacancy() const
internal function to check for vacancy
Definition: ZoneArea.cxx:59
TileSize
How many tiles are occupied by a building.
Definition: tileData.hxx:86
PointFunctions::getArea
static std::vector< Point > getArea(const Point &isoCoordinatesStart, const Point &isoCoordinatesEnd)
Gets all nodes in a rectangular area between start and end point.
Definition: PointFunctions.cxx:156
MapGrid< ZoneNode >::end
auto end()
Definition: MapGrid.hxx:47
ZoneNode::zoneType
ZoneType zoneType
Definition: ZoneArea.hxx:11
Point::y
int y
The y coordinate.
Definition: Point.hxx:20
ZoneArea::ymin
int ymin
Definition: ZoneArea.hxx:118
Point::x
int x
The x coordinate.
Definition: Point.hxx:14
ZoneArea::ymax
int ymax
Definition: ZoneArea.hxx:118
ZoneArea::xmax
int xmax
Definition: ZoneArea.hxx:118
ZoneArea::xmin
int xmin
Definition: ZoneArea.hxx:118
TileManager::getRandomTileIDForZoneWithRandomSize
std::optional< std::string > getRandomTileIDForZoneWithRandomSize(ZoneType zone, ZoneDensity zoneDensity, TileSize maxTileSize={1, 1})
Pick a single random tileID for a zone with a random tilesize within the supplied max Size.
Definition: TileManager.cxx:72
MapGrid< ZoneNode >::isMemberOf
bool isMemberOf(Point coordinate) const
If this coordinate is part of the grid.
Definition: MapGrid.inl.hxx:22
ZoneNode::zoneDensity
ZoneDensity zoneDensity
Definition: ZoneArea.hxx:12
ZoneNode::coordinate
Point coordinate
Definition: ZoneArea.hxx:10
ZoneArea::m_zoneType
ZoneType m_zoneType
Definition: ZoneArea.hxx:112
ZoneNode
Definition: ZoneArea.hxx:8
MapGrid< ZoneNode >::m_gridNodes
std::vector< ZoneNode > m_gridNodes
Definition: MapGrid.hxx:50
ZoneArea::m_zoneDensity
ZoneDensity m_zoneDensity
Definition: ZoneArea.hxx:113
ZoneArea::m_isVacant
bool m_isVacant
Definition: ZoneArea.hxx:117
Singleton< Settings >::instance
static Settings & instance(void)
Get an instance of the singleton.
Definition: Singleton.hxx:15
ZoneArea::m_hasPower
bool m_hasPower
Definition: ZoneArea.hxx:115
MapFunctions::setTileID
bool setTileID(const std::string &tileID, Point coordinate)
Set the Tile ID Of Node object.
Definition: MapFunctions.cxx:378
ZoneArea::m_hasWater
bool m_hasWater
Definition: ZoneArea.hxx:116
string
std::string string
Definition: AudioConfig.hxx:14
MapGrid
Definition: MapGrid.hxx:7
ZoneArea::getMaximumTileSize
TileSize getMaximumTileSize(Point originPoint)
Returns the possible size of buildings that can be placed on this coordinate in a zone.
Definition: ZoneArea.cxx:65
TileSize::width
unsigned int width
Definition: tileData.hxx:88