This repository was archived by the owner on Feb 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCBillBoard.cpp
135 lines (97 loc) · 2.73 KB
/
CBillBoard.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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
// CBillBoard.cpp -
#include "main.h"
CBillBoardFragment::CBillBoardFragment()
{
pos = CVector( 0.0f, 0.0f, 0.0f );
clr = rgba( 1.0f, 1.0f, 1.0f, 1.0f );
width = height = 0;
}
CBillBoardFragment::CBillBoardFragment( const CBillBoardFragment &bb )
{
pos = bb.pos;
clr = bb.clr;
width = bb.width;
height = bb.height;
}
void CBillBoardFragment::Rotate( CVector axis_angles )
{
glRotatef( axis_angles.x, 1.0f, 0.0f, 0.0f );
glRotatef( axis_angles.y, 0.0f, 1.0f, 0.0f );
glRotatef( axis_angles.z, 0.0f, 0.0f, 1.0f );
}
int CBillBoard::setTexture( string filename )
{
if ( tex.isLoaded() )
tex.Free();
if ( tex.LoadTextureFromTGA( filename.c_str() ) )
return 1;
return 0;
};
void CBillBoard::setTexture( CTexture &texture )
{
if ( tex.isLoaded() )
tex.Free();
tex = texture;
}
void CBillBoard::Reneder( RENDERER device )
{
// check for billboards in list
if ( bills.empty() )
return;
billtype::iterator p = bills.begin();
CVector v;
CMatrix vm, id;
rgba clr;
float w, h;
// get view and projection matrices
device.getViewMat( vm );
id.Identity();
device.setViewMat( id );
// set states
device.setState( gl_TEXTURE_2D, true );
// set texture and blending
tex.Activate();
device.setState( gl_ALPHA_TEST, true );
glAlphaFunc( GL_GREATER, 0.1f );
glBegin( GL_QUADS );
//glBegin( GL_TRIANGLES );
for ( ; p != bills.end(); p++ )
{
// vzemi goleminata na billboarda
//float wd, hd;
p->getSize( w, h );
w *= 0.5f;
h *= 0.5f;
// translirai vector na posiciqta kym view matricata
// osnovno poluchavame vector usporeden na view-vectora
v = p->getPosition();
v = vm * v;
// sloji cveta
clr = p->getColor();
glColor4f( clr.r, clr.g, clr.b, clr.a );
// rendirai
glTexCoord2d(1,1); glVertex3f(v.x+w,v.y+h,v.z); // Top Right
glTexCoord2d(0,1); glVertex3f(v.x-w,v.y+h,v.z); // Top Left
glTexCoord2d(0,0); glVertex3f(v.x-w,v.y-h,v.z); // Bottom Left
glTexCoord2d(1,0); glVertex3f(v.x+w,v.y-h,v.z); // Bottom Right
// left side
/*glTexCoord2d( 0, 0 ); glVertex3f( v.x -w, v.y - h, v.z );
glTexCoord2d( 0, 1 ); glVertex3f( v.x - w, v.y + h, v.z );
glTexCoord2d( 1, 0 ); glVertex3f( v.x + w, v.y -h, v.z );
// right-3-angle
glTexCoord2d( 0, 1 ); glVertex3f( v.x - w, v.y + h, v.z );
glTexCoord2d( 0, 0 ); glVertex3f( v.x - w, v.y - h, v.z );
glTexCoord2d( 0, 1 ); glVertex3f( v.x - w, v.y + h, v.z ); */
}
glEnd();
// restore states
device.restoreState( gl_TEXTURE_2D );
device.restoreState( gl_ALPHA_TEST );
// restore view matrix
device.setViewMat( vm );
}
void CBillBoard::Destroy()
{
tex.Free();
Clear();
}