From fee85161570b5803b45bb6d2c699c6665ac2df92 Mon Sep 17 00:00:00 2001 From: jacob1 Date: Tue, 8 Sep 2015 01:27:20 -0400 Subject: [PATCH] new function tpt.confirm (confirm prompt which returns true or false) --- src/lua/LegacyLuaAPI.cpp | 10 ++++++++++ src/lua/LuaScriptHelper.h | 1 + src/lua/LuaScriptInterface.cpp | 1 + 3 files changed, 12 insertions(+) diff --git a/src/lua/LegacyLuaAPI.cpp b/src/lua/LegacyLuaAPI.cpp index 837fe4d9a..9d4531df7 100644 --- a/src/lua/LegacyLuaAPI.cpp +++ b/src/lua/LegacyLuaAPI.cpp @@ -1691,6 +1691,16 @@ int luatpt_message_box(lua_State* l) return 0; } +int luatpt_confirm(lua_State *l) +{ + std::string title = std::string(luaL_optstring(l, 1, "Title")); + std::string message = std::string(luaL_optstring(l, 2, "Message")); + std::string buttonText = std::string(luaL_optstring(l, 3, "Confirm")); + bool ret = ConfirmPrompt::Blocking(title, message, buttonText); + lua_pushboolean(l, ret ? 1 : 0); + return 1; +} + int luatpt_get_numOfParts(lua_State* l) { lua_pushinteger(l, luacon_sim->NUM_PARTS); diff --git a/src/lua/LuaScriptHelper.h b/src/lua/LuaScriptHelper.h index 0fc9f0c89..13cf1333d 100644 --- a/src/lua/LuaScriptHelper.h +++ b/src/lua/LuaScriptHelper.h @@ -106,6 +106,7 @@ int luatpt_register_mouseclick(lua_State* l); int luatpt_unregister_mouseclick(lua_State* l); int luatpt_input(lua_State* l); int luatpt_message_box(lua_State* l); +int luatpt_confirm(lua_State* l); int luatpt_get_numOfParts(lua_State* l); int luatpt_start_getPartIndex(lua_State* l); int luatpt_next_getPartIndex(lua_State* l); diff --git a/src/lua/LuaScriptInterface.cpp b/src/lua/LuaScriptInterface.cpp index ebdb4dd48..257ea15b2 100644 --- a/src/lua/LuaScriptInterface.cpp +++ b/src/lua/LuaScriptInterface.cpp @@ -180,6 +180,7 @@ LuaScriptInterface::LuaScriptInterface(GameController * c, GameModel * m): {"unregister_keyevent", &luatpt_unregister_keypress}, {"input", &luatpt_input}, {"message_box", &luatpt_message_box}, + {"confirm", &luatpt_confirm}, {"get_numOfParts", &luatpt_get_numOfParts}, {"start_getPartIndex", &luatpt_start_getPartIndex}, {"next_getPartIndex", &luatpt_next_getPartIndex},