Project::OSiRiON - Git repositories
Project::OSiRiON
News . About . Screenshots . Downloads . Forum . Wiki . Tracker . Git
summaryrefslogtreecommitdiff
blob: 67a8ed0ff971bc8e107938b7e13f7f47dd9d167e (plain)
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
/* 	box.cc
	This file is part of the Osirion project
*/

// project headers
#include "box.h"
#include "osiriongl.h"

namespace gl {

Box::Box(Vector3f const & tl, Vector3f const &br) : 
	topleft(tl), bottomright(br)
{
	topcolor = Color::White();
	bottomcolor= Color::White() * 0.7f;
}

Box::Box(const Box & other)
{
	(*this) = other;
}

Box& Box::operator=(const Box &other)
{
	bottomcolor = other.bottomcolor;
	topcolor = other.topcolor;

	topleft = other.topleft;
	bottomright = other.bottomright;
	return (*this);
}

void Box::draw()
{
	Vector3f v0(topleft.x, bottomright.y, bottomright.z);
	Vector3f v1(topleft.x,  topleft.y, bottomright.z);
	Vector3f v2(topleft.x,  topleft.y,  topleft.z);
	Vector3f v3(topleft.x, bottomright.y,  topleft.z);

	Vector3f v4(bottomright.x, bottomright.y, bottomright.z);
	Vector3f v5(bottomright.x,  topleft.y, bottomright.z);
	Vector3f v6(bottomright.x,  topleft.y,  topleft.z);
	Vector3f v7(bottomright.x, bottomright.y,  topleft.z);

	begin(Quads);

	// top
	color(topcolor);	
	vertex(v2);
	vertex(v1);
        vertex(v5);
	vertex(v6);
	
	// sides
	color(bottomcolor);
	vertex(v0);
	color(topcolor);
    	vertex(v1);
        vertex(v2);
	color(bottomcolor);
        vertex(v3);

        vertex(v3);
	color(topcolor);
    	vertex(v2);
        vertex(v6);
	color(bottomcolor);
        vertex(v7);

	vertex(v4);
	color(topcolor);
    	vertex(v5);
        vertex(v1);
	color(bottomcolor);
        vertex(v0);

	vertex(v7);
	color(topcolor);
    	vertex(v6);
        vertex(v5);
	color(bottomcolor);
        vertex(v4);

	// bottom
	color(bottomcolor);	
	vertex(v4);
	vertex(v0);
        vertex(v3);
	vertex(v7);

	end();

}

} // namespace gl