Cytopia  0.3
A city building simulation game
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Camera.cxx
Go to the documentation of this file.
1 #include "Camera.hxx"
2 #include "isoMath.hxx"
3 #include "Settings.hxx"
4 #include <MapFunctions.hxx>
5 
7 {
8  if (!m_canScale)
9  return;
10 
11  if (m_ZoomLevel < 4.0)
12  {
13  m_ZoomLevel += 0.5;
16  }
17 }
18 
20 {
21  if (!m_canScale)
22  return;
23 
24  if (m_ZoomLevel > 0.5)
25  {
26  m_ZoomLevel -= 0.5;
29  }
30 }
31 
32 void Camera::setPinchDistance(float pinchDistance, int isoX, int isoY)
33 {
34  m_PinchDistance += pinchDistance;
35 
36  if (m_PinchDistance > 0.25F)
37  {
38  m_PinchDistance = 0;
39  if (m_ZoomLevel < 4.0)
40  {
41  centerScreenOnPoint({isoX, isoY, 0, 0});
42  }
44  }
45  else if (m_PinchDistance < -0.25F)
46  {
47  m_PinchDistance = 0;
48  if (m_ZoomLevel > 0.5)
49  {
50  centerScreenOnPoint({isoX, isoY, 0, 0});
51  }
53  }
54 }
55 
56 void Camera::centerScreenOnPoint(const Point &isoCoordinates)
57 {
58  if (isoCoordinates.isWithinMapBoundaries())
59  {
60  m_CenterIsoCoordinates = isoCoordinates;
61  const SDL_Point screenCoordinates = convertIsoToScreenCoordinates(isoCoordinates, true);
62 
63  int x = static_cast<int>((screenCoordinates.x + (m_TileSize.x * m_ZoomLevel) * 0.5) - Settings::instance().screenWidth * 0.5);
64  int y =
65  static_cast<int>((screenCoordinates.y + (m_TileSize.y * m_ZoomLevel) * 0.25) - Settings::instance().screenHeight * 0.5);
66 
67  x -= static_cast<int>((m_TileSize.x * m_ZoomLevel) * 0.75);
68  y -= static_cast<int>(m_TileSize.y * m_ZoomLevel);
69 
70  m_CameraOffset = {x, y};
72  }
73 }
74 
76 {
80 }
81 
82 void Camera::moveCamera(int xOffset, int yOffset)
83 {
84  if (!m_canMove)
85  return;
86 
87  m_CameraOffset.x -= xOffset;
88  m_CameraOffset.y -= yOffset;
90  // update center coordinates
93 }
94 
95 const SDL_Point &Camera::cameraOffset() const noexcept { return m_CameraOffset; }
96 
97 const double &Camera::zoomLevel() const noexcept { return m_ZoomLevel; }
98 
99 const SDL_Point &Camera::tileSize() const noexcept { return m_TileSize; }
isoMath.hxx
Camera::centerScreenOnMapCenter
void centerScreenOnMapCenter()
Centers camera on the middle of the map.
Definition: Camera.cxx:75
Camera::m_canScale
bool m_canScale
Definition: Camera.hxx:65
Camera::m_ZoomLevel
double m_ZoomLevel
the current zoom level of the camera
Definition: Camera.hxx:64
Camera::moveCamera
void moveCamera(int xOffset, int yOffset)
Move the camera in the given direction.
Definition: Camera.cxx:82
Camera::m_PinchDistance
float m_PinchDistance
Definition: Camera.hxx:61
SettingsData::screenHeight
ScreenDimension screenHeight
the screen height
Definition: Settings.hxx:46
MapFunctions.hxx
Camera::increaseZoomLevel
void increaseZoomLevel()
Increases the zoom level of the camera.
Definition: Camera.cxx:6
Camera.hxx
Camera::m_CameraOffset
SDL_Point m_CameraOffset
Definition: Camera.hxx:63
MapFunctions::refreshVisibleMap
void refreshVisibleMap()
Refresh the visible part of the map.
Definition: MapFunctions.cxx:764
Camera::decreaseZoomLevel
void decreaseZoomLevel()
Decreases the zoom level of the camera.
Definition: Camera.cxx:19
SettingsData::mapSize
int mapSize
the size of the map
Definition: Settings.hxx:34
Camera::setPinchDistance
void setPinchDistance(float pinchDistance, int isoX, int isoY)
Sets the pinch distance for touch screens.
Definition: Camera.cxx:32
convertScreenToIsoCoordinates
Point convertScreenToIsoCoordinates(const SDL_Point &screenCoordinates)
converts screen space coordinates to isometric space coordinates.
Definition: isoMath.cxx:49
Camera::m_TileSize
SDL_Point m_TileSize
Definition: Camera.hxx:62
SettingsData::screenWidth
ScreenDimension screenWidth
the screen width
Definition: Settings.hxx:40
Point::isWithinMapBoundaries
bool isWithinMapBoundaries() const
Definition: Point.hxx:37
Camera::zoomLevel
const double & zoomLevel() const noexcept
Definition: Camera.cxx:97
Settings.hxx
Camera::m_CenterIsoCoordinates
Point m_CenterIsoCoordinates
Definition: Camera.hxx:67
Camera::centerScreenOnPoint
void centerScreenOnPoint(const Point &isoCoordinates)
Centers camera on given isometric coordinates.
Definition: Camera.cxx:56
Point
Definition: Point.hxx:7
Camera::m_canMove
bool m_canMove
Definition: Camera.hxx:66
Singleton< MapFunctions >::instance
static MapFunctions & instance(void)
Get an instance of the singleton.
Definition: Singleton.hxx:15
Camera::cameraOffset
const SDL_Point & cameraOffset() const noexcept
Definition: Camera.cxx:95
convertIsoToScreenCoordinates
SDL_Point convertIsoToScreenCoordinates(const Point &isoCoordinates, bool calcWithoutOffset)
converts coordinates from isometric to screen space
Definition: isoMath.cxx:25
Camera::tileSize
const SDL_Point & tileSize() const noexcept
Definition: Camera.cxx:99