99 lines
2.4 KiB
C++
99 lines
2.4 KiB
C++
/*
|
|
* =====================================================================================
|
|
*
|
|
* OpenMiner
|
|
*
|
|
* Copyright (C) 2018-2020 Unarelith, Quentin Bazin <openminer@unarelith.net>
|
|
* Copyright (C) 2019-2020 the OpenMiner contributors (see CONTRIBUTORS.md)
|
|
*
|
|
* This file is part of OpenMiner.
|
|
*
|
|
* OpenMiner is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* OpenMiner is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
* along with OpenMiner; if not, write to the Free Software Foundation, Inc.,
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
|
|
*
|
|
* =====================================================================================
|
|
*/
|
|
#ifndef LUAWIDGETDEF_HPP_
|
|
#define LUAWIDGETDEF_HPP_
|
|
|
|
#include <sol.hpp>
|
|
|
|
#include <gk/core/IntTypes.hpp>
|
|
#include <gk/core/Rect.hpp>
|
|
#include <gk/core/Vector3.hpp>
|
|
|
|
namespace LuaWidgetDef {
|
|
|
|
struct Widget {
|
|
std::string name;
|
|
|
|
s32 x = 0;
|
|
s32 y = 0;
|
|
};
|
|
|
|
struct Image : public Widget {
|
|
std::string texture;
|
|
gk::FloatRect clipRect;
|
|
};
|
|
|
|
struct TextButton : public Widget {
|
|
std::string text;
|
|
sol::function on_click;
|
|
};
|
|
|
|
struct InventoryWidget : public Widget {
|
|
std::string inventory;
|
|
|
|
std::string player; // inventory == "player"
|
|
std::string inventory_name; // inventory == "player" || inventory == "temp"
|
|
|
|
gk::Vector3i block; // inventory == "block"
|
|
|
|
u16 width = 0;
|
|
u16 height = 0;
|
|
|
|
u16 offset = 0;
|
|
u16 count = 0;
|
|
};
|
|
|
|
struct CraftingWidget : public Widget {
|
|
std::string inventory;
|
|
|
|
gk::Vector3i block; // inventory == "block"
|
|
|
|
u16 offset = 0; // inventory == "block"
|
|
u16 size = 3; // inventory == "temp" or "block"
|
|
|
|
s32 resultX = 0;
|
|
s32 resultY = 0;
|
|
};
|
|
|
|
struct ProgressBarWidget : public Widget {
|
|
u8 type = 0;
|
|
|
|
gk::Vector3i block;
|
|
|
|
// NOTE: maxMeta and maxValue can't be used together
|
|
std::string meta;
|
|
std::string maxMeta;
|
|
u32 maxValue = 0;
|
|
|
|
std::string texture;
|
|
gk::FloatRect clipRect;
|
|
};
|
|
|
|
} // namespace LuaWidgetDef
|
|
|
|
#endif // LUAWIDGETDEF_HPP_
|