From 8993816ef862c7a74bcc411d33ac03fc8ae47b05 Mon Sep 17 00:00:00 2001 From: Jared Adams Date: Tue, 13 Oct 2009 15:33:32 -0600 Subject: Add being action getter and setter --- src/scripting/lua.cpp | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/src/scripting/lua.cpp b/src/scripting/lua.cpp index 6505a727..b3f9ce38 100644 --- a/src/scripting/lua.cpp +++ b/src/scripting/lua.cpp @@ -704,6 +704,46 @@ static int being_get_name(lua_State *s) return 1; } +/** + * Gets the being's name + * tmw.being_get_action(being) + */ +static int being_get_action(lua_State *s) +{ + lua_pushlightuserdata(s, (void *)®istryKey); + lua_gettable(s, LUA_REGISTRYINDEX); + + Being *being = getBeing(s, 1); + + if (being) + { + lua_pushinteger(s, being->getAction()); + } + + return 1; +} + +/** + * Gets the being's name + * tmw.being_set_action(being, action) + */ +static int being_set_action(lua_State *s) +{ + lua_pushlightuserdata(s, (void *)®istryKey); + lua_gettable(s, LUA_REGISTRYINDEX); + + Being *being = getBeing(s, 1); + + int act = lua_tointeger(s, 2); + + if (being) + { + being->setAction((Being::Action) act); + } + + return 1; +} + /** * Function for getting the x-coordinate of the position of a being */ @@ -1391,6 +1431,8 @@ LuaScript::LuaScript(): { "being_damage", &being_damage }, { "being_get_attribute", &being_get_attribute }, { "being_get_name", &being_get_name }, + { "being_get_action", &being_get_action }, + { "being_set_action", &being_set_action }, { "posX", &posX }, { "posY", &posY }, { "trigger_create", &trigger_create }, -- cgit v1.2.3-70-g09d2