-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCamera.cpp
96 lines (83 loc) · 1.8 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
//
// Camera.cpp for Camera in /home/clariv_e//Projets/C++/Bomberman/bomberman-2015-tolsa_c
//
// Made by erick clarivet
// Login <clariv_e@epitech.net>
//
// Started on Tue May 29 04:27:07 2012 erick clarivet
// Last update Sun Jun 3 22:06:30 2012 mathieu barnetche
//
#include "Camera.hh"
Camera::Camera() : position(0, 0, 800), view(0.0f, 0.0f, -1.0f)
{
}
Camera::~Camera()
{
}
void Camera::initialize()
{
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
gluPerspective(70.0f, 800.0f/600.0f, 1.0f, 10000.0f);
gluLookAt(position.x + view.x,
position.y + view.y,
position.z + view.z,
view.x, view.y, view.z,
1.0f, 0.0f, 0.0f);
glRotatef(90, 0, 0, 1);
glMatrixMode(GL_MODELVIEW);
glLoadIdentity();
glEnable(GL_DEPTH_TEST);
glDepthFunc(GL_LEQUAL);
}
void Camera::update(gdl::GameClock const & gameClock,
gdl::Input & input)
{
glLoadIdentity();
gluLookAt(view.x + position.x,
view.y + position.y,
view.z + position.z,
view.x, view.y, view.z,
1.0f, 0.0f, 0.0f);
(void) gameClock;
(void) input;
}
void Camera::setPointView(const Vector3f& pos)
{
this->view.x = pos.x;
this->view.y = pos.y;
this->view.z = pos.z;
}
void Camera::setPos(Vector3f const &v)
{
this->position = v;
}
void Camera::setPos(float x, float y, float z)
{
this->position.x = x;
this->position.y = y;
this->position.z = z;
}
Vector3f Camera::getPointView() const
{
return (this->view);
}
Vector3f Camera::getPos() const
{
return (this->position);
}
std::istream& operator>>(std::istream& is, Camera &c)
{
Vector3f v;
is >> v;
c.setPos(v);
is >> v;
c.setPointView(v);
return (is);
}
std::ostream& operator<<(std::ostream& os, const Camera &c)
{
os << c.getPos();
os << c.getPointView();
return (os);
}