From 2bc4bcebc93e7211dfb84303888635f888ba8018 Mon Sep 17 00:00:00 2001 From: Dan Goodliffe Date: Sat, 20 Feb 2021 00:17:58 +0000 Subject: Custom land and water shaders Create sandy beaches, snow topped mountains and grassy hills with a single texture, coloured according to land height by a custom shader. Also use the land mass mesh with a new water texture and a custom shader to create rather nice looking water effect with depth, waves and motion. --- game/terrain.cpp | 44 +++++++++++++------------------------------- 1 file changed, 13 insertions(+), 31 deletions(-) (limited to 'game/terrain.cpp') diff --git a/game/terrain.cpp b/game/terrain.cpp index 83116fc..20c06e8 100644 --- a/game/terrain.cpp +++ b/game/terrain.cpp @@ -9,13 +9,10 @@ #include #include #include +#include #include #include -template class TerrainComp : public Mesh { - using Mesh::Mesh; -}; - Terrain::Terrain() : grass {Texture::cachedTexture.get("grass.png")}, water {Texture::cachedTexture.get("water.png")} { constexpr auto size {241}; // Vertices @@ -66,7 +63,6 @@ Terrain::Terrain() : grass {Texture::cachedTexture.get("grass.png")}, water {Tex } } finish(size, size, vertices); - addWater(size, size, resolution); } Terrain::Terrain(const std::string & fileName) : @@ -89,7 +85,6 @@ Terrain::Terrain(const std::string & fileName) : } finish(map.width, map.height, vertices); - addWater(map.width, map.height, resolution); } void @@ -125,40 +120,27 @@ Terrain::finish(unsigned int width, unsigned int height, std::vector & v v(width, x, z).normal = -glm::normalize(glm::cross(c - a, d - b)); } } - meshes.create>(vertices, indices); + meshes.create(vertices, indices); } +static const Transform identity {}; +static const auto identityModel {identity.GetModel()}; + void -Terrain::addWater(unsigned int width, unsigned int height, unsigned int resolution) +Terrain::tick(TickDuration dur) { - const auto verticesCount {0U}; - std::vector vertices; - std::vector indices; - // Add water - const auto extentx {(int)((width - 1) * resolution / 2)}; - const auto extentz {(int)((height - 1) * resolution / 2)}; - vertices.emplace_back(glm::vec3 {-extentx, 0, -extentz}, glm::vec2 {0, 0}, glm::vec3 {0, 1, 0}); - vertices.emplace_back(glm::vec3 {-extentx, 0, extentz}, glm::vec2 {0, height}, glm::vec3 {0, 1, 0}); - vertices.emplace_back(glm::vec3 {extentx, 0, extentz}, glm::vec2 {width, height}, glm::vec3 {0, 1, 0}); - vertices.emplace_back(glm::vec3 {extentx, 0, -extentz}, glm::vec2 {width, 0}, glm::vec3 {0, 1, 0}); - indices.push_back(verticesCount); - indices.push_back(verticesCount + 1); - indices.push_back(verticesCount + 2); - indices.push_back(verticesCount); - indices.push_back(verticesCount + 2); - indices.push_back(verticesCount + 3); - meshes.create>(vertices, indices); + waveCycle += dur.count(); } -static const Transform identity {}; -static const auto identityModel {identity.GetModel()}; - void Terrain::render(const Shader & shader) const { - shader.setModel(identityModel); + shader.setModel(identityModel, Shader::Program::LandMass); grass->Bind(); - meshes.apply>(&Mesh::Draw); + meshes.apply(&Mesh::Draw); + + shader.setModel(identityModel, Shader::Program::Water); + shader.setUniform("waves", {waveCycle, 0, 0}); water->Bind(); - meshes.apply>(&Mesh::Draw); + meshes.apply(&Mesh::Draw); } -- cgit v1.2.3