From c772d1b5ecffbeb9712b16a580080cb20b3bacfc Mon Sep 17 00:00:00 2001 From: Andy Date: Mon, 26 Aug 2019 14:46:32 -0400 Subject: Started lua->entityx binding Created type converter to-and-from Lua and C --- src/Script/entityx/LuaTypes.hpp | 96 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 96 insertions(+) create mode 100644 src/Script/entityx/LuaTypes.hpp (limited to 'src/Script/entityx') diff --git a/src/Script/entityx/LuaTypes.hpp b/src/Script/entityx/LuaTypes.hpp new file mode 100644 index 0000000..66d1f47 --- /dev/null +++ b/src/Script/entityx/LuaTypes.hpp @@ -0,0 +1,96 @@ +#ifndef LUATYPES_HPP +#define LUATYPES_HPP + +#include "lua.hpp" + +namespace entityx +{ + namespace lua + { + /************* + * GENERIC * + *************/ + template + inline void LuaToC(lua_State* L, T& ref); + + template + inline void CToLua(lua_State* L, T& ref); + + /************ + * DOUBLE * + ************/ + template<> + inline void LuaToC(lua_State* L, double& ref) + { + ref = lua_tonumber(L, -1); + } + + template<> + inline void CToLua(lua_State* L, double& ref) + { + lua_pushnumber(L, ref); + } + + /*********** + * FLOAT * + ***********/ + template<> + inline void LuaToC(lua_State* L, float& ref) + { + ref = static_cast(lua_tonumber(L, -1)); + } + + template<> + inline void CToLua(lua_State* L, float& ref) + { + lua_pushnumber(L, ref); + } + + /************* + * INTEGER * + *************/ + template<> + inline void LuaToC(lua_State* L, int& ref) + { + ref = lua_tointeger(L, -1); + } + + template<> + inline void CToLua(lua_State* L, int& ref) + { + lua_pushnumber(L, ref); + } + + /************* + * BOOLEAN * + *************/ + template<> + inline void LuaToC(lua_State* L, bool& ref) + { + ref = lua_toboolean(L, -1); + } + + template<> + inline void CToLua(lua_State* L, bool& ref) + { + lua_pushboolean(L, ref); + } + + /************ + * STRING * + ************/ + template<> + inline void LuaToC(lua_State* L, std::string& ref) + { + ref = lua_tostring(L, -1); + } + + template<> + inline void CToLua(lua_State* L, std::string& ref) + { + lua_pushstring(L, ref.c_str()); + } + } +} + +#endif//LUATYPES_HPP -- cgit v1.2.3