From 00f633afb62ed6914205639b44dcdaf839a2c2f7 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Mon, 27 Jun 2016 21:06:31 -0400 Subject: redid trees, fixed indoors? --- Changelog | 9 +++++ assets/style/classic/bg/forestTileBack.png | Bin 15086 -> 20973 bytes assets/style/classic/bg/forestTileFar.png | Bin 28260 -> 23788 bytes assets/style/classic/bg/forestTileFront.png | Bin 5703 -> 17530 bytes assets/style/classic/bg/forestTileMid.png | Bin 37280 -> 19778 bytes include/entities.hpp | 2 +- include/texture.hpp | 4 +- include/world.hpp | 1 + src/entities.cpp | 8 ++++ src/texture.cpp | 7 ++-- src/world.cpp | 57 ++++++++++++++-------------- xcf/goodForestTileBack.xcf | Bin 0 -> 154675 bytes xcf/goodForestTileFar.xcf | Bin 0 -> 204247 bytes xcf/goodForestTileFront.xcf | Bin 0 -> 149663 bytes xcf/goodForestTileMid.xcf | Bin 0 -> 154179 bytes xcf/goodtree1.xcf | Bin 55512 -> 55512 bytes xcf/goodtree2.xcf | Bin 0 -> 64847 bytes xcf/goodtree3.xcf | Bin 0 -> 25861 bytes xml/playerSpawnHill1.xml | 6 +-- xml/playerSpawnHill1_Building1.xml | 6 +-- xml/town.xml | 12 +++--- 21 files changed, 65 insertions(+), 47 deletions(-) create mode 100644 xcf/goodForestTileBack.xcf create mode 100644 xcf/goodForestTileFar.xcf create mode 100644 xcf/goodForestTileFront.xcf create mode 100644 xcf/goodForestTileMid.xcf create mode 100644 xcf/goodtree2.xcf create mode 100644 xcf/goodtree3.xcf diff --git a/Changelog b/Changelog index d0c136a..ee05b85 100644 --- a/Changelog +++ b/Changelog @@ -1062,3 +1062,12 @@ - item rendering stuff "I'm also trying to make it so that other entities can use items.. if that makes sense." - Andy + +Late June (6/16/2016 - 6/27/2016) +================================= + + - urging need of decent graphics + - waiting for player sprites + - redid forest trees, mountains, houses + - fixed major issue with entering structures + - exploring more ideas for soundtracks diff --git a/assets/style/classic/bg/forestTileBack.png b/assets/style/classic/bg/forestTileBack.png index f43346c..c3a7daf 100644 Binary files a/assets/style/classic/bg/forestTileBack.png and b/assets/style/classic/bg/forestTileBack.png differ diff --git a/assets/style/classic/bg/forestTileFar.png b/assets/style/classic/bg/forestTileFar.png index b7cb140..1302130 100644 Binary files a/assets/style/classic/bg/forestTileFar.png and b/assets/style/classic/bg/forestTileFar.png differ diff --git a/assets/style/classic/bg/forestTileFront.png b/assets/style/classic/bg/forestTileFront.png index 1f5abb2..5b2d250 100644 Binary files a/assets/style/classic/bg/forestTileFront.png and b/assets/style/classic/bg/forestTileFront.png differ diff --git a/assets/style/classic/bg/forestTileMid.png b/assets/style/classic/bg/forestTileMid.png index 6c4c597..152af65 100644 Binary files a/assets/style/classic/bg/forestTileMid.png and b/assets/style/classic/bg/forestTileMid.png differ diff --git a/include/entities.hpp b/include/entities.hpp index 2523364..76b6fa8 100644 --- a/include/entities.hpp +++ b/include/entities.hpp @@ -325,7 +325,7 @@ public: class Structures : public Entity { public: BUILD_SUB bsubtype; - World *inWorld; + World *inWorld, *insideWorld; std::string inside; std::string textureLoc; diff --git a/include/texture.hpp b/include/texture.hpp index 0ee3e2c..c301af1 100644 --- a/include/texture.hpp +++ b/include/texture.hpp @@ -47,9 +47,9 @@ public: position = std::begin(textures); } TextureIterator(const std::vector &l) { - for (const auto &s : l) { + for (const auto &s : l) textures.emplace_back(Texture::loadTexture(s), s); - } + position = std::begin(textures); } void operator++(int) noexcept { diff --git a/include/world.hpp b/include/world.hpp index 34a597d..6a97daa 100644 --- a/include/world.hpp +++ b/include/world.hpp @@ -566,6 +566,7 @@ World *loadWorldFromXML(std::string path); * previous world if one was loaded. */ World *loadWorldFromXMLNoSave(std::string path); +World *loadWorldFromXMLNoTakeover(std::string path); /** * Loads a world using a pointer to the current world (used for loading adjacent diff --git a/src/entities.cpp b/src/entities.cpp index 60f49ee..e156ee2 100644 --- a/src/entities.cpp +++ b/src/entities.cpp @@ -320,6 +320,8 @@ Structures::~Structures() { } +extern std::string currentXMLRaw; + void Structures::createFromXML(XMLElement *e, World *w) { float spawnx; @@ -331,6 +333,12 @@ void Structures::createFromXML(XMLElement *e, World *w) inWorld = w; inside = e->StrAttribute("inside"); + + // edge + if (!inside.empty()) { + insideWorld = loadWorldFromXMLNoTakeover(inside); + } + textureLoc = e->StrAttribute("texture"); spawn(static_cast(e->UnsignedAttribute("type")), diff --git a/src/texture.cpp b/src/texture.cpp index 0f01c83..bdac28e 100644 --- a/src/texture.cpp +++ b/src/texture.cpp @@ -46,7 +46,7 @@ namespace Texture{ GLuint loadTexture(std::string fileName) { SDL_Surface *image; - GLuint object = 0; + static GLuint object = 0; // check if texture is already loaded for(auto &t : LoadedTexture) { @@ -71,9 +71,8 @@ namespace Texture{ /* * Load texture through OpenGL. */ - - glGenTextures(1,&object); // Turns "object" into a texture - glBindTexture(GL_TEXTURE_2D,object); // Binds "object" to the top of the stack + //glGenTextures(1,&object); // Turns "object" into a texture + glBindTexture(GL_TEXTURE_2D,++object); // Binds "object" to the top of the stack glPixelStoref(GL_UNPACK_ALIGNMENT,1); glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST); // Sets the "min" filter diff --git a/src/world.cpp b/src/world.cpp index 08c788b..8969fb9 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -125,7 +125,7 @@ static const float bgDraw[4][3]={ { 255, 255, 0.1 } }; -static std::string currentXMLRaw; +std::string currentXMLRaw; XMLDocument currentXMLDoc; /* ---------------------------------------------------------------------------- @@ -654,35 +654,22 @@ void World::draw(Player *p) // actually draw the grass. if (wd.groundHeight) { - //glBegin(GL_QUADS); - /*glTexCoord2i(0, 0); glVertex2i(worldStart + i * HLINE , wd.groundHeight + gh[0]); - glTexCoord2i(1, 0); glVertex2i(worldStart + i * HLINE + HLINE / 2, wd.groundHeight + gh[0]); - glTexCoord2i(1, 1); glVertex2i(worldStart + i * HLINE + HLINE / 2, wd.groundHeight - GRASS_HEIGHT); - glTexCoord2i(0, 1); glVertex2i(worldStart + i * HLINE , wd.groundHeight - GRASS_HEIGHT); + c.push_back(std::make_pair(vec2(0, 0),vec3(worldStart + HLINES(i) , wd.groundHeight + gh[0], -3))); + c.push_back(std::make_pair(vec2(1, 0),vec3(worldStart + HLINES(i) + HLINE / 2, wd.groundHeight + gh[0], -3))); + c.push_back(std::make_pair(vec2(1, 1),vec3(worldStart + HLINES(i) + HLINE / 2, wd.groundHeight - GRASS_HEIGHT, -3))); - glTexCoord2i(0, 0); glVertex2i(worldStart + i * HLINE + HLINE / 2, wd.groundHeight + gh[1]); - glTexCoord2i(1, 0); glVertex2i(worldStart + i * HLINE + HLINE , wd.groundHeight + gh[1]); - glTexCoord2i(1, 1); glVertex2i(worldStart + i * HLINE + HLINE , wd.groundHeight - GRASS_HEIGHT); - glTexCoord2i(0, 1); glVertex2i(worldStart + i * HLINE + HLINE / 2, wd.groundHeight - GRASS_HEIGHT);*/ + c.push_back(std::make_pair(vec2(1, 1),vec3(worldStart + HLINES(i) + HLINE / 2, wd.groundHeight - GRASS_HEIGHT, -3))); + c.push_back(std::make_pair(vec2(0, 1),vec3(worldStart + HLINES(i) , wd.groundHeight - GRASS_HEIGHT, -3))); + c.push_back(std::make_pair(vec2(0, 0),vec3(worldStart + HLINES(i) , wd.groundHeight + gh[0], -3))); - c.push_back(std::make_pair(vec2(0, 0),vec3(worldStart + HLINES(i) , wd.groundHeight + gh[0], -3))); - c.push_back(std::make_pair(vec2(1, 0),vec3(worldStart + HLINES(i) + HLINE / 2, wd.groundHeight + gh[0], -3))); - c.push_back(std::make_pair(vec2(1, 1),vec3(worldStart + HLINES(i) + HLINE / 2, wd.groundHeight - GRASS_HEIGHT, -3))); - c.push_back(std::make_pair(vec2(1, 1),vec3(worldStart + HLINES(i) + HLINE / 2, wd.groundHeight - GRASS_HEIGHT, -3))); - c.push_back(std::make_pair(vec2(0, 1),vec3(worldStart + HLINES(i) , wd.groundHeight - GRASS_HEIGHT, -3))); - c.push_back(std::make_pair(vec2(0, 0),vec3(worldStart + HLINES(i) , wd.groundHeight + gh[0], -3))); + c.push_back(std::make_pair(vec2(0, 0),vec3(worldStart + HLINES(i) + HLINE / 2, wd.groundHeight + gh[1], -3))); + c.push_back(std::make_pair(vec2(1, 0),vec3(worldStart + HLINES(i) + HLINE , wd.groundHeight + gh[1], -3))); + c.push_back(std::make_pair(vec2(1, 1),vec3(worldStart + HLINES(i) + HLINE , wd.groundHeight - GRASS_HEIGHT, -3))); - - c.push_back(std::make_pair(vec2(0, 0),vec3(worldStart + HLINES(i) + HLINE / 2, wd.groundHeight + gh[1], -3))); - c.push_back(std::make_pair(vec2(1, 0),vec3(worldStart + HLINES(i) + HLINE , wd.groundHeight + gh[1], -3))); - c.push_back(std::make_pair(vec2(1, 1),vec3(worldStart + HLINES(i) + HLINE , wd.groundHeight - GRASS_HEIGHT, -3))); - - c.push_back(std::make_pair(vec2(1, 1),vec3(worldStart + HLINES(i) + HLINE , wd.groundHeight - GRASS_HEIGHT, -3))); - c.push_back(std::make_pair(vec2(0, 1),vec3(worldStart + HLINES(i) + HLINE / 2, wd.groundHeight - GRASS_HEIGHT, -3))); - c.push_back(std::make_pair(vec2(0, 0),vec3(worldStart + HLINES(i) + HLINE / 2, wd.groundHeight + gh[1], -3))); - - //glEnd(); + c.push_back(std::make_pair(vec2(1, 1),vec3(worldStart + HLINES(i) + HLINE , wd.groundHeight - GRASS_HEIGHT, -3))); + c.push_back(std::make_pair(vec2(0, 1),vec3(worldStart + HLINES(i) + HLINE / 2, wd.groundHeight - GRASS_HEIGHT, -3))); + c.push_back(std::make_pair(vec2(0, 0),vec3(worldStart + HLINES(i) + HLINE / 2, wd.groundHeight + gh[1], -3))); } } @@ -1802,11 +1789,20 @@ World *loadWorldFromPtr(World *ptr) * Loads a world from the given XML file. */ +World * +loadWorldFromXMLNoTakeover(std::string path) +{ + loadedLeft = true, loadedRight = true; + auto ret = loadWorldFromXMLNoSave(path); + loadedLeft = false, loadedRight = false; + return ret; +} + World * loadWorldFromXMLNoSave(std::string path) { XMLDocument *_currentXMLDoc; - std::string _currentXML, - _currentXMLRaw; + static std::string _currentXML, + _currentXMLRaw; XMLElement *wxml; XMLElement *vil; @@ -2000,7 +1996,12 @@ loadWorldFromXMLNoSave(std::string path) { break; } + std::swap(currentXML, _currentXML); + std::swap(currentXMLRaw, _currentXMLRaw); newEntity->createFromXML(wxml, tmp); + std::swap(currentXML, _currentXML); + std::swap(currentXMLRaw, _currentXMLRaw); + std::cout << currentXML << '\n'; //} } diff --git a/xcf/goodForestTileBack.xcf b/xcf/goodForestTileBack.xcf new file mode 100644 index 0000000..fed5120 Binary files /dev/null and b/xcf/goodForestTileBack.xcf differ diff --git a/xcf/goodForestTileFar.xcf b/xcf/goodForestTileFar.xcf new file mode 100644 index 0000000..9caa87b Binary files /dev/null and b/xcf/goodForestTileFar.xcf differ diff --git a/xcf/goodForestTileFront.xcf b/xcf/goodForestTileFront.xcf new file mode 100644 index 0000000..b165062 Binary files /dev/null and b/xcf/goodForestTileFront.xcf differ diff --git a/xcf/goodForestTileMid.xcf b/xcf/goodForestTileMid.xcf new file mode 100644 index 0000000..9c1241b Binary files /dev/null and b/xcf/goodForestTileMid.xcf differ diff --git a/xcf/goodtree1.xcf b/xcf/goodtree1.xcf index 861cbf0..2fe27bf 100644 Binary files a/xcf/goodtree1.xcf and b/xcf/goodtree1.xcf differ diff --git a/xcf/goodtree2.xcf b/xcf/goodtree2.xcf new file mode 100644 index 0000000..a959ccd Binary files /dev/null and b/xcf/goodtree2.xcf differ diff --git a/xcf/goodtree3.xcf b/xcf/goodtree3.xcf new file mode 100644 index 0000000..c19d653 Binary files /dev/null and b/xcf/goodtree3.xcf differ diff --git a/xml/playerSpawnHill1.xml b/xml/playerSpawnHill1.xml index 3f0e2ce..0566efb 100644 --- a/xml/playerSpawnHill1.xml +++ b/xml/playerSpawnHill1.xml @@ -16,11 +16,11 @@ Hello there! My name is Ralph. - 300 + 300 ... - 1000 + 1000 @@ -33,5 +33,5 @@ Hey friend! It's dangerous out there, here take these! Wait, promise you'll stop by my stand in the local market! - + diff --git a/xml/playerSpawnHill1_Building1.xml b/xml/playerSpawnHill1_Building1.xml index 61b8e16..78dbb54 100644 --- a/xml/playerSpawnHill1_Building1.xml +++ b/xml/playerSpawnHill1_Building1.xml @@ -10,17 +10,17 @@ Hey. Have a Dank MayMay :) - + What? You want another Dank MayMay? K. - + Well... I'm out of Dank MayMays. Have a sword though. - + diff --git a/xml/town.xml b/xml/town.xml index fc5fcd5..f675037 100644 --- a/xml/town.xml +++ b/xml/town.xml @@ -4,23 +4,23 @@ -300 - - + + - + Hey there! The name's Bob. Good to see you've finally woken up from your nap by the cliff there... lol - - + + No description - + Looks like you've got yourself pretty empty handed... you know, I have a simple solution for that. Come on inside, I have somethin' to show you. -- cgit v1.2.3