blob: 140223d91eeeab4caa3361d0b2510cb35255c022 (
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
|
#include <entities.h>
extern std::vector<Entity*>entity;
extern std::vector<NPC>npc;
extern std::vector<Structures>build;
void Entity::spawn(float x, float y){
loc.x = x;
loc.y = y;
vel.x = 0;
vel.y = 0;
right = false;
left = false;
ticksToUse = 0;
canMove = false;
ground = false;
}
void Entity::draw(void){
glColor3ub(0,0,100);
glRectf(loc.x,loc.y,loc.x+width,loc.y+height);
}
void Entity::wander(int timeRun, vec2 *v){
static int direction;
if(ticksToUse == 0){
ticksToUse = timeRun;
v->x = .01*HLINE;
direction = (getRand() % 3 - 1);
v->x *= direction;
}
ticksToUse--;
}
Player::Player(){
width = HLINE * 8;
height = HLINE * 12;
speed = 1;
type = 0;
subtype = 5;
alive = true;
ground = false;
}
void Player::interact(){
}
NPC::NPC(){
width = HLINE * 8;
height = HLINE * 12;
speed = 1;
type = 1;
subtype = 0;
alive = true;
canMove = true;
}
void NPC::interact(){
//loc.y += .01;
}
Structures::Structures(){
type = -1;
speed = 0;
}
unsigned int Structures::spawn(int t, float x, float y){
loc.x = x;
loc.y = y;
type = t;
/*VILLAGE*/
if(type == -1){
width = 4 * HLINE;
height = 4 * HLINE;
//int tempN = (getRand() % 5 + 1);
int tempN = 2;
for(int i=0;i<tempN;i++){
entity.push_back(new NPC());
npc.push_back(NPC());
std::cout<<"NPC:"<<npc.size()<<std::endl;
std::cout<<"Entity:"<<entity.size()<<std::endl;
entity[entity.size()] = &npc[npc.size()-1];
entity[entity.size()]->spawn(loc.x + (float)(i - 5) / 8,100);
}
return entity.size();
}
}
|