![]() |
Cytopia
0.3
A city building simulation game
|
#include "isoMath.hxx"
#include "Camera.hxx"
#include "Settings.hxx"
#include "Point.hxx"
#include "LOG.hxx"
#include <MapFunctions.hxx>
Go to the source code of this file.
Functions | |
Point | calculateIsoCoordinates (const SDL_Point &screenCoordinates) |
Calculates screen space coordinates to isometric space coordinates. More... | |
SDL_Point | convertIsoToScreenCoordinates (const Point &isoCoordinates, bool calcWithoutOffset) |
converts coordinates from isometric to screen space More... | |
Point | convertScreenToIsoCoordinates (const SDL_Point &screenCoordinates) |
converts screen space coordinates to isometric space coordinates. More... | |
bool | isPointWithinMapBoundaries (const std::vector< Point > &isoCoordinates) |
Check if given coordinates are within map boundaries. More... | |
Variables | |
bool | reverseDirection = false |
Point calculateIsoCoordinates | ( | const SDL_Point & | screenCoordinates | ) |
Calculates screen space coordinates to isometric space coordinates.
A formula is used to calculate the iso coordinates from given screen coordinates. No tile height is taken into account.
screenCoordinates | object containing screen space coordinates |
Definition at line 11 of file isoMath.cxx.
SDL_Point convertIsoToScreenCoordinates | ( | const Point & | isoCoordinates, |
bool | calcWithoutOffset = false |
||
) |
converts coordinates from isometric to screen space
The given isometric coordinates (which contain height information) are converted to the screen coordinates. The coordinates represent the x, y position of the tile where it is drawn (if tile height / width is added, the whole bounding box could be calculated) Camera Offset and current zoomLevel is taken into account
isoCoordinates | object containing isometric coordinates |
calcWithoutOffset | optional parameter to calculate screenspace coordinates without zoomLevel and cameraOffset taken into account |
Definition at line 25 of file isoMath.cxx.
Point convertScreenToIsoCoordinates | ( | const SDL_Point & | screenCoordinates | ) |
converts screen space coordinates to isometric space coordinates.
To convert screen coordinates in to isometric coordinates, all the textures inside the nodes are checked, if the click is inside the bounding box of a texture and if so, another check ensures, that the click is not on a transparent pixel. The isometric coordinates of the map node containing the texture with the highest Z-Level (drawing order) is returned. Camera Offset and current zoomLevel is taken into account
screenCoordinates | object containing screen space coordinates |
Definition at line 49 of file isoMath.cxx.
bool isPointWithinMapBoundaries | ( | const std::vector< Point > & | isoCoordinates | ) |
Check if given coordinates are within map boundaries.
isoCoordinates | coordinates to check |
Definition at line 81 of file isoMath.cxx.
bool reverseDirection = false |
Definition at line 9 of file isoMath.cxx.