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 --- Scripts/init.lua | 5 ++-- Scripts/world.lua | 3 ++- 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 +++++++++++++++++++++++++++++++++++++++++++++++++++++++ 12 files changed, 165 insertions(+), 11 deletions(-) create mode 100644 src/world.cpp create mode 100644 src/world.hpp diff --git a/Scripts/init.lua b/Scripts/init.lua index f177462..78b2a76 100644 --- a/Scripts/init.lua +++ b/Scripts/init.lua @@ -129,6 +129,9 @@ wall = { } } +-- Create the world +dofile("Scripts/world.lua") + birdSpawn = game.spawn(bird); dogSpawn = game.spawn(cat); @@ -156,8 +159,6 @@ game.spawn({ end }); -dofile("Scripts/world.lua") - ------------------- -- SERIALIZING -- ------------------- diff --git a/Scripts/world.lua b/Scripts/world.lua index db0dc70..345a9b4 100644 --- a/Scripts/world.lua +++ b/Scripts/world.lua @@ -32,4 +32,5 @@ world = { end } -world:Generate() +--world:Generate() +game.worldRegister(world) 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