-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTexture.cpp
228 lines (223 loc) · 6.25 KB
/
Texture.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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
#include "Texture.h"
#include <iostream>
Texture::Texture() {}
Texture::Texture(TEXTURE type, TEXTURE_BLOCK block) : textureType(type), textureBlock(block) {}
Texture::Texture(TEXTURE type, TEXTURE_DIRECTION dir, TEXTURE_MOTION motion) : textureType(type), textureDir(dir), textureMotion(motion) {}
Texture::Texture(TEXTURE type, TEXTURE_MONSTER monster, TEXTURE_DIRECTION dir) : textureType(type), textureMonster(monster), textureDir(dir) {}
FIBITMAP* Texture::createBitMap(char const* filename) {
FREE_IMAGE_FORMAT format = FreeImage_GetFileType(filename, 0);
if (format == -1) { // couldn't find image
exit(-1);
}
else if (format == FIF_UNKNOWN) { // couldn't determine file format
// attemp to get from file extension
format = FreeImage_GetFIFFromFilename(filename);
if (!FreeImage_FIFSupportsReading(format)) {
exit(-1);
}
}
FIBITMAP* bitmap = FreeImage_Load(format, filename);
int bitsPerPixel = FreeImage_GetBPP(bitmap);
FIBITMAP* bitmap32;
if (bitsPerPixel == 32) {
bitmap32 = bitmap;
}
else {
bitmap32 = FreeImage_ConvertTo32Bits(bitmap);
}
return bitmap32;
}
void Texture::generateTexture() {
glGenTextures(1, &textureID);
glBindTexture(GL_TEXTURE_2D, textureID);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, imageWidth, imageHeight,
0, GL_BGRA_EXT, GL_UNSIGNED_BYTE, textureData);
}
void Texture::initTexture() {
FIBITMAP* bitmap32;
if (textureType == _PLAYER) setPlayerFile(bitmap32);
else if (textureType == _MONSTER) setMonsterFile(bitmap32);
else setMapFile(bitmap32);
imageWidth = FreeImage_GetWidth(bitmap32);
imageHeight = FreeImage_GetHeight(bitmap32);
textureData = FreeImage_GetBits(bitmap32);
generateTexture();
}
GLuint Texture::getTextureID() const {
return textureID;
}
// .png file path setting
void Texture::setPlayerFile(FIBITMAP*& bitmap) {
switch (textureDir) {
case _RIGHT:
switch (textureMotion) {
case _ATTACK:
bitmap = createBitMap("texture/character/Dragon_right_attack.png");
break;
case _DAMAGE:
bitmap = createBitMap("texture/character/Dragon_right_damage.png");
break;
case _FALL1:
bitmap = createBitMap("texture/character/Dragon_right_fall1.png");
break;
case _FALL2:
bitmap = createBitMap("texture/character/Dragon_right_fall2.png");
break;
case _JUMP:
bitmap = createBitMap("texture/character/Dragon_right_jump.png");
break;
case _STAY1:
bitmap = createBitMap("texture/character/Dragon_right_stay1.png");
break;
case _STAY2:
bitmap = createBitMap("texture/character/Dragon_right_stay2.png");
break;
case _CLEAR:
bitmap = createBitMap("texture/character/Dragon_clearStage.png");
break;
default:
bitmap = createBitMap("texture/character/Dragon_right_stay1.png");
break;
}
break;
case _LEFT:
switch (textureMotion) {
case _ATTACK:
bitmap = createBitMap("texture/character/Dragon_left_attack.png");
break;
case _DAMAGE:
bitmap = createBitMap("texture/character/Dragon_left_damage.png");
break;
case _FALL1:
bitmap = createBitMap("texture/character/Dragon_left_fall1.png");
break;
case _FALL2:
bitmap = createBitMap("texture/character/Dragon_left_fall2.png");
break;
case _JUMP:
bitmap = createBitMap("texture/character/Dragon_left_jump.png");
break;
case _STAY1:
bitmap = createBitMap("texture/character/Dragon_left_stay1.png");
break;
case _STAY2:
bitmap = createBitMap("texture/character/Dragon_left_stay2.png");
break;
case _CLEAR:
bitmap = createBitMap("texture/character/Dragon_clearStage.png");
break;
default:
bitmap = createBitMap("texture/character/Dragon_left_stay1.png");
break;
}
break;
default:
bitmap = createBitMap("texture/character/Dragon_left_stay1.png");
break;
}
}
void Texture::setMonsterFile(FIBITMAP*& bitmap) {
switch (textureMonster) {
case _ROBOT:
switch (textureDir) {
case _RIGHT:
bitmap = createBitMap("texture/character/Robot_right.png");
break;
case _LEFT:
bitmap = createBitMap("texture/character/Robot_left.png");
break;
default:
bitmap = createBitMap("texture/character/Robot_left.png");
break;
}
break;
case _CREATURE:
switch (textureDir) {
case _RIGHT:
bitmap = createBitMap("texture/character/Creature_right.png");
break;
case _LEFT:
bitmap = createBitMap("texture/character/Creature_left.png");
break;
default:
bitmap = createBitMap("texture/character/Creature_left.png");
break;
}
break;
case _GHOST:
switch (textureDir) {
case _RIGHT:
bitmap = createBitMap("texture/character/Ghost_right.png");
break;
case _LEFT:
bitmap = createBitMap("texture/character/Ghost_left.png");
break;
default:
bitmap = createBitMap("texture/character/Ghost_left.png");
break;
}
break;
}
}
void Texture::setMapFile(FIBITMAP*& bitmap) {
switch (textureBlock) {
case _BRICK_RED:
bitmap = createBitMap("texture/Brick_red.png");
break;
case _BRICK_BLUE:
bitmap = createBitMap("texture/Brick_blue.png");
break;
case _BRICK_BLACK:
bitmap = createBitMap("texture/Brick_black.png");
break;
case _FIELD_SKY:
bitmap = createBitMap("texture/Field_sky.png");
break;
case _APPLE:
bitmap = createBitMap("texture/Apple.png");
break;
case _HEART:
bitmap = createBitMap("texture/Heart.png");
break;
case _SPEED:
bitmap = createBitMap("texture/Speed.png");
break;
case _BUBBLE:
bitmap = createBitMap("texture/Bubble.png");
break;
case _DOUBLE:
bitmap = createBitMap("texture/Double.png");
break;
case _GAMEOVER:
bitmap = createBitMap("texture/gameover.png");
break;
case _TITLE:
bitmap = createBitMap("texture/title.png");
break;
case _GAMEWIN:
bitmap = createBitMap("texture/gamewin.png");
break;
case _HELP:
bitmap = createBitMap("texture/help.png");
break;
case _LEADERBOARD:
bitmap = createBitMap("texture/leaderboard.png");
break;
case _TIME:
bitmap = createBitMap("texture/Time_text.png");
break;
case _SCORE:
bitmap = createBitMap("texture/Score_text.png");
break;
case _STAGE:
bitmap = createBitMap("texture/Stage_text.png");
break;
default:
bitmap = createBitMap("texture/Dragon.png");
break;
}
}