#include #include #include #define ITEM_COUNT 2 // Total number of items that actually exist extern Player *player; const char *itemName[]={ "\0", "Dank Maymay", "Sword" }; const char *ITEM_SPRITE[]={ "\0", // Null "assets/items/ITEM_TEST.png", // Dank maymay "assets/items/ITEM_SWORD.png" }; 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+p1.x,item_coord.y+p2.y); glTexCoord2i(1,1);glVertex2f(item_coord.x+p2.x,item_coord.y+p2.y); glTexCoord2i(1,0);glVertex2f(item_coord.x+p2.x,item_coord.y+p1.y); glTexCoord2i(0,0);glVertex2f(item_coord.x+p1.x,item_coord.y+p1.y); glEnd(); glDisable(GL_TEXTURE_2D); } int Inventory::useItem(void){ ITEM_ID id = item[sel].id; switch(id){ default: ui::dialogBox(itemName[id],"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; } } }