ui: more xml support + hud.close function

This commit is contained in:
MihailRis
2024-02-17 13:58:12 +03:00
parent e58624d3e8
commit d8b3920d65
5 changed files with 50 additions and 2 deletions
+13 -2
View File
@@ -15,6 +15,7 @@
#include "../../../logic/BlocksController.h"
#include "../../../items/Inventories.h"
#include "../../../engine.h"
#include "../../../frontend/UiDocument.h"
namespace scripting {
extern Hud* hud;
@@ -64,13 +65,23 @@ int l_hud_open_block(lua_State* L) {
return 2;
}
int l_hud_open_permanent(lua_State* L) {
UiDocument* require_layout(lua_State* L, const char* name) {
auto assets = scripting::engine->getAssets();
auto name = lua_tostring(L, 1);
auto layout = assets->getLayout(name);
if (layout == nullptr) {
luaL_error(L, "layout '%s' is not found", name);
}
return layout;
}
int l_hud_open_permanent(lua_State* L) {
auto layout = require_layout(L, lua_tostring(L, 1));
scripting::hud->openPermanent(layout);
return 0;
}
int l_hud_close(lua_State* L) {
auto layout = require_layout(L, lua_tostring(L, 1));
scripting::hud->remove(layout->getRoot());
return 0;
}