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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
|
#include <entities.h>
#include <ui.h>
extern std::vector<Entity*>entity;
extern std::vector<NPC>npc;
extern std::vector<Structures>build;
extern FILE* names;
extern unsigned int loops;
void Entity::spawn(float x, float y){ //spawns the entity you pass to it based off of coords and global entity settings
loc.x = x;
loc.y = y;
vel.x = 0;
vel.y = 0;
right = false;
left = false;
near = false;
ticksToUse = 0;
canMove = true;
ground = false;
alive = true;
if(!maxHealth)health = maxHealth = 50;
name = (char*)malloc(16);
getName();
}
Player::Player(){ //sets all of the player specific traits on object creation
width = HLINE * 10;
height = HLINE * 16;
speed = 1;
type = PLAYERT; //set type to player
subtype = 0;
maxHealth = 100;
health = maxHealth;
alive = true;
ground = false;
near = true;
texture[0] = loadTexture("assets/player.png");
texture[1] = loadTexture("assets/player1.png");
texture[2] = loadTexture("assets/player2.png");
inv = new Inventory(PLAYER_INV_SIZE);
}
NPC::NPC(){ //sets all of the NPC specific traits on object creation
width = HLINE * 10;
height = HLINE * 16;
speed = 1;
type = NPCT; //sets type to npc
subtype = 0;
alive = true;
canMove = true;
near = false;
texture[0] = loadTexture("assets/NPC.png");
texture[1] = 0;
texture[2] = 0;
inv = new Inventory(NPC_INV_SIZE);
}
Structures::Structures(){ //sets the structure type
type = STRUCTURET;
speed = 0;
alive = true;
near = false;
texture[0] = loadTexture("assets/house1.png");
texture[1] = 0;
texture[2] = 0;
}
Mob::Mob(){
width = HLINE * 10;
height = HLINE * 8;
speed = 1;
type = MOBT; //sets type to MOB
subtype = 1; //SKIRL
alive = true;
canMove = true;
near = false;
texture[0] = loadTexture("assets/rabbit.png");
texture[1] = loadTexture("assets/rabbit1.png");
texture[2] = 0;
inv = new Inventory(NPC_INV_SIZE);
}
void Entity::draw(void){ //draws the entities
glPushMatrix();
if(type==NPCT){
if(NPCp(this)->aiFunc.size()){
glColor3ub(255,255,0);
glRectf(loc.x+width/3,loc.y+height,loc.x+width*2/3,loc.y+height+width/3);
}if(gender == MALE){
glColor3ub(255,255,255);
}else if(gender == FEMALE){
glColor3ub(255,105,180);
}
}else{
glColor3ub(255,255,255);
}
if(left){
glScalef(-1.0f,1.0f,1.0f);
glTranslatef(0-width-loc.x*2,0,0);
}
glMatrixMode(GL_TEXTURE);
glLoadIdentity();
glEnable(GL_TEXTURE_2D);
if(type == PLAYERT){
static int texState = 0;
static bool up = true;
if(loops % (int)((float)5 / (float)speed) == 0){
if(up){
texState+=1;
if(texState==2)up=false;
}else if(!up){
texState-=1;
if(texState==0)up=true;
}
}
if(ground == 0){
glBindTexture(GL_TEXTURE_2D, texture[1]);
}
if(ground == 0){
glBindTexture(GL_TEXTURE_2D, texture[1]);
}else if(vel.x != 0){
switch(texState){
case 0:
glBindTexture(GL_TEXTURE_2D,texture[1]);
break;
case 1:
glBindTexture(GL_TEXTURE_2D,texture[0]);
break;
case 2:
glBindTexture(GL_TEXTURE_2D,texture[2]);
break;
}
}
else{
glBindTexture(GL_TEXTURE_2D,texture[0]);
}
}else if(type == MOBT){
switch(subtype){
case 1: //RABBIT
if(ground == 0){
glBindTexture(GL_TEXTURE_2D, texture[1]);
}else if(ground == 1){
glBindTexture(GL_TEXTURE_2D, texture[0]);
}
break;
default:
break;
}
}else{
glBindTexture(GL_TEXTURE_2D,texture[0]);
}
glColor3ub(255,255,255);
glBegin(GL_QUADS);
glTexCoord2i(0,1);glVertex2i(loc.x, loc.y);
glTexCoord2i(1,1);glVertex2i(loc.x + width, loc.y);
glTexCoord2i(1,0);glVertex2i(loc.x + width, loc.y + height);
glTexCoord2i(0,0);glVertex2i(loc.x, loc.y + height);
glEnd();
glDisable(GL_TEXTURE_2D);
glMatrixMode(GL_MODELVIEW);
glPopMatrix();
if(near){
ui::setFontSize(14);
ui::putText(loc.x,loc.y-ui::fontSize-HLINE/2,"%s",name);
}
}
void Entity::getName(){
rewind(names);
char buf,*bufs = (char *)malloc(16);
int tempNum,max = 0;
for(;!feof(names);max++){
fgets(bufs,16,(FILE*)names);
}
tempNum = rand()%max;
rewind(names);
for(int i=0;i<tempNum;i++){
fgets(bufs,16,(FILE*)names);
}
switch(fgetc(names)){
case 'm':
gender = MALE;
//std::puts("Male");
break;
case 'f':
gender = FEMALE;
//std::puts("Female");
break;
default:
break;
}
if((fgets(bufs,16,(FILE*)names)) != NULL){
//std::puts(bufs);
bufs[strlen(bufs)-1] = '\0';
strcpy(name,bufs);
}
free(bufs);
}
void Player::interact(){ //the function that will cause the player to search for things to interact with
}
void NPC::wander(int timeRun, vec2 *v){ //this makes the entites wander about
static int direction; //variable to decide what direction the entity moves
if(ticksToUse == 0){
ticksToUse = timeRun;
v->x = .008*HLINE; //sets the inital velocity of the entity
direction = (getRand() % 3 - 1); //sets the direction to either -1, 0, 1
//this lets the entity move left, right, or stay still
if(direction==0)ticksToUse*=2;
v->x *= direction; //changes the velocity based off of the direction
}
ticksToUse--; //removes one off of the entities timer
}
std::vector<int (*)(NPC *)> AIpreload; // A dynamic array of AI functions that are being preloaded
std::vector<void *> AIpreaddr; // A dynamic array of pointers to the NPC's that are being assigned the preloads
void NPC::addAIFunc(int (*func)(NPC *),bool preload){
if(preload){ // Preload AI functions so that they're given after
#ifdef DEBUG // the current dialog box is closed
DEBUG_printf("Preloading an AI %x.\n",func);
#endif // DEBUG
AIpreload.push_back(func);
AIpreaddr.push_back(this);
}
else aiFunc.push_back(func);
}
void NPC::interact(){ //have the npc's interact back to the player
int (*func)(NPC *);
loc.y += 5;
if(aiFunc.size()){
func=aiFunc.front();
canMove=false;
if(!func(this)){
aiFunc.erase(aiFunc.begin());
}
canMove=true;
}
}
unsigned int Structures::spawn(_TYPE t, float x, float y){ //spawns a structure based off of type and coords
loc.x = x;
loc.y = y;
type = t;
alive = true;
health = maxHealth = 1;
/*VILLAGE*/
//spawns a village
//spawns between 1 and 5 villagers around the village
if(type == STRUCTURET){
loc.y=100;
width = 50 * HLINE;
height = 40 * HLINE;
int tempN = (getRand() % 5 + 2); //amount of villagers that will spawn
for(int i=0;i<tempN;i++){
entity.push_back(new NPC()); //create a new entity of NPC type
npc.push_back(NPC()); //create new NPC
entity[entity.size()] = &npc[npc.size()-1]; //set the new entity to have the same traits as an NPC
entity[entity.size()-1]->spawn(loc.x + (float)(i - 5),100); //sets the position of the villager around the village
}
return entity.size();
}
}
void Mob::wander(int timeRun, vec2* v){
if(subtype == 1){ //SKIRL
static int direction; //variable to decide what direction the entity moves
if(ticksToUse == 0){
ticksToUse = timeRun;
direction = (getRand() % 3 - 1); //sets the direction to either -1, 0, 1
//this lets the entity move left, right, or stay still
if(direction==0)ticksToUse/=2;
v->x *= direction; //changes the velocity based off of the direction
}
if(ground && direction != 0){
v->y=.15;
loc.y+=HLINE*.25;
ground=false;
v->x = (.07*HLINE)*direction; //sets the inital velocity of the entity
}
ticksToUse--; //removes one off of the entities timer
}
}
|