| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028 |
- #include "Base.h"
- #include "FileSystem.h"
- #include "ScriptController.h"
- #include "lua/lua_all_bindings.h"
- #define GENERATE_LUA_GET_POINTER(type, checkFunc) \
- ScriptController* sc = Game::getInstance()->getScriptController(); \
- /* Check that the parameter is the correct type. */ \
- if (!lua_istable(sc->_lua, index)) \
- { \
- if (lua_islightuserdata(sc->_lua, index)) \
- return (type*)lua_touserdata(sc->_lua, index); \
- lua_pushfstring(sc->_lua, "Expected a " #type " pointer (an array represented as a Lua table), got '%s' instead.", \
- luaL_typename(sc->_lua, index)); \
- lua_error(sc->_lua); \
- return NULL; \
- } \
- \
- /* Get the size of the array. */ \
- lua_len(sc->_lua, index); \
- int size = luaL_checkint(sc->_lua, -1); \
- if (size <= 0) \
- return NULL; \
- \
- /* Create an array to store the values. */ \
- type* values = (type*)malloc(sizeof(type)*size); \
- \
- /* Push the first key. */ \
- lua_pushnil(sc->_lua); \
- int i = 0; \
- for (; lua_next(sc->_lua, index) != 0 && i < size; i++) \
- { \
- values[i] = (checkFunc(sc->_lua, -1)); \
- \
- /* Remove the value we just retrieved, but leave the key for the next iteration. */ \
- lua_pop(sc->_lua, 1); \
- } \
- \
- return values
- namespace gameplay
- {
- extern void splitURL(const std::string& url, std::string* file, std::string* id);
- void ScriptUtil::registerLibrary(const char* name, const luaL_Reg* functions)
- {
- ScriptController* sc = Game::getInstance()->getScriptController();
- lua_newtable(sc->_lua);
- // Go through the list of functions and add them to the table.
- const luaL_Reg* iter = functions;
- for (; iter && iter->name; iter++)
- {
- lua_pushcfunction(sc->_lua, iter->func);
- lua_setfield(sc->_lua, -2, iter->name);
- }
- lua_setglobal(sc->_lua, name);
- }
- void ScriptUtil::registerConstantBool(std::string name, bool value, std::vector<std::string> scopePath)
- {
- ScriptController* sc = Game::getInstance()->getScriptController();
- // If the constant is within a scope, get the correct parent
- // table on the stack before setting its value.
- if (scopePath.size() > 0)
- {
- lua_getglobal(sc->_lua, scopePath[0].c_str());
- for (unsigned int i = 1; i < scopePath.size(); i++)
- {
- lua_pushstring(sc->_lua, scopePath[i].c_str());
- lua_gettable(sc->_lua, -2);
- }
-
- // Add the constant to the parent table.
- lua_pushboolean(sc->_lua, value);
- lua_setfield(sc->_lua, -2, name.c_str());
- // Pop all the parent tables off the stack.
- int size = scopePath.size();
- lua_pop(sc->_lua, size);
- }
- else
- {
- // TODO: Currently unsupported (we don't parse for this yet).
- // If the constant is global, add it to the global table.
- lua_pushboolean(sc->_lua, value);
- lua_pushvalue(sc->_lua, -1);
- lua_setglobal(sc->_lua, name.c_str());
- }
- }
- void ScriptUtil::registerConstantNumber(std::string name, double value, std::vector<std::string> scopePath)
- {
- ScriptController* sc = Game::getInstance()->getScriptController();
- // If the constant is within a scope, get the correct parent
- // table on the stack before setting its value.
- if (scopePath.size() > 0)
- {
- lua_getglobal(sc->_lua, scopePath[0].c_str());
- for (unsigned int i = 1; i < scopePath.size(); i++)
- {
- lua_pushstring(sc->_lua, scopePath[i].c_str());
- lua_gettable(sc->_lua, -2);
- }
-
- // Add the constant to the parent table.
- lua_pushnumber(sc->_lua, value);
- lua_setfield(sc->_lua, -2, name.c_str());
- // Pop all the parent tables off the stack.
- int size = scopePath.size();
- lua_pop(sc->_lua, size);
- }
- else
- {
- // TODO: Currently unsupported (we don't parse for this yet).
- // If the constant is global, add it to the global table.
- lua_pushnumber(sc->_lua, value);
- lua_pushvalue(sc->_lua, -1);
- lua_setglobal(sc->_lua, name.c_str());
- }
- }
- void ScriptUtil::registerConstantString(std::string name, std::string value, std::vector<std::string> scopePath)
- {
- ScriptController* sc = Game::getInstance()->getScriptController();
- // If the constant is within a scope, get the correct parent
- // table on the stack before setting its value.
- if (scopePath.size() > 0)
- {
- lua_getglobal(sc->_lua, scopePath[0].c_str());
- for (unsigned int i = 1; i < scopePath.size(); i++)
- {
- lua_pushstring(sc->_lua, scopePath[i].c_str());
- lua_gettable(sc->_lua, -2);
- }
-
- // Add the constant to the parent table.
- lua_pushstring(sc->_lua, value.c_str());
- lua_setfield(sc->_lua, -2, name.c_str());
- // Pop all the parent tables off the stack.
- int size = scopePath.size();
- lua_pop(sc->_lua, size);
- }
- else
- {
- // TODO: Currently unsupported (we don't parse for this yet).
- // If the constant is global, add it to the global table.
- lua_pushstring(sc->_lua, value.c_str());
- lua_pushvalue(sc->_lua, -1);
- lua_setglobal(sc->_lua, name.c_str());
- }
- }
- void ScriptUtil::registerClass(const char* name, const luaL_Reg* members, lua_CFunction newFunction,
- lua_CFunction deleteFunction, const luaL_Reg* statics, std::vector<std::string> scopePath)
- {
- ScriptController* sc = Game::getInstance()->getScriptController();
- // If the type is an inner type, get the correct parent
- // table on the stack before creating the table for the class.
- if (scopePath.size() > 0)
- {
- std::string tablename = name;
- // Strip off the scope path part of the name.
- lua_getglobal(sc->_lua, scopePath[0].c_str());
- std::size_t index = tablename.find(scopePath[0]);
- if (index != tablename.npos)
- tablename = tablename.substr(index + scopePath[0].size());
-
- for (unsigned int i = 1; i < scopePath.size(); i++)
- {
- lua_pushstring(sc->_lua, scopePath[i].c_str());
- lua_gettable(sc->_lua, -2);
- index = tablename.find(scopePath[i]);
- if (index != tablename.npos)
- tablename = tablename.substr(index + scopePath[i].size());
- }
- lua_pushstring(sc->_lua, tablename.c_str());
- lua_newtable(sc->_lua);
- }
- else
- {
- // If the type is not an inner type, set it as a global table.
- lua_newtable(sc->_lua);
- lua_pushvalue(sc->_lua, -1);
- lua_setglobal(sc->_lua, name);
- }
-
- // Create the metatable and populate it with the member functions.
- lua_pushliteral(sc->_lua, "__metatable");
- luaL_newmetatable(sc->_lua, name);
- if (members)
- luaL_setfuncs(sc->_lua, members, 0);
- lua_pushstring(sc->_lua, "__index");
- lua_pushvalue(sc->_lua, -2);
- lua_settable(sc->_lua, -3);
- // Add the delete function if it was specified.
- if (deleteFunction)
- {
- lua_pushstring(sc->_lua, "__gc");
- lua_pushcfunction(sc->_lua, deleteFunction);
- lua_settable(sc->_lua, -3);
- }
- // Set the metatable on the main table.
- lua_settable(sc->_lua, -3);
-
- // Populate the main table with the static functions.
- if (statics)
- luaL_setfuncs(sc->_lua, statics, 0);
- // Set the new function(s) for the class.
- if (newFunction)
- {
- lua_pushliteral(sc->_lua, "new");
- lua_pushcfunction(sc->_lua, newFunction);
- lua_settable(sc->_lua, -3);
- }
- // Set the table we just created within the correct parent table.
- if (scopePath.size() > 0)
- {
- lua_settable(sc->_lua, -3);
- // Pop all the parent tables off the stack.
- int size = scopePath.size();
- lua_pop(sc->_lua, size);
- }
- else
- {
- // Pop the main table off the stack.
- lua_pop(sc->_lua, 1);
- }
- }
- void ScriptUtil::registerFunction(const char* luaFunction, lua_CFunction cppFunction)
- {
- lua_pushcfunction(Game::getInstance()->getScriptController()->_lua, cppFunction);
- lua_setglobal(Game::getInstance()->getScriptController()->_lua, luaFunction);
- }
- void ScriptUtil::setGlobalHierarchyPair(std::string base, std::string derived)
- {
- Game::getInstance()->getScriptController()->_hierarchy[base].push_back(derived);
- }
- void ScriptUtil::addStringFromEnumConversionFunction(luaStringEnumConversionFunction stringFromEnum)
- {
- Game::getInstance()->getScriptController()->_stringFromEnum.push_back(stringFromEnum);
- }
- bool* ScriptUtil::getBoolPointer(int index)
- {
- GENERATE_LUA_GET_POINTER(bool, luaCheckBool);
- }
- short* ScriptUtil::getShortPointer(int index)
- {
- GENERATE_LUA_GET_POINTER(short, (short)luaL_checkint);
- }
- int* ScriptUtil::getIntPointer(int index)
- {
- GENERATE_LUA_GET_POINTER(int, (int)luaL_checkint);
- }
- long* ScriptUtil::getLongPointer(int index)
- {
- GENERATE_LUA_GET_POINTER(long, (long)luaL_checkint);
- }
- unsigned char* ScriptUtil::getUnsignedCharPointer(int index)
- {
- GENERATE_LUA_GET_POINTER(unsigned char, (unsigned char)luaL_checkunsigned);
- }
- unsigned short* ScriptUtil::getUnsignedShortPointer(int index)
- {
- GENERATE_LUA_GET_POINTER(unsigned short, (unsigned short)luaL_checkunsigned);
- }
- unsigned int* ScriptUtil::getUnsignedIntPointer(int index)
- {
- GENERATE_LUA_GET_POINTER(unsigned int, (unsigned int)luaL_checkunsigned);
- }
- unsigned long* ScriptUtil::getUnsignedLongPointer(int index)
- {
- GENERATE_LUA_GET_POINTER(unsigned long, (unsigned long)luaL_checkunsigned);
- }
- float* ScriptUtil::getFloatPointer(int index)
- {
- GENERATE_LUA_GET_POINTER(float, (float)luaL_checknumber);
- }
- double* ScriptUtil::getDoublePointer(int index)
- {
- GENERATE_LUA_GET_POINTER(double, (double)luaL_checknumber);
- }
- const char* ScriptUtil::getString(int index, bool isStdString)
- {
- if (lua_type(Game::getInstance()->getScriptController()->_lua, index) == LUA_TSTRING)
- return luaL_checkstring(Game::getInstance()->getScriptController()->_lua, index);
- else if (lua_type(Game::getInstance()->getScriptController()->_lua, index) == LUA_TNIL && !isStdString)
- return NULL;
- else
- {
- GP_ERROR("Invalid string parameter (index = %d).", index);
- return NULL;
- }
- }
- bool ScriptUtil::luaCheckBool(lua_State* state, int n)
- {
- if (!lua_isboolean(state, n))
- {
- const char* msg = lua_pushfstring(state, "%s expected, got %s", lua_typename(state, LUA_TBOOLEAN), luaL_typename(state, n));
- luaL_argerror(state, n, msg);
- return false;
- }
- return (lua_toboolean(state, n) != 0);
- }
- void ScriptController::loadScript(const char* path, bool forceReload)
- {
- std::set<std::string>::iterator iter = _loadedScripts.find(path);
- if (iter == _loadedScripts.end() || forceReload)
- {
- const char* scriptContents = FileSystem::readAll(path);
- if (luaL_dostring(_lua, scriptContents))
- GP_ERROR("Failed to run Lua script with error: '%s'.", lua_tostring(_lua, -1));
- SAFE_DELETE_ARRAY(scriptContents);
- if (iter == _loadedScripts.end())
- _loadedScripts.insert(path);
- }
- }
- std::string ScriptController::loadUrl(const char* url)
- {
- std::string file;
- std::string id;
- splitURL(url, &file, &id);
- // Make sure the function isn't empty.
- if (id.size() <= 0)
- {
- GP_ERROR("Got an empty function name when parsing function url '%s'.", url);
- return std::string();
- }
- // Ensure the script is loaded.
- if (file.size() > 0)
- Game::getInstance()->getScriptController()->loadScript(file.c_str());
- // Return the function name.
- return id;
- }
- bool ScriptController::getBool(const char* name)
- {
- lua_getglobal(_lua, name);
- return ScriptUtil::luaCheckBool(_lua, -1);
- }
- char ScriptController::getChar(const char* name)
- {
- lua_getglobal(_lua, name);
- return (char)luaL_checkint(_lua, -1);
- }
- short ScriptController::getShort(const char* name)
- {
- lua_getglobal(_lua, name);
- return (short)luaL_checkint(_lua, -1);
- }
- int ScriptController::getInt(const char* name)
- {
- lua_getglobal(_lua, name);
- return luaL_checkint(_lua, -1);
- }
- long ScriptController::getLong(const char* name)
- {
- lua_getglobal(_lua, name);
- return luaL_checklong(_lua, -1);
- }
- unsigned char ScriptController::getUnsignedChar(const char* name)
- {
- lua_getglobal(_lua, name);
- return (unsigned char)luaL_checkunsigned(_lua, -1);
- }
- unsigned short ScriptController::getUnsignedShort(const char* name)
- {
- lua_getglobal(_lua, name);
- return (unsigned short)luaL_checkunsigned(_lua, -1);
- }
- unsigned int ScriptController::getUnsignedInt(const char* name)
- {
- lua_getglobal(_lua, name);
- return (unsigned int)luaL_checkunsigned(_lua, -1);
- }
- unsigned long ScriptController::getUnsignedLong(const char* name)
- {
- lua_getglobal(_lua, name);
- return (unsigned long)luaL_checkunsigned(_lua, -1);
- }
- float ScriptController::getFloat(const char* name)
- {
- lua_getglobal(_lua, name);
- return (float)luaL_checknumber(_lua, -1);
- }
- double ScriptController::getDouble(const char* name)
- {
- lua_getglobal(_lua, name);
- return (double)luaL_checknumber(_lua, -1);
- }
- const char* ScriptController::getString(const char* name)
- {
- lua_getglobal(_lua, name);
- return luaL_checkstring(_lua, -1);
- }
- void ScriptController::setBool(const char* name, bool v)
- {
- lua_pushboolean(_lua, v);
- lua_setglobal(_lua, name);
- }
- void ScriptController::setChar(const char* name, char v)
- {
- lua_pushinteger(_lua, v);
- lua_setglobal(_lua, name);
- }
- void ScriptController::setShort(const char* name, short v)
- {
- lua_pushinteger(_lua, v);
- lua_setglobal(_lua, name);
- }
- void ScriptController::setInt(const char* name, int v)
- {
- lua_pushinteger(_lua, v);
- lua_setglobal(_lua, name);
- }
- void ScriptController::setLong(const char* name, long v)
- {
- lua_pushinteger(_lua, v);
- lua_setglobal(_lua, name);
- }
- void ScriptController::setUnsignedChar(const char* name, unsigned char v)
- {
- lua_pushunsigned(_lua, v);
- lua_setglobal(_lua, name);
- }
- void ScriptController::setUnsignedShort(const char* name, unsigned short v)
- {
- lua_pushunsigned(_lua, v);
- lua_setglobal(_lua, name);
- }
- void ScriptController::setUnsignedInt(const char* name, unsigned int v)
- {
- lua_pushunsigned(_lua, v);
- lua_setglobal(_lua, name);
- }
- void ScriptController::setUnsignedLong(const char* name, unsigned long v)
- {
- lua_pushunsigned(_lua, v);
- lua_setglobal(_lua, name);
- }
- void ScriptController::setFloat(const char* name, float v)
- {
- lua_pushnumber(_lua, v);
- lua_setglobal(_lua, name);
- }
- void ScriptController::setDouble(const char* name, double v)
- {
- lua_pushnumber(_lua, v);
- lua_setglobal(_lua, name);
- }
- void ScriptController::setString(const char* name, const char* v)
- {
- lua_pushstring(_lua, v);
- lua_setglobal(_lua, name);
- }
- void ScriptController::print(const char* str)
- {
- printError("%s", str);
- }
- void ScriptController::print(const char* str1, const char* str2)
- {
- printError("%s%s", str1, str2);
- }
- ScriptController::ScriptController() : _lua(NULL)
- {
- memset(_callbacks, 0, sizeof(std::string*) * CALLBACK_COUNT);
- }
- ScriptController::~ScriptController()
- {
- for (unsigned int i = 0; i < CALLBACK_COUNT; i++)
- {
- SAFE_DELETE(_callbacks[i]);
- }
- }
- static const char* lua_print_function =
- "function print(...)\n"
- " ScriptController.print(table.concat({...},\"\\t\"), \"\\n\")\n"
- "end\n";
- void ScriptController::initialize()
- {
- _lua = luaL_newstate();
- if (!_lua)
- GP_ERROR("Failed to initialize Lua scripting engine.");
- luaL_openlibs(_lua);
- lua_RegisterAllBindings();
- // Create our own print() function that uses gameplay::printError.
- if (luaL_dostring(_lua, lua_print_function))
- GP_ERROR("Failed to load custom print() function with error: '%s'.", lua_tostring(_lua, -1));
- }
- void ScriptController::initializeGame()
- {
- if (_callbacks[INITIALIZE])
- {
- executeFunction<void>(_callbacks[INITIALIZE]->c_str());
- }
- }
- void ScriptController::finalize()
- {
- if (_lua)
- lua_close(_lua);
- }
- void ScriptController::finalizeGame()
- {
- if (_callbacks[FINALIZE])
- {
- executeFunction<void>(_callbacks[FINALIZE]->c_str());
- }
- // Perform a full garbage collection cycle.
- lua_gc(_lua, LUA_GCCOLLECT, 0);
- }
- void ScriptController::update(float elapsedTime)
- {
- if (_callbacks[UPDATE])
- {
- executeFunction<void>(_callbacks[UPDATE]->c_str(), "f", elapsedTime);
- }
- }
- void ScriptController::render(float elapsedTime)
- {
- if (_callbacks[RENDER])
- {
- executeFunction<void>(_callbacks[RENDER]->c_str(), "f", elapsedTime);
- }
- }
- void ScriptController::keyEvent(Keyboard::KeyEvent evt, int key)
- {
- if (_callbacks[KEY_EVENT])
- {
- executeFunction<void>(_callbacks[KEY_EVENT]->c_str(), "[Keyboard::KeyEvent][Keyboard::Key]", evt, key);
- }
- }
- void ScriptController::touchEvent(Touch::TouchEvent evt, int x, int y, unsigned int contactIndex)
- {
- if (_callbacks[TOUCH_EVENT])
- {
- executeFunction<void>(_callbacks[TOUCH_EVENT]->c_str(), "[Touch::TouchEvent]iiui", evt, x, y, contactIndex);
- }
- }
- bool ScriptController::mouseEvent(Mouse::MouseEvent evt, int x, int y, int wheelDelta)
- {
- if (_callbacks[MOUSE_EVENT])
- {
- return executeFunction<bool>(_callbacks[MOUSE_EVENT]->c_str(), "[Mouse::MouseEvent]iiii", evt, x, y, wheelDelta);
- }
- return false;
- }
- void ScriptController::gamepadEvent(Gamepad::GamepadEvent evt, Gamepad* gamepad)
- {
- if (_callbacks[GAMEPAD_EVENT])
- {
- executeFunction<void>(_callbacks[GAMEPAD_EVENT]->c_str(), "[Gamepad::GamepadEvent]<Gamepad>", evt, gamepad);
- }
- }
- void ScriptController::executeFunctionHelper(int resultCount, const char* func, const char* args, va_list* list)
- {
- if (func == NULL)
- {
- GP_ERROR("Lua function name must be non-null.");
- return;
- }
- const char* sig = args;
- int argumentCount = 0;
- lua_getglobal(_lua, func);
- // Push the arguments to the Lua stack if there are any.
- if (sig)
- {
- while (true)
- {
- if (!(*sig))
- break;
- switch(*sig++)
- {
- // Signed integers.
- case 'c':
- case 'h':
- case 'i':
- case 'l':
- lua_pushinteger(_lua, va_arg(*list, int));
- break;
- // Unsigned integers.
- case 'u':
- // Skip past the actual type (long, int, short, char).
- sig++;
- lua_pushunsigned(_lua, va_arg(*list, int));
- break;
- // Booleans.
- case 'b':
- lua_pushboolean(_lua, va_arg(*list, int));
- break;
- // Floating point numbers.
- case 'f':
- case 'd':
- lua_pushnumber(_lua, va_arg(*list, double));
- break;
- // Strings.
- case 's':
- lua_pushstring(_lua, va_arg(*list, char*));
- break;
- // Pointers.
- case 'p':
- lua_pushlightuserdata(_lua, va_arg(*list, void*));
- break;
- // Enums.
- case '[':
- {
- std::string type = sig;
- type = type.substr(0, type.find("]"));
- // Skip past the closing ']' (the semi-colon here is intentional-do not remove).
- while (*sig++ != ']');
- unsigned int value = va_arg(*list, int);
- std::string enumStr = "";
- for (unsigned int i = 0; enumStr.size() == 0 && i < _stringFromEnum.size(); i++)
- {
- enumStr = (*_stringFromEnum[i])(type, value);
- }
- lua_pushstring(_lua, enumStr.c_str());
- break;
- }
- // Object references/pointers (Lua userdata).
- case '<':
- {
- std::string type = sig;
- type = type.substr(0, type.find(">"));
- // Skip past the closing '>' (the semi-colon here is intentional-do not remove).
- while (*sig++ != '>');
- // Calculate the unique Lua type name.
- size_t i = type.find("::");
- while (i != type.npos)
- {
- // We use "" as the replacement here-this must match the preprocessor
- // define SCOPE_REPLACEMENT from the gameplay-luagen project.
- type.replace(i, 2, "");
- i = type.find("::");
- }
- void* ptr = va_arg(*list, void*);
- if (ptr == NULL)
- {
- lua_pushnil(_lua);
- }
- else
- {
- ScriptUtil::LuaObject* object = (ScriptUtil::LuaObject*)lua_newuserdata(_lua, sizeof(ScriptUtil::LuaObject));
- object->instance = ptr;
- object->owns = false;
- luaL_getmetatable(_lua, type.c_str());
- lua_setmetatable(_lua, -2);
- }
- break;
- }
- default:
- GP_ERROR("Invalid argument type '%d'.", *(sig - 1));
- }
- argumentCount++;
- luaL_checkstack(_lua, 1, "Too many arguments.");
- }
- }
- // Perform the function call.
- if (lua_pcall(_lua, argumentCount, resultCount, 0) != 0)
- GP_ERROR("Failed to call function '%s' with error '%s'.", func, lua_tostring(_lua, -1));
- }
- void ScriptController::registerCallback(ScriptCallback callback, std::string function)
- {
- SAFE_DELETE(_callbacks[callback]);
- _callbacks[callback] = new std::string(function);
- }
- ScriptController::ScriptCallback ScriptController::toCallback(const char* name)
- {
- if (strcmp(name, "initialize") == 0)
- return ScriptController::INITIALIZE;
- else if (strcmp(name, "update") == 0)
- return ScriptController::UPDATE;
- else if (strcmp(name, "render") == 0)
- return ScriptController::RENDER;
- else if (strcmp(name, "finalize") == 0)
- return ScriptController::FINALIZE;
- else if (strcmp(name, "keyEvent") == 0)
- return ScriptController::KEY_EVENT;
- else if (strcmp(name, "touchEvent") == 0)
- return ScriptController::TOUCH_EVENT;
- else if (strcmp(name, "mouseEvent") == 0)
- return ScriptController::MOUSE_EVENT;
- else if (strcmp(name, "gamepadEvent") == 0)
- return ScriptController::GAMEPAD_EVENT;
- else
- return ScriptController::INVALID_CALLBACK;
- }
- // Helper macros.
- #define SCRIPT_EXECUTE_FUNCTION_NO_PARAM(type, checkfunc) \
- executeFunctionHelper(1, func, NULL, NULL); \
- type value = (type)checkfunc(_lua, -1); \
- lua_pop(_lua, -1); \
- return value;
- #define SCRIPT_EXECUTE_FUNCTION_PARAM(type, checkfunc) \
- va_list list; \
- va_start(list, args); \
- executeFunctionHelper(1, func, args, &list); \
- type value = (type)checkfunc(_lua, -1); \
- lua_pop(_lua, -1); \
- va_end(list); \
- return value;
- #define SCRIPT_EXECUTE_FUNCTION_PARAM_LIST(type, checkfunc) \
- executeFunctionHelper(1, func, args, list); \
- type value = (type)checkfunc(_lua, -1); \
- lua_pop(_lua, -1); \
- return value;
- template<> void ScriptController::executeFunction<void>(const char* func)
- {
- executeFunctionHelper(0, func, NULL, NULL);
- }
- template<> bool ScriptController::executeFunction<bool>(const char* func)
- {
- SCRIPT_EXECUTE_FUNCTION_NO_PARAM(bool, ScriptUtil::luaCheckBool);
- }
- template<> char ScriptController::executeFunction<char>(const char* func)
- {
- SCRIPT_EXECUTE_FUNCTION_NO_PARAM(char, luaL_checkint);
- }
- template<> short ScriptController::executeFunction<short>(const char* func)
- {
- SCRIPT_EXECUTE_FUNCTION_NO_PARAM(short, luaL_checkint);
- }
- template<> int ScriptController::executeFunction<int>(const char* func)
- {
- SCRIPT_EXECUTE_FUNCTION_NO_PARAM(int, luaL_checkint);
- }
- template<> long ScriptController::executeFunction<long>(const char* func)
- {
- SCRIPT_EXECUTE_FUNCTION_NO_PARAM(long, luaL_checklong);
- }
- template<> unsigned char ScriptController::executeFunction<unsigned char>(const char* func)
- {
- SCRIPT_EXECUTE_FUNCTION_NO_PARAM(unsigned char, luaL_checkunsigned);
- }
- template<> unsigned short ScriptController::executeFunction<unsigned short>(const char* func)
- {
- SCRIPT_EXECUTE_FUNCTION_NO_PARAM(unsigned short, luaL_checkunsigned);
- }
- template<> unsigned int ScriptController::executeFunction<unsigned int>(const char* func)
- {
- SCRIPT_EXECUTE_FUNCTION_NO_PARAM(unsigned int, luaL_checkunsigned);
- }
- template<> unsigned long ScriptController::executeFunction<unsigned long>(const char* func)
- {
- SCRIPT_EXECUTE_FUNCTION_NO_PARAM(unsigned long, luaL_checkunsigned);
- }
- template<> float ScriptController::executeFunction<float>(const char* func)
- {
- SCRIPT_EXECUTE_FUNCTION_NO_PARAM(float, luaL_checknumber);
- }
- template<> double ScriptController::executeFunction<double>(const char* func)
- {
- SCRIPT_EXECUTE_FUNCTION_NO_PARAM(double, luaL_checknumber);
- }
- template<> std::string ScriptController::executeFunction<std::string>(const char* func)
- {
- SCRIPT_EXECUTE_FUNCTION_NO_PARAM(std::string, luaL_checkstring);
- }
- /** Template specialization. */
- template<> void ScriptController::executeFunction<void>(const char* func, const char* args, ...)
- {
- va_list list;
- va_start(list, args);
- executeFunctionHelper(0, func, args, &list);
- va_end(list);
- }
- /** Template specialization. */
- template<> bool ScriptController::executeFunction<bool>(const char* func, const char* args, ...)
- {
- SCRIPT_EXECUTE_FUNCTION_PARAM(bool, ScriptUtil::luaCheckBool);
- }
- /** Template specialization. */
- template<> char ScriptController::executeFunction<char>(const char* func, const char* args, ...)
- {
- SCRIPT_EXECUTE_FUNCTION_PARAM(char, luaL_checkint);
- }
- /** Template specialization. */
- template<> short ScriptController::executeFunction<short>(const char* func, const char* args, ...)
- {
- SCRIPT_EXECUTE_FUNCTION_PARAM(short, luaL_checkint);
- }
- /** Template specialization. */
- template<> int ScriptController::executeFunction<int>(const char* func, const char* args, ...)
- {
- SCRIPT_EXECUTE_FUNCTION_PARAM(int, luaL_checkint);
- }
- /** Template specialization. */
- template<> long ScriptController::executeFunction<long>(const char* func, const char* args, ...)
- {
- SCRIPT_EXECUTE_FUNCTION_PARAM(long, luaL_checklong);
- }
- /** Template specialization. */
- template<> unsigned char ScriptController::executeFunction<unsigned char>(const char* func, const char* args, ...)
- {
- SCRIPT_EXECUTE_FUNCTION_PARAM(unsigned char, luaL_checkunsigned);
- }
- /** Template specialization. */
- template<> unsigned short ScriptController::executeFunction<unsigned short>(const char* func, const char* args, ...)
- {
- SCRIPT_EXECUTE_FUNCTION_PARAM(unsigned short, luaL_checkunsigned);
- }
- /** Template specialization. */
- template<> unsigned int ScriptController::executeFunction<unsigned int>(const char* func, const char* args, ...)
- {
- SCRIPT_EXECUTE_FUNCTION_PARAM(unsigned int, luaL_checkunsigned);
- }
- /** Template specialization. */
- template<> unsigned long ScriptController::executeFunction<unsigned long>(const char* func, const char* args, ...)
- {
- SCRIPT_EXECUTE_FUNCTION_PARAM(unsigned long, luaL_checkunsigned);
- }
- /** Template specialization. */
- template<> float ScriptController::executeFunction<float>(const char* func, const char* args, ...)
- {
- SCRIPT_EXECUTE_FUNCTION_PARAM(float, luaL_checknumber);
- }
- /** Template specialization. */
- template<> double ScriptController::executeFunction<double>(const char* func, const char* args, ...)
- {
- SCRIPT_EXECUTE_FUNCTION_PARAM(double, luaL_checknumber);
- }
- /** Template specialization. */
- template<> std::string ScriptController::executeFunction<std::string>(const char* func, const char* args, ...)
- {
- SCRIPT_EXECUTE_FUNCTION_PARAM(std::string, luaL_checkstring);
- }
- /** Template specialization. */
- template<> void ScriptController::executeFunction<void>(const char* func, const char* args, va_list* list)
- {
- executeFunctionHelper(0, func, args, list);
- }
- /** Template specialization. */
- template<> bool ScriptController::executeFunction<bool>(const char* func, const char* args, va_list* list)
- {
- SCRIPT_EXECUTE_FUNCTION_PARAM_LIST(bool, ScriptUtil::luaCheckBool);
- }
- /** Template specialization. */
- template<> char ScriptController::executeFunction<char>(const char* func, const char* args, va_list* list)
- {
- SCRIPT_EXECUTE_FUNCTION_PARAM_LIST(char, luaL_checkint);
- }
- /** Template specialization. */
- template<> short ScriptController::executeFunction<short>(const char* func, const char* args, va_list* list)
- {
- SCRIPT_EXECUTE_FUNCTION_PARAM_LIST(short, luaL_checkint);
- }
- /** Template specialization. */
- template<> int ScriptController::executeFunction<int>(const char* func, const char* args, va_list* list)
- {
- SCRIPT_EXECUTE_FUNCTION_PARAM_LIST(int, luaL_checkint);
- }
- /** Template specialization. */
- template<> long ScriptController::executeFunction<long>(const char* func, const char* args, va_list* list)
- {
- SCRIPT_EXECUTE_FUNCTION_PARAM_LIST(long, luaL_checklong);
- }
- /** Template specialization. */
- template<> unsigned char ScriptController::executeFunction<unsigned char>(const char* func, const char* args, va_list* list)
- {
- SCRIPT_EXECUTE_FUNCTION_PARAM_LIST(unsigned char, luaL_checkunsigned);
- }
- /** Template specialization. */
- template<> unsigned short ScriptController::executeFunction<unsigned short>(const char* func, const char* args, va_list* list)
- {
- SCRIPT_EXECUTE_FUNCTION_PARAM_LIST(unsigned short, luaL_checkunsigned);
- }
- /** Template specialization. */
- template<> unsigned int ScriptController::executeFunction<unsigned int>(const char* func, const char* args, va_list* list)
- {
- SCRIPT_EXECUTE_FUNCTION_PARAM_LIST(unsigned int, luaL_checkunsigned);
- }
- /** Template specialization. */
- template<> unsigned long ScriptController::executeFunction<unsigned long>(const char* func, const char* args, va_list* list)
- {
- SCRIPT_EXECUTE_FUNCTION_PARAM_LIST(unsigned long, luaL_checkunsigned);
- }
- /** Template specialization. */
- template<> float ScriptController::executeFunction<float>(const char* func, const char* args, va_list* list)
- {
- SCRIPT_EXECUTE_FUNCTION_PARAM_LIST(float, luaL_checknumber);
- }
- /** Template specialization. */
- template<> double ScriptController::executeFunction<double>(const char* func, const char* args, va_list* list)
- {
- SCRIPT_EXECUTE_FUNCTION_PARAM_LIST(double, luaL_checknumber);
- }
- /** Template specialization. */
- template<> std::string ScriptController::executeFunction<std::string>(const char* func, const char* args, va_list* list)
- {
- SCRIPT_EXECUTE_FUNCTION_PARAM_LIST(std::string, luaL_checkstring);
- }
- }
|