#include <ZoneArea.hxx>
Definition at line 19 of file ZoneArea.hxx.
◆ ZoneArea()
◆ addNode()
void ZoneArea::addNode |
( |
ZoneNode |
zoneNode | ) |
|
|
overridevirtual |
◆ checkVacancy()
bool ZoneArea::checkVacancy |
( |
| ) |
const |
|
private |
internal function to check for vacancy
Definition at line 59 of file ZoneArea.cxx.
◆ getMaximumTileSize()
Returns the possible size of buildings that can be placed on this coordinate in a zone.
- Parameters
-
originPoint | coordinate 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.
69 for (
int distance = 1; distance <= possibleSize.
width || distance <= possibleSize.
height; distance++)
74 bool increaseX =
true;
75 bool increaseY =
true;
77 for (
auto coord : xDirection)
85 for (
auto coord : yDirection)
◆ 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.
◆ 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.
◆ 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.
◆ 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.
◆ 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.
◆ isWithinBoundaries()
bool ZoneArea::isWithinBoundaries |
( |
Point |
coordinate | ) |
const |
|
inline |
Check if a given point is within the boundaries of this zone area.
- Parameters
-
- Returns
- if a given point is with the boundaries of this zone area
Definition at line 98 of file ZoneArea.hxx.
100 return (
xmin <= coordinate.
x) && (
xmax >= coordinate.
x) && (
ymin <= coordinate.
y) && (
ymax >= coordinate.
y);
◆ removeZoneNode()
void ZoneArea::removeZoneNode |
( |
Point |
coordinate | ) |
|
Remove a zoneNode on a given coordinate from this zoneArea.
- Parameters
-
coordinate | Coordinates of the mapNode with a zone tile |
Definition at line 131 of file ZoneArea.cxx.
◆ setPowerSupply()
void ZoneArea::setPowerSupply |
( |
bool |
hasPower | ) |
|
|
inline |
Set the power supply for this Area.
- Parameters
-
hasPower | whether the area has power supply or not |
Definition at line 43 of file ZoneArea.hxx.
◆ setVacancy()
void ZoneArea::setVacancy |
( |
Point |
coordinate, |
|
|
bool |
vacancy |
|
) |
| |
Set vacancy for this tile.
- Parameters
-
coordinate | What tile to vacate / occupy |
vacancy | true if vacant, false if occupied |
Definition at line 139 of file ZoneArea.cxx.
146 node->occupied =
false;
150 node->occupied =
true;
◆ setWaterSupply()
void ZoneArea::setWaterSupply |
( |
bool |
hasWater | ) |
|
|
inline |
Set the water supply for this Area.
- Parameters
-
hasWater | whether the area has water supply or not |
Definition at line 57 of file ZoneArea.hxx.
◆ spawnBuildings()
void ZoneArea::spawnBuildings |
( |
| ) |
|
Spawn buildings on nodes in this area if all demands are fulfilled.
Definition at line 27 of file ZoneArea.cxx.
29 constexpr
int amountOfBuildingsToSpawn = 5;
34 int buildingsSpawned = 0;
39 if (buildingsSpawned >= amountOfBuildingsToSpawn)
◆ mergeZoneAreas
◆ m_hasPower
bool ZoneArea::m_hasPower = false |
|
private |
◆ m_hasWater
bool ZoneArea::m_hasWater = false |
|
private |
◆ m_isVacant
bool ZoneArea::m_isVacant = false |
|
private |
◆ m_zoneDensity
ZoneDensity ZoneArea::m_zoneDensity |
|
private |
◆ m_zoneType
ZoneType ZoneArea::m_zoneType |
|
private |
◆ xmax
◆ xmin
◆ ymax
◆ ymin
The documentation for this class was generated from the following files: