mirror of
https://github.com/GabsPuNs/Project-Zenith-Main.git
synced 2026-07-10 15:28:18 +00:00
63 lines
1.8 KiB
C++
63 lines
1.8 KiB
C++
#include "EventParametersProxy.h"
|
|
#include "Pairs.h"
|
|
#include <RmlUi/Core/Dictionary.h>
|
|
#include <RmlUi/Core/Variant.h>
|
|
#include <RmlUi/Lua/Utilities.h>
|
|
#include <cstring>
|
|
|
|
namespace Rml {
|
|
namespace Lua {
|
|
|
|
template <>
|
|
void ExtraInit<EventParametersProxy>(lua_State* L, int metatable_index)
|
|
{
|
|
lua_pushcfunction(L, EventParametersProxy__index);
|
|
lua_setfield(L, metatable_index, "__index");
|
|
lua_pushcfunction(L, EventParametersProxy__pairs);
|
|
lua_setfield(L, metatable_index, "__pairs");
|
|
}
|
|
|
|
int EventParametersProxy__index(lua_State* L)
|
|
{
|
|
/*the table obj and the missing key are currently on the stack(index 1 & 2) as defined by the Lua language*/
|
|
int keytype = lua_type(L, 2);
|
|
if (keytype == LUA_TSTRING) // only valid key types
|
|
{
|
|
EventParametersProxy* obj = LuaType<EventParametersProxy>::check(L, 1);
|
|
RMLUI_CHECK_OBJ(obj);
|
|
const char* key = lua_tostring(L, 2);
|
|
auto it = obj->owner->GetParameters().find(key);
|
|
const Variant* param = (it == obj->owner->GetParameters().end() ? nullptr : &it->second);
|
|
if (obj->owner->GetId() == EventId::Tabchange && std::strcmp(key, "tab_index") == 0 && param && param->GetType() == Variant::Type::INT)
|
|
{
|
|
PushIndex(L, param->Get<int>());
|
|
}
|
|
else
|
|
PushVariant(L, param);
|
|
return 1;
|
|
}
|
|
else
|
|
return LuaType<EventParametersProxy>::index(L);
|
|
}
|
|
|
|
int EventParametersProxy__pairs(lua_State* L)
|
|
{
|
|
EventParametersProxy* obj = LuaType<EventParametersProxy>::check(L, 1);
|
|
RMLUI_CHECK_OBJ(obj);
|
|
return MakePairs(L, obj->owner->GetParameters());
|
|
}
|
|
|
|
RegType<EventParametersProxy> EventParametersProxyMethods[] = {
|
|
{nullptr, nullptr},
|
|
};
|
|
luaL_Reg EventParametersProxyGetters[] = {
|
|
{nullptr, nullptr},
|
|
};
|
|
luaL_Reg EventParametersProxySetters[] = {
|
|
{nullptr, nullptr},
|
|
};
|
|
|
|
RMLUI_LUATYPE_DEFINE(EventParametersProxy)
|
|
} // namespace Lua
|
|
} // namespace Rml
|