/** * @file script.cpp * 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 . */ #include /********************* * SYSTEM SPECIFIC * *********************/ void ScriptSystem::configure([[maybe_unused]] entityx::EntityManager& entities, [[maybe_unused]] entityx::EventManager& events) { events.subscribe(*this); // Init after systems.configure() in engine.cpp //init(); lua.open_libraries(sol::lib::base, sol::lib::math, sol::lib::string); scriptExport(); } #include void ScriptSystem::update([[maybe_unused]] entityx::EntityManager& entities, [[maybe_unused]] entityx::EventManager& events, [[maybe_unused]] entityx::TimeDelta dt) { entities.each([](entityx::Entity, Scripted &s){ s.updatePhysics(); }); } void ScriptSystem::receive([[maybe_unused]] const EntitySpawnEvent &toSpawn) { } /********************* * CLASS FUNCTIONS * *********************/ int ScriptSystem::init(void) { doFile(); return 0; } void ScriptSystem::doFile(void) { auto result = lua.script_file("Scripts/init.lua"); if (!result.valid()) { std::cout << "Lua error: " << std::endl; } } /******************** * SCRIPT PARSING * ********************/ #include #include #include #include #include #include #include #include #include #include void ScriptSystem::scriptExport(void) { lua.new_usertype("Position", sol::constructors(), "x", &Position::x, "y", &Position::y, "z", &Position::z); lua.new_usertype("Name", sol::constructors(), "value", &Name::name); lua.new_usertype("Render", sol::constructors(), "visible", &Render::visible, "texture", &Render::texture, "flipx", &Render::flipX); lua.new_usertype("Velocity", sol::constructors(), "x", &Velocity::x, "y", &Velocity::y); lua.new_usertype("Player", sol::constructors()); lua.new_usertype("Light", sol::constructors(), "r", &Light::r, "g", &Light::g, "b", &Light::b, "strength", &Light::strength); lua.new_usertype("Physics", sol::constructors(), "standing", &Physics::standing, "gravity", &Physics::gravity); lua.new_usertype