From c44e734abe67c49466ab247df158d1400755742f Mon Sep 17 00:00:00 2001 From: jacob1 Date: Mon, 9 Jun 2014 17:42:44 -0400 Subject: [PATCH] fix crashes when the selected element is NULL (via lua), add gfx.getHexColor (inverse of gfx.getColors) --- SConscript | 2 +- src/gui/game/GameController.cpp | 4 ++-- src/gui/game/GameModel.cpp | 12 +++++++++--- src/lua/LuaScriptInterface.cpp | 30 +++++++++++++++++++++++++----- src/lua/LuaScriptInterface.h | 1 + 5 files changed, 38 insertions(+), 11 deletions(-) diff --git a/SConscript b/SConscript index fd62c65d3..604304e44 100644 --- a/SConscript +++ b/SConscript @@ -338,7 +338,7 @@ if not GetOption('clean'): findLibs(env, conf) env = conf.Finish() else: - import os, shutil + import shutil try: shutil.rmtree("generated/") except: diff --git a/src/gui/game/GameController.cpp b/src/gui/game/GameController.cpp index d307e8538..07ca6d0fe 100644 --- a/src/gui/game/GameController.cpp +++ b/src/gui/game/GameController.cpp @@ -558,7 +558,7 @@ bool GameController::MouseDown(int x, int y, unsigned button) x = point.X; y = point.Y; if (ret && yGetPlacingSave()) - if (gameModel->GetActiveTool(0)->GetIdentifier() != "DEFAULT_UI_SIGN" || button != BUTTON_LEFT) //If it's not a sign tool or you are right/middle clicking + if (gameModel->GetActiveTool(0) && gameModel->GetActiveTool(0)->GetIdentifier() != "DEFAULT_UI_SIGN" || button != BUTTON_LEFT) //If it's not a sign tool or you are right/middle clicking { sign * foundSign = GetSignAt(x, y); if(foundSign && splitsign(foundSign->text.c_str())) @@ -575,7 +575,7 @@ bool GameController::MouseUp(int x, int y, unsigned button) y = point.Y; if (ret && yGetPlacingSave()) { - if (gameModel->GetActiveTool(0)->GetIdentifier() != "DEFAULT_UI_SIGN" || button != BUTTON_LEFT) //If it's not a sign tool or you are right/middle clicking + if (gameModel->GetActiveTool(0) && gameModel->GetActiveTool(0)->GetIdentifier() != "DEFAULT_UI_SIGN" || button != BUTTON_LEFT) //If it's not a sign tool or you are right/middle clicking { sign * foundSign = GetSignAt(x, y); if(foundSign) { diff --git a/src/gui/game/GameModel.cpp b/src/gui/game/GameModel.cpp index efb7feebc..13ae4dc4a 100644 --- a/src/gui/game/GameModel.cpp +++ b/src/gui/game/GameModel.cpp @@ -379,15 +379,21 @@ void GameModel::BuildMenus() Tool * GameModel::GetToolFromIdentifier(std::string identifier) { - for(std::vector::iterator iter = menuList.begin(), end = menuList.end(); iter != end; ++iter) + for (std::vector::iterator iter = menuList.begin(), end = menuList.end(); iter != end; ++iter) { std::vector menuTools = (*iter)->GetToolList(); - for(std::vector::iterator titer = menuTools.begin(), tend = menuTools.end(); titer != tend; ++titer) + for (std::vector::iterator titer = menuTools.begin(), tend = menuTools.end(); titer != tend; ++titer) { - if(identifier == (*titer)->GetIdentifier()) + if (identifier == (*titer)->GetIdentifier()) return *titer; } } + for (std::vector::iterator iter = extraElementTools.begin(), end = extraElementTools.end(); iter != end; ++iter) + { + if (identifier == (*iter)->GetIdentifier()) + return *iter; + } + return NULL; } diff --git a/src/lua/LuaScriptInterface.cpp b/src/lua/LuaScriptInterface.cpp index 11375175e..cd415a5fe 100644 --- a/src/lua/LuaScriptInterface.cpp +++ b/src/lua/LuaScriptInterface.cpp @@ -2395,6 +2395,7 @@ void LuaScriptInterface::initGraphicsAPI() {"drawCircle", graphics_drawCircle}, {"fillCircle", graphics_fillCircle}, {"getColors", graphics_getColors}, + {"getHexColor", graphics_getHexColor}, {NULL, NULL} }; luaL_register(l, "graphics", graphicsAPIMethods); @@ -2563,7 +2564,7 @@ int LuaScriptInterface::graphics_fillCircle(lua_State * l) int LuaScriptInterface::graphics_getColors(lua_State * l) { - int color = lua_tointeger(l, 1); + unsigned int color = lua_tointeger(l, 1); int a = color >> 24; int r = (color >> 16)&0xFF; @@ -2577,6 +2578,20 @@ int LuaScriptInterface::graphics_getColors(lua_State * l) return 4; } +int LuaScriptInterface::graphics_getHexColor(lua_State * l) +{ + int r = lua_tointeger(l, 1); + int g = lua_tointeger(l, 2); + int b = lua_tointeger(l, 3); + int a = 0; + if (lua_gettop(l) >= 4) + a = lua_tointeger(l, 4); + unsigned int color = (a<<24) + (r<<16) + (g<<8) + b; + + lua_pushinteger(l, color); + return 1; +} + void LuaScriptInterface::initFileSystemAPI() { //Methods @@ -2819,14 +2834,19 @@ bool LuaScriptInterface::OnBrushChanged(int brushType, int rx, int ry) bool LuaScriptInterface::OnActiveToolChanged(int toolSelection, Tool * tool) { + std::string identifier; + if (tool) + identifier = tool->GetIdentifier(); + else + identifier = ""; if (toolSelection == 0) - luacon_selectedl = tool->GetIdentifier(); + luacon_selectedl = identifier; else if (toolSelection == 1) - luacon_selectedr = tool->GetIdentifier(); + luacon_selectedr = identifier; else if (toolSelection == 2) - luacon_selectedalt = tool->GetIdentifier(); + luacon_selectedalt = identifier; else if (toolSelection == 3) - luacon_selectedreplace = tool->GetIdentifier(); + luacon_selectedreplace = identifier; return true; } diff --git a/src/lua/LuaScriptInterface.h b/src/lua/LuaScriptInterface.h index 433ce8e64..b6e784831 100644 --- a/src/lua/LuaScriptInterface.h +++ b/src/lua/LuaScriptInterface.h @@ -132,6 +132,7 @@ class LuaScriptInterface: public CommandInterface static int graphics_drawCircle(lua_State * l); static int graphics_fillCircle(lua_State * l); static int graphics_getColors(lua_State * l); + static int graphics_getHexColor(lua_State * l); void initFileSystemAPI(); static int fileSystem_list(lua_State * l);