aboutsummaryrefslogtreecommitdiffstats
path: root/src/script.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2019-10-01 08:37:05 -0400
committerClyne Sullivan <clyne@bitgloo.com>2019-10-01 08:37:05 -0400
commitad5a63db312d0029109e6ca0051feaa516419ad2 (patch)
treed0834bae2ab7ae06bfdc58b38ab32428cf1aeb50 /src/script.hpp
parent5cceca5ec696e6626cea0ec07f9db1b28bb3b875 (diff)
cleaned up lua function bindings
Diffstat (limited to 'src/script.hpp')
-rw-r--r--src/script.hpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/script.hpp b/src/script.hpp
index 0ac9e63..24cc142 100644
--- a/src/script.hpp
+++ b/src/script.hpp
@@ -26,6 +26,21 @@
#include "world.hpp"
+/**
+ * Utility for pairing class instances to their member function calls.
+ * This is useful for adding functions to the Lua game namespace.
+ *
+ * @param func The member function to call
+ * @param instance The instance to bind to
+ * @return A function that calls the member function using the given instance
+ */
+template<class C, typename R, typename... Args>
+auto bindInstance(R (C::* func)(Args...), C *instance)
+{
+ return [instance, func](Args... args) { (instance->*func)(args...); };
+}
+
+
struct EntitySpawnEvent
{
sol::object ref;