Deep RTS
Public Member Functions | Public Attributes | List of all members
Tilemap Class Reference

#include <Tilemap.h>

Public Member Functions

 Tilemap (Map &map, Game &game)
 
std::vector< Tile > & getTiles ()
 
TilegetSpawnTile (int playerID)
 
std::vector< Tile * > neighbors (Tile &tile, Constants::Pathfinding type)
 
std::vector< Tile * > getTileArea (Tile &source, uint32_t width, uint32_t height)
 
TilegetTile (uint32_t x, uint32_t y)
 
void reset ()
 Reset the tilemap. More...
 
bool operator() (unsigned x, unsigned y) const
 

Public Attributes

Gamegame
 Reference to the game object. More...
 
std::vector< int > spawnTiles
 List of spawn tiles (Tiles that players can spawn on) More...
 
std::vector< Tiletiles
 List of all tiles in the tilemap. More...
 

Detailed Description

The tilemap class specifies the map of the game This class is created from loading the map in the Map class

Constructor & Destructor Documentation

◆ Tilemap()

Tilemap::Tilemap ( Map map,
Game game 
)

The constructor.

Parameters
mapA reference to the map object
gameA reference to the game

Member Function Documentation

◆ getSpawnTile()

Tile & Tilemap::getSpawnTile ( int  playerID)

Get the corresponding spawn tile for a specific player ID (each player is locked to a spawn position)

Parameters
playerID
Returns
Tile reference

◆ getTile()

Tile & Tilemap::getTile ( uint32_t  x,
uint32_t  y 
)

Get a tile on position X and Y

Parameters
xinteger X position
yinteger Y position
Returns
Tile reference

◆ getTileArea()

std::vector< Tile * > Tilemap::getTileArea ( Tile source,
uint32_t  width,
uint32_t  height 
)

Get tiles in an area around a tile

Parameters
sourceThe source tile reference
widthWidth of the area
heightHeight of the area
Returns
List of Tile pointers of the surrounding area of the source tile

Get tiles based on width and height of unit

◆ getTiles()

std::vector< Tile > & Tilemap::getTiles ( )

Get all tiles in the tilemap

Returns

◆ neighbors()

std::vector< Tile * > Tilemap::neighbors ( Tile tile,
Constants::Pathfinding  type 
)

Get a list of tiles that are neighbour to the input tile

Parameters
tileThe input tile reference
typeWhich type of tiles you wish to retrieve
Returns
List of neighbors tiles

◆ operator()()

bool Tilemap::operator() ( unsigned  x,
unsigned  y 
) const

The implicit convertion is used in the JPS pathfinding. The call avaluates if the path is viable in a trajectory.

Parameters
x
y
Returns

◆ reset()

void Tilemap::reset ( )

Reset the tilemap.

Member Data Documentation

◆ game

Game& Tilemap::game

Reference to the game object.

◆ spawnTiles

std::vector<int> Tilemap::spawnTiles

List of spawn tiles (Tiles that players can spawn on)

◆ tiles

std::vector<Tile> Tilemap::tiles

List of all tiles in the tilemap.


The documentation for this class was generated from the following files: