diff options
-rw-r--r-- | assets/NPC.png | bin | 535 -> 473 bytes | |||
-rw-r--r-- | assets/cat.png | bin | 402 -> 402 bytes | |||
-rw-r--r-- | assets/player/playerk.png | bin | 473 -> 421 bytes | |||
-rw-r--r-- | assets/rabbit.png | bin | 296 -> 257 bytes | |||
-rw-r--r-- | assets/rabbit1.png | bin | 341 -> 295 bytes | |||
-rw-r--r-- | assets/robin.png | bin | 316 -> 287 bytes | |||
-rw-r--r-- | assets/style/classic/brazzier.png | bin | 282 -> 235 bytes | |||
-rw-r--r-- | assets/style/classic/door.png | bin | 289 -> 227 bytes | |||
-rw-r--r-- | assets/style/classic/fountain1.png | bin | 524 -> 401 bytes | |||
-rw-r--r-- | assets/style/classic/house1.png | bin | 749 -> 598 bytes | |||
-rw-r--r-- | assets/style/classic/house2.png | bin | 747 -> 610 bytes | |||
-rw-r--r-- | assets/style/classic/lampPost1.png | bin | 309 -> 275 bytes | |||
-rw-r--r-- | assets/style/classic/stall.png | bin | 739 -> 556 bytes | |||
-rw-r--r-- | assets/style/classic/stallFruit.png | bin | 635 -> 474 bytes | |||
-rw-r--r-- | assets/style/classic/townhall.png | bin | 802 -> 480 bytes | |||
-rw-r--r-- | brice.dat | 4 | ||||
-rw-r--r-- | src/entities.cpp | 21 | ||||
-rw-r--r-- | src/ui_menu.cpp | 173 | ||||
-rw-r--r-- | xml/playerSpawnHill1.xml | 9 |
19 files changed, 130 insertions, 77 deletions
diff --git a/assets/NPC.png b/assets/NPC.png Binary files differindex 2317ade..fdebfa9 100644 --- a/assets/NPC.png +++ b/assets/NPC.png diff --git a/assets/cat.png b/assets/cat.png Binary files differindex 5c0d881..56821dd 100644 --- a/assets/cat.png +++ b/assets/cat.png diff --git a/assets/player/playerk.png b/assets/player/playerk.png Binary files differindex 7abf012..ea0a7ab 100644 --- a/assets/player/playerk.png +++ b/assets/player/playerk.png diff --git a/assets/rabbit.png b/assets/rabbit.png Binary files differindex 6f35e9d..2920c0b 100644 --- a/assets/rabbit.png +++ b/assets/rabbit.png diff --git a/assets/rabbit1.png b/assets/rabbit1.png Binary files differindex 6f32c96..53092f8 100644 --- a/assets/rabbit1.png +++ b/assets/rabbit1.png diff --git a/assets/robin.png b/assets/robin.png Binary files differindex 9fefa47..86deb81 100644 --- a/assets/robin.png +++ b/assets/robin.png diff --git a/assets/style/classic/brazzier.png b/assets/style/classic/brazzier.png Binary files differindex e332599..ba19226 100644 --- a/assets/style/classic/brazzier.png +++ b/assets/style/classic/brazzier.png diff --git a/assets/style/classic/door.png b/assets/style/classic/door.png Binary files differindex 0142887..449e818 100644 --- a/assets/style/classic/door.png +++ b/assets/style/classic/door.png diff --git a/assets/style/classic/fountain1.png b/assets/style/classic/fountain1.png Binary files differindex 46f7c44..78b8f1f 100644 --- a/assets/style/classic/fountain1.png +++ b/assets/style/classic/fountain1.png diff --git a/assets/style/classic/house1.png b/assets/style/classic/house1.png Binary files differindex ce97a81..f5acc24 100644 --- a/assets/style/classic/house1.png +++ b/assets/style/classic/house1.png diff --git a/assets/style/classic/house2.png b/assets/style/classic/house2.png Binary files differindex 7404cd9..0a98170 100644 --- a/assets/style/classic/house2.png +++ b/assets/style/classic/house2.png diff --git a/assets/style/classic/lampPost1.png b/assets/style/classic/lampPost1.png Binary files differindex 24f1807..8106a4d 100644 --- a/assets/style/classic/lampPost1.png +++ b/assets/style/classic/lampPost1.png diff --git a/assets/style/classic/stall.png b/assets/style/classic/stall.png Binary files differindex f1718b2..d61bbac 100644 --- a/assets/style/classic/stall.png +++ b/assets/style/classic/stall.png diff --git a/assets/style/classic/stallFruit.png b/assets/style/classic/stallFruit.png Binary files differindex 5491de6..575fef7 100644 --- a/assets/style/classic/stallFruit.png +++ b/assets/style/classic/stallFruit.png diff --git a/assets/style/classic/townhall.png b/assets/style/classic/townhall.png Binary files differindex 7b510e8..c6cd416 100644 --- a/assets/style/classic/townhall.png +++ b/assets/style/classic/townhall.png @@ -1,5 +1,5 @@ 2 -canJump -0 canSprint 0 +canJump +0 diff --git a/src/entities.cpp b/src/entities.cpp index 5084fd6..14e1503 100644 --- a/src/entities.cpp +++ b/src/entities.cpp @@ -143,8 +143,6 @@ void Entity::setCooldown(unsigned int c) hitCooldown = c; } - - void Entity::handleHits(void) { hitCooldown = fmax(hitCooldown - game::time::getDeltaTime(), 0); @@ -203,6 +201,9 @@ Player::Player() : Entity() }); inv = new Inventory(PLAYER_INV_SIZE); + dim2 tmpDim = Texture::imageDim(tex.getTexturePath(0)); + width = HLINES(tmpDim.x/2); + height = HLINES(tmpDim.y/2); } Player::~Player() @@ -230,6 +231,10 @@ NPC::NPC() : Entity() randDialog = rand() % RAND_DIALOG_COUNT - 1; dialogIndex = 0; dialogCount = 0; + + dim2 tmpDim = Texture::imageDim(tex.getTexturePath(0)); + width = HLINES(tmpDim.x/2); + height = HLINES(tmpDim.y/2); } NPC::~NPC() @@ -261,6 +266,10 @@ Merchant::Merchant() : NPC() //randDialog = rand() % RAND_DIALOG_COUNT - 1; dialogIndex = 0; + + dim2 tmpDim = Texture::imageDim(tex.getTexturePath(0)); + width = HLINES(tmpDim.x/2); + height = HLINES(tmpDim.y/2); } Merchant::~Merchant() @@ -832,14 +841,14 @@ unsigned int Structures::spawn(BUILD_SUB sub, float x, float y) { case STALL_MARKET: tex = TextureIterator({ textureLoc }); dim = Texture::imageDim(textureLoc); - width = dim.x; - height = dim.y; + width = HLINES(dim.x/2); + height = HLINES(dim.y/2); break; default: tex = TextureIterator({ textureLoc }); dim = Texture::imageDim(textureLoc); - width = dim.x; - height = dim.y; + width = HLINES(dim.x/2); + height = HLINES(dim.y/2); inv = NULL; break; } diff --git a/src/ui_menu.cpp b/src/ui_menu.cpp index c9510c2..e766b61 100644 --- a/src/ui_menu.cpp +++ b/src/ui_menu.cpp @@ -106,6 +106,11 @@ namespace ui { SDL_Event e; + useShader(&textShader, + &textShader_uniform_texture, + &textShader_attribute_coord, + &textShader_attribute_tex); + setFontSize(24); game::config::update(); @@ -133,9 +138,24 @@ namespace ui { } } - //draw the dark transparent background + static GLuint backTex = Texture::genColor(Color(0, 0, 0, 204)); + //static GLuint bsTex = Texture::genColor(Color(30, 30, 30)); + static GLuint border = Texture::genColor(Color(245, 245, 245)); + + GLfloat line_tex[] = {0.0, 0.0, + 1.0, 0.0, + 1.0, 1.0, + 0.0, 1.0, + 0.0, 0.0}; + + //draw the dark transparent background glColor4f(0.0f, 0.0f, 0.0f, .8f); - glRectf(offset.x-SCREEN_WIDTH/2,-SCREEN_HEIGHT/2,offset.x+SCREEN_WIDTH/2,SCREEN_HEIGHT/2); + glUseProgram(textShader); + + glBindTexture(GL_TEXTURE_2D, backTex); + drawRect(vec2(offset.x - SCREEN_WIDTH / 2, offset.y - (SCREEN_HEIGHT / 2)), vec2(offset.x + SCREEN_WIDTH / 2, offset.y + (SCREEN_HEIGHT / 2))); + + glUseProgram(0); //loop through all elements of the menu for (auto &m : currentMenu->items) { @@ -143,11 +163,13 @@ namespace ui { if (m.member == 0 || m.member == -1 || m.member == -2) { //draw the button background - glColor3f(m.button.color.red,m.button.color.green,m.button.color.blue); - glRectf(offset.x+m.button.loc.x, - offset.y+m.button.loc.y, - offset.x+m.button.loc.x + m.button.dim.x, - offset.y+m.button.loc.y + m.button.dim.y); + GLuint bsTex = Texture::genColor(Color(m.button.color.red,m.button.color.green,m.button.color.blue)); + + glUseProgram(textShader); + glBindTexture(GL_TEXTURE_2D, bsTex); + + drawRect(vec2(offset.x + m.button.loc.x, offset.y + m.button.loc.y), + vec2(offset.x + m.button.loc.x + m.button.dim.x, offset.y + m.button.loc.y + m.button.dim.y)); //draw the button text putStringCentered(offset.x + m.button.loc.x + (m.button.dim.x/2), (offset.y + m.button.loc.y + (m.button.dim.y/2)) - ui::fontSize/2, @@ -158,15 +180,25 @@ namespace ui { if (mouse.y >= offset.y+m.button.loc.y && mouse.y <= offset.y+m.button.loc.y + m.button.dim.y) { //if the mouse if over the button, it draws this white outline - glColor3f(1.0f,1.0f,1.0f); - glBegin(GL_LINE_STRIP); - glVertex2f(offset.x+m.button.loc.x, offset.y+m.button.loc.y); - glVertex2f(offset.x+m.button.loc.x+m.button.dim.x, offset.y+m.button.loc.y); - glVertex2f(offset.x+m.button.loc.x+m.button.dim.x, offset.y+m.button.loc.y+m.button.dim.y); - glVertex2f(offset.x+m.button.loc.x, offset.y+m.button.loc.y+m.button.dim.y); - glVertex2f(offset.x+m.button.loc.x, offset.y+m.button.loc.y); - glEnd(); - + glBindTexture(GL_TEXTURE_2D, border); + + GLfloat verts[] = {offset.x+m.button.loc.x, offset.y+m.button.loc.y, 1.0, + offset.x+m.button.loc.x+m.button.dim.x, offset.y+m.button.loc.y, 1.0, + offset.x+m.button.loc.x+m.button.dim.x, offset.y+m.button.loc.y+m.button.dim.y, 1.0, + offset.x+m.button.loc.x, offset.y+m.button.loc.y+m.button.dim.y, 1.0, + offset.x+m.button.loc.x, offset.y+m.button.loc.y, 1.0}; + + glUseProgram(textShader); + glEnableVertexAttribArray(textShader_attribute_coord); + glEnableVertexAttribArray(textShader_attribute_tex); + + glVertexAttribPointer(textShader_attribute_coord, 3, GL_FLOAT, GL_FALSE, 0, verts); + glVertexAttribPointer(textShader_attribute_tex, 2, GL_FLOAT, GL_FALSE, 0, line_tex); + glDrawArrays(GL_LINE_STRIP, 0, 5); + + glDisableVertexAttribArray(textShader_attribute_coord); + glDisableVertexAttribArray(textShader_attribute_tex); + //if the mouse is over the button and clicks if (SDL_GetMouseState(NULL, NULL) & SDL_BUTTON(SDL_BUTTON_LEFT)) { switch(m.member) { @@ -206,27 +238,25 @@ namespace ui { m.slider.sliderLoc = m.slider.minValue + (*m.slider.var/m.slider.maxValue)*(m.slider.dim.x-sliderW); } //draw the background of the slider - glColor4f(m.slider.color.red,m.slider.color.green,m.slider.color.blue, .5f); - glRectf(offset.x+m.slider.loc.x, - offset.y+m.slider.loc.y, - offset.x+m.slider.loc.x + m.slider.dim.x, - offset.y+m.slider.loc.y + m.slider.dim.y); - - //draw the slider handle - glColor4f(m.slider.color.red,m.slider.color.green,m.slider.color.blue, 1.0f); - if (m.slider.dim.y > m.slider.dim.x) { - glRectf(offset.x+m.slider.loc.x, - offset.y+m.slider.loc.y + (m.slider.sliderLoc * 1.05), - offset.x+m.slider.loc.x + sliderW, - offset.y+m.slider.loc.y + (m.slider.sliderLoc * 1.05) + sliderH); + glUseProgram(textShader); + GLuint bsTex = Texture::genColor(Color(m.slider.color.red, m.slider.color.green, m.slider.color.blue, 175)); + GLuint hTex = Texture::genColor(Color(m.slider.color.red, m.slider.color.green, m.slider.color.blue, 255)); + + glBindTexture(GL_TEXTURE_2D, bsTex); + drawRect(vec2(offset.x + m.slider.loc.x, offset.y + m.slider.loc.y), + vec2(offset.x + m.slider.loc.x + m.slider.dim.x, offset.y + m.slider.loc.y + m.slider.dim.y)); + + //draw the slider handle + glBindTexture(GL_TEXTURE_2D, hTex); + if (m.slider.dim.y > m.slider.dim.x) { + drawRect(vec2(offset.x+m.slider.loc.x, offset.y+m.slider.loc.y + (m.slider.sliderLoc * 1.05)), + vec2(offset.x+m.slider.loc.x + sliderW, offset.y+m.slider.loc.y + (m.slider.sliderLoc * 1.05) + sliderH)); //draw the now combined slider text putStringCentered(offset.x + m.slider.loc.x + (m.slider.dim.x/2), (offset.y + m.slider.loc.y + (m.slider.dim.y*1.05)) - ui::fontSize/2, outSV); }else{ - glRectf(offset.x+m.slider.loc.x+m.slider.sliderLoc, - offset.y+m.slider.loc.y, - offset.x+m.slider.loc.x + m.slider.sliderLoc + sliderW, - offset.y+m.slider.loc.y + sliderH); + drawRect(vec2(offset.x+m.slider.loc.x+m.slider.sliderLoc, offset.y+m.slider.loc.y), + vec2(offset.x+m.slider.loc.x + m.slider.sliderLoc + sliderW, offset.y+m.slider.loc.y + sliderH)); //draw the now combined slider text putStringCentered(offset.x + m.slider.loc.x + (m.slider.dim.x/2), (offset.y + m.slider.loc.y + (m.slider.dim.y/2)) - ui::fontSize/2, outSV); @@ -236,31 +266,46 @@ namespace ui { if (mouse.y >= offset.y+m.slider.loc.y && mouse.y <= offset.y+m.slider.loc.y + m.slider.dim.y) { //if it is we draw a white border around it - glColor3f(1.0f,1.0f,1.0f); - glBegin(GL_LINE_STRIP); - glVertex2f(offset.x+m.slider.loc.x, offset.y+m.slider.loc.y); - glVertex2f(offset.x+m.slider.loc.x+m.slider.dim.x, offset.y+m.slider.loc.y); - glVertex2f(offset.x+m.slider.loc.x+m.slider.dim.x, offset.y+m.slider.loc.y+m.slider.dim.y); - glVertex2f(offset.x+m.slider.loc.x, offset.y+m.slider.loc.y+m.slider.dim.y); - glVertex2f(offset.x+m.slider.loc.x, offset.y+m.slider.loc.y); + glBindTexture(GL_TEXTURE_2D, border); + glUseProgram(textShader); + + glEnableVertexAttribArray(textShader_attribute_coord); + glEnableVertexAttribArray(textShader_attribute_tex); + + GLfloat box_border[] = {offset.x+m.slider.loc.x, offset.y+m.slider.loc.y, 1.0, + offset.x+m.slider.loc.x+m.slider.dim.x, offset.y+m.slider.loc.y, 1.0, + offset.x+m.slider.loc.x+m.slider.dim.x, offset.y+m.slider.loc.y+m.slider.dim.y, 1.0, + offset.x+m.slider.loc.x, offset.y+m.slider.loc.y+m.slider.dim.y, 1.0, + offset.x+m.slider.loc.x, offset.y+m.slider.loc.y, 1.0}; + + glVertexAttribPointer(textShader_attribute_coord, 3, GL_FLOAT, GL_FALSE, 0, box_border); + glVertexAttribPointer(textShader_attribute_tex, 2, GL_FLOAT, GL_FALSE, 0, line_tex); + glDrawArrays(GL_LINE_STRIP, 0, 5); + if (m.slider.dim.y > m.slider.dim.x) { + //and a border around the slider handle + GLfloat handle_border[] = {offset.x+m.slider.loc.x, static_cast<GLfloat>(offset.y+m.slider.loc.y + (m.slider.sliderLoc * 1.05)), 1.0, + offset.x+m.slider.loc.x + sliderW, static_cast<GLfloat>(offset.y+m.slider.loc.y + (m.slider.sliderLoc * 1.05)), 1.0, + offset.x+m.slider.loc.x + sliderW, static_cast<GLfloat>(offset.y+m.slider.loc.y + (m.slider.sliderLoc * 1.05) + sliderH), 1.0, + offset.x+m.slider.loc.x, static_cast<GLfloat>(offset.y+m.slider.loc.y + (m.slider.sliderLoc * 1.05) + sliderH), 1.0, + offset.x+m.slider.loc.x, static_cast<GLfloat>(offset.y+m.slider.loc.y + (m.slider.sliderLoc * 1.05)), 1.0}; + glVertexAttribPointer(textShader_attribute_coord, 3, GL_FLOAT, GL_FALSE, 0, handle_border); + glVertexAttribPointer(textShader_attribute_tex, 2, GL_FLOAT, GL_FALSE, 0, line_tex); + glDrawArrays(GL_LINE_STRIP, 0, 5); + }else{ + //and a border around the slider handle + GLfloat handle_border[] = {offset.x+m.slider.loc.x + m.slider.sliderLoc, offset.y+m.slider.loc.y, 1.0, + offset.x+m.slider.loc.x + (m.slider.sliderLoc + sliderW), offset.y+m.slider.loc.y, 1.0, + offset.x+m.slider.loc.x + (m.slider.sliderLoc + sliderW), offset.y+m.slider.loc.y+m.slider.dim.y,1.0, + offset.x+m.slider.loc.x + m.slider.sliderLoc, offset.y+m.slider.loc.y+m.slider.dim.y, 1.0, + offset.x+m.slider.loc.x + m.slider.sliderLoc, offset.y+m.slider.loc.y, 1.0}; + glVertexAttribPointer(textShader_attribute_coord, 3, GL_FLOAT, GL_FALSE, 0, handle_border); + glVertexAttribPointer(textShader_attribute_tex, 2, GL_FLOAT, GL_FALSE, 0, line_tex); + glDrawArrays(GL_LINE_STRIP, 0, 5); + } - if (m.slider.dim.y > m.slider.dim.x) { - //and a border around the slider handle - glVertex2f(offset.x+m.slider.loc.x, offset.y+m.slider.loc.y + (m.slider.sliderLoc * 1.05)); - glVertex2f(offset.x+m.slider.loc.x + sliderW, offset.y+m.slider.loc.y + (m.slider.sliderLoc * 1.05)); - glVertex2f(offset.x+m.slider.loc.x + sliderW, offset.y+m.slider.loc.y + (m.slider.sliderLoc * 1.05) + sliderH); - glVertex2f(offset.x+m.slider.loc.x, offset.y+m.slider.loc.y + (m.slider.sliderLoc * 1.05) + sliderH); - glVertex2f(offset.x+m.slider.loc.x, offset.y+m.slider.loc.y + (m.slider.sliderLoc * 1.05)); - }else{ - //and a border around the slider handle - glVertex2f(offset.x+m.slider.loc.x + m.slider.sliderLoc, offset.y+m.slider.loc.y); - glVertex2f(offset.x+m.slider.loc.x + (m.slider.sliderLoc + sliderW), offset.y+m.slider.loc.y); - glVertex2f(offset.x+m.slider.loc.x + (m.slider.sliderLoc + sliderW), offset.y+m.slider.loc.y+m.slider.dim.y); - glVertex2f(offset.x+m.slider.loc.x + m.slider.sliderLoc, offset.y+m.slider.loc.y+m.slider.dim.y); - glVertex2f(offset.x+m.slider.loc.x + m.slider.sliderLoc, offset.y+m.slider.loc.y); - } - glEnd(); + glDisableVertexAttribArray(textShader_attribute_coord); + glDisableVertexAttribArray(textShader_attribute_tex); //if we are inside the slider and click it will set the slider to that point if (SDL_GetMouseState(NULL, NULL) & SDL_BUTTON(SDL_BUTTON_LEFT)) { @@ -268,20 +313,16 @@ namespace ui { if (m.slider.dim.y > m.slider.dim.x) { *m.slider.var = (((mouse.y-offset.y) - m.slider.loc.y)/m.slider.dim.y)*100; //draw a white box over the handle - glColor3f(1.0f,1.0f,1.0f); - glRectf(offset.x+m.slider.loc.x, - offset.y+m.slider.loc.y + (m.slider.sliderLoc * 1.05), - offset.x+m.slider.loc.x + sliderW, - offset.y+m.slider.loc.y + (m.slider.sliderLoc * 1.05) + sliderH); + glBindTexture(GL_TEXTURE_2D, border); + drawRect(vec2(offset.x+m.slider.loc.x, offset.y+m.slider.loc.y + (m.slider.sliderLoc * 1.05)), + vec2(offset.x+m.slider.loc.x + sliderW, offset.y+m.slider.loc.y + (m.slider.sliderLoc * 1.05) + sliderH)); }else{ *m.slider.var = (((mouse.x-offset.x) - m.slider.loc.x)/m.slider.dim.x)*100; //draw a white box over the handle - glColor3f(1.0f,1.0f,1.0f); - glRectf(offset.x+m.slider.loc.x + m.slider.sliderLoc, - offset.y+m.slider.loc.y, - offset.x+m.slider.loc.x + (m.slider.sliderLoc + sliderW), - offset.y+m.slider.loc.y + m.slider.dim.y); + glBindTexture(GL_TEXTURE_2D, border); + drawRect(vec2(offset.x+m.slider.loc.x + m.slider.sliderLoc, offset.y+m.slider.loc.y), + vec2(offset.x+m.slider.loc.x + (m.slider.sliderLoc + sliderW), offset.y+m.slider.loc.y + m.slider.dim.y)); } } diff --git a/xml/playerSpawnHill1.xml b/xml/playerSpawnHill1.xml index 3a831ce..d886df8 100644 --- a/xml/playerSpawnHill1.xml +++ b/xml/playerSpawnHill1.xml @@ -19,7 +19,7 @@ <page x="-200" id="assets/pages/gootaGoFast.png" cid="canSprint" cvalue="1"/> - <village name="Swagville U.S.A."> + <village name="Big Dave's bagel emporium! The greatest place on earth!"> <structure type="0" x="-300" inside="playerSpawnHill1_Building1.xml"/> <structure type="5" x="-500" /> <stall type="market" texture="assets/style/classic/stall.png"> @@ -71,13 +71,16 @@ And it wasn't stormy. </text> <text id="1" nextid="1" pause="true" > - Broooooooooooooo... + Broooooooooooooo... </text> </Dialog> <Dialog name="Big Dave"> <text id="0" pause="true"> - Hey friend! It's dangerous out there, here take these! + Hey friend! It's dangerous out there, here take these! + + + Wait, promise you'll stop by my stand in the local market! <give id="Wood Sword" count="1"/> <give id="Hunters Bow" count="1"/> <give id="Crude Arrow" count="110"/> |