From 99227026607ecfaca1ff07705930a83d41c16042 Mon Sep 17 00:00:00 2001 From: Thorbjørn Lindeijer Date: Mon, 5 Mar 2012 20:53:18 +0100 Subject: Added a function that returns the current map or raises an error The new function 'checkCurrentMap' will raise an error when no current map has been set, eliminating the need to do custom error handling all over the place. This also fixes several functions that would otherwise have simply crashed when there was no current map. Also cleaned up some "empty string parameter" checks. Reviewed-by: Erik Schilling --- src/scripting/lua.cpp | 180 +++++++++++--------------------------------- src/scripting/luascript.cpp | 2 + src/scripting/luascript.h | 4 +- src/scripting/luautil.cpp | 25 ++++++ src/scripting/luautil.h | 5 ++ 5 files changed, 80 insertions(+), 136 deletions(-) diff --git a/src/scripting/lua.cpp b/src/scripting/lua.cpp index 1c32c4fd..48404d55 100644 --- a/src/scripting/lua.cpp +++ b/src/scripting/lua.cpp @@ -66,15 +66,6 @@ extern "C" { * http://doc.manasource.org/scripting */ -static Script *getScript(lua_State *s) -{ - lua_pushlightuserdata(s, (void *)®istryKey); - lua_gettable(s, LUA_REGISTRYINDEX); - Script *script = static_cast