From e7fee98e0ee15665b40b383baf925356bb81f20d Mon Sep 17 00:00:00 2001 From: tcsullivan Date: Sun, 1 Sep 2019 12:56:49 -0400 Subject: added player system; player moves left and right --- src/components/Component.hpp | 2 +- src/components/Player.hpp | 34 +++++++++++++++++++ src/engine.cpp | 5 +++ src/player.cpp | 75 +++++++++++++++++++++++++++++++++++++++++ src/player.hpp | 80 ++++++++++++++++++++++++++++++++++++++++++++ src/script.cpp | 10 +++++- 6 files changed, 204 insertions(+), 2 deletions(-) create mode 100644 src/components/Player.hpp create mode 100644 src/player.cpp create mode 100644 src/player.hpp (limited to 'src') 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 template 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 . + */ + +#ifndef PLAYER_HPP_ +#define PLAYER_HPP_ + +#include "Component.hpp" + +struct Player : Component, entityx::Component +{ + 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(); systems.add(); + systems.add(); systems.add(); systems.add(); systems.configure(); + + systems.system()->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 . + */ + +#include "player.hpp" + +#include "components/Velocity.hpp" + +void PlayerSystem::configure([[maybe_unused]] entityx::EntityManager& entities, + entityx::EventManager& events) +{ + events.subscribe>(*this); + events.subscribe>(*this); + events.subscribe(*this); + events.subscribe(*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& cae) +{ + player = cae.entity; +} + +void PlayerSystem::receive(const entityx::ComponentRemovedEvent& 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(); vel) + vel->x += GROUND_VELOCITY; + } else if (kue.sym == SDLK_d) { + if (auto vel = player.component(); vel) + vel->x -= GROUND_VELOCITY; + } + } +} + +void PlayerSystem::receive(const KeyUpEvent& kue) +{ + if (player.valid()) { + if (kue.sym == SDLK_a) { + if (auto vel = player.component(); vel) + vel->x -= GROUND_VELOCITY; + } else if (kue.sym == SDLK_d) { + if (auto vel = player.component(); 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 . + */ + +#ifndef PLAYERSYSTEM_HPP_ +#define PLAYERSYSTEM_HPP_ + +#include +#include + +#include "components/Player.hpp" +#include "input.hpp" + +/** + * @class PlayerSystem + * Controls player entity movement. + */ +class PlayerSystem : public entityx::System, + public entityx::Receiver +{ + 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& cae); + + /** + * Invalidates the system's player entity (assume player is gone). + */ + void receive(const entityx::ComponentRemovedEvent& 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(*this); - init(); + //init(); } void ScriptSystem::update([[maybe_unused]] entityx::EntityManager& entites, @@ -75,6 +75,7 @@ void ScriptSystem::doFile(void) * SCRIPT PARSING * ********************/ #include +#include #include #include #include @@ -105,6 +106,9 @@ void ScriptSystem::scriptExport() "x", &Velocity::x, "y", &Velocity::y); + lua.new_usertype("Player", + sol::constructors()); + auto gamespace = lua["game"].get_or_create(); gamespace.set_function("spawn", func); } @@ -155,6 +159,10 @@ sol::table ScriptSystem::spawn(sol::object param) e.assign(Velocity().FromLua(tab["Velocity"])).get(); } + if (tab["Player"] != nullptr) { + (*toRet)["Player"] = e.assign().get(); + } + } else { // TODO better logging std::cerr << "Parameter to spawn() must be a table!" << std::endl; -- cgit v1.2.3