aboutsummaryrefslogtreecommitdiffstats
path: root/include/Texture.h
blob: bcd95afa079f0e8eb2240c2acc8fa9be2a428f4a (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
/** @file Texture.h
 * @brief Defines a method for loading textures.
 * 
 * This file gives facilities for easily loading and binding textures.
 */

#ifndef TEXTURE_H
#define TEXTURE_H

#include <common.h>

/**
 * When defined, DEBUG allows extra messages to be printed to the terminal for
 * debugging purposes.
 */

#define DEBUG

/**
 * Texture functions are given a namespace for better organization.
 */

namespace Texture{
	
	/**
	 * Loads a texture from the given file name, returning the GLuint used for
	 * later referencing of the texture.
	 */
	
	GLuint loadTexture(const char *fileName);
}

/**
 * The Texturec class.
 * 
 * This class can handle an array of textures and allows easy binding of those
 * textures.
 */

class Texturec{
private:

	/**
	 * Contains the index in the image array of the currently loaded texture.
	 */

	unsigned int texState;
	
public:

	/**
	 * Contains an array of the GLuints returned from Texture::loadTexture().
	 */

	GLuint *image;
	
	/**
	 * Populates the image array from a list of strings, with each string as a
	 * separate argument.
	 */
	
	Texturec(uint amt, ...);
	
	/**
	 * Populates the image array from an array of strings.
	 */
	
	Texturec(uint amt,const char **paths);
	
	/**
	 * Frees memory taken by the image array.
	 */
	
	~Texturec();
	
	/**
	 * Binds the next texture in the array, incrementing texState.
	 */
	
	void bindNext();
	
	/**
	 * Binds the previous texture in the array, decrementing texState.
	 */
	
	void bindPrev();
	
	/**
	 * Binds the texture with the provided index.
	 */
	
	void bind(unsigned int);
};

#endif //TEXTURE_H