From dfb62a419e0c283131f9627f23b6eb42aa28290c Mon Sep 17 00:00:00 2001 From: Andy Belle-Isle Date: Sat, 7 Sep 2019 01:14:51 -0400 Subject: Added physics to the script system --- src/script.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'src') diff --git a/src/script.cpp b/src/script.cpp index d8f23ec..e1dea6a 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -86,6 +86,7 @@ void ScriptSystem::doFile(void) #include #include #include +#include void ScriptSystem::scriptExport(void) { @@ -122,6 +123,10 @@ void ScriptSystem::scriptExport(void) "b", &Light::b, "strength", &Light::strength); + lua.new_usertype("Physics", + sol::constructors(), + "standing", &Physics::standing); + auto gamespace = lua["game"].get_or_create(); gamespace.set_function("spawn", func); } @@ -176,6 +181,15 @@ sol::table ScriptSystem::spawn(sol::object param) (*toRet)["Player"] = e.assign().get(); } + if (tab["Physics"] != nullptr) { + if (!e.has_component()) // Position must exist for phys. + (*toRet)["Position"] = e.assign().get(); + if (!e.has_component()) // Velocity must exist for phys. + (*toRet)["Velocity"] = e.assign().get(); + + (*toRet)["Physics"] = e.assign().get(); + } + if (tab["Light"] != nullptr) { if (!e.has_component()) // Position must exist for vel. (*toRet)["Position"] = e.assign().get(); -- cgit v1.2.3