-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBox.cpp
107 lines (90 loc) · 2.89 KB
/
Box.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
97
98
99
100
101
102
103
104
105
106
107
//
// Box.cpp for Box 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:34:24 2012 erick clarivet
// Last update Fri Jun 1 14:12:38 2012 camille tolsa
//
#include "Box.hh"
Box::Box() : Bloc()
{
this->type = BOX;
}
Box::Box(int x, int y) : Bloc(x, y)
{
this->type = BOX;
}
Box::~Box()
{
}
void Box::initialize()
{
}
void Box::update()
{
}
void Box::draw()
{
}
void Box::draw(gdl::Image& texture)
{
texture.bind();
glPushMatrix();
glTranslatef(this->position.x, this->position.y, 0.0f);
glBegin(GL_QUADS);
glTexCoord2f(0.0f, 0.0f);
glVertex3f(-(BLOCKSIZE / 2), (BLOCKSIZE / 2), (BLOCKSIZE / 2));
glTexCoord2f(0.0f, 1.0f);
glVertex3f(-(BLOCKSIZE / 2), -(BLOCKSIZE / 2), (BLOCKSIZE / 2));
glTexCoord2f(1.0f, 1.0f);
glVertex3f((BLOCKSIZE / 2), -(BLOCKSIZE / 2), (BLOCKSIZE / 2));
glTexCoord2f(1.0f, 0.0f);
glVertex3f((BLOCKSIZE / 2), (BLOCKSIZE / 2), (BLOCKSIZE / 2));
glTexCoord2f(0.0f, 0.0f);
glVertex3f((BLOCKSIZE / 2), (BLOCKSIZE / 2), -(BLOCKSIZE / 2));
glTexCoord2f(0.0f, 1.0f);
glVertex3f((BLOCKSIZE / 2), -(BLOCKSIZE / 2), -(BLOCKSIZE / 2));
glTexCoord2f(1.0f, 1.0f);
glVertex3f(-(BLOCKSIZE / 2), -(BLOCKSIZE / 2), -(BLOCKSIZE / 2));
glTexCoord2f(1.0f, 0.0f);
glVertex3f(-(BLOCKSIZE / 2), (BLOCKSIZE / 2), -(BLOCKSIZE / 2));
glTexCoord2f(0.0f, 0.0f);
glVertex3f((BLOCKSIZE / 2), (BLOCKSIZE / 2), (BLOCKSIZE / 2));
glTexCoord2f(0.0f, 1.0f);
glVertex3f((BLOCKSIZE / 2), -(BLOCKSIZE / 2), (BLOCKSIZE / 2));
glTexCoord2f(1.0f, 1.0f);
glVertex3f((BLOCKSIZE / 2), -(BLOCKSIZE / 2), -(BLOCKSIZE / 2));
glTexCoord2f(1.0f, 0.0f);
glVertex3f((BLOCKSIZE / 2), (BLOCKSIZE / 2), -(BLOCKSIZE / 2));
glTexCoord2f(0.0f, 0.0f);
glVertex3f(-(BLOCKSIZE / 2), (BLOCKSIZE / 2), (BLOCKSIZE / 2));
glTexCoord2f(0.0f, 1.0f);
glVertex3f(-(BLOCKSIZE / 2), (BLOCKSIZE / 2), -(BLOCKSIZE / 2));
glTexCoord2f(1.0f, 1.0f);
glVertex3f(-(BLOCKSIZE / 2), -(BLOCKSIZE / 2), -(BLOCKSIZE / 2));
glTexCoord2f(1.0f, 0.0f);
glVertex3f(-(BLOCKSIZE / 2), -(BLOCKSIZE / 2), (BLOCKSIZE / 2));
glTexCoord2f(0.0f, 0.0f);
glVertex3f(-(BLOCKSIZE / 2), -(BLOCKSIZE / 2), (BLOCKSIZE / 2));
glTexCoord2f(0.0f, 1.0f);
glVertex3f(-(BLOCKSIZE / 2), -(BLOCKSIZE / 2), -(BLOCKSIZE / 2));
glTexCoord2f(1.0f, 1.0f);
glVertex3f((BLOCKSIZE / 2), -(BLOCKSIZE / 2), -(BLOCKSIZE / 2));
glTexCoord2f(1.0f, 0.0f);
glVertex3f((BLOCKSIZE / 2), -(BLOCKSIZE / 2), (BLOCKSIZE / 2));
glTexCoord2f(0.0f, 0.0f);
glVertex3f(-(BLOCKSIZE / 2), (BLOCKSIZE / 2), (BLOCKSIZE / 2));
glTexCoord2f(0.0f, 1.0f);
glVertex3f((BLOCKSIZE / 2), (BLOCKSIZE / 2), (BLOCKSIZE / 2));
glTexCoord2f(1.0f, 1.0f);
glVertex3f((BLOCKSIZE / 2), (BLOCKSIZE / 2), -(BLOCKSIZE / 2));
glTexCoord2f(1.0f, 0.0f);
glVertex3f(-(BLOCKSIZE / 2), (BLOCKSIZE / 2), -(BLOCKSIZE / 2));
glEnd();
glPopMatrix();
}
void Box::unload()
{
}