From 202b5a75428b2405eeff3080cde0e657b76978f9 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Sat, 11 Feb 2017 11:36:09 -0500 Subject: string token iterator --- src/world.cpp | 96 +++++++++++++++++++++++------------------------------------ 1 file changed, 38 insertions(+), 58 deletions(-) (limited to 'src/world.cpp') diff --git a/src/world.cpp b/src/world.cpp index d38708d..f46339b 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -1,63 +1,34 @@ #include -/* ---------------------------------------------------------------------------- -** Includes section -** --------------------------------------------------------------------------*/ - // standard library headers #include -#include #include #include +#include + #include using namespace std::literals::chrono_literals; +// local library headers +#include +using namespace tinyxml2; + +// game headers #include +#include #include +#include #include #include -#include - -// local game headers -#include #include - -#include -#include -#include #include -#include #include +#include +#include +#include +#include -// local library headers -#include -using namespace tinyxml2; - -void makeWorldDrawingSimplerEvenThoughAndyDoesntThinkWeCanMakeItIntoFunctions( - unsigned size, void *coordAddr, void *texAddr, unsigned triCount - ) -{ - glVertexAttribPointer(Render::worldShader.coord, 3, GL_FLOAT, GL_FALSE, size, coordAddr); - glVertexAttribPointer(Render::worldShader.tex , 2, GL_FLOAT, GL_FALSE, size, texAddr ); - glDrawArrays(GL_TRIANGLES, 0, triCount); -} - -void makeWorldDrawingSimplerEvenThoughAndyDoesntThinkWeCanMakeItIntoFunctions_JustDrawThis( - unsigned size, void *coordAddr, void *texAddr, unsigned triCount - ) -{ - Render::worldShader.enable(); - - makeWorldDrawingSimplerEvenThoughAndyDoesntThinkWeCanMakeItIntoFunctions(size, coordAddr, texAddr, triCount); - - Render::worldShader.disable(); -} - -/* ---------------------------------------------------------------------------- -** Variables section -** --------------------------------------------------------------------------*/ - -extern std::string xmlFolder; +extern std::string xmlFolder; // wait static bool waitToSwap = false; @@ -75,11 +46,11 @@ constexpr const float GROUND_HILLINESS = 10.0f; const unsigned int GRASS_HEIGHT = HLINES(4); // the path of the currently loaded XML file, externally referenced in places -std::string currentXML; +static std::string currentXML; // pathnames of images for world themes -using StyleList = std::array; -static const std::vector bgPaths = { +//using StyleList = std::string[8]; +constexpr const char* bgPaths[1][8] = { { // Forest "bg.png", // sky/background "bgFarMountain.png", // layer 1 (furthest) @@ -93,7 +64,7 @@ static const std::vector bgPaths = { }; // pathnames of structure textures -static const std::string buildPaths[] = { +constexpr const char* buildPaths[] = { "townhall.png", "house1.png", "house2.png", @@ -113,17 +84,14 @@ void WorldSystem::generate(int width) float geninc = 0; // allocate space for world - world.data = std::vector (width + GROUND_HILLINESS, WorldData { false, {0, 0}, 0, 0 }); + world.data = std::vector (width + GROUND_HILLINESS); // prepare for generation world.data[0].groundHeight = GROUND_HEIGHT_INITIAL; auto wditer = std::begin(world.data) + GROUND_HILLINESS; if (world.indoor) { - for (auto &l : world.data) { - l.groundHeight = GROUND_HEIGHT_MINIMUM + 5; - l.groundColor = 4; - } + std::fill(world.data.begin(), world.data.end(), WorldData {true, {0, 0}, GROUND_HEIGHT_MINIMUM + 5, 4}); } else { // give every GROUND_HILLINESSth entry a groundHeight value for (; wditer < std::end(world.data); wditer += GROUND_HILLINESS) @@ -261,9 +229,7 @@ void WorldSystem::load(const std::string& file) bgFiles.clear(); - const auto& files = bgPaths[static_cast(world.style)]; - - for (const auto& f : files) + for (const auto& f : bgPaths[styleNo]) bgFiles.push_back(world.styleFolder + "bg/" + f); bgTex = TextureIterator(bgFiles); @@ -781,7 +747,10 @@ void WorldSystem::render(void) bgTex(0); glUniform4f(Render::worldShader.uniform[WU_tex_color], 1.0, 1.0, 1.0, 1.0); - makeWorldDrawingSimplerEvenThoughAndyDoesntThinkWeCanMakeItIntoFunctions(0, back_tex_coord, scrolling_tex_coord, 6); + glVertexAttribPointer(Render::worldShader.coord, 3, GL_FLOAT, GL_FALSE, 0, back_tex_coord); + glVertexAttribPointer(Render::worldShader.tex , 2, GL_FLOAT, GL_FALSE, 0, scrolling_tex_coord); + glDrawArrays(GL_TRIANGLES, 0, 6); + // no more night bg //bgTex++; //glUniform4f(Render::worldShader.uniform[WU_tex_color], 1.0, 1.0, 1.0, 1.3 - static_cast(alpha) / 255.0f); @@ -848,7 +817,13 @@ void WorldSystem::render(void) Render::worldShader.use(); glUniform1f(Render::worldShader.uniform[WU_light_impact], 0.01); - makeWorldDrawingSimplerEvenThoughAndyDoesntThinkWeCanMakeItIntoFunctions_JustDrawThis(0, bg_items.data(), bg_tex.data(), bg_items.size()); + Render::worldShader.enable(); + + glVertexAttribPointer(Render::worldShader.coord, 3, GL_FLOAT, GL_FALSE, 0, &bg_items[0]); + glVertexAttribPointer(Render::worldShader.tex , 2, GL_FLOAT, GL_FALSE, 0, &bg_tex[0]); + glDrawArrays(GL_TRIANGLES, 0, bg_items.size()); + + Render::worldShader.disable(); Render::worldShader.unuse(); // draw the remaining layers @@ -900,8 +875,13 @@ void WorldSystem::render(void) glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT); - makeWorldDrawingSimplerEvenThoughAndyDoesntThinkWeCanMakeItIntoFunctions_JustDrawThis(0, bg_items.data(), &bg_tex[0], bg_items.size()); + Render::worldShader.enable(); + + glVertexAttribPointer(Render::worldShader.coord, 3, GL_FLOAT, GL_FALSE, 0, bg_items.data()); + glVertexAttribPointer(Render::worldShader.tex , 2, GL_FLOAT, GL_FALSE, 0, &bg_tex[0]); + glDrawArrays(GL_TRIANGLES, 0, bg_items.size()); + Render::worldShader.disable(); Render::worldShader.unuse(); } -- cgit v1.2.3