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
|
#include <entities.h>
#include <ui.h>
extern std::vector<Entity*>entity;
extern std::vector<NPC>npc;
extern std::vector<Structures>build;
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 = false;
ground = false;
name = (char*)malloc(16);
getName();
}
void Entity::draw(void){ //draws the entities
glMatrixMode(GL_TEXTURE);
glLoadIdentity();
glEnable(GL_TEXTURE_2D);
glBindTexture(GL_TEXTURE_2D,texture);
glBegin(GL_QUADS);
if(type==NPCT){
if(gender == MALE){
glColor3ub(255,255,255);
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);
}
else if(gender == FEMALE){
glColor3ub(255,105,180);
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);
}
}
if(type==PLAYERT){
if(right==true){
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);
}if(left==true){
glRotatef(180.0f, 0.0f, 0.0f, 1.0f);
glScalef(-1.0f,1.0f,1.0f);
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);
}
}else{
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);
if(near){
ui::setFontSize(14);
ui::putText(loc.x,loc.y-ui::fontSize-HLINE/2,"%s",name);
}
}
void Entity::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
v->x *= direction; //changes the velocity based off of the direction
}
ticksToUse--; //removes one off of the entities timer
}
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);
}
Player::Player(){ //sets all of the player specific traits on object creation
width = HLINE * 8;
height = HLINE * 12;
speed = 1;
type = PLAYERT; //set type to player
subtype = 5;
alive = true;
ground = false;
near = true;
texture = loadTexture("assets/player.png");
inv = new Inventory(PLAYER_INV_SIZE);
}
void Player::interact(){ //the function that will cause the player to search for things to interact with
}
NPC::NPC(){ //sets all of the NPC specific traits on object creation
width = HLINE * 8;
height = HLINE * 12;
speed = 1;
type = NPCT; //sets type to npc
subtype = 0;
alive = true;
canMove = true;
near = false;
texture = loadTexture("assets/NPC.png");
inv = new Inventory(NPC_INV_SIZE);
}
void NPC::addAIFunc(int (*func)(NPC *)){
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();
if(!func(this)){
aiFunc.erase(aiFunc.begin());
}
}
}
Structures::Structures(){ //sets the structure type
type = STRUCTURET;
speed = 0;
alive = true;
near = false;
}
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;
/*VILLAGE*/
//spawns a village
//spawns between 1 and 5 villagers around the village
if(type == STRUCTURET){
loc.y=100;
width = 20 * HLINE;
height = 20 * 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();
}
}
|