lua: hud.pause/resume + menu:back() method

This commit is contained in:
MihailRis 2024-03-20 11:14:43 +03:00
parent f64a851a24
commit 0c0d850d5d
3 changed files with 42 additions and 10 deletions

View File

@ -545,6 +545,10 @@ void Hud::setPause(bool pause) {
return;
}
this->pause = pause;
if (inventoryOpen) {
closeInventory();
}
auto menu = gui->getMenu();
if (pause) {

View File

@ -104,16 +104,6 @@ static bool getattr(lua_State* L, gui::FullCheckBox* box, const std::string& att
return false;
}
static bool getattr(lua_State* L, gui::PagesControl* menu, const std::string& attr) {
if (menu == nullptr)
return false;
if (attr == "page") {
lua_pushstring(L, menu->getCurrentName().c_str());
return true;
}
return false;
}
static bool getattr(lua_State* L, gui::TextBox* box, const std::string& attr) {
if (box == nullptr)
return false;
@ -127,6 +117,32 @@ static bool getattr(lua_State* L, gui::TextBox* box, const std::string& attr) {
return false;
}
static int menu_back(lua_State* L) {
lua_getfield(L, 1, "docname");
lua_getfield(L, 1, "name");
auto docname = lua_tostring(L, -2);
auto name = lua_tostring(L, -1);
auto node = getDocumentNode(L, docname, name);
lua_pop(L, 2);
auto menu = dynamic_cast<gui::PagesControl*>(node);
menu->back();
return 0;
}
static bool getattr(lua_State* L, gui::PagesControl* menu, const std::string& attr) {
if (menu == nullptr)
return false;
if (attr == "page") {
lua_pushstring(L, menu->getCurrentName().c_str());
return true;
} else if (attr == "back") {
lua_pushcfunction(L, menu_back);
return true;
}
return false;
}
static bool setattr(lua_State* L, gui::FullCheckBox* box, const std::string& attr) {
if (box == nullptr)
return false;

View File

@ -99,6 +99,16 @@ static int l_hud_close(lua_State* L) {
return 0;
}
static int l_hud_pause(lua_State* L) {
scripting::hud->setPause(true);
return 0;
}
static int l_hud_resume(lua_State* L) {
scripting::hud->setPause(false);
return 0;
}
const luaL_Reg hudlib [] = {
{"open_inventory", lua_wrap_errors<l_hud_open_inventory>},
{"close_inventory", lua_wrap_errors<l_hud_close_inventory>},
@ -106,5 +116,7 @@ const luaL_Reg hudlib [] = {
{"open_permanent", lua_wrap_errors<l_hud_open_permanent>},
{"show_overlay", lua_wrap_errors<l_hud_show_overlay>},
{"close", lua_wrap_errors<l_hud_close>},
{"pause", lua_wrap_errors<l_hud_pause>},
{"resume", lua_wrap_errors<l_hud_resume>},
{NULL, NULL}
};