/** * @file script.hpp * Manages all Lua scripts. * * 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_SCRIPT_HPP_ #define SYSTEM_SCRIPT_HPP_ #include #include struct EntitySpawnEvent { sol::object ref; EntitySpawnEvent(sol::object _ref) : ref(_ref) {} }; /** * @class ScriptSystem * Handles all the game's scripting requests */ class ScriptSystem : public entityx::System, public entityx::Receiver { private: /** * The script systems internal lua state that handles all * interactions between C and Lua */ sol::state lua; entityx::EntityManager& manager; public: ScriptSystem(entityx::EntityManager& _manager): manager(_manager) {} ~ScriptSystem(void) {} /** * Prepares the system for running. */ void configure(entityx::EntityManager& entities, entityx::EventManager& events) final; /** * Updates the scripting system. */ void update(entityx::EntityManager& entites, entityx::EventManager& events, entityx::TimeDelta dt) final; /** * Receives all entity spawning events and manages the * script counterpart. */ void receive(const EntitySpawnEvent &toSpawn); /** * Initializes the lua states and libraries. * @return Zero on success, non-zero on error */ int init(void); /** * Run the initialization file. */ void doFile(void); /** * The function called by lua scripts in order to spawn an entity. * @param param The table that must be passed in by Lua. This is a * sol2 object instead of a sol2 table because this allows us to handle * errors easier instead of letting sol2 do the error handling. */ sol::table spawn(sol::object param); /** * Contains all calls that export components/functions to lua. */ void scriptExport(void); }; #endif // SYSTEM_SCRIPT_HPP_