-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcamera.cpp
68 lines (55 loc) · 1.44 KB
/
camera.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#include <stdio.h>
#include "camera.h"
Camera::Camera()
{
this->sensitivity = 0.05f;
this->transform.x = 0;
this->transform.y = 1;
this->transform.z = 0;
}
Camera::Camera(float x, float y, float z)
{
this->sensitivity = 0.05f;
this->transform.x = x;
this->transform.y = y;
this->transform.z = z;
this->activeChunk = sf::Vector2i((int)x, (int)z);
}
void Camera::moveTo(float x, float y, float z)
{
this->transform.x = x;
this->transform.y = y;
this->transform.z = z;
}
void Camera::move(float x, float y, float z)
{
this->transform.x += x;
this->transform.y += y;
this->transform.z += z;
}
void Camera::rotateTo(float pitch, float yaw)
{
if(pitch > 89.0f)
pitch = 89.0f;
if(pitch < -89.0f)
pitch = -89.0f;
if(yaw > 359.0f)
yaw = yaw - 360.0f;
if(yaw < 0.0f)
yaw = 360.0f + yaw;
this->transform.pitch = pitch;
this->transform.yaw = yaw;
}
void Camera::rotate(float pitch, float yaw)
{
this->transform.pitch += pitch * -this->sensitivity;
this->transform.yaw += yaw * -this->sensitivity;
if(this->transform.pitch > 89.0f)
this->transform.pitch = 89.0f;
if(this->transform.pitch < -89.0f)
this->transform.pitch = -89.0f;
if(this->transform.yaw > 359.0f)
this->transform.yaw = this->transform.yaw - 360.0f;
if(this->transform.yaw < 0.0f)
this->transform.yaw = 360.0f + this->transform.yaw;
}