From 2b095e30f7786526da9339ccada3aae7f2ab5df4 Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Tue, 10 Sep 2019 23:55:54 -0400 Subject: Started world system --- src/engine.cpp | 3 ++- src/main.cpp | 1 + src/physics.hpp | 2 +- src/render.hpp | 6 +++-- src/script.cpp | 8 ++++-- src/script.hpp | 8 ++++-- src/shader.hpp | 1 + src/texture.hpp | 3 +++ src/world.cpp | 58 ++++++++++++++++++++++++++++++++++++++++++ src/world.hpp | 78 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 10 files changed, 160 insertions(+), 8 deletions(-) create mode 100644 src/world.cpp create mode 100644 src/world.hpp (limited to 'src') diff --git a/src/engine.cpp b/src/engine.cpp index 66739ff..ecc6501 100644 --- a/src/engine.cpp +++ b/src/engine.cpp @@ -45,7 +45,8 @@ int Engine::init(void) systems.add(); systems.add(entities); systems.add(); - systems.add(entities); + systems.add(); + systems.add(entities, *(systems.system().get())); systems.add(); systems.configure(); diff --git a/src/main.cpp b/src/main.cpp index a0632fd..5f39d95 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -18,6 +18,7 @@ * along with this program. If not, see . */ +#define GLEW_STATIC #define SOL_ALL_SAFETIES_ON = 1 #include "engine.hpp" diff --git a/src/physics.hpp b/src/physics.hpp index 63443c4..8231d6d 100644 --- a/src/physics.hpp +++ b/src/physics.hpp @@ -1,6 +1,6 @@ /** * @file position.hpp - * Manages all Lua scripts. + * Manages all entity movements * * Copyright (C) 2019 Belle-Isle, Andrew * diff --git a/src/render.hpp b/src/render.hpp index 0e4275e..8dcb434 100644 --- a/src/render.hpp +++ b/src/render.hpp @@ -22,11 +22,11 @@ #ifndef SYSTEM_RENDER_HPP_ #define SYSTEM_RENDER_HPP_ -#include "shader.hpp" - #include +#include #include +#include #define GLM_FORCE_RADIANS #include @@ -34,6 +34,8 @@ #include #include +#include "shader.hpp" + class RenderSystem : public entityx::System { private: diff --git a/src/script.cpp b/src/script.cpp index a6f0968..e3aca3e 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -87,9 +87,12 @@ void ScriptSystem::doFile(void) void ScriptSystem::scriptExport(void) { - std::function func = + std::function entitySpawn = [this](sol::table t){ return spawn(t);}; + std::function worldRegister = + [this](sol::object t){ return worldSystem.addWorld(t); }; + lua.new_usertype("Position", sol::constructors(), "x", &Position::x, @@ -125,7 +128,8 @@ void ScriptSystem::scriptExport(void) "standing", &Physics::standing); auto gamespace = lua["game"].get_or_create(); - gamespace.set_function("spawn", func); + gamespace.set_function("spawn", entitySpawn); + gamespace.set_function("worldRegister", worldRegister); } sol::table ScriptSystem::spawn(sol::object param) diff --git a/src/script.hpp b/src/script.hpp index d4e2234..5c4c780 100644 --- a/src/script.hpp +++ b/src/script.hpp @@ -24,6 +24,8 @@ #include #include +#include "world.hpp" + struct EntitySpawnEvent { sol::object ref; @@ -47,10 +49,12 @@ private: sol::state lua; entityx::EntityManager& manager; + + WorldSystem &worldSystem; public: - ScriptSystem(entityx::EntityManager& _manager): - manager(_manager) {} + ScriptSystem(entityx::EntityManager& _mg, WorldSystem& _ws): + manager(_mg), worldSystem(_ws) {} ~ScriptSystem(void) {} diff --git a/src/shader.hpp b/src/shader.hpp index 8691ab0..2a93f9c 100644 --- a/src/shader.hpp +++ b/src/shader.hpp @@ -24,6 +24,7 @@ #include #include +#include class Shader { diff --git a/src/texture.hpp b/src/texture.hpp index 16987f8..4483d0f 100644 --- a/src/texture.hpp +++ b/src/texture.hpp @@ -21,7 +21,10 @@ #define TEXTURE_HPP_ #include + +#include #include + #include class Texture diff --git a/src/world.cpp b/src/world.cpp new file mode 100644 index 0000000..8b71316 --- /dev/null +++ b/src/world.cpp @@ -0,0 +1,58 @@ +/** + * @file world.cpp + * + * Copyright (C) 2019 Belle-Isle, Andrew + * Author: Belle-Isle, Andrew + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#include "world.hpp" + +/***************** +* WORLD CLASS * +*****************/ +World::World(sol::object ref) +{ + if (ref.get_type() == sol::type::table) { + + } else { + // TODO better logging + std::cerr << "World paramaters must be stored in a table" << std::endl; + } +} + + +/****************** +* WORLD SYSTEM * +******************/ + +unsigned int WorldSystem::addWorld(sol::object t) +{ + worlds.push_back(World(t)); + return worlds.size()-1; +} + +void WorldSystem::configure([[maybe_unused]]entityx::EntityManager& entities, + [[maybe_unused]]entityx::EventManager& events) +{ + +} + +void WorldSystem::update([[maybe_unused]]entityx::EntityManager& entities, + [[maybe_unused]]entityx::EventManager& events, + [[maybe_unused]]entityx::TimeDelta dt) +{ + +} diff --git a/src/world.hpp b/src/world.hpp new file mode 100644 index 0000000..7c66e6b --- /dev/null +++ b/src/world.hpp @@ -0,0 +1,78 @@ +/** + * @file world.hpp + * Manages the world systems + * + * Copyright (C) 2019 Belle-Isle, Andrew + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef SYSTEM_WORLD_HPP_ +#define SYSTEM_WORLD_HPP_ + +#include + +#include +#include + +#include "texture.hpp" + +struct WorldMaterial +{ + Texture texture; + Texture normal; +}; + +class World +{ +private: + std::vector registry; + std::vector> worldData; +public: + World(sol::object ref); + ~World() {} +}; + +/** + * @class WorldSystem + * Handles the game's world system + */ +class WorldSystem : public entityx::System +{ +private: + std::vector worlds; + //World& currentWorld; +public: + WorldSystem(void) {} + + ~WorldSystem(void) {} + + unsigned int addWorld(sol::object); + + /** + * Prepares the system for running. + */ + void configure(entityx::EntityManager& entities, + entityx::EventManager& events) final; + + /** + * Updates the world ticks (entity spawns and world events) + */ + void update(entityx::EntityManager& entites, + entityx::EventManager& events, + entityx::TimeDelta dt) final; +}; + +#endif // SYSTEM_WORLD_HPP_ + -- cgit v1.2.3 From 8f0db67c5fdbc1e7b8759f44b45ad64caf336cb5 Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Wed, 11 Sep 2019 01:46:14 -0400 Subject: World system now has a pointer to the current world, and worlds created in Lua are returned to Lua as pointers --- src/script.cpp | 2 +- src/world.cpp | 6 ++++-- src/world.hpp | 7 ++++--- 3 files changed, 9 insertions(+), 6 deletions(-) (limited to 'src') diff --git a/src/script.cpp b/src/script.cpp index e3aca3e..f52391f 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -90,7 +90,7 @@ void ScriptSystem::scriptExport(void) std::function entitySpawn = [this](sol::table t){ return spawn(t);}; - std::function worldRegister = + std::function worldRegister = [this](sol::object t){ return worldSystem.addWorld(t); }; lua.new_usertype("Position", diff --git a/src/world.cpp b/src/world.cpp index 8b71316..63769a9 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -38,10 +38,12 @@ World::World(sol::object ref) * WORLD SYSTEM * ******************/ -unsigned int WorldSystem::addWorld(sol::object t) +World* WorldSystem::addWorld(sol::object t) { worlds.push_back(World(t)); - return worlds.size()-1; + if (currentWorld == nullptr) + currentWorld = &(worlds.back()); + return &(worlds.back()); } void WorldSystem::configure([[maybe_unused]]entityx::EntityManager& entities, diff --git a/src/world.hpp b/src/world.hpp index 7c66e6b..4ceca94 100644 --- a/src/world.hpp +++ b/src/world.hpp @@ -52,13 +52,14 @@ class WorldSystem : public entityx::System { private: std::vector worlds; - //World& currentWorld; + World* currentWorld; public: - WorldSystem(void) {} + WorldSystem(void): + currentWorld(nullptr) {} ~WorldSystem(void) {} - unsigned int addWorld(sol::object); + World* addWorld(sol::object); /** * Prepares the system for running. -- cgit v1.2.3 From 2564533a4860a8452abc27ba05115ca11ed4a787 Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Thu, 12 Sep 2019 18:16:06 -0400 Subject: Ability to pass world data into Lua --- Scripts/world.lua | 17 +++++++++++------ src/engine.cpp | 6 ++++-- src/script.cpp | 8 ++++++++ src/texture.hpp | 2 +- src/world.cpp | 25 ++++++++++++++++++++++++- src/world.hpp | 41 ++++++++++++++++++++++++++++++++++++++--- 6 files changed, 86 insertions(+), 13 deletions(-) (limited to 'src') diff --git a/Scripts/world.lua b/Scripts/world.lua index a6224ab..54fcdc0 100644 --- a/Scripts/world.lua +++ b/Scripts/world.lua @@ -20,24 +20,29 @@ world = { Layers = 2, Generate = function(self) math.randomseed(self.Seed) - self.data = {} + --self.data = {} for Z = 0,self.Layers do - self.data[Z] = {} + --self.data[Z] = {} for X = 0,250 do - self.data[Z][X] = {} + --self.data[Z][X] = {} YGen = math.floor(6*math.sin(X/20) + Z) + 64 YDepth = math.random(2,5) for Y = 0,128 do if Y == YGen then - self.data[Z][X][Y] = 0 + --self.data[Z][X][Y] = 0 + self:setData(X, Y, Z, 0); elseif Y < YGen and Y > (YGen - YDepth) then - self.data[Z][X][Y] = 1 + --self.data[Z][X][Y] = 1 + self:setData(X, Y, Z, 1); elseif Y < YGen then - self.data[Z][X][Y] = 2 + --self.data[Z][X][Y] = 2 + self:setData(X, Y, Z, 2); end + --print(X..","..Y..","..Z); end end end + print("Done with world gen"); end } diff --git a/src/engine.cpp b/src/engine.cpp index ecc6501..6e6a0e5 100644 --- a/src/engine.cpp +++ b/src/engine.cpp @@ -147,9 +147,11 @@ void Engine::run(void) GameState::save("save.json", entities); // Remove all Lua references from entities - entities.each([](entityx::Entity, Scripted &f){ f.cleanup(); }); - entities.each([](entityx::Entity, EventListener &f){ + entities.each([](entityx::Entity, Scripted &f) { f.cleanup(); }); + entities.each([](entityx::Entity, EventListener &f) { + f.cleanup(); }); + systems.system()->cleanup(); } bool Engine::shouldRun(void) diff --git a/src/script.cpp b/src/script.cpp index f52391f..7d04375 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -127,6 +127,14 @@ void ScriptSystem::scriptExport(void) sol::constructors(), "standing", &Physics::standing); + lua.new_usertype("World", + sol::constructors(), + "generate", &World::generate, + "Seed", sol::property(&World::setSeed, &World::getSeed), + "Layers", sol::property(&World::setLayers, &World::getLayers), + "setData", &World::setData); + + auto gamespace = lua["game"].get_or_create(); gamespace.set_function("spawn", entitySpawn); gamespace.set_function("worldRegister", worldRegister); diff --git a/src/texture.hpp b/src/texture.hpp index 4483d0f..25fed54 100644 --- a/src/texture.hpp +++ b/src/texture.hpp @@ -31,7 +31,7 @@ class Texture { private: public: - GLuint tex; + GLuint tex = 0; int width; int height; Texture() {}; diff --git a/src/world.cpp b/src/world.cpp index 63769a9..9e289ea 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -26,11 +26,34 @@ World::World(sol::object ref) { if (ref.get_type() == sol::type::table) { - + sol::table tab = ref; + if (tab["Seed"] == sol::type::number) { + seed = tab["Seed"]; + } + if (tab["Layers"] == sol::type::number) { + layers = tab["Layers"]; + } + if (tab["Generate"] == sol::type::function) { + generate = tab["Generate"]; + } } else { // TODO better logging std::cerr << "World paramaters must be stored in a table" << std::endl; } + generate(this); +} + +void World::setData(unsigned int x, + unsigned int y, + unsigned int z, + unsigned int d) +{ + (void)x; + (void)y; + (void)z; + (void)d; + + // TODO actually do stuff here } diff --git a/src/world.hpp b/src/world.hpp index 4ceca94..c0e6098 100644 --- a/src/world.hpp +++ b/src/world.hpp @@ -37,11 +37,39 @@ struct WorldMaterial class World { private: + unsigned int seed; + unsigned int layers; + + std::vector>> data; std::vector registry; - std::vector> worldData; public: + World() {} World(sol::object ref); - ~World() {} + ~World() { + generate = sol::nil; + registry.clear(); + data.clear(); + } + + sol::function generate; + + /* SEED */ + unsigned int getSeed() {return seed;} + void setSeed(unsigned int s) {seed = s;} + + /* LAYERS */ + unsigned int getLayers() {return layers;} + // If we change the amount of layers, we have to regenerate the world + void setLayers(unsigned int l) { + layers = l; + generate(); + } + + /* DATA */ + void setData(unsigned int x, + unsigned int y, + unsigned int z, + unsigned int d); }; /** @@ -57,9 +85,16 @@ public: WorldSystem(void): currentWorld(nullptr) {} - ~WorldSystem(void) {} + ~WorldSystem(void) { + currentWorld = nullptr; + worlds.clear(); + } World* addWorld(sol::object); + void cleanup() + { + worlds.clear(); + } /** * Prepares the system for running. -- cgit v1.2.3 From db388db12d8dc26c9f2d21a4c4e9ea9b0af1cf29 Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Fri, 13 Sep 2019 01:51:27 -0400 Subject: Added texture caching to the texture loading process --- src/texture.cpp | 72 +++++++++++++++++++++++++++++++++++++++++++++------------ 1 file changed, 57 insertions(+), 15 deletions(-) (limited to 'src') diff --git a/src/texture.cpp b/src/texture.cpp index 5604812..d2b2627 100644 --- a/src/texture.cpp +++ b/src/texture.cpp @@ -1,20 +1,62 @@ +/** + * @file texture.cpp + * Handles all texture loading + * + * Copyright (C) 2019 Belle-Isle, Andrew + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + + #include "texture.hpp" +#include +#include + +// Stores a list of all textures we've already loaded. This makes sure we don't +// waste our precious CPU cycles reloading a texture. +std::unordered_map textureCache; + Texture::Texture(std::string filename) { - unsigned char* image = SOIL_load_image(filename.c_str(), - &width, &height, 0, - SOIL_LOAD_RGBA); - - glGenTextures(1, &tex); // Turns "object" into a texture - glBindTexture(GL_TEXTURE_2D, tex); // 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 - glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST); // The the "max" filter of the stack - glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE); // Wrap the texture to the matrix - glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE); // - glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0, - GL_RGBA, GL_UNSIGNED_BYTE, image); - - SOIL_free_image_data(image); + // Search to see if this texture has already been loading + auto cacheSearch = textureCache.find(filename); + + if (cacheSearch == textureCache.end()) { + // If this texture hasn't been loading + + unsigned char* image = SOIL_load_image(filename.c_str(), + &width, &height, 0, + SOIL_LOAD_RGBA); + + glGenTextures(1, &tex); + glBindTexture(GL_TEXTURE_2D, tex); + glPixelStoref(GL_UNPACK_ALIGNMENT, 1); + glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST); + glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST); + glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE); + glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE); + glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0, + GL_RGBA, GL_UNSIGNED_BYTE, image); + + SOIL_free_image_data(image); + + // Add new texture to the texture cache + textureCache.emplace(filename, tex); + + } else { + // If this texture has been loaded, just return the loaded texture + tex = cacheSearch->second; + } } -- cgit v1.2.3 From 54cf2f1f9a044a0d0def92c1904b24d3c3647d36 Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Fri, 13 Sep 2019 01:52:26 -0400 Subject: Lua can now register materials for worlds during world registration --- Scripts/world.lua | 38 ++++++++++++++++++++++---------------- src/script.cpp | 5 +++-- src/world.cpp | 37 ++++++++++++++++++++++++++++++++----- src/world.hpp | 33 +++++++++++++++++++++++++++------ 4 files changed, 84 insertions(+), 29 deletions(-) (limited to 'src') diff --git a/Scripts/world.lua b/Scripts/world.lua index 54fcdc0..655cdab 100644 --- a/Scripts/world.lua +++ b/Scripts/world.lua @@ -1,23 +1,29 @@ world = { - Registry = { - grass = { - id = 0, + Seed = 5345345, + Layers = 2, + + -- This is run when the world is registered and not after, + -- although it is possible to register materials later + Register = function(self) + self:registerMaterial("grass", { texture = "Assets/grass.png", normal = "Assets/grass_normal" - }, - dirt = { - id = 1, + }); + self:registerMaterial("dirt", { texture = "Assets/dirt.png", normal = "Assets/dirt_normal.png" - }, - stone = { - id = 2, + }); + self:registerMaterial("stone", { texture = "Assets/stone.png", normal = "Assets/dirt_normal.png" - } - }, - Seed = 5345345, - Layers = 2, + }); + self:registerMaterial("flower", { + texture = "Assets/flower.png", + normal = "Assets/flower_normal.png", + passable = true + }); + end, + Generate = function(self) math.randomseed(self.Seed) --self.data = {} @@ -30,13 +36,13 @@ world = { for Y = 0,128 do if Y == YGen then --self.data[Z][X][Y] = 0 - self:setData(X, Y, Z, 0); + self:setData(X, Y, Z, "grass"); elseif Y < YGen and Y > (YGen - YDepth) then --self.data[Z][X][Y] = 1 - self:setData(X, Y, Z, 1); + self:setData(X, Y, Z, "dirt"); elseif Y < YGen then --self.data[Z][X][Y] = 2 - self:setData(X, Y, Z, 2); + self:setData(X, Y, Z, "stone"); end --print(X..","..Y..","..Z); end diff --git a/src/script.cpp b/src/script.cpp index 7d04375..da365e1 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -129,10 +129,11 @@ void ScriptSystem::scriptExport(void) lua.new_usertype("World", sol::constructors(), - "generate", &World::generate, + "Generate", &World::generate, "Seed", sol::property(&World::setSeed, &World::getSeed), "Layers", sol::property(&World::setLayers, &World::getLayers), - "setData", &World::setData); + "setData", &World::setData, + "registerMaterial", &World::registerMaterial); auto gamespace = lua["game"].get_or_create(); diff --git a/src/world.cpp b/src/world.cpp index 9e289ea..dc9f75b 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -2,7 +2,6 @@ * @file world.cpp * * Copyright (C) 2019 Belle-Isle, Andrew - * Author: Belle-Isle, Andrew * * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -23,30 +22,37 @@ /***************** * WORLD CLASS * *****************/ -World::World(sol::object ref) +World::World(sol::object param) { - if (ref.get_type() == sol::type::table) { - sol::table tab = ref; + if (param.get_type() == sol::type::table) { + sol::table tab = param; + if (tab["Seed"] == sol::type::number) { seed = tab["Seed"]; } if (tab["Layers"] == sol::type::number) { layers = tab["Layers"]; } + if (tab["Register"] == sol::type::function) { + registerMat = tab["Register"]; + } if (tab["Generate"] == sol::type::function) { generate = tab["Generate"]; } + } else { // TODO better logging std::cerr << "World paramaters must be stored in a table" << std::endl; } + + registerMat(this); generate(this); } void World::setData(unsigned int x, unsigned int y, unsigned int z, - unsigned int d) + std::string d) { (void)x; (void)y; @@ -56,6 +62,27 @@ void World::setData(unsigned int x, // TODO actually do stuff here } +void World::registerMaterial(std::string name, sol::object data) +{ + if (data.get_type() == sol::type::table) { + sol::table tab = data; + + // Make sure this material has not been registered before + auto it = string_registry.find(name); + if (it == string_registry.end()) { + string_registry.emplace(name, registry.size()); + registry.push_back(WorldMaterial(tab)); + } else { + std::cerr << "Material: " << name + << " was already registered" << std::endl; + } + + } else { + // TODO better logging + std::cerr << "Material registration must have a table" << std::endl; + } +} + /****************** * WORLD SYSTEM * diff --git a/src/world.hpp b/src/world.hpp index c0e6098..cb9995e 100644 --- a/src/world.hpp +++ b/src/world.hpp @@ -30,8 +30,25 @@ struct WorldMaterial { + bool passable = false; + Texture texture; Texture normal; + + WorldMaterial(sol::table tab) { + if (tab["texture"] == sol::type::string) { + std::string tex = tab["texture"]; + texture = Texture(tex); + } + if (tab["normal"] == sol::type::string) { + std::string nor = tab["normal"]; + normal = Texture(nor); + } + + if (tab["passable"] == sol::type::boolean) { + passable = tab["passable"]; + } + } }; class World @@ -41,17 +58,22 @@ private: unsigned int layers; std::vector>> data; - std::vector registry; + + std::unordered_map string_registry; + std::vector registry; + public: World() {} World(sol::object ref); ~World() { + registerMat = sol::nil; generate = sol::nil; registry.clear(); data.clear(); } sol::function generate; + sol::function registerMat; /* SEED */ unsigned int getSeed() {return seed;} @@ -66,10 +88,10 @@ public: } /* DATA */ - void setData(unsigned int x, - unsigned int y, - unsigned int z, - unsigned int d); + void setData(unsigned int, unsigned int, unsigned int, std::string); + + /* REGISTRY */ + void registerMaterial(std::string, sol::object); }; /** @@ -111,4 +133,3 @@ public: }; #endif // SYSTEM_WORLD_HPP_ - -- cgit v1.2.3 From 0e19992b820158f8e9c0fc16ddc372a5ea596f53 Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Sat, 14 Sep 2019 00:30:05 -0400 Subject: Lua can now modify world size and world data --- Scripts/world.lua | 8 +++-- src/script.cpp | 5 ++-- src/world.cpp | 90 +++++++++++++++++++++++++++++++++++++++++++++---------- src/world.hpp | 37 +++++++++++++---------- 4 files changed, 104 insertions(+), 36 deletions(-) (limited to 'src') diff --git a/Scripts/world.lua b/Scripts/world.lua index 655cdab..f87f108 100644 --- a/Scripts/world.lua +++ b/Scripts/world.lua @@ -26,14 +26,15 @@ world = { Generate = function(self) math.randomseed(self.Seed) + xsize, ysize, zsize = self:setSize(250, 128, 3) --self.data = {} - for Z = 0,self.Layers do + for Z = 0,zsize-1 do --self.data[Z] = {} - for X = 0,250 do + for X = 0,xsize-1 do --self.data[Z][X] = {} YGen = math.floor(6*math.sin(X/20) + Z) + 64 YDepth = math.random(2,5) - for Y = 0,128 do + for Y = 0,ysize-1 do if Y == YGen then --self.data[Z][X][Y] = 0 self:setData(X, Y, Z, "grass"); @@ -48,6 +49,7 @@ world = { end end end + self:setData(1000, 1345, 5, "grass"); -- Test error checking print("Done with world gen"); end } diff --git a/src/script.cpp b/src/script.cpp index da365e1..cf5b2dd 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -131,9 +131,10 @@ void ScriptSystem::scriptExport(void) sol::constructors(), "Generate", &World::generate, "Seed", sol::property(&World::setSeed, &World::getSeed), - "Layers", sol::property(&World::setLayers, &World::getLayers), "setData", &World::setData, - "registerMaterial", &World::registerMaterial); + "registerMaterial", &World::registerMaterial, + "setSize", &World::setSize, + "getSize", &World::getSize); auto gamespace = lua["game"].get_or_create(); diff --git a/src/world.cpp b/src/world.cpp index dc9f75b..eb101f2 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -22,6 +22,7 @@ /***************** * WORLD CLASS * *****************/ +/* CONSTRUCTORS */ World::World(sol::object param) { if (param.get_type() == sol::type::table) { @@ -45,23 +46,13 @@ World::World(sol::object param) std::cerr << "World paramaters must be stored in a table" << std::endl; } - registerMat(this); - generate(this); -} - -void World::setData(unsigned int x, - unsigned int y, - unsigned int z, - std::string d) -{ - (void)x; - (void)y; - (void)z; - (void)d; - - // TODO actually do stuff here + if (registerMat != sol::nil) + registerMat(this); + if (generate != sol::nil) + generate(this); } +/* REGISTRY */ void World::registerMaterial(std::string name, sol::object data) { if (data.get_type() == sol::type::table) { @@ -83,6 +74,75 @@ void World::registerMaterial(std::string name, sol::object data) } } +/* DATA */ +void World::setData(unsigned int x, + unsigned int y, + unsigned int z, + std::string d) +{ + unsigned int discovered = -1; + + auto found = string_registry.find(d); + if (found != string_registry.end()) + discovered = found->second; + + try { + data.at(z).at(x).at(y) = discovered; + } catch (std::out_of_range &oor) { + // Make sure any assignments that are outsize specified world size are + // caught to avoid any seg faults + std::cerr << "Unable to set data at: " + << x << "," << y << "," << z + << " Exception: " << oor.what() << std::endl; + } +} + +/* SIZE */ +std::tuple +World::setSize(unsigned int x, unsigned int y, unsigned int z) +{ + width = x; + height = y; + layers = z; + + data = std::vector>> + (z, std::vector> + (x,std::vector + (y, -1) + ) + ); + + return {width, height, layers}; +} + +std::tuple +World::getSize() +{ + return {width, height, layers}; +} + +/* RENDERING */ +void World::generateMesh() +{ + const unsigned int coordLength = 3 + // x, y, z + 2 + // texture coords + 1; // transparency + + (void)coordLength; +} + +/* SEED */ +unsigned int World::getSeed() +{ + return seed; +} + +unsigned int World::setSeed(unsigned int s) +{ + seed = s; + return seed; +} + /****************** * WORLD SYSTEM * diff --git a/src/world.hpp b/src/world.hpp index cb9995e..7a7461f 100644 --- a/src/world.hpp +++ b/src/world.hpp @@ -44,7 +44,6 @@ struct WorldMaterial std::string nor = tab["normal"]; normal = Texture(nor); } - if (tab["passable"] == sol::type::boolean) { passable = tab["passable"]; } @@ -57,12 +56,20 @@ private: unsigned int seed; unsigned int layers; + unsigned int height; + unsigned int width; + std::vector>> data; std::unordered_map string_registry; std::vector registry; + std::vector mesh; public: + /* VARS */ + sol::function generate; + sol::function registerMat; + World() {} World(sol::object ref); ~World() { @@ -72,26 +79,24 @@ public: data.clear(); } - sol::function generate; - sol::function registerMat; - /* SEED */ - unsigned int getSeed() {return seed;} - void setSeed(unsigned int s) {seed = s;} - - /* LAYERS */ - unsigned int getLayers() {return layers;} - // If we change the amount of layers, we have to regenerate the world - void setLayers(unsigned int l) { - layers = l; - generate(); - } + unsigned int getSeed(); + unsigned int setSeed(unsigned int); + + /* REGISTRY */ + void registerMaterial(std::string, sol::object); /* DATA */ void setData(unsigned int, unsigned int, unsigned int, std::string); - /* REGISTRY */ - void registerMaterial(std::string, sol::object); + /* SIZE */ + std::tuple setSize(unsigned int, + unsigned int, + unsigned int); + std::tuple getSize(); + + /* RENDERING */ + void generateMesh(); }; /** -- cgit v1.2.3 From d4d9e0d35a1609c72ea65df95e9c3ce5706e221f Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Sat, 14 Sep 2019 01:10:41 -0400 Subject: Added texture size and offset data --- src/texture.hpp | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'src') diff --git a/src/texture.hpp b/src/texture.hpp index 25fed54..8cfd68c 100644 --- a/src/texture.hpp +++ b/src/texture.hpp @@ -24,6 +24,7 @@ #include #include +#include #include @@ -34,6 +35,10 @@ public: GLuint tex = 0; int width; int height; + + glm::vec2 offset = glm::vec2(0); + glm::vec2 offsetSize = glm::vec2(1); + Texture() {}; Texture(std::string); }; -- cgit v1.2.3 From bccf02982941feaf93ba94a29644eb5559a11655 Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Sat, 14 Sep 2019 01:10:55 -0400 Subject: World can now generate its own mesh --- src/world.cpp | 43 +++++++++++++++++++++++++++++++++++-------- src/world.hpp | 21 ++++++++++++++------- 2 files changed, 49 insertions(+), 15 deletions(-) (limited to 'src') diff --git a/src/world.cpp b/src/world.cpp index eb101f2..1dca763 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -46,10 +46,16 @@ World::World(sol::object param) std::cerr << "World paramaters must be stored in a table" << std::endl; } + // If there is a register function, we should call it here if (registerMat != sol::nil) registerMat(this); + + // If a generate function is defined, call it if (generate != sol::nil) generate(this); + + // Generate our mesh + generateMesh(); } /* REGISTRY */ @@ -105,9 +111,9 @@ World::setSize(unsigned int x, unsigned int y, unsigned int z) height = y; layers = z; - data = std::vector>> - (z, std::vector> - (x,std::vector + data = std::vector>> + (z, std::vector> + (x,std::vector (y, -1) ) ); @@ -124,11 +130,32 @@ World::getSize() /* RENDERING */ void World::generateMesh() { - const unsigned int coordLength = 3 + // x, y, z - 2 + // texture coords - 1; // transparency - - (void)coordLength; + //const unsigned int voxelLength = 6; // 2 triangles @ 3 points each + + // Preallocate size of vertexes + mesh = std::basic_string(); + for (float Z = 0; Z < data.size(); Z++) { + for (float X = 0; X < data.at(Z).size(); X++) { + for (float Y = 0; Y < data.at(Z).at(X).size(); Y++) { + int d = data.at(Z).at(X).at(Y); + + if (d == -1) // Don't make a mesh for air of course + continue; + + Texture &t = registry.at(d).texture; + glm::vec2& to = t.offset; + glm::vec2& ts = t.offsetSize; + + mesh += {X , Y , Z, to.x , to.y+ts.y, 1.0}; + mesh += {X+1, Y , Z, to.x+ts.x, to.y+ts.y, 1.0}; + mesh += {X , Y+1, Z, to.x , to.y , 1.0}; + + mesh += {X+1, Y , Z, to.x+ts.x, to.y+ts.y, 1.0}; + mesh += {X+1, Y+1, Z, to.x+ts.x, to.y , 1.0}; + mesh += {X , Y+1, Z, to.x , to.y , 1.0}; + } + } + } } /* SEED */ diff --git a/src/world.hpp b/src/world.hpp index 7a7461f..cea599b 100644 --- a/src/world.hpp +++ b/src/world.hpp @@ -28,6 +28,13 @@ #include "texture.hpp" +struct WorldMeshData +{ + float posX, posY, posZ; + float texX, texY; + float transparency; +}; + struct WorldMaterial { bool passable = false; @@ -59,12 +66,12 @@ private: unsigned int height; unsigned int width; - std::vector>> data; + std::vector>> data; - std::unordered_map string_registry; + std::unordered_map string_registry; std::vector registry; - std::vector mesh; + std::basic_string mesh; public: /* VARS */ sol::function generate; @@ -79,10 +86,6 @@ public: data.clear(); } - /* SEED */ - unsigned int getSeed(); - unsigned int setSeed(unsigned int); - /* REGISTRY */ void registerMaterial(std::string, sol::object); @@ -97,6 +100,10 @@ public: /* RENDERING */ void generateMesh(); + + /* SEED */ + unsigned int getSeed(); + unsigned int setSeed(unsigned int); }; /** -- cgit v1.2.3 From 9583f32bc760576d250e78a79a812ec95ebd0f8e Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Sat, 14 Sep 2019 02:50:32 -0400 Subject: Textures can now load from lua tables as well as strings --- src/texture.cpp | 68 ++++++++++++++++++++++++++++++++++++++++++++++++++++----- src/texture.hpp | 11 +++++++--- 2 files changed, 70 insertions(+), 9 deletions(-) (limited to 'src') diff --git a/src/texture.cpp b/src/texture.cpp index d2b2627..2870b9f 100644 --- a/src/texture.cpp +++ b/src/texture.cpp @@ -24,12 +24,21 @@ #include #include +struct TextureData +{ + GLuint tex = 0; + int width = 0; + int height= 0; +}; + // Stores a list of all textures we've already loaded. This makes sure we don't // waste our precious CPU cycles reloading a texture. -std::unordered_map textureCache; +std::unordered_map textureCache; -Texture::Texture(std::string filename) +TextureData loadTexture(std::string filename) { + TextureData tex; + // Search to see if this texture has already been loading auto cacheSearch = textureCache.find(filename); @@ -37,17 +46,17 @@ Texture::Texture(std::string filename) // If this texture hasn't been loading unsigned char* image = SOIL_load_image(filename.c_str(), - &width, &height, 0, + &(tex.width), &(tex.height), 0, SOIL_LOAD_RGBA); - glGenTextures(1, &tex); - glBindTexture(GL_TEXTURE_2D, tex); + glGenTextures(1, &(tex.tex)); + glBindTexture(GL_TEXTURE_2D, tex.tex); glPixelStoref(GL_UNPACK_ALIGNMENT, 1); glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST); glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_NEAREST); glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE); glTexParameterf(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE); - glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, width, height, 0, + glTexImage2D(GL_TEXTURE_2D, 0, GL_RGBA, tex.width, tex.height, 0, GL_RGBA, GL_UNSIGNED_BYTE, image); SOIL_free_image_data(image); @@ -59,4 +68,51 @@ Texture::Texture(std::string filename) // If this texture has been loaded, just return the loaded texture tex = cacheSearch->second; } + + return tex; +} + +void Texture::loadFromString(std::string filename) +{ + TextureData d = loadTexture(filename); + + tex = d.tex; + width = d.width; + height = d.height; +} + +Texture::Texture(std::string filename) +{ + loadFromString(filename); +} + +Texture::Texture(sol::object param) +{ + if (param.get_type() == sol::type::string) { + loadFromString(param.as()); + } else if (param.get_type() == sol::type::table) { + sol::table tab = param; + + // If there is a filename given, load that file to get image data + if (tab["file"] == sol::type::string) + loadFromString(tab.get("file")); + else + return; // If we don't have image data just return a null image + + if (tab["offset"] == sol::type::table) { + sol::table off = tab["offset"]; + if (off["x"] == sol::type::number) + offset.x = off.get("x")/width; + if (off["y"] == sol::type::number) + offset.y = off.get("y")/height; + } + + if (tab["size"] == sol::type::table) { + sol::table siz = tab["size"]; + if (siz["x"] == sol::type::number) + size.x = siz.get("x")/width; + if (siz["y"] == sol::type::number) + size.y = siz.get("y")/height; + } + } } diff --git a/src/texture.hpp b/src/texture.hpp index 8cfd68c..3daebbd 100644 --- a/src/texture.hpp +++ b/src/texture.hpp @@ -22,6 +22,8 @@ #include +#include + #include #include #include @@ -31,16 +33,19 @@ class Texture { private: + void loadFromString(std::string); public: GLuint tex = 0; - int width; - int height; glm::vec2 offset = glm::vec2(0); - glm::vec2 offsetSize = glm::vec2(1); + glm::vec2 size = glm::vec2(1); + + int width; + int height; Texture() {}; Texture(std::string); + Texture(sol::object); }; #endif//TEXTURE_HPP_ -- cgit v1.2.3 From 4bf539d953871dbddddcc00275ffdcaddece5091 Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Sat, 14 Sep 2019 02:51:20 -0400 Subject: Updated world texture loading in Lua --- Scripts/world.lua | 52 ++++++++++++++++++++++++++++++++++++++++++++-------- src/world.cpp | 2 +- src/world.hpp | 12 ++++++------ 3 files changed, 51 insertions(+), 15 deletions(-) (limited to 'src') diff --git a/Scripts/world.lua b/Scripts/world.lua index f87f108..246ece0 100644 --- a/Scripts/world.lua +++ b/Scripts/world.lua @@ -5,21 +5,57 @@ world = { -- This is run when the world is registered and not after, -- although it is possible to register materials later Register = function(self) + + -- TODO make world have global textures to speed up rendering + self:registerMaterial("grass", { - texture = "Assets/grass.png", - normal = "Assets/grass_normal" + -- TODO combine both of these into 1 + texture = { + file = "Assets/world.png", + offset = { x = 0, y = 0 }, + size = { x = 8, y = 8 } + }, + normal = { + file = "Assets/world_normal.png", + offset = { x = 0, y = 0 }, + size = { x = 8, y = 8 } + } }); self:registerMaterial("dirt", { - texture = "Assets/dirt.png", - normal = "Assets/dirt_normal.png" + texture = { + file = "Assets/world.png", + offset = { x = 8, y = 0 }, + size = { x = 8, y = 8 } + }, + normal = { + file = "Assets/world_normal.png", + offset = { x = 8, y = 0 }, + size = { x = 8, y = 8 } + } }); self:registerMaterial("stone", { - texture = "Assets/stone.png", - normal = "Assets/dirt_normal.png" + texture = { + file = "Assets/world.png", + offset = { x = 16, y = 0 }, + size = { x = 8, y = 8 } + }, + normal = { + file = "Assets/world_normal.png", + offset = { x = 16, y = 0 }, + size = { x = 8, y = 8 } + } }); self:registerMaterial("flower", { - texture = "Assets/flower.png", - normal = "Assets/flower_normal.png", + texture = { + file = "Assets/world.png", + offset = { x = 24, y = 0 }, + size = { x = 8, y = 8 } + }, + normal = { + file = "Assets/world_normal.png", + offset = { x = 24, y = 0 }, + size = { x = 8, y = 8 } + }, passable = true }); end, diff --git a/src/world.cpp b/src/world.cpp index 1dca763..3fb5b6b 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -144,7 +144,7 @@ void World::generateMesh() Texture &t = registry.at(d).texture; glm::vec2& to = t.offset; - glm::vec2& ts = t.offsetSize; + glm::vec2& ts = t.size; mesh += {X , Y , Z, to.x , to.y+ts.y, 1.0}; mesh += {X+1, Y , Z, to.x+ts.x, to.y+ts.y, 1.0}; diff --git a/src/world.hpp b/src/world.hpp index cea599b..81e5b9d 100644 --- a/src/world.hpp +++ b/src/world.hpp @@ -43,13 +43,13 @@ struct WorldMaterial Texture normal; WorldMaterial(sol::table tab) { - if (tab["texture"] == sol::type::string) { - std::string tex = tab["texture"]; - texture = Texture(tex); + if (tab["texture"] != nullptr) { + sol::object t = tab["texture"]; + texture = Texture(t); } - if (tab["normal"] == sol::type::string) { - std::string nor = tab["normal"]; - normal = Texture(nor); + if (tab["normal"] != nullptr) { + sol::object n = tab["normal"]; + normal = Texture(n); } if (tab["passable"] == sol::type::boolean) { passable = tab["passable"]; -- cgit v1.2.3 From 534f6f57e930020eb1ad726f4de4e90cf487e584 Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Sat, 14 Sep 2019 03:31:40 -0400 Subject: World can now draw --- Assets/world_normal.png | Bin 268 -> 1204 bytes Scripts/world.lua | 3 --- src/engine.cpp | 2 +- src/render.cpp | 26 ++++++++++++++++++++++++-- src/render.hpp | 7 +++++-- src/script.hpp | 2 ++ src/world.hpp | 6 +++++- 7 files changed, 37 insertions(+), 9 deletions(-) (limited to 'src') diff --git a/Assets/world_normal.png b/Assets/world_normal.png index d45512a..e5f013c 100644 Binary files a/Assets/world_normal.png and b/Assets/world_normal.png differ diff --git a/Scripts/world.lua b/Scripts/world.lua index 246ece0..6a526dd 100644 --- a/Scripts/world.lua +++ b/Scripts/world.lua @@ -72,13 +72,10 @@ world = { YDepth = math.random(2,5) for Y = 0,ysize-1 do if Y == YGen then - --self.data[Z][X][Y] = 0 self:setData(X, Y, Z, "grass"); elseif Y < YGen and Y > (YGen - YDepth) then - --self.data[Z][X][Y] = 1 self:setData(X, Y, Z, "dirt"); elseif Y < YGen then - --self.data[Z][X][Y] = 2 self:setData(X, Y, Z, "stone"); end --print(X..","..Y..","..Z); diff --git a/src/engine.cpp b/src/engine.cpp index 6e6a0e5..191493e 100644 --- a/src/engine.cpp +++ b/src/engine.cpp @@ -44,8 +44,8 @@ int Engine::init(void) systems.add(); systems.add(); systems.add(entities); - systems.add(); systems.add(); + systems.add(*(systems.system().get())); systems.add(entities, *(systems.system().get())); systems.add(); systems.configure(); diff --git a/src/render.cpp b/src/render.cpp index ceef025..5efccce 100644 --- a/src/render.cpp +++ b/src/render.cpp @@ -69,7 +69,7 @@ void RenderSystem::update([[maybe_unused]] entityx::EntityManager& entities, ); glm::mat4 model = glm::mat4(1.0f); - model = glm::scale(model, glm::vec3(2.0f)); + model = glm::scale(model, glm::vec3(8.0f)); glUseProgram(s); @@ -178,7 +178,28 @@ void RenderSystem::update([[maybe_unused]] entityx::EntityManager& entities, 5*sizeof(float), (void*)(3*sizeof(float))); glDrawArrays(GL_TRIANGLES, 0, 6); }); - + + std::basic_string& wm = worldSystem.current()->getMesh(); + + glActiveTexture(GL_TEXTURE0); + glBindTexture(GL_TEXTURE_2D, worldSystem.current()->getTexture()); + glUniform1i(q, 0); + + glActiveTexture(GL_TEXTURE1); + glBindTexture(GL_TEXTURE_2D, worldSystem.current()->getNormal()); + glUniform1i(n, 1); + + glBindBuffer(GL_ARRAY_BUFFER, world_vbo); + glBufferData(GL_ARRAY_BUFFER, + wm.size() * sizeof(WorldMeshData), + &wm.front(), + GL_STREAM_DRAW); + + glVertexAttribPointer(a, 3, GL_FLOAT, GL_FALSE, + 6*sizeof(float), 0); + glVertexAttribPointer(t, 2, GL_FLOAT, GL_FALSE, + 6*sizeof(float), (void*)(3*sizeof(float))); + glDrawArrays(GL_TRIANGLES, 0, wm.size()); /************* * CLEANUP * @@ -262,6 +283,7 @@ int RenderSystem::init(void) //glClearColor(0.6, 0.8, 1.0, 0.0); camPos = glm::vec3(0.0f, 0.0f, 0.5f); + glGenBuffers(1, &world_vbo); return 0; } diff --git a/src/render.hpp b/src/render.hpp index 8dcb434..82ca844 100644 --- a/src/render.hpp +++ b/src/render.hpp @@ -35,6 +35,7 @@ #include #include "shader.hpp" +#include "world.hpp" class RenderSystem : public entityx::System { @@ -48,10 +49,12 @@ private: Shader worldShader; glm::vec3 camPos; + GLuint world_vbo; + WorldSystem &worldSystem; public: - RenderSystem(void) : - window(nullptr, SDL_DestroyWindow) {} + RenderSystem(WorldSystem & _ws) : + window(nullptr, SDL_DestroyWindow), worldSystem(_ws) {} ~RenderSystem(void) { diff --git a/src/script.hpp b/src/script.hpp index 5c4c780..87027d5 100644 --- a/src/script.hpp +++ b/src/script.hpp @@ -50,6 +50,8 @@ private: entityx::EntityManager& manager; + // TODO possibly emit events to spawn worlds instead of passing the + // world system around like a toy WorldSystem &worldSystem; public: diff --git a/src/world.hpp b/src/world.hpp index 81e5b9d..5933306 100644 --- a/src/world.hpp +++ b/src/world.hpp @@ -33,7 +33,7 @@ struct WorldMeshData float posX, posY, posZ; float texX, texY; float transparency; -}; +}__attribute__((packed)); struct WorldMaterial { @@ -100,6 +100,9 @@ public: /* RENDERING */ void generateMesh(); + std::basic_string& getMesh() {return mesh;} + GLuint getTexture() {return registry.at(0).texture.tex;} + GLuint getNormal() {return registry.at(0).normal.tex;}; /* SEED */ unsigned int getSeed(); @@ -125,6 +128,7 @@ public: } World* addWorld(sol::object); + World* current() {return currentWorld;}; void cleanup() { worlds.clear(); -- cgit v1.2.3 From bce8d0687f44def4b0171cd84bf1441fc4390e58 Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Sun, 15 Sep 2019 03:18:26 -0400 Subject: Added event subsection of code --- Scripts/world.lua | 3 ++- src/engine.cpp | 2 ++ src/events/world.hpp | 39 +++++++++++++++++++++++++++++++++++++++ src/render.cpp | 4 ++-- src/world.cpp | 7 ++++++- 5 files changed, 51 insertions(+), 4 deletions(-) create mode 100644 src/events/world.hpp (limited to 'src') diff --git a/Scripts/world.lua b/Scripts/world.lua index 6a526dd..8fb3136 100644 --- a/Scripts/world.lua +++ b/Scripts/world.lua @@ -76,7 +76,8 @@ world = { elseif Y < YGen and Y > (YGen - YDepth) then self:setData(X, Y, Z, "dirt"); elseif Y < YGen then - self:setData(X, Y, Z, "stone"); + --self:setData(X, Y, Z, "stone"); + self:setData(X, Y, Z, "grass"); end --print(X..","..Y..","..Z); end diff --git a/src/engine.cpp b/src/engine.cpp index 191493e..e38020d 100644 --- a/src/engine.cpp +++ b/src/engine.cpp @@ -78,6 +78,8 @@ void Engine::logicLoop(void) // Update 20 times a second if (elapsed > 50) { elapsed = 0; + + systems.update(dt); // All entities with an idle function should be run here entities.each([](entityx::Entity, Scripted &f){ diff --git a/src/events/world.hpp b/src/events/world.hpp new file mode 100644 index 0000000..41b9569 --- /dev/null +++ b/src/events/world.hpp @@ -0,0 +1,39 @@ +/* + * Copyright (C) 2019 Belle-Isle, Andrew + * + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . + */ + +#ifndef EVENTS_WORLD_HPP_ +#define EVENTS_WORLD_HPP_ + +#include "world.hpp" + +struct WorldChangeEvent +{ + World* newWorld; + + WorldChangeEvent(World* w) : + newWorld(w) {} +}; + +struct WorldMeshUpdateEvent +{ + GLuint worldVBO; + + WorldMeshUpdateEvent(GLuint v) : + worldVBO(v) {} +}; + +#endif//EVENTS_WORLD_HPP diff --git a/src/render.cpp b/src/render.cpp index 5efccce..0c60b00 100644 --- a/src/render.cpp +++ b/src/render.cpp @@ -69,7 +69,7 @@ void RenderSystem::update([[maybe_unused]] entityx::EntityManager& entities, ); glm::mat4 model = glm::mat4(1.0f); - model = glm::scale(model, glm::vec3(8.0f)); + model = glm::scale(model, glm::vec3(20.0f, 20.0f, 1.0f)); glUseProgram(s); @@ -282,7 +282,7 @@ int RenderSystem::init(void) //glClearColor(0.6, 0.8, 1.0, 0.0); - camPos = glm::vec3(0.0f, 0.0f, 0.5f); + camPos = glm::vec3(0.0f, 0.0f, 5.0f); glGenBuffers(1, &world_vbo); return 0; diff --git a/src/world.cpp b/src/world.cpp index 3fb5b6b..9e45d60 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -18,6 +18,7 @@ */ #include "world.hpp" +#include "events/world.hpp" /***************** * WORLD CLASS * @@ -193,5 +194,9 @@ void WorldSystem::update([[maybe_unused]]entityx::EntityManager& entities, [[maybe_unused]]entityx::EventManager& events, [[maybe_unused]]entityx::TimeDelta dt) { - + if (currentWorld == nullptr) { + currentWorld = &(worlds.front()); + events.emit(currentWorld); + std::cout << "Emitted" << std::endl; + } } -- cgit v1.2.3 From 0236eb7f6391c9d925dcaaddb8cb01ecfb7d5e55 Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Mon, 16 Sep 2019 18:16:43 -0400 Subject: Render system is now decoupled from the world system --- src/engine.cpp | 10 ++++++++-- src/events/world.hpp | 8 ++++++-- src/render.cpp | 49 ++++++++++++++++++++++++++++++------------------- src/render.hpp | 20 +++++++++++++++----- src/world.cpp | 20 +++++++++++++++++++- src/world.hpp | 5 +++++ 6 files changed, 83 insertions(+), 29 deletions(-) (limited to 'src') diff --git a/src/engine.cpp b/src/engine.cpp index e38020d..a2d0e9b 100644 --- a/src/engine.cpp +++ b/src/engine.cpp @@ -45,7 +45,7 @@ int Engine::init(void) systems.add(); systems.add(entities); systems.add(); - systems.add(*(systems.system().get())); + systems.add(); systems.add(entities, *(systems.system().get())); systems.add(); systems.configure(); @@ -57,13 +57,19 @@ int Engine::init(void) "it." << std::endl; } + // Initially update the world to send all systems world data + systems.update(0); return 0; } void Engine::logicLoop(void) { entityx::TimeDelta dt = 0; /**< Elapsed milliseconds since each loop */ - double elapsed = 0; + double elapsed = 1000; /**< Time elapsed since last logic loop. This + should be initialized to something larger + than our logic loop period (50ms), so + the logic loop is run during our first + loop. */ while (shouldRun()) { auto start = mc::now(); diff --git a/src/events/world.hpp b/src/events/world.hpp index 41b9569..e5969c0 100644 --- a/src/events/world.hpp +++ b/src/events/world.hpp @@ -31,9 +31,13 @@ struct WorldChangeEvent struct WorldMeshUpdateEvent { GLuint worldVBO; + unsigned int numVertex; + GLuint worldTexture; + GLuint worldNormal; - WorldMeshUpdateEvent(GLuint v) : - worldVBO(v) {} + WorldMeshUpdateEvent(GLuint v, unsigned int p, + GLuint t, GLuint n) : + worldVBO(v), numVertex(p), worldTexture(t), worldNormal(n) {} }; #endif//EVENTS_WORLD_HPP diff --git a/src/render.cpp b/src/render.cpp index 0c60b00..b991b2f 100644 --- a/src/render.cpp +++ b/src/render.cpp @@ -27,6 +27,7 @@ void RenderSystem::configure([[maybe_unused]] entityx::EntityManager& entities, [[maybe_unused]] entityx::EventManager& events) { + events.subscribe(*this); init(); } @@ -179,27 +180,28 @@ void RenderSystem::update([[maybe_unused]] entityx::EntityManager& entities, glDrawArrays(GL_TRIANGLES, 0, 6); }); - std::basic_string& wm = worldSystem.current()->getMesh(); - - glActiveTexture(GL_TEXTURE0); - glBindTexture(GL_TEXTURE_2D, worldSystem.current()->getTexture()); - glUniform1i(q, 0); + // If we were given a world VBO render it + if (worldVBO) { + glActiveTexture(GL_TEXTURE0); + glBindTexture(GL_TEXTURE_2D, worldTexture); + glUniform1i(q, 0); - glActiveTexture(GL_TEXTURE1); - glBindTexture(GL_TEXTURE_2D, worldSystem.current()->getNormal()); - glUniform1i(n, 1); + glActiveTexture(GL_TEXTURE1); + glBindTexture(GL_TEXTURE_2D, worldNormal); + glUniform1i(n, 1); - glBindBuffer(GL_ARRAY_BUFFER, world_vbo); - glBufferData(GL_ARRAY_BUFFER, - wm.size() * sizeof(WorldMeshData), - &wm.front(), - GL_STREAM_DRAW); + glBindBuffer(GL_ARRAY_BUFFER, worldVBO); + //glBufferData(GL_ARRAY_BUFFER, + // wm.size() * sizeof(WorldMeshData), + // &wm.front(), + // GL_STREAM_DRAW); - glVertexAttribPointer(a, 3, GL_FLOAT, GL_FALSE, - 6*sizeof(float), 0); - glVertexAttribPointer(t, 2, GL_FLOAT, GL_FALSE, - 6*sizeof(float), (void*)(3*sizeof(float))); - glDrawArrays(GL_TRIANGLES, 0, wm.size()); + glVertexAttribPointer(a, 3, GL_FLOAT, GL_FALSE, + 6*sizeof(float), 0); + glVertexAttribPointer(t, 2, GL_FLOAT, GL_FALSE, + 6*sizeof(float), (void*)(3*sizeof(float))); + glDrawArrays(GL_TRIANGLES, 0, worldVertex); + } /************* * CLEANUP * @@ -283,8 +285,17 @@ int RenderSystem::init(void) //glClearColor(0.6, 0.8, 1.0, 0.0); camPos = glm::vec3(0.0f, 0.0f, 5.0f); - glGenBuffers(1, &world_vbo); return 0; } +/************ +* EVENTS * +************/ +void RenderSystem::receive(const WorldMeshUpdateEvent &wmu) +{ + worldVBO = wmu.worldVBO; + worldVertex = wmu.numVertex; + worldTexture = wmu.worldTexture; + worldNormal = wmu.worldNormal; +} diff --git a/src/render.hpp b/src/render.hpp index 82ca844..26e525b 100644 --- a/src/render.hpp +++ b/src/render.hpp @@ -36,8 +36,10 @@ #include "shader.hpp" #include "world.hpp" +#include "events/world.hpp" -class RenderSystem : public entityx::System +class RenderSystem : public entityx::System, + public entityx::Receiver { private: constexpr static const char *title = "gamedev2"; @@ -49,12 +51,14 @@ private: Shader worldShader; glm::vec3 camPos; - GLuint world_vbo; - WorldSystem &worldSystem; + GLuint worldVBO = 0; + unsigned int worldVertex = 0; + GLuint worldTexture = 0; + GLuint worldNormal = 0; public: - RenderSystem(WorldSystem & _ws) : - window(nullptr, SDL_DestroyWindow), worldSystem(_ws) {} + RenderSystem() : + window(nullptr, SDL_DestroyWindow) {} ~RenderSystem(void) { @@ -80,6 +84,12 @@ public: * @return Zero on success, non-zero on error */ int init(void); + + /************ + * EVENTS * + ************/ + void receive(const WorldMeshUpdateEvent &wmu); + }; #endif // SYSTEM_RENDER_HPP_ diff --git a/src/world.cpp b/src/world.cpp index 9e45d60..7710ecc 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -55,6 +55,8 @@ World::World(sol::object param) if (generate != sol::nil) generate(this); + // Create our world VBO + glGenBuffers(1, &worldVBO); // Generate our mesh generateMesh(); } @@ -74,7 +76,6 @@ void World::registerMaterial(std::string name, sol::object data) std::cerr << "Material: " << name << " was already registered" << std::endl; } - } else { // TODO better logging std::cerr << "Material registration must have a table" << std::endl; @@ -157,6 +158,14 @@ void World::generateMesh() } } } + + glBindBuffer(GL_ARRAY_BUFFER, worldVBO); + glBufferData(GL_ARRAY_BUFFER, + mesh.size() * sizeof(mesh), + &mesh.front(), + GL_STREAM_DRAW); + + meshUpdated = true; } /* SEED */ @@ -199,4 +208,13 @@ void WorldSystem::update([[maybe_unused]]entityx::EntityManager& entities, events.emit(currentWorld); std::cout << "Emitted" << std::endl; } + + if (currentWorld->meshUpdated) { + events.emit( + currentWorld->worldVBO, + currentWorld->mesh.size(), + currentWorld->getTexture(), + currentWorld->getNormal() + ); + } } diff --git a/src/world.hpp b/src/world.hpp index 5933306..696f0aa 100644 --- a/src/world.hpp +++ b/src/world.hpp @@ -59,6 +59,7 @@ struct WorldMaterial class World { + friend class WorldSystem; private: unsigned int seed; unsigned int layers; @@ -71,7 +72,11 @@ private: std::unordered_map string_registry; std::vector registry; +protected: + // RENDER std::basic_string mesh; + GLuint worldVBO; + bool meshUpdated = false; public: /* VARS */ sol::function generate; -- cgit v1.2.3