-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.cpp
39 lines (34 loc) · 837 Bytes
/
menu.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
#include "menu.h"
bool MWButton::attemptClick( int2 coord )
{
int2 rel = coord - min;
if( rel.x < span.x && rel.y < span.y )
{
click();
return true;
}
return false;
}
bool MWButton::peek( int2 coord )
{
int2 rel = coord - min;
if( rel.x < span.x && rel.y < span.y )
{
return true;
}
return false;
}
void MWMenu::draw( GLFWwindow* window )
{
glfwMakeContextCurrent( window ); glErrorCheck;
glEnable(GL_TEXTURE_2D); glErrorCheck;
glBindTexture( GL_TEXTURE_2D, image->getTexture() ); glErrorCheck;
glBegin(GL_QUADS);
glTexCoord2f( 1.0, 1.0 ); glVertex2f( 0.0, 0.0 );
glTexCoord2f( 0.0, 1.0 ); glVertex2f( 1.0, 0.0 );
glTexCoord2f( 0.0, 0.0 ); glVertex2f( 1.0, 1.0 );
glTexCoord2f( 1.0, 0.0 ); glVertex2f( 0.0, 1.0 );
glEnd(); glErrorCheck;
glFlush(); glErrorCheck;
glDisable(GL_TEXTURE_2D); glErrorCheck;
}