diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2015-10-04 19:39:08 -0400 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2015-10-04 19:39:08 -0400 |
commit | e58c8920f5332678e4446a8c33bc74a716024010 (patch) | |
tree | 7cc26dfbf5c7999047a39659794eafcd00769d3d /src/inventory.cpp | |
parent | 63dc9b399db9faef611c31629e0265b954d74197 (diff) | |
parent | a277430f0ddde9ea2583f4b0c44fcafe8a2528bf (diff) |
Added texture support and basic textures
Diffstat (limited to 'src/inventory.cpp')
-rw-r--r-- | src/inventory.cpp | 58 |
1 files changed, 58 insertions, 0 deletions
diff --git a/src/inventory.cpp b/src/inventory.cpp new file mode 100644 index 0000000..b8905dd --- /dev/null +++ b/src/inventory.cpp @@ -0,0 +1,58 @@ +#include <inventory.h> +#include <ui.h> + +const char *itemName[]={ + "\0", + "Dank Maymay" +}; + +Inventory::Inventory(unsigned int s){ + size=s; + item=(struct item_t *)calloc(size,sizeof(struct item_t)); +} + +Inventory::~Inventory(void){ + free(item); +} + +int Inventory::addItem(ITEM_ID id,unsigned char count){ + unsigned int i; + for(i=0;i<size;i++){ + if(item[i].id==id){ + item[i].count+=count; + return 0; + }else if(!item[i].count){ + item[i].id=id; + item[i].count=count; + return 0; + } + } + return -1; +} + +int Inventory::takeItem(ITEM_ID id,unsigned char count){ + unsigned int i; + for(i=0;i<size;i++){ + if(item[i].id==id){ + item[i].count-=count; + if(item[i].count<0) + return item[i].count*-1; + return 0; + } + } + return -1; +} + +#include <entities.h> +extern Player *player; + +void Inventory::draw(void){ + unsigned int i=0; + float y=SCREEN_HEIGHT/2; + ui::putText(player->loc.x-SCREEN_WIDTH/2,y,"Inventory:"); + while(item[i].count){ + y-=ui::fontSize*1.15; + ui::putText(player->loc.x-SCREEN_WIDTH/2,y,"%d x %s",item[i].count,itemName[(unsigned)item[i].id]); + i++; + } +} |