From e21db32169966b983e09b53801ee1a6d3101e57e Mon Sep 17 00:00:00 2001 From: drumsetmonkey Date: Mon, 30 Nov 2015 07:29:39 -0500 Subject: Look at my fancy inventory --- src/Makefile | 2 +- src/Quest.cpp | 11 +--- src/Texture.cpp | 2 +- src/common.cpp | 26 ++++++++ src/entities.cpp | 18 +++--- src/gameplay.cpp | 7 ++ src/inventory.cpp | 187 +++++++++++++++++++++++++++++++++--------------------- src/ui.cpp | 13 ++-- 8 files changed, 164 insertions(+), 102 deletions(-) (limited to 'src') diff --git a/src/Makefile b/src/Makefile index f40ab90..03652fc 100644 --- a/src/Makefile +++ b/src/Makefile @@ -1,4 +1,4 @@ -LIBS = -lGL -lSDL2 -lSDL2_image -lSDL2_mixer -lfreetype +LIBS = -lpthread -lGL -lSDL2 -lSDL2_image -lSDL2_mixer -lfreetype FLAGS = -std=c++11 -I../include -I../include/freetype2 diff --git a/src/Quest.cpp b/src/Quest.cpp index 5fd7726..6789a05 100644 --- a/src/Quest.cpp +++ b/src/Quest.cpp @@ -14,15 +14,6 @@ const Quest QuestList[TOTAL_QUESTS]={ }; -// Trust nobody -#define STRLEN_MIN 16 - -unsigned int safe_strlen(const char *s){ - unsigned int size=0; - while(s[size])size++; - if(sizeinv->addItem(current[i]->reward.itmid,current[i]->reward.count); + ((Entity *)completer)->inv->addItem(current[i]->reward.id,current[i]->reward.count); current.erase(current.begin()+i); #ifdef DEBUG DEBUG_printf("QuestHandler now has %u active quests.\n",current.size()); diff --git a/src/Texture.cpp b/src/Texture.cpp index b17d204..82baa71 100644 --- a/src/Texture.cpp +++ b/src/Texture.cpp @@ -54,7 +54,7 @@ namespace Texture{ SDL_FreeSurface(image); // Free the surface LoadedTexture[LoadedTextureCounter] = (struct texture_t *)malloc(sizeof(struct texture_t)); - LoadedTexture[LoadedTextureCounter]->name = (char *)malloc(strlen(fileName)); + LoadedTexture[LoadedTextureCounter]->name = (char *)malloc(safe_strlen(fileName)); LoadedTexture[LoadedTextureCounter]->tex = object; strcpy(LoadedTexture[LoadedTextureCounter]->name,fileName); LoadedTextureCounter++; diff --git a/src/common.cpp b/src/common.cpp index a8a964e..f3c3999 100644 --- a/src/common.cpp +++ b/src/common.cpp @@ -32,3 +32,29 @@ void safeSetColorA(int r,int g,int b,int a){ if(a<0)a=0; glColor4ub(r,g,b,a); } + +//only trust the NSA +#define STRLEN_MIN 32 + +unsigned int safe_strlen(const char *s){ + unsigned int size=0; + while(s[size])size++; + if(sizealive = false; - player->inv->addItem((ITEM_ID)(identifier), (char)1); - } + do{ + if(ui::dialogOptChosen == 1 && this->alive == true){ + player->inv->addItem((ITEM_ID)(identifier), (char)1); + this->alive = false; + } + }while(ui::dialogBoxExists); }else{ this->alive = false; player->inv->addItem((ITEM_ID)(identifier), (char)1); diff --git a/src/gameplay.cpp b/src/gameplay.cpp index 52aceb8..6e85b6d 100644 --- a/src/gameplay.cpp +++ b/src/gameplay.cpp @@ -162,6 +162,13 @@ void initEverything(void){ currentWorld->addObject(SWORD_WOOD, false, NULL, 500,200); currentWorld->addObject(FLASHLIGHT, true, "This looks important, do you want to pick it up?",600,200); + + /*currentWorld->addObject(DEBUG_ITEM, 500,200); + currentWorld->addObject(TEST_ITEM, 550,200); + currentWorld->addObject(PLAYER_BAG, 600,200); + currentWorld->addObject(SWORD_WOOD, 650,200); + currentWorld->addObject(FLASHLIGHT, true, "This looks important, do you want to pick it up?",700,200); + */ /* * Link all the entities that were just created to the initial world, and setup a test AI function. */ diff --git a/src/inventory.cpp b/src/inventory.cpp index edc88ff..2547760 100644 --- a/src/inventory.cpp +++ b/src/inventory.cpp @@ -7,26 +7,12 @@ 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;idfp(numSlot); + static std::vectoriray(numSlot); + static std::vectorcurCoord(numSlot); + static int range = 200; + float angleB = (float)180/(float)numSlot; + float angle = float(angleB/2.0f); + unsigned int a = 0; + unsigned int end = 0; + for(auto &r : iray){ + r.start = player->loc; + curCoord[a] = r.start; + //dfp[a] = 0; + a++; + }a=0; + if(invOpening){ + end = 0; + for(auto &d : dfp){ + if(a != 0){ + if(dfp[a-1]>25)d+=25; + }else{ + d += 25; + } + if(d >= range) + d = range; + a++; + }a=0; + if(end < numSlot)invOpen=true; + }else if(!invOpening){ + for(auto &d : dfp){ + if(d > 0){ + if(a != 0){ + //d-=25; + if(dfp[a-1]+25= numSlot)invOpen=false; + } + if(invOpen){ + for(auto &r : iray){ + angle=180-(angleB*a) - angleB/2.0f; + curCoord[a].x += float((dfp[a]) * cos(angle*PI/180)); + curCoord[a].y += float((dfp[a]) * sin(angle*PI/180)); + r.end = curCoord[a]; + + item[inv[i].id].tex->bind(0); + glColor4f(1.0f, 1.0f, 1.0f, (float)dfp[a]/(float)range); + glBegin(GL_QUADS); + glTexCoord2i(0,1);glVertex2i(r.end.x, r.end.y); + glTexCoord2i(1,1);glVertex2i(r.end.x+45, r.end.y); + glTexCoord2i(1,0);glVertex2i(r.end.x+45, r.end.y+45); + glTexCoord2i(0,0);glVertex2i(r.end.x, r.end.y+45); + glEnd(); + a++; + } + } + + + /*else if(!invOpen){ + for(auto &d : dfp){ + d = 0; + } glEnable(GL_TEXTURE_2D); - glBindTexture(GL_TEXTURE_2D,ITEM_TEX[item[i].id]); - if(sel==i)glColor3ub(255,0,255); - else glColor3ub(255,255,255); + glBindTexture(GL_TEXTURE_2D, invUI); glBegin(GL_QUADS); - glTexCoord2i(0,1);glVertex2i(xoff ,y); - glTexCoord2i(1,1);glVertex2i(xoff+HLINE*10,y); - glTexCoord2i(1,0);glVertex2i(xoff+HLINE*10,y+HLINE*10); - glTexCoord2i(0,0);glVertex2i(xoff ,y+HLINE*10); + glTexCoord2i(0,1);glVertex2i(offset.x-SCREEN_WIDTH/2, 0); + glTexCoord2i(1,1);glVertex2i(offset.x-SCREEN_WIDTH/2+261, 0); + glTexCoord2i(1,0);glVertex2i(offset.x-SCREEN_WIDTH/2+261, 57); + glTexCoord2i(0,0);glVertex2i(offset.x-SCREEN_WIDTH/2, 57); glEnd(); - y-=ui::fontSize*1.15; - ui::putText(offset.x-SCREEN_WIDTH/2,y,"%s",item[i].name); glDisable(GL_TEXTURE_2D); - i++; - } - if(item[sel].count)itemDraw(player,item[sel].id); + while(i 0 && i<5){ + y = 6; + xoff = (offset.x - (SCREEN_WIDTH /2)) + (51*i) + 6; + glEnable(GL_TEXTURE_2D); + item[inv[i].id].tex->bind(0); + if(sel==i)glColor3ub(255,0,255); + else glColor3ub(255,255,255); + glBegin(GL_QUADS); + glTexCoord2i(0,1);glVertex2i(xoff, y); + glTexCoord2i(1,1);glVertex2i(xoff+45, y); + glTexCoord2i(1,0);glVertex2i(xoff+45, y+45); + glTexCoord2i(0,0);glVertex2i(xoff, y+45); + glEnd(); + glDisable(GL_TEXTURE_2D); + i++; + } + }*/ + if(inv[sel].count)itemDraw(player,inv[sel].id); } static vec2 item_coord = {0,0}; @@ -126,7 +166,7 @@ void itemDraw(Player *p,ITEM_ID id){ static vec2 p1,p2; if(!id)return; glEnable(GL_TEXTURE_2D); - glBindTexture(GL_TEXTURE_2D,ITEM_TEX[id-1]); + item[id].tex->bind(0); if(!yes){ p1 = {p->loc.x+p->width/2, p->loc.y+p->width/2+HLINE*3}; @@ -134,23 +174,24 @@ void itemDraw(Player *p,ITEM_ID id){ p->loc.y+HLINE*3}; } if(p->inv->tossd) yes=true; + glColor4ub(255,255,255,255); 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); + glTexCoord2i(1,1);glVertex2f(item_coord.x+item[id].width+p->loc.x, item_coord.y+p->loc.y); + glTexCoord2i(1,0);glVertex2f(item_coord.x+item[id].width+p->loc.x, item_coord.y+item[id].height+p->loc.y); + glTexCoord2i(0,0);glVertex2f(item_coord.x+p->loc.x, item_coord.y+item[id].height+p->loc.y); glEnd(); glDisable(GL_TEXTURE_2D); } int Inventory::useItem(void){ - ITEM_ID id = item[sel].id; + ITEM_ID id = item[inv[sel].id].id; switch(id){ - case SWORD_WOOD: - + case FLASHLIGHT: + player->light ^= true; break; default: - ui::dialogBox(item[id].name,NULL,"You cannot use this item."); + //ui::dialogBox(item[id].name,NULL,"You cannot use this item."); break; } return 0; diff --git a/src/ui.cpp b/src/ui.cpp index 21df830..790248b 100644 --- a/src/ui.cpp +++ b/src/ui.cpp @@ -527,7 +527,7 @@ DONE: KEYDOWN */ case SDL_KEYDOWN: - if(SDL_KEY==SDLK_ESCAPE)gameRunning=false; // Exit the game with ESC + if(SDL_KEY==SDLK_ESCAPE)gameRunning=false; // Exit the game with ESC if(!dialogBoxExists&&!fadeEnable){ if(SDL_KEY==SDLK_a){ // Move left left=true; @@ -583,17 +583,12 @@ DONE: if(SDL_KEY==SDLK_q){ player->inv->itemToss(); } - if(SDL_KEY==SDLK_e){ - player->inv->useItem(); - } if(SDL_KEY==SDLK_LSHIFT)player->speed = debug?4:3; // Sprint if(SDL_KEY==SDLK_LCTRL)player->speed = .5; } if(SDL_KEY==SDLK_p)toggleBlack(); if(SDL_KEY==SDLK_F3)debug^=true; if(SDL_KEY==SDLK_b & SDL_KEY==SDLK_F3)posFlag^=true; - if(SDL_KEY==SDLK_UP)handAngle++; - if(SDL_KEY==SDLK_DOWN)handAngle--; break; /* KEYUP @@ -606,9 +601,9 @@ DONE: if(SDL_KEY==SDLK_LCTRL)player->speed = 1; if(SDL_KEY==SDLK_h)player->health-=5; if(SDL_KEY==SDLK_f)player->light ^= true; - if(SDL_KEY==SDLK_UP)handAngle+=0; - if(SDL_KEY==SDLK_DOWN)handAngle-=0; - + if(SDL_KEY==SDLK_e)player->inv->invOpening ^= true; + if(SDL_KEY==SDLK_RIGHT){player->inv->sel+=1;} + if(SDL_KEY==SDLK_LEFT){if(player->inv->sel!=0)player->inv->sel-=1;} break; default: break; -- cgit v1.2.3