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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
|
#include <ui.h>
#define SDL_KEY e.key.keysym.sym // Keeps the code neater :)
extern Player *player; // 'player' should be (must be) defined in main.cpp
extern World *currentWorld; // should/must also be defined in main.cpp
extern std::vector<int (*)(NPC *)> AIpreload; // see entities.cpp
extern std::vector<void *> AIpreaddr; //
extern bool gameRunning;
static FT_Library ftl; // Variables for the FreeType library and stuff
static FT_Face ftf;
static GLuint ftex;
static char *dialogBoxText;
namespace ui {
vec2 mouse;
bool debug=false;
bool dialogBoxExists=false;
unsigned int fontSize;
/*
* initFonts(), setFontFace(), and setFontSize() are pretty self-explanatory
*/
void initFonts(void){
if(FT_Init_FreeType(&ftl)){
std::cout<<"Error! Couldn't initialize freetype."<<std::endl;
abort();
}
fontSize=12; // to be safe
#ifdef DEBUG
DEBUG_printf("Initialized FreeType2.\n",NULL);
#endif // DEBUG
}
void setFontFace(const char *ttf){
if(FT_New_Face(ftl,ttf,0,&ftf)){
std::cout<<"Error! Couldn't open "<<ttf<<"."<<std::endl;
abort();
}
#ifdef DEBUG
DEBUG_printf("Using font %s\n",ttf);
#endif // DEBUG
}
void setFontSize(unsigned int size){
fontSize=size;
FT_Set_Pixel_Sizes(ftf,0,fontSize);
}
float putChar(float x,float y,char c){
unsigned int j;
char *buf;
float w,h;
// Load the first/next character (if possible)
if(FT_Load_Char(ftf,c,FT_LOAD_RENDER)){
std::cout<<"Error! Unsupported character "<<c<<" ("<<(int)c<<")."<<std::endl;
abort();
}
// Load the bitmap with OpenGL
//glActiveTexture(GL_TEXTURE0);
glGenTextures(1,&ftex);
glBindTexture(GL_TEXTURE_2D,ftex);
glTexParameterf(GL_TEXTURE_2D,GL_TEXTURE_WRAP_S,GL_CLAMP_TO_EDGE);
glTexParameterf(GL_TEXTURE_2D,GL_TEXTURE_WRAP_T,GL_CLAMP_TO_EDGE);
glTexParameterf(GL_TEXTURE_2D,GL_TEXTURE_MAG_FILTER,GL_LINEAR);
glTexParameterf(GL_TEXTURE_2D,GL_TEXTURE_MIN_FILTER,GL_LINEAR);
glPixelStorei(GL_UNPACK_ALIGNMENT,1);
/*
* ftf->glyph->bitmap.buffer simply stores a bitmap of the character,
* and if OpenGL tries to load it directly it'll mistake it as a simple
* red on black texture. Here we allocate enough space to convert this
* bitmap to an RGBA-type buffer, also making the text white on black.
*
* TODO: allow different colors
*/
buf=(char *)malloc(ftf->glyph->bitmap.width*ftf->glyph->bitmap.rows*4);
for(j=0;j<ftf->glyph->bitmap.width*ftf->glyph->bitmap.rows;j++){
buf[j*4]=255;
buf[j*4+1]=255;
buf[j*4+2]=255;
buf[j*4+3]=ftf->glyph->bitmap.buffer[j]?255:0;
}
glTexImage2D(GL_TEXTURE_2D,0,GL_RGBA,ftf->glyph->bitmap.width,ftf->glyph->bitmap.rows,0,GL_RGBA,GL_UNSIGNED_BYTE,buf);
// Draw the texture and move the cursor
w=ftf->glyph->bitmap.width;
h=ftf->glyph->bitmap.rows;
glEnable(GL_TEXTURE_2D);
glBindTexture(GL_TEXTURE_2D,ftex);
switch(c){ // Some characters are not properly spaced, make them so here
case '^':
case '*':
case '`':
case '\'':
case '\"':
case '-':y+=fontSize/3;break;
case '~':
case '<':
case '>':
case '+':
case '=':y+=fontSize/5;break;
case 'g':
case 'q':
case 'y':
case 'p':
case 'j':y-=fontSize/4;break;
default:break;
}
glBegin(GL_QUADS);
glColor3ub(255,255,255);
glTexCoord2f(0,1);glVertex2f(x,y);
glTexCoord2f(1,1);glVertex2f(x+w,y);
glTexCoord2f(1,0);glVertex2f(x+w,y+h);
glTexCoord2f(0,0);glVertex2f(x,y+h);
glEnd();
glDisable(GL_TEXTURE_2D);
// Free the RGBA buffer and the OpenGL texture
free(buf);
glDeleteTextures(1,&ftex);
return w;
}
float putString(const float x,const float y,const char *s){
unsigned int i=0,j;
float xo=x,yo=y;
do{
if(s[i]=='\n'){
yo-=fontSize*1.05;
xo=x;
}else if(s[i]==' '){
xo+=fontSize/2;
}else{
xo+=putChar(xo,yo,s[i])+fontSize*.1;
}
}while(s[i++]);
return xo;
}
float putText(const float x,const float y,const char *str,...){ // putText() simply runs 'str' and the extra arguments though
va_list args; // vsnprintf(), which'll store the complete string to a buffer
char *buf; // that's then passed to putString()
float width;
buf=(char *)calloc(128,sizeof(char));
va_start(args,str);
vsnprintf(buf,128,str,args);
va_end(args);
width=putString(x,y,buf);
free(buf);
return width;
}
void dialogBox(const char *name,const char *text,...){
unsigned int name_len;
va_list dialogArgs;
va_start(dialogArgs,text);
dialogBoxExists=true;
if(dialogBoxText){
free(dialogBoxText);
dialogBoxText=NULL;
}
dialogBoxText=(char *)calloc(512,sizeof(char));
name_len=strlen(name);
strcpy(dialogBoxText,name);
strcpy(dialogBoxText+strlen(name),": ");
vsnprintf(dialogBoxText+name_len+2,512-name_len-2,text,dialogArgs);
va_end(dialogArgs);
}
void draw(void){
float x,y;
if(dialogBoxExists){
glColor3ub(0,0,0);
x=player->loc.x-SCREEN_WIDTH/2+HLINE*8;
y=SCREEN_HEIGHT-HLINE*8;
glRectf(x,y,x+SCREEN_WIDTH-HLINE*16,y-SCREEN_HEIGHT/4);
setFontSize(16);
putString(x+HLINE,y-fontSize-HLINE,dialogBoxText);
}
setFontSize(16);
putText(((SCREEN_WIDTH/2)+player->loc.x)-125,SCREEN_HEIGHT-fontSize,"Health: %u/%u",player->health>0?(unsigned)player->health:0,
(unsigned)player->maxHealth);
if(player->alive){
glColor3ub(255,0,0);
glRectf((SCREEN_WIDTH/2+player->loc.x)-125,
SCREEN_HEIGHT-32,
((SCREEN_WIDTH/2+player->loc.x)-125)+((player->health/player->maxHealth)*100),
SCREEN_HEIGHT-32+12);
}
}
void handleEvents(void){
static bool left=false,right=false;
static vec2 premouse={0,0};
SDL_Event e;
mouse.x=premouse.x+player->loc.x-(SCREEN_WIDTH/2);
mouse.y=SCREEN_HEIGHT-premouse.y;
while(SDL_PollEvent(&e)){
switch(e.type){
case SDL_QUIT:
gameRunning=false;
break;
case SDL_MOUSEMOTION:
premouse.x=e.motion.x;
premouse.y=e.motion.y;
break;
case SDL_MOUSEBUTTONDOWN:
if((e.button.button&SDL_BUTTON_RIGHT)&&dialogBoxExists){
dialogBoxExists=false;
dialogBoxText=NULL;
}
break;
/*
KEYDOWN
*/
case SDL_KEYDOWN:
if(SDL_KEY==SDLK_ESCAPE)gameRunning=false; // Exit the game with ESC
if(!dialogBoxExists){
if(SDL_KEY==SDLK_a){ // Move left
left=true;
player->vel.x=-.15;
player->left = true;
player->right = false;
currentWorld=currentWorld->goWorldLeft(player);
}
if(SDL_KEY==SDLK_d){ // Move right
right=true;
player->vel.x=.15;
player->right = true;
player->left = false;
currentWorld=currentWorld->goWorldRight(player);
}
if(SDL_KEY==SDLK_s && player->ground==2){
player->ground=false;
player->loc.y-=HLINE*1.5;
}
if(SDL_KEY==SDLK_w)currentWorld=currentWorld->goInsideStructure(player);
if(SDL_KEY==SDLK_SPACE){ // Jump
if(player->ground){
player->vel.y=.5;
player->loc.y+=HLINE*2;
player->ground=false;
}
}
if(SDL_KEY==SDLK_i)currentWorld=currentWorld->goWorldBack(player); // Go back a layer if possible
if(SDL_KEY==SDLK_k)currentWorld=currentWorld->goWorldFront(player); // Go forward a layer if possible
if(SDL_KEY==SDLK_LSHIFT)player->speed = 3; // Sprint
if(SDL_KEY==SDLK_LCTRL)player->speed = .5;
}
if(SDL_KEY==SDLK_F3)debug^=true;
break;
/*
KEYUP
*/
case SDL_KEYUP:
if(SDL_KEY==SDLK_a){left=false;}// Stop the player if movement keys are released
if(SDL_KEY==SDLK_d){right=false;}
if(!left&&!right)player->vel.x=0;
if(SDL_KEY==SDLK_LSHIFT)player->speed = 1;
if(SDL_KEY==SDLK_LCTRL)player->speed = 1;
if(SDL_KEY==SDLK_h)player->health-=5;
break;
default:
break;
}
}
unsigned int i;
if(!dialogBoxExists&&AIpreaddr.size()){ // Flush preloaded AI functions if necessary
for(i=0;i<AIpreaddr.size();i++){
NPCp(AIpreaddr.front())->addAIFunc(AIpreload.front(),false);
AIpreaddr.erase(AIpreaddr.begin());
AIpreload.erase(AIpreload.begin());
}
}
}
}
|