#include #include extern std::vectorentity; extern std::vectornpc; extern std::vectorbuild; 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 if(type==NPCT){ if(gender == MALE) glColor3ub(0,0,100); else if(gender == FEMALE) glColor3ub(255,105,180); }else if(type==STRUCTURET){ glColor3ub(100,0,100); } glRectf(loc.x,loc.y,loc.x+width,loc.y+height); 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;ispawn(loc.x + (float)(i - 5),100); //sets the position of the villager around the village } return entity.size(); } }