From 2662ac356ce14dacfbc91689fd37244facff4989 Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Fri, 30 Aug 2019 00:14:27 -0400 Subject: Added Name and Render components to Lua --- src/components/Position.hpp | 5 +++-- src/script.cpp | 33 +++++++++++++++++++++++++++++++++ src/script.hpp | 5 ----- 3 files changed, 36 insertions(+), 7 deletions(-) (limited to 'src') diff --git a/src/components/Position.hpp b/src/components/Position.hpp index 8684a7f..1c6cf71 100644 --- a/src/components/Position.hpp +++ b/src/components/Position.hpp @@ -1,4 +1,5 @@ /** + * Copyright (C) 2019 Belle-Isle, Andrew * * This program is free software: you can redistribute it and/or modify @@ -26,11 +27,11 @@ struct Position : Component, entityx::Component public: float x,y; Position(float _x, float _y): x(_x), y(_y) {} - Position(void){x = y = 0.0;} + Position(void): x(0), y(0) {} Position FromLua(sol::object ref) { - if (ref.get_type() == sol::type::table){ + if (ref.get_type() == sol::type::table) { sol::table tab = ref; if (tab["x"] != nullptr) this->x = tab["x"]; diff --git a/src/script.cpp b/src/script.cpp index 4630440..86917b9 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -62,6 +62,11 @@ int ScriptSystem::init(void) return 0; } +// TODO move all of these below once the test printouts are gone +#include +#include +#include + void ScriptSystem::doFile(void) { auto result = lua.script_file("Scripts/init.lua"); @@ -72,11 +77,20 @@ void ScriptSystem::doFile(void) manager->each( [&](entityx::Entity, Position& p) {std::cout << p.x << "," << p.y << std::endl;}); + + manager->each( + [&](entityx::Entity, Name& n) + {std::cout << n.name << std::endl;}); + + manager->each( + [&](entityx::Entity, Render& r) + {std::cout << r.texture << ": " << r.visible << std::endl;}); } /******************** * SCRIPT PARSING * ********************/ +// TODO here void ScriptSystem::scriptExport() { @@ -89,6 +103,15 @@ void ScriptSystem::scriptExport() "x", &Position::x, "y", &Position::y); + lua.new_usertype("Name", + sol::constructors(), + "value", &Name::name); + + lua.new_usertype("Render", + sol::constructors(), + "visible", &Render::visible, + "texture", &Render::texture); + auto gamespace = lua["game"].get_or_create(); gamespace.set_function("spawn", func); } @@ -111,6 +134,16 @@ sol::table ScriptSystem::spawn(sol::object param) toRet["init"] = tab["init"]; } + if (tab["Name"] != nullptr) { + toRet["Name"] = + e.assign(Name().FromLua(tab["Name"])).get(); + } + + if (tab["Render"] != nullptr) { + toRet["Render"] = + e.assign(Render().FromLua(tab["Render"])).get(); + } + } else { std::cerr << "Parameter to spawn() must be a table!" << std::endl; } diff --git a/src/script.hpp b/src/script.hpp index baad0b1..bd8c620 100644 --- a/src/script.hpp +++ b/src/script.hpp @@ -24,11 +24,6 @@ #include #include -/**************** -* COMPONENTS * -****************/ -#include - struct EntitySpawnEvent { EntitySpawnEvent (sol::object ref) : ref(ref) {} -- cgit v1.2.3