Cytopia  0.3
A city building simulation game
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
isoMath.cxx File Reference
#include "isoMath.hxx"
#include "Camera.hxx"
#include "Settings.hxx"
#include "Point.hxx"
#include "LOG.hxx"
#include <MapFunctions.hxx>
+ Include dependency graph for isoMath.cxx:

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
 

Function Documentation

◆ calculateIsoCoordinates()

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.

Note
This function will not work for elevated tiles
Parameters
screenCoordinatesobject containing screen space coordinates
Returns
Point containing the calculated isometric coordinates of the tile that matches the screen coordinates

Definition at line 11 of file isoMath.cxx.

12 {
13  const SDL_Point &cameraOffset = Camera::instance().cameraOffset();
14  const double &zoomLevel = Camera::instance().zoomLevel();
15  const SDL_Point &tileSize = Camera::instance().tileSize();
16 
17  const int isoX = static_cast<int>(
18  (screenCoordinates.x + cameraOffset.x + 2.0 * (screenCoordinates.y + cameraOffset.y)) / (tileSize.x * zoomLevel) + 1);
19  const int isoY = static_cast<int>((screenCoordinates.x + cameraOffset.x - 2.0 * (screenCoordinates.y + cameraOffset.y)) /
20  (tileSize.x * zoomLevel));
21 
22  return {isoX, isoY, 0, 0};
23 }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ convertIsoToScreenCoordinates()

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

Parameters
isoCoordinatesobject containing isometric coordinates
calcWithoutOffsetoptional parameter to calculate screenspace coordinates without zoomLevel and cameraOffset taken into account
Returns
SDL_Point containing screen space coordinates

Definition at line 25 of file isoMath.cxx.

26 {
27  const int heightOffset = 24;
28  const SDL_Point &cameraOffset = Camera::instance().cameraOffset();
29  const double &zoomLevel = Camera::instance().zoomLevel();
30  const SDL_Point &tileSize = Camera::instance().tileSize();
31 
32  int x = static_cast<int>(std::round(static_cast<double>((isoCoordinates.x + isoCoordinates.y) * tileSize.x) * zoomLevel) / 2);
33  int y = static_cast<int>(std::round(static_cast<double>((isoCoordinates.x - isoCoordinates.y) * tileSize.y) * zoomLevel) / 2);
34 
35  if (!calcWithoutOffset)
36  {
37  x -= cameraOffset.x;
38  y -= cameraOffset.y;
39  }
40 
41  if (isoCoordinates.height > 0)
42  {
43  y -= static_cast<int>(std::round(static_cast<double>((tileSize.x - heightOffset) * isoCoordinates.height) * zoomLevel));
44  }
45 
46  return {x, y};
47 }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ convertScreenToIsoCoordinates()

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

Parameters
screenCoordinatesobject containing screen space coordinates
Returns
object containing the isometric coordinates of the tile that matches the screen coordinates

Definition at line 49 of file isoMath.cxx.

50 {
51  Point foundCoordinates = Point();
52  foundCoordinates = MapFunctions::instance().findNodeInMap(screenCoordinates);
53 
54  // if negative coordinates are returned, this means that the point is outside of the grid
55  // calculate the coordinates instead and make sure it's within grid boundaries
56  if (foundCoordinates.x == -1)
57  {
58  foundCoordinates = calculateIsoCoordinates(screenCoordinates);
59  if (foundCoordinates.x < 0)
60  {
61  foundCoordinates.x = 0;
62  }
63  else if (foundCoordinates.x >= Settings::instance().mapSize)
64  {
65  // map (vector) size is 128, but coordinates ranges from 0 - 127
66  foundCoordinates.x = Settings::instance().mapSize - 1;
67  }
68  if (foundCoordinates.y < 0)
69  {
70  foundCoordinates.y = 0;
71  }
72  else if (foundCoordinates.y >= Settings::instance().mapSize)
73  {
74  // map (vector) size is 128, but coordinates range from 0 - 127
75  foundCoordinates.y = Settings::instance().mapSize - 1;
76  }
77  }
78  return foundCoordinates;
79 }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ isPointWithinMapBoundaries()

bool isPointWithinMapBoundaries ( const std::vector< Point > &  isoCoordinates)

Check if given coordinates are within map boundaries.

Parameters
isoCoordinatescoordinates to check
Returns
true if coordinates are inside the map bounds.

Definition at line 81 of file isoMath.cxx.

82 {
83  for (auto p : isoCoordinates)
84  {
85  if (!(p.isWithinMapBoundaries()))
86  {
87  return false;
88  }
89  }
90  return true;
91 }

Variable Documentation

◆ reverseDirection

bool reverseDirection = false

Definition at line 9 of file isoMath.cxx.

calculateIsoCoordinates
Point calculateIsoCoordinates(const SDL_Point &screenCoordinates)
Calculates screen space coordinates to isometric space coordinates.
Definition: isoMath.cxx:11
Point::y
int y
The y coordinate.
Definition: Point.hxx:20
SettingsData::mapSize
int mapSize
the size of the map
Definition: Settings.hxx:34
Point::x
int x
The x coordinate.
Definition: Point.hxx:14
Camera::zoomLevel
const double & zoomLevel() const noexcept
Definition: Camera.cxx:97
Point::height
int height
The height level.
Definition: Point.hxx:26
MapFunctions::findNodeInMap
Point findNodeInMap(const SDL_Point &screenCoordinates, const Layer &layer=Layer::NONE)
Returns the node at given screen coordinates.
Definition: MapFunctions.cxx:558
Point
Definition: Point.hxx:7
Singleton< Camera >::instance
static Camera & instance(void)
Get an instance of the singleton.
Definition: Singleton.hxx:15
Camera::cameraOffset
const SDL_Point & cameraOffset() const noexcept
Definition: Camera.cxx:95
Camera::tileSize
const SDL_Point & tileSize() const noexcept
Definition: Camera.cxx:99