diff options
author | tcsullivan <tullivan99@gmail.com> | 2019-09-01 12:56:49 -0400 |
---|---|---|
committer | tcsullivan <tullivan99@gmail.com> | 2019-09-01 12:56:49 -0400 |
commit | e7fee98e0ee15665b40b383baf925356bb81f20d (patch) | |
tree | 1542a5d0af9fb33d4477d62f07f2c9b8c037d49c | |
parent | 86e07cc6860b01c1569645e858ea8e9235d5194e (diff) |
added player system; player moves left and right
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | Scripts/init.lua | 5 | ||||
-rw-r--r-- | src/components/Component.hpp | 2 | ||||
-rw-r--r-- | src/components/Player.hpp | 34 | ||||
-rw-r--r-- | src/engine.cpp | 5 | ||||
-rw-r--r-- | src/player.cpp | 75 | ||||
-rw-r--r-- | src/player.hpp | 80 | ||||
-rw-r--r-- | src/script.cpp | 10 |
8 files changed, 210 insertions, 3 deletions
@@ -36,7 +36,7 @@ OBJEXT = o DEPEXT = d LIBDIR = lib -LIBS = -L$(LIBDIR) -lSDL2 -lpthread -lentityx -ldl -lluajit -lGLEW -lGL -lSDL_image +LIBS = -L$(LIBDIR) -lSDL2 -lpthread -lentityx -ldl -lluajit -lGLEW -lGL -lSDL2_image CXXFLAGS = -ggdb -std=c++17 -Wall -Wextra -Werror -pedantic diff --git a/Scripts/init.lua b/Scripts/init.lua index a590ca2..59920c1 100644 --- a/Scripts/init.lua +++ b/Scripts/init.lua @@ -1,8 +1,13 @@ bird = { + Player = 0, Position = { x = 150, y = 75 }, + Velocity = { + x = 0.0, + y = 0.0 + }, Name = "bord", Init = function(self) print(self.Position.x .. "," .. self.Position.y) diff --git a/src/components/Component.hpp b/src/components/Component.hpp index 3c0a6d5..98095ba 100644 --- a/src/components/Component.hpp +++ b/src/components/Component.hpp @@ -18,7 +18,7 @@ #ifndef COMPONENT_HPP_ #define COMPONENT_HPP_ -#include "sol/sol.hpp" +#include <sol/sol.hpp> template <typename T> class Component diff --git a/src/components/Player.hpp b/src/components/Player.hpp new file mode 100644 index 0000000..6fb6311 --- /dev/null +++ b/src/components/Player.hpp @@ -0,0 +1,34 @@ +/** + * @file Player.h + * Component for designating player-controlled entities. + * + * Copyright (C) 2019 Clyne Sullivan + * + * 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 <http://www.gnu.org/licenses/>. + */ + +#ifndef PLAYER_HPP_ +#define PLAYER_HPP_ + +#include "Component.hpp" + +struct Player : Component<Player>, entityx::Component<Player> +{ + Player FromLua([[maybe_unused]] sol::object ref) + { + return *this; + } +}; + +#endif // PLAYER_HPP_ diff --git a/src/engine.cpp b/src/engine.cpp index 99c457b..26dcd0a 100644 --- a/src/engine.cpp +++ b/src/engine.cpp @@ -22,6 +22,7 @@ #include "engine.hpp" #include "gamerun.hpp" #include "input.hpp" +#include "player.hpp" #include "script.hpp" #include "render.hpp" @@ -33,10 +34,14 @@ int Engine::init(void) { systems.add<GameRunSystem>(); systems.add<InputSystem>(); + systems.add<PlayerSystem>(); systems.add<RenderSystem>(); systems.add<ScriptSystem>(); systems.configure(); + + systems.system<ScriptSystem>()->init(); + return 0; } diff --git a/src/player.cpp b/src/player.cpp new file mode 100644 index 0000000..22bd0ef --- /dev/null +++ b/src/player.cpp @@ -0,0 +1,75 @@ +/** + * @file player.cpp + * Manages player input. + * + * Copyright (C) 2019 Clyne Sullivan + * + * 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 <http://www.gnu.org/licenses/>. + */ + +#include "player.hpp" + +#include "components/Velocity.hpp" + +void PlayerSystem::configure([[maybe_unused]] entityx::EntityManager& entities, + entityx::EventManager& events) +{ + events.subscribe<entityx::ComponentAddedEvent<Player>>(*this); + events.subscribe<entityx::ComponentRemovedEvent<Player>>(*this); + events.subscribe<KeyUpEvent>(*this); + events.subscribe<KeyDownEvent>(*this); +} + +void PlayerSystem::update([[maybe_unused]] entityx::EntityManager& entites, + [[maybe_unused]] entityx::EventManager& events, + [[maybe_unused]] entityx::TimeDelta dt) +{ +} + +void PlayerSystem::receive(const entityx::ComponentAddedEvent<Player>& cae) +{ + player = cae.entity; +} + +void PlayerSystem::receive(const entityx::ComponentRemovedEvent<Player>& cre) +{ + if (player == cre.entity) + player.invalidate(); +} + +void PlayerSystem::receive(const KeyDownEvent& kue) +{ + if (player.valid()) { + if (kue.sym == SDLK_a) { + if (auto vel = player.component<Velocity>(); vel) + vel->x += GROUND_VELOCITY; + } else if (kue.sym == SDLK_d) { + if (auto vel = player.component<Velocity>(); vel) + vel->x -= GROUND_VELOCITY; + } + } +} + +void PlayerSystem::receive(const KeyUpEvent& kue) +{ + if (player.valid()) { + if (kue.sym == SDLK_a) { + if (auto vel = player.component<Velocity>(); vel) + vel->x -= GROUND_VELOCITY; + } else if (kue.sym == SDLK_d) { + if (auto vel = player.component<Velocity>(); vel) + vel->x += GROUND_VELOCITY; + } + } +} diff --git a/src/player.hpp b/src/player.hpp new file mode 100644 index 0000000..4469745 --- /dev/null +++ b/src/player.hpp @@ -0,0 +1,80 @@ +/** + * @file player.hpp + * Manages player input. + * + * Copyright (C) 2019 Clyne Sullivan + * + * 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 <http://www.gnu.org/licenses/>. + */ + +#ifndef PLAYERSYSTEM_HPP_ +#define PLAYERSYSTEM_HPP_ + +#include <SDL2/SDL.h> +#include <entityx/entityx.h> + +#include "components/Player.hpp" +#include "input.hpp" + +/** + * @class PlayerSystem + * Controls player entity movement. + */ +class PlayerSystem : public entityx::System<PlayerSystem>, + public entityx::Receiver<PlayerSystem> +{ + private: + /** + * Defines player's horizontal movement velocity. + */ + constexpr static double GROUND_VELOCITY = 100; + + entityx::Entity player; + + public: + /** + * Prepares the system for running. + */ + void configure([[maybe_unused]] entityx::EntityManager& entities, + entityx::EventManager& events) final; + + /** + * Updates the scripting system. + */ + void update([[maybe_unused]] entityx::EntityManager& entites, + [[maybe_unused]] entityx::EventManager& events, + [[maybe_unused]] entityx::TimeDelta dt) final; + + /** + * Captures the player entity. + */ + void receive(const entityx::ComponentAddedEvent<Player>& cae); + + /** + * Invalidates the system's player entity (assume player is gone). + */ + void receive(const entityx::ComponentRemovedEvent<Player>& cre); + + /** + * Applies velocity based on key press. + */ + void receive(const KeyDownEvent& kue); + + /** + * Removes applied velocity + */ + void receive(const KeyUpEvent& kue); +}; + +#endif // PLAYERSYSTEM_HPP_ diff --git a/src/script.cpp b/src/script.cpp index 260df13..ffefb1d 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -32,7 +32,7 @@ void ScriptSystem::configure([[maybe_unused]]entityx::EntityManager& entities, events.subscribe<EntitySpawnEvent>(*this); - init(); + //init(); } void ScriptSystem::update([[maybe_unused]] entityx::EntityManager& entites, @@ -75,6 +75,7 @@ void ScriptSystem::doFile(void) * SCRIPT PARSING * ********************/ #include <components/Position.hpp> +#include <components/Player.hpp> #include <components/Name.hpp> #include <components/Render.hpp> #include <components/Script.hpp> @@ -105,6 +106,9 @@ void ScriptSystem::scriptExport() "x", &Velocity::x, "y", &Velocity::y); + lua.new_usertype<Player>("Player", + sol::constructors<Player(void), Player()>()); + auto gamespace = lua["game"].get_or_create<sol::table>(); gamespace.set_function("spawn", func); } @@ -155,6 +159,10 @@ sol::table ScriptSystem::spawn(sol::object param) e.assign<Velocity>(Velocity().FromLua(tab["Velocity"])).get(); } + if (tab["Player"] != nullptr) { + (*toRet)["Player"] = e.assign<Player>().get(); + } + } else { // TODO better logging std::cerr << "Parameter to spawn() must be a table!" << std::endl; |