Loading [MathJax]/extensions/TeX/AMSsymbols.js
 |
Cytopia
0.3
A city building simulation game
|
#include <MapFunctions.hxx>
|
| MapFunctions () |
|
Map * | getMap () |
|
void | changeHeight (const Point &isoCoordinates, const bool elevate) |
| Change map node height. More...
|
|
bool | updateHeight (Point coordinate, const bool elevate) |
| Change map node height. More...
|
|
void | levelHeight (const Point &startCoordinate, const std::vector< Point > levelArea) |
| level area of map nodes. More...
|
|
MapNode & | getMapNode (Point isoCoords) |
| Get pointer to a single mapNode at specific iso coordinates. More...
|
|
const std::vector< MapNode > & | getMapNodes () |
| Get all mapnodes as a vector. More...
|
|
std::vector< NeighborNode > | getNeighborNodes (const Point &isoCoordinates, const bool includeCentralNode) |
| Get all neighbor nodes from provided map node. More...
|
|
unsigned char | getElevatedNeighborBitmask (Point centerCoordinates) |
| Get elevated bit mask of the map node. More...
|
|
bool | isPlacementOnNodeAllowed (const Point &isoCoordinates, const std::string &tileID) const |
| check if Tile is occupied More...
|
|
bool | isPlacementOnAreaAllowed (const std::vector< Point > &targetCoordinates, const std::string &tileID) const |
| check if Tile can be placed in an area More...
|
|
bool | setTileID (const std::string &tileID, Point coordinate) |
| Set the Tile ID Of Node object. More...
|
|
bool | setTileID (const std::string &tileID, const std::vector< Point > &coordinates) |
| Set the Tile ID Of multiple Node objects. More...
|
|
void | demolishNode (const std::vector< Point > &isoCoordinates, bool updateNeighboringTiles=false, Layer layer=Layer::NONE) |
| Demolish a node. More...
|
|
Point | getNodeOrigCornerPoint (const Point &isoCoordinates, Layer layer=Layer::NONE) |
| Get original corner point of given point within building borders. More...
|
|
void | getNodeInformation (const Point &isoCoordinates) const |
| Debug MapNodeData to Console. More...
|
|
void | highlightNode (const Point &isoCoordinates, const SpriteRGBColor &rgbColor) |
| Sets a node to be highlighted. More...
|
|
void | unHighlightNode (const Point &isoCoordinates) |
| Sets a node to be unhighlighred. More...
|
|
Point | findNodeInMap (const SDL_Point &screenCoordinates, const Layer &layer=Layer::NONE) |
| Returns the node at given screen coordinates. More...
|
|
std::string | getTileID (const Point &isoCoordinates, Layer layer) |
| get Tile ID of specific layer of specific iso coordinates More...
|
|
void | refreshVisibleMap () |
| Refresh the visible part of the map. More...
|
|
void | newMap (bool generateTerrain=true) |
| Creates a new map object with terrain gen. More...
|
|
void | loadMapFromFile (const std::string &fileName) |
| Load Map from file. More...
|
|
Definition at line 12 of file MapFunctions.hxx.
◆ MapFunctions()
MapFunctions::MapFunctions |
( |
| ) |
|
◆ calculateAutotileBitmask()
std::vector< uint8_t > MapFunctions::calculateAutotileBitmask |
( |
Point |
coordinate | ) |
|
|
private |
Get a bitmask that represents same-tile neighbors.
Checks all neighboring tiles and returns the elevated neighbors in a bitmask: [ BR BL TR TL R L B T ] [ 0 0 0 0 0 0 0 0 ]
- Parameters
-
coordinate | Point on the map to calculate bitmask for. |
- Returns
- Uint that represents a bitmask of the neighbor tiles and their elevation to the center coordinate
Definition at line 336 of file MapFunctions.cxx.
338 std::vector<uint8_t> tileOrientationBitmask(
LAYERS_COUNT, 0);
344 if (pCurrentTileData)
350 const auto pTileData = neighbor.pNode->getMapNodeDataForLayer(
Layer::WATER).tileData;
354 tileOrientationBitmask[currentLayer] |= neighbor.position;
365 const MapNodeData &nodeData = neighbor.pNode->getMapNodeDataForLayer(currentLayer);
369 tileOrientationBitmask[currentLayer] |= neighbor.position;
375 return tileOrientationBitmask;
◆ changeHeight()
void MapFunctions::changeHeight |
( |
const Point & |
isoCoordinates, |
|
|
const bool |
elevate |
|
) |
| |
Change map node height.
- Parameters
-
isoCoordinates | the Point on the map node to change height. |
elevate | if set to true make node higher, otherwise lower. |
Definition at line 36 of file MapFunctions.cxx.
38 std::vector<Point> nodesToUpdate{isoCoordinates};
48 for (
const Point &neighborCoord : neighorCoordinates)
◆ demolishNode()
void MapFunctions::demolishNode |
( |
const std::vector< Point > & |
isoCoordinates, |
|
|
bool |
updateNeighboringTiles = false , |
|
|
Layer |
layer = Layer::NONE |
|
) |
| |
Demolish a node.
This function gathers all tiles that should be demolished and invokes the node's demolish function. When a building bigger than 1x1 is selected, all its coordinates are added to the demolishing points.
- Parameters
-
isoCoordinates | all coordinates that should be demolished |
updateNeighboringTiles | whether the adjacent tiles should be updated. (only relevant for autotiling) |
layer | restrict demolish to a single layer |
- See also
- MapNode::demolishNode
Definition at line 465 of file MapFunctions.cxx.
467 std::vector<Point> nodesToDemolish;
469 for (
Point currentCoordinate : isoCoordinates)
471 if (currentCoordinate.isWithinMapBoundaries())
480 if (pNodeTileData && ((pNodeTileData->RequiredTiles.height > 1) || (pNodeTileData->RequiredTiles.width > 1)))
491 nodesToDemolish.push_back(buildingCoords);
496 nodesToDemolish.push_back(currentCoordinate);
500 std::vector<Point> updateNodes;
501 for (
auto nodeCoordinate : nodesToDemolish)
506 if (updateNeighboringTiles)
508 updateNodes.push_back(nodeCoordinate);
512 if (!updateNodes.empty())
◆ findNodeInMap()
Point MapFunctions::findNodeInMap |
( |
const SDL_Point & |
screenCoordinates, |
|
|
const Layer & |
layer = Layer::NONE |
|
) |
| |
Returns the node at given screen coordinates.
- Parameters
-
- Returns
- Point
Definition at line 558 of file MapFunctions.cxx.
562 int isoX = calculatedIsoCoords.
x;
563 int isoY = calculatedIsoCoords.
y;
579 const int neighborReach = 2;
583 const int xMax = std::min(isoX + neighborReach + isoY, mapSize - 1);
585 const int xMin = std::max(isoX - neighborReach, 0);
587 for (
int x = xMax; x >= xMin; --x)
589 const int diff = x - isoX;
590 const int yMiddlePoint = isoY - diff;
593 for (
int y = std::max(yMiddlePoint - neighborReach, 0); (y <= yMiddlePoint + neighborReach) && (y < mapSize); ++y)
605 return Point{-1, -1, 0, 0};
◆ getElevatedNeighborBitmask()
unsigned char MapFunctions::getElevatedNeighborBitmask |
( |
Point |
centerCoordinates | ) |
|
Get elevated bit mask of the map node.
- Parameters
-
centerCoordinates | Point on the map node to calculate elevated bit mask. |
- Returns
- Map node elevated bit mask.
Definition at line 310 of file MapFunctions.cxx.
312 unsigned char bitmask = 0;
317 if (
getMapNode(neighborCoordinates).getCoordinates().height > centralNodeHeight)
◆ getMap()
Map* MapFunctions::getMap |
( |
| ) |
|
|
inline |
◆ getMapNode()
Get pointer to a single mapNode at specific iso coordinates.
- Parameters
-
isoCoords | The node to retrieve. |
Definition at line 40 of file MapFunctions.hxx.
42 uint32_t index = isoCoords.
toIndex();
◆ getMapNodes()
const std::vector<MapNode>& MapFunctions::getMapNodes |
( |
| ) |
|
|
inline |
◆ getNeighborNodes()
std::vector< NeighborNode > MapFunctions::getNeighborNodes |
( |
const Point & |
isoCoordinates, |
|
|
const bool |
includeCentralNode |
|
) |
| |
Get all neighbor nodes from provided map node.
- Parameters
-
isoCoordinates | iso coordinates. |
includeCentralNode | if set to true include the central node in the result. |
- Returns
- All neighbor nodes.
Definition at line 253 of file MapFunctions.cxx.
255 std::vector<NeighborNode> neighbors;
◆ getNodeInformation()
void MapFunctions::getNodeInformation |
( |
const Point & |
isoCoordinates | ) |
const |
Debug MapNodeData to Console.
Used as Tile-Inspector until we implement a GUI variant
- Parameters
-
isoCoordinates | Tile to inspect |
Definition at line 518 of file MapFunctions.cxx.
◆ getNodeOrigCornerPoint()
Point MapFunctions::getNodeOrigCornerPoint |
( |
const Point & |
isoCoordinates, |
|
|
Layer |
layer = Layer::NONE |
|
) |
| |
Get original corner point of given point within building borders.
- Parameters
-
isoCoordinates | Point to get corner point of |
layer | |
- Returns
- original corner point
Definition at line 326 of file MapFunctions.cxx.
◆ getTileID()
get Tile ID of specific layer of specific iso coordinates
- Parameters
-
isoCoordinates | Tile to inspect |
layer | layer to check. |
Definition at line 545 of file MapFunctions.cxx.
◆ highlightNode()
void MapFunctions::highlightNode |
( |
const Point & |
isoCoordinates, |
|
|
const SpriteRGBColor & |
rgbColor |
|
) |
| |
Sets a node to be highlighted.
This sets a node to be highlighted. The highlighting is done during rendering
- Parameters
-
isoCoordinates | which node should be highlit. |
rgbColor | The SpriteRGBColor that should be used for highlighting |
Definition at line 535 of file MapFunctions.cxx.
541 pSprite->highlightSprite =
true;
◆ isClickWithinTile()
bool MapFunctions::isClickWithinTile |
( |
const SDL_Point & |
screenCoordinates, |
|
|
Point |
isoCoordinate, |
|
|
const Layer & |
layer = Layer::NONE |
|
) |
| const |
|
private |
Check if a click is within a non transparent part of a sprite.
- Parameters
-
screenCoordinates | click coordinates on the scrren |
isoCoordinate | isocoordinates of the mapnode to check |
layer | layer to check |
- Returns
- if a click is within this node
Definition at line 608 of file MapFunctions.cxx.
617 auto pSprite = node.getSprite();
618 std::vector<Layer> layersToGoOver;
624 layersToGoOver.insert(layersToGoOver.begin(), layersOrdered.begin(), layersOrdered.end());
628 layersToGoOver.push_back(layer);
631 for (
const auto &curLayer : layersToGoOver)
638 SDL_Rect spriteRect = pSprite->getDestRect(curLayer);
639 SDL_Rect clipRect = pSprite->getClipRect(curLayer);
646 if (SDL_PointInRect(&screenCoordinates, &spriteRect))
648 std::string tileID = node.getMapNodeDataForLayer(curLayer).tileID;
649 assert(!tileID.empty());
657 tileID.append(
"_shore");
◆ isPlacementOnAreaAllowed()
bool MapFunctions::isPlacementOnAreaAllowed |
( |
const std::vector< Point > & |
targetCoordinates, |
|
|
const std::string & |
tileID |
|
) |
| const |
check if Tile can be placed in an area
- Parameters
-
targetCoordinates | Tile array to inspect |
tileID | tileID which should be checked |
Definition at line 270 of file MapFunctions.cxx.
274 bool shouldAllNodesPlaced =
true;
275 bool areaPlacementAllowed =
true;
276 bool tilePlacementAllowed =
true;
283 shouldAllNodesPlaced =
true;
287 shouldAllNodesPlaced =
false;
289 areaPlacementAllowed = shouldAllNodesPlaced;
291 for (
auto coord : targetCoordinates)
295 if (tilePlacementAllowed && !shouldAllNodesPlaced)
297 areaPlacementAllowed =
true;
300 if (!tilePlacementAllowed && shouldAllNodesPlaced)
302 areaPlacementAllowed =
false;
307 return areaPlacementAllowed;
◆ isPlacementOnNodeAllowed()
bool MapFunctions::isPlacementOnNodeAllowed |
( |
const Point & |
isoCoordinates, |
|
|
const std::string & |
tileID |
|
) |
| const |
check if Tile is occupied
- Parameters
-
isoCoordinates | Tile to inspect |
tileID | tileID which should be checked |
Definition at line 265 of file MapFunctions.cxx.
◆ levelHeight()
void MapFunctions::levelHeight |
( |
const Point & |
startCoordinate, |
|
|
const std::vector< Point > |
levelArea |
|
) |
| |
level area of map nodes.
- Parameters
-
startcoordinate | the starting point whose height is used for levelling |
levelArea | the area that is to be leveled. |
Definition at line 63 of file MapFunctions.cxx.
66 int initialHeight = startCoordinate.
height;
76 char directNeighbors =
77 NeighborNodesPosition::LEFT | NeighborNodesPosition::TOP | NeighborNodesPosition::RIGHT | NeighborNodesPosition::BOTTOM;
80 int nonSelectedNeighborsCount = 0;
81 int elevatedNonSelectedNeighborsCount = 0;
89 if (!isSloped && (neighborPosToOrigin & directNeighbors) > 0 &&
90 std::find(levelArea.begin(), levelArea.end(), neighbor) == levelArea.end())
92 nonSelectedNeighborsCount++;
94 if ((neighborPosToOrigin & elBitmask) > 0)
95 elevatedNonSelectedNeighborsCount++;
99 if (elevatedNonSelectedNeighborsCount * 2 > nonSelectedNeighborsCount)
104 std::vector<Point> neighborsToLower;
106 for (
const Point &levelPoint : levelArea)
110 if (
getMapNode(levelPoint).getCoordinates().height > initialHeight)
115 neighborsToLower.insert(neighborsToLower.end(), neighbors.begin(), neighbors.end());
118 Point newCoordinates =
Point(levelPoint.x, levelPoint.y, levelPoint.z, initialHeight);
123 for (
const Point &levelPoint : neighborsToLower)
125 Point newCoordinates =
Point(levelPoint.x, levelPoint.y, levelPoint.z, initialHeight);
◆ loadMapFromFile()
void MapFunctions::loadMapFromFile |
( |
const std::string & |
fileName | ) |
|
Load Map from file.
Deserializes the Map class from a json file, creates a new Map and updates m_map.
- Parameters
-
fileName | The file the map is stored in |
- Exceptions
-
Definition at line 684 of file MapFunctions.cxx.
688 if (jsonAsString.empty())
693 json saveGameJSON = json::parse(jsonAsString,
nullptr,
false);
695 if (saveGameJSON.is_discarded())
698 size_t saveGameVersion = saveGameJSON.value(
"Savegame version", 0);
703 throw CytopiaError(
TRACE_INFO "Trying to load a Savegame with version " + std::to_string(saveGameVersion) +
704 " but only save-games with version " + std::to_string(
SAVEGAME_VERSION) +
" are supported");
707 int columns = saveGameJSON.value(
"columns", -1);
708 int rows = saveGameJSON.value(
"rows", -1);
710 if (columns == -1 || rows == -1)
715 Map *map =
new Map(columns, rows);
716 map->
mapNodes.reserve(columns * rows);
718 for (
const auto &it : saveGameJSON[
"mapNode"].items())
724 map->
mapNodes.back().setMapNodeData(
json(it.value())[
"mapNodeData"]);
728 for (
int x = 0; x < columns; x++)
730 for (
int y = columns - 1; y >= 0; y--)
◆ newMap()
void MapFunctions::newMap |
( |
bool |
generateTerrain = true | ) |
|
Creates a new map object with terrain gen.
- Parameters
-
generateTerrain | flat map or procedural |
Definition at line 671 of file MapFunctions.cxx.
674 Map *
newMap =
new Map(mapSize, mapSize, generateTerrain);
◆ refreshVisibleMap()
void MapFunctions::refreshVisibleMap |
( |
| ) |
|
◆ saveMapToFile()
void MapFunctions::saveMapToFile |
( |
const std::string & |
fileName | ) |
|
|
private |
Save Map to file.
Serializes the Map class to json and writes the data to a file.
- Parameters
-
fileName | The file the map should be written to |
Definition at line 745 of file MapFunctions.cxx.
◆ setTileID() [1/2]
bool MapFunctions::setTileID |
( |
const std::string & |
tileID, |
|
|
const std::vector< Point > & |
coordinates |
|
) |
| |
Set the Tile ID Of multiple Node objects.
Also invokes all necessary texture updates (auto-tiling, slopes, ...)
- Parameters
-
tileID | the new tileID to set |
coordinates | a vector of Points where the tileIDs which should be set |
- Returns
- setTileID success or not
Definition at line 455 of file MapFunctions.cxx.
457 bool setTileResult =
false;
458 for (
auto coord : coordinates)
460 setTileResult |=
setTileID(tileID, coord);
462 return setTileResult;
◆ setTileID() [2/2]
Set the Tile ID Of Node object.
Also invokes all necessary texture updates (auto-tiling, slopes, ...)
- Parameters
-
tileID | the new tileID to set |
coordinate | Point where the tileID which should be set |
- Returns
- setTileID success or not
Definition at line 378 of file MapFunctions.cxx.
383 if (!tileData || targetCoordinates.empty())
393 std::vector<Point> nodesToBeUpdated;
398 randomGroundDecorationTileID =
409 for (
auto coord : targetCoordinates)
414 if (coord != coordinate && targetCoordinates.size() > 1)
423 if ((!targetCoordinates.size()) == 1)
429 currentMapNode.
setTileID(tileID, coordinate);
433 if (!randomGroundDecorationTileID.empty())
435 currentMapNode.
setTileID(randomGroundDecorationTileID, coord);
448 if (!nodesToBeUpdated.empty())
◆ unHighlightNode()
void MapFunctions::unHighlightNode |
( |
const Point & |
isoCoordinates | ) |
|
Sets a node to be unhighlighred.
This sets a node to be unhighlighted, which is done during rendering
- Parameters
-
isoCoordinates | which node should be unhighlit. |
Definition at line 550 of file MapFunctions.cxx.
◆ updateAllNodes()
void MapFunctions::updateAllNodes |
( |
| ) |
|
|
private |
Update all mapNodes.
Updates all mapNode and its adjacent tiles regarding height information, draws slopes for adjacent tiles and sets tiling for mapNode sprite if applicable
Definition at line 244 of file MapFunctions.cxx.
248 [](
MapNode &mn) { return mn.getCoordinates(); });
◆ updateHeight()
bool MapFunctions::updateHeight |
( |
Point |
coordinate, |
|
|
const bool |
elevate |
|
) |
| |
Change map node height.
- Parameters
-
coordinate | the Point on the map node to change height |
elevate | if set to true make node higher, otherwise lower. |
- Returns
- true in case that height has been changed, otherwise false.
Definition at line 18 of file MapFunctions.cxx.
◆ updateNodeNeighbors()
void MapFunctions::updateNodeNeighbors |
( |
const std::vector< Point > & |
nodes | ) |
|
|
private |
Update the nodes and all affected node with the change.
- Parameters
-
nodes | vector of coordinates to be updated. |
Definition at line 134 of file MapFunctions.cxx.
137 constexpr
unsigned char elevateTileComb[] = {
138 NeighborNodesPosition::TOP | NeighborNodesPosition::BOTTOM,
139 NeighborNodesPosition::LEFT | NeighborNodesPosition::RIGHT,
140 NeighborNodesPosition::TOP_LEFT | NeighborNodesPosition::RIGHT | NeighborNodesPosition::BOTTOM,
141 NeighborNodesPosition::TOP_RIGHT | NeighborNodesPosition::LEFT | NeighborNodesPosition::BOTTOM,
142 NeighborNodesPosition::BOTTOM_LEFT | NeighborNodesPosition::RIGHT | NeighborNodesPosition::TOP,
143 NeighborNodesPosition::BOTTOM_RIGHT | NeighborNodesPosition::LEFT | NeighborNodesPosition::TOP};
145 std::vector<Point> nodesToBeUpdated;
146 std::map<int, std::vector<Point>> nodeCache;
147 std::queue<Point> updatedNodes;
148 std::vector<Point> nodesToElevate;
149 std::vector<Point> nodesToDemolish;
151 for (
auto currentNode : nodes)
153 updatedNodes.push(currentNode);
155 while (!updatedNodes.empty() || !nodesToElevate.empty())
157 while (!updatedNodes.empty())
161 const int tileHeight = pHeighChangedNode.
height;
163 if (nodeCache.count(pHeighChangedNode.
toIndex()) == 0)
168 if (std::find(nodesToElevate.begin(), nodesToElevate.end(), pHeighChangedNode) == nodesToElevate.end())
170 nodesToElevate.push_back(pHeighChangedNode);
173 for (
auto neighbor : nodeCache[pHeighChangedNode.
toIndex()])
177 const int heightDiff = tileHeight - neighborCoords.
height;
179 if (nodeCache.count(neighborCoords.
toIndex()) == 0)
184 if (std::find(nodesToElevate.begin(), nodesToElevate.end(), neighborCoords) == nodesToElevate.end())
186 nodesToElevate.push_back(neighborCoords);
189 if (std::abs(heightDiff) > 1)
191 updatedNodes.push(
getMapNode(neighborCoords).getCoordinates());
192 updateHeight(neighborCoords, (heightDiff > 1) ?
true :
false);
197 while (updatedNodes.empty() && !nodesToElevate.empty())
199 Point nodeToElevate = nodesToElevate.back();
200 nodesToBeUpdated.push_back(nodeToElevate);
201 nodesToElevate.pop_back();
203 if (nodeCache.count(nodeToElevate.
toIndex()) == 0)
209 if (elevationBitmask !=
getMapNode(nodeToElevate).getElevationBitmask())
211 nodesToDemolish.push_back(nodeToElevate);
215 for (
const auto &elBitMask : elevateTileComb)
217 if ((elevationBitmask & elBitMask) == elBitMask)
220 updatedNodes.push(
getMapNode(nodeToElevate).getCoordinates());
228 if (!nodesToDemolish.empty())
233 for (
Point node : nodesToBeUpdated)
238 for (
Point node : nodesToBeUpdated)
◆ m_map
The documentation for this class was generated from the following files:
const std::string CYTOPIA_SAVEGAME_DIR
unsigned char getElevatedNeighborBitmask(Point centerCoordinates)
Get elevated bit mask of the map node.
Sprite * getSprite() const
get Sprite
Iterator choose(Iterator begin, Iterator end)
Pick random item from container.
std::vector< MapNode > mapNodes
int toIndex() const
calculates the index (stride) that can be used to access in Map to access mapNodes vector.
const MapNodeData & getMapNodeDataForLayer(Layer layer) const
void writeStringToFile(const std::string &fileName, const std::string &stringToWrite, bool binaryMode)
Write a string to a file.
bool updateHeight(Point coordinate, const bool elevate)
Change map node height.
void demolishNode(const std::vector< Point > &isoCoordinates, bool updateNeighboringTiles=false, Layer layer=Layer::NONE)
Demolish a node.
Point calculateIsoCoordinates(const SDL_Point &screenCoordinates)
Calculates screen space coordinates to isometric space coordinates.
std::vector< Point > getTargetCoordsOfTileID(const Point &targetCoordinates, const std::string &tileID)
Return a vector of Points on a target node (origin corner) that would be occupied by a given tileID i...
const Point & getCoordinates() const
get iso coordinates of this node
std::string category
The category this item resides in. Categories are used for the building menu in-game and for sorting ...
@ POWERLINES
9- Powerlines
void updateAllNodes()
Update all mapNodes.
@ NONE
0- this must be FIRST !!!
void updateNodeNeighbors(const std::vector< Point > &nodes)
Update the nodes and all affected node with the change.
std::vector< std::string > groundDecoration
tileID of the item that should be drawn on ground below sprite instead of terrain(grass,...
void refreshVisibleMap()
Refresh the visible part of the map.
void demolishLayer(const Layer &layer)
demolish specific layer of a Node.
bool isPlacementOnNodeAllowed(const Point &isoCoordinates, const std::string &tileID) const
check if Tile is occupied
void updateTexture(const Layer &layer=Layer::NONE)
Update texture.
int mapSize
the size of the map
void demolishNode(const Layer &layer=Layer::NONE)
Demolish a node.
TileSetData tiles
Tile Spritesheet information.
bool isPlacementOnAreaAllowed(const std::vector< Point > &targetCoordinates, const std::string &tileID) const
check if Tile can be placed in an area
std::vector< NeighborNode > getNeighborNodes(const Point &isoCoordinates, const bool includeCentralNode)
Get all neighbor nodes from provided map node.
bool isSlopeNode(void) const
check if current Node Terrain is Slope Terrain.
Class that holds map nodes.
void refresh()
Refresh all the map tile textures.
@ ZONE
4- Optional layer, zones(Industrial/Residential/Commercial).
@ BLUEPRINT
1- Optional layer - Map Blueprint
unsigned char getElevationBitmask() const
void setRenderFlag(const Layer &layer, bool render)
enable/disable rendering for this sprite on a specific layer
@ BUILDINGS
8- Buildings, Streets and everything that goes on the terrain
Layer getTileLayer(const std::string &tileID) const
Get the Layer that is associated with a tileID. The Tile will be placed on this layer.
static constexpr Point INVALID()
bool isWithinMapBoundaries() const
const double & zoomLevel() const noexcept
static std::vector< Point > getNeighbors(const Point &isoCoordinates, const bool includeCentralNode, int distance=1)
Get all neighboring coordinates from provided map node isocoordinate.
const Point & getOrigCornerPoint(Layer layer) const
Get the Origin Corner Point of a multitile building.
void setElevationBitMask(const unsigned char bitMask)
Set elevation bit mask.
@ FLORA
10- Trees and other flora/Fauna tiles
static NeighborNodesPosition getNeighborPositionToOrigin(const Point &neighboringPoint, const Point &originPoint)
Get the position of the neighboring node to the originpoint (center of the neighborgroup).
TileData * getTileData(const std::string &id) noexcept
Get the TileData struct for this tileID and all information associated with it.
void createDirectory(const std::string &dir)
void newMap(bool generateTerrain=true)
Creates a new map object with terrain gen.
SDL_Color getColorOfPixelInSurface(const std::string &tileID, int x, int y)
Get the Color Of Pixel In Surface object at a given coordinate.
SpriteRGBColor highlightColor
static bool isLayerActive(unsigned int layer)
Check if given Layer is being drawn.
@ TERRAIN
3- Terrain tiles, decorations, ... - must always be a "full" tile
std::vector< MapNode * > mapNodesInDrawingOrder
int height
The height level.
@ ROAD
5- Optional layer, roads.
const std::string & getTileID(Layer layer) const
get TileID of specific layer inside NodeData.
std::function< R(Args...)> slot(instance &object, R(Class::*method)(Args...))
This function creates a std::function by binding object to the member function pointer method.
std::vector< uint8_t > calculateAutotileBitmask(Point coordinate)
Get a bitmask that represents same-tile neighbors.
void saveMapToFile(const std::string &fileName)
Save Map to file.
MapNode & getMapNode(Point isoCoords)
Get pointer to a single mapNode at specific iso coordinates.
static Layer allLayersOrdered[]
This is a ordered list of all relevant layers we need to interact with.
bool isClickWithinTile(const SDL_Point &screenCoordinates, Point isoCoordinate, const Layer &layer) const
Check if a click is within a non transparent part of a sprite.
static SignalMediator & instance(void)
Get an instance of the singleton.
@ LAYERS_COUNT
this must be LAST !!!
bool changeHeight(const bool higher)
Change Height.
bool setTileID(const std::string &tileID, Point coordinate)
Set the Tile ID Of Node object.
void setAutotileBitMask(std::vector< unsigned char > &&bitMask)
Set autotile bit mask.
@ UNDERGROUND
2- Optional layer - Pipes, Subway-pipes and so onn
const MapNodeData & getActiveMapNodeData() const
void changeHeight(const Point &isoCoordinates, const bool elevate)
Change map node height.
Holds all releavted information to this specific tile.
void setTileID(const std::string &tileType, const Point &origPoint)
constexpr const unsigned int SAVEGAME_VERSION
A generic error in Cytopia.
void setCoordinates(const Point &newIsoCoordinates)
sets the iso coordinates of this node
std::string readCompressedFileAsString(const std::string &fileName)
Read contents from a file as string.
void writeStringToFileCompressed(const std::string &fileName, const std::string &stringToWrite)
Write a string to a file and compress it.