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 | |
parent | 63dc9b399db9faef611c31629e0265b954d74197 (diff) | |
parent | a277430f0ddde9ea2583f4b0c44fcafe8a2528bf (diff) |
Added texture support and basic textures
Diffstat (limited to 'src')
-rw-r--r-- | src/Quest.cpp | 15 | ||||
-rw-r--r-- | src/entities.cpp | 2 | ||||
-rw-r--r-- | src/gameplay.cpp | 3 | ||||
-rw-r--r-- | src/inventory.cpp | 58 | ||||
-rw-r--r-- | src/main.cpp | 5 |
5 files changed, 73 insertions, 10 deletions
diff --git a/src/Quest.cpp b/src/Quest.cpp index 28aade2..c331e32 100644 --- a/src/Quest.cpp +++ b/src/Quest.cpp @@ -1,22 +1,23 @@ #include <Quest.h>
+#include <entities.h>
const Quest QuestList[TOTAL_QUESTS]={
- Quest("Test","A test quest",0)
+ Quest("Test","A test quest",(struct item_t){1,TEST_ITEM})
};
-Quest::Quest(const char *t,const char *d,unsigned int r){
+Quest::Quest(const char *t,const char *d,struct item_t r){
size_t len;
title=(char *)malloc((len=strlen(t)));
strncpy(title,t,len);
desc=(char *)malloc((len=strlen(d)));
strncpy(desc,d,len);
- reward=r;
+ memcpy(&reward,&r,sizeof(struct item_t));
}
Quest::~Quest(){
free(title);
free(desc);
- reward=0;
+ memset(&reward,0,sizeof(struct item_t));
}
int QuestHandler::assign(const char *t){
@@ -46,14 +47,14 @@ int QuestHandler::drop(const char *t){ return -1;
}
-int QuestHandler::finish(const char *t){
+int QuestHandler::finish(const char *t,void *completer){
unsigned char i;
unsigned int r;
for(i=0;i<current.size();i++){
if(!strcmp(current[i]->title,t)){
- r=current[i]->reward;
+ ((Entity *)completer)->inv->addItem(current[i]->reward.id,current[i]->reward.count);
current.erase(current.begin()+i);
- return r;
+ return 0;
}
}
return -1;
diff --git a/src/entities.cpp b/src/entities.cpp index 429e3e5..64c8cb7 100644 --- a/src/entities.cpp +++ b/src/entities.cpp @@ -126,6 +126,7 @@ Player::Player(){ //sets all of the player specific traits on object creation ground = false; near = true; texture = loadTexture("assets/player.png"); + inv = new Inventory(PLAYER_INV_SIZE); } void Player::interact(){ //the function that will cause the player to search for things to interact with @@ -142,6 +143,7 @@ NPC::NPC(){ //sets all of the NPC specific traits on object creation canMove = true; near = false; texture = loadTexture("assets/NPC.png"); + inv = new Inventory(NPC_INV_SIZE); } void NPC::addAIFunc(int (*func)(NPC *)){ diff --git a/src/gameplay.cpp b/src/gameplay.cpp index ad44eb2..9331828 100644 --- a/src/gameplay.cpp +++ b/src/gameplay.cpp @@ -18,7 +18,7 @@ int giveTestQuest(NPC *speaker){ int compTestQuest(NPC *speaker){ if(player->qh.hasQuest("Test")){ ui::dialogBox(speaker->name,"Ooo, that's a nice quest you got there. Lemme finish that for you ;)."); - player->qh.finish("Test"); + player->qh.finish("Test",player); return 0; }else{ ui::dialogBox(speaker->name,"You need to get a quest from %s first.",entity[1]->name); @@ -56,6 +56,7 @@ void initEverything(void){ switch(i){ case 1: NPCp(entity[i])->addAIFunc(giveTestQuest); + entity[i]->inv->addItem(TEST_ITEM,3); break; case 2: NPCp(entity[i])->addAIFunc(compTestQuest); 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++; + } +} diff --git a/src/main.cpp b/src/main.cpp index f4e3943..9b16085 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -163,6 +163,9 @@ void render(){ glColor3ub(0,0,0); player->near=true; player->draw(); // Draw the player + player->inv->draw(); + + ui::draw(); // Draw any UI elements if they need to be if(ui::debug){ static unsigned int debugDiv=0; @@ -180,8 +183,6 @@ void render(){ fps,d,player->ground,SCREEN_WIDTH,SCREEN_HEIGHT,entity.size(),player->loc.x,rndy,player->qh.current.size()); } - ui::draw(); // Draw any UI elements if they need to be - for(int i=0;i<=entity.size();i++){ //entity[i]->draw(); entity[i]->loc.x += entity[i]->vel.x * deltaTime; |