diff options
Diffstat (limited to 'src/entities.cpp')
-rw-r--r-- | src/entities.cpp | 52 |
1 files changed, 45 insertions, 7 deletions
diff --git a/src/entities.cpp b/src/entities.cpp index d5328f0..64c8cb7 100644 --- a/src/entities.cpp +++ b/src/entities.cpp @@ -21,15 +21,51 @@ void Entity::spawn(float x, float y){ //spawns the entity you pass to it based o } 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(0,0,100); - else if(gender == FEMALE) + 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); - }else if(type==STRUCTURET){ - glColor3ub(100,0,100); + 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); } - glRectf(loc.x,loc.y,loc.x+width,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); @@ -89,6 +125,7 @@ Player::Player(){ //sets all of the player specific traits on object creation alive = true; ground = false; near = true; + texture = loadTexture("assets/player.png"); inv = new Inventory(PLAYER_INV_SIZE); } @@ -105,6 +142,7 @@ NPC::NPC(){ //sets all of the NPC specific traits on object creation alive = true; canMove = true; near = false; + texture = loadTexture("assets/NPC.png"); inv = new Inventory(NPC_INV_SIZE); } @@ -141,7 +179,7 @@ unsigned int Structures::spawn(_TYPE t, float x, float y){ //spawns a structure if(type == STRUCTURET){ loc.y=100; width = 20 * HLINE; - height = 16 * HLINE; + height = 20 * HLINE; int tempN = (getRand() % 5 + 2); //amount of villagers that will spawn for(int i=0;i<tempN;i++){ |