#include #include #include #define ITEM_COUNT 5 // Total number of items that actually exist extern Player *player; extern GLuint invUI; GLuint *ITEM_TEX; void itemDraw(Player *p,ITEM_ID id); unsigned int initInventorySprites(void){ unsigned int i,loadCount=0; ITEM_TEX=(GLuint *)calloc(ITEM_COUNT,sizeof(GLuint)); for(i=0;iloc.x+p->width/2, p->loc.y+p->width/2+HLINE*3}; p2 = {(float)(p1.x+p->width*(p->left?-.5:.5)), p->loc.y+HLINE*3}; } if(p->inv->tossd) yes=true; glBegin(GL_QUADS); glTexCoord2i(0,1);glVertex2f(item_coord.x+p->loc.x, item_coord.y+p->loc.y); glTexCoord2i(1,1);glVertex2f(item_coord.x+item[sel].width+p->loc.x, item_coord.y+p->loc.y); glTexCoord2i(1,0);glVertex2f(item_coord.x+item[sel].width+p->loc.x, item_coord.y+item[sel].height+p->loc.y); glTexCoord2i(0,0);glVertex2f(item_coord.x+p->loc.x, item_coord.y+item[sel].height+p->loc.y); glEnd(); glDisable(GL_TEXTURE_2D); } int Inventory::useItem(void){ ITEM_ID id = item[sel].id; switch(id){ case SWORD_WOOD: break; default: ui::dialogBox(item[id].name,NULL,"You cannot use this item."); break; } return 0; } int Inventory::itemToss(void){ if(!item_tossd && item[sel].count && item[sel].id){ item_tossd = true; item_coord.x = HLINE; item_velcd.x = 0; item_velcd.y = 3; tossd = true; return 1; }else if(item_tossd){ if(item_coord.y<0){ memset(&item_coord,0,sizeof(vec2)); memset(&item_velcd,0,sizeof(vec2)); item_tossd = false; takeItem(item[sel].id,1); tossd = yes = false; return 0; }else{ item_coord.x += item_velcd.x; item_coord.y += item_velcd.y; //item_velcd.x -= .005; item_velcd.y -= .1; return 1; } } }