- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGLTextureable.java
More file actions
Latest commit
108 lines (91 loc) · 2.24 KB
/
Copy pathGLTextureable.java
File metadata and controls
108 lines (91 loc) · 2.24 KB
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
importcom.sun.opengl.util.texture.Texture;
importcom.sun.opengl.util.texture.TextureIO;
importjava.io.File;
importjava.io.IOException;
importjava.util.logging.Level;
importjava.util.logging.Logger;
importjavax.media.opengl.GL;
importjavax.media.opengl.GLException;
/**
* Defines a textureable object
* @author Andrew
*/
publicabstractclassGLTextureableimplementsGLRenderable
{
/* Texture object to load */
privateTexturetexture;
/** The filename of the texture to bind */
privateStringfileName;
/**
* Creates default GLTexturable object
*/
publicGLTextureable()
{
texture = null;
}
/**
* Sets the file for this texture to be applied from
* @param file the file name
*/
publicvoidsetFileName(Stringfile)
{
this.fileName = file;
}
/**
* Checks if the texture has been loaded
* @return true if texture is ready to use - false if not.
*/
publicbooleantextureLoaded()
{
returntexture != null;
}
/**
* Binds the texture
* @param gl
*/
publicvoidbindTexture(GLgl)
{
if(texture != null)
{
gl.glEnable (GL.GL_BLEND);
gl.glBlendFunc (GL.GL_SRC_ALPHA, GL.GL_ONE_MINUS_SRC_ALPHA);
gl.glEnable(GL.GL_TEXTURE_2D);
texture.enable();
texture.bind();
}
}
/**
* Unbinds the texture
* @param gl
*/
publicvoidunbindTexture(GLgl)
{
if(texture != null)
{
gl.glDisable(GL.GL_TEXTURE_2D);
gl.glBlendFunc (GL.GL_ONE, GL.GL_ZERO);
gl.glDisable (GL.GL_BLEND);
texture.disable();
}
}
/**
* Inits the texture file
* @param gl
*/
publicvoidinit(GLgl)
{
try
{
if(fileName != null)
texture = TextureIO.newTexture(newFile(fileName), false);
}
catch (IOExceptionex)
{
Logger.getLogger(GLTextureable.class.getName()).log(Level.SEVERE, null, ex);
}
catch (GLExceptionex)
{
Logger.getLogger(GLTextureable.class.getName()).log(Level.SEVERE, null, ex);
}
}
}