aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Hop311 <Hop3114@gmail.com>2024-07-26 21:13:00 +0200
committer GitHub <noreply@github.com>2024-07-26 21:13:00 +0200
commit7dfb935447708cfdff664603eadafcbb4aa24042 (patch)
tree72262f7d0d16ce06ad3deef026f3506ab6d8add7
parentd4b223b491ec2d9b32393c4c58ad85f18bd9566e (diff)
parent35ccace5c13b547025a6b823442f7abed676a19f (diff)
Merge pull request #242 from OpenVicProject/fix-checkbox
Fix checkbox theme and positioning
-rw-r--r--extension/src/openvic-extension/classes/GFXSpriteTexture.cpp5
-rw-r--r--extension/src/openvic-extension/classes/GFXSpriteTexture.hpp2
-rw-r--r--extension/src/openvic-extension/classes/GUINode.cpp1
-rw-r--r--extension/src/openvic-extension/classes/GUINode.hpp3
-rw-r--r--extension/src/openvic-extension/utility/UITools.cpp113
-rw-r--r--game/src/Game/GameSession/ProvinceOverviewPanel.gd10
6 files changed, 87 insertions, 47 deletions
diff --git a/extension/src/openvic-extension/classes/GFXSpriteTexture.cpp b/extension/src/openvic-extension/classes/GFXSpriteTexture.cpp
index 41bea4b..b81f32e 100644
--- a/extension/src/openvic-extension/classes/GFXSpriteTexture.cpp
+++ b/extension/src/openvic-extension/classes/GFXSpriteTexture.cpp
@@ -21,6 +21,7 @@ void GFXSpriteTexture::_bind_methods() {
OV_BIND_METHOD(GFXSpriteTexture::get_gfx_texture_sprite_name);
OV_BIND_METHOD(GFXSpriteTexture::set_icon_index, { "new_icon_index" });
+ OV_BIND_METHOD(GFXSpriteTexture::set_toggled_icon, { "toggle" });
OV_BIND_METHOD(GFXSpriteTexture::get_icon_index);
OV_BIND_METHOD(GFXSpriteTexture::get_icon_count);
@@ -133,3 +134,7 @@ Error GFXSpriteTexture::set_icon_index(int32_t new_icon_index) {
_update_button_states();
return OK;
}
+
+Error GFXSpriteTexture::set_toggled_icon(bool toggled) {
+ return set_icon_index(toggled ? 2 : 1);
+}
diff --git a/extension/src/openvic-extension/classes/GFXSpriteTexture.hpp b/extension/src/openvic-extension/classes/GFXSpriteTexture.hpp
index 4e93e62..7b6b433 100644
--- a/extension/src/openvic-extension/classes/GFXSpriteTexture.hpp
+++ b/extension/src/openvic-extension/classes/GFXSpriteTexture.hpp
@@ -53,5 +53,7 @@ namespace OpenVic {
* If zero is used but icon_count is non-zero, icon_index defaults to icon_count (the last frame,
* not the first frame because it is often empty). */
godot::Error set_icon_index(GFX::frame_t new_icon_index);
+
+ godot::Error set_toggled_icon(bool toggled);
};
}
diff --git a/extension/src/openvic-extension/classes/GUINode.cpp b/extension/src/openvic-extension/classes/GUINode.cpp
index 452efc8..674f162 100644
--- a/extension/src/openvic-extension/classes/GUINode.cpp
+++ b/extension/src/openvic-extension/classes/GUINode.cpp
@@ -40,7 +40,6 @@ using namespace OpenVic;
#define APPLY_TO_CHILD_TYPES(F) \
F(Button, button) \
- F(CheckBox, check_box) \
F(Label, label) \
F(Panel, panel) \
F(TextureProgressBar, progress_bar) \
diff --git a/extension/src/openvic-extension/classes/GUINode.hpp b/extension/src/openvic-extension/classes/GUINode.hpp
index 60c0050..af1562e 100644
--- a/extension/src/openvic-extension/classes/GUINode.hpp
+++ b/extension/src/openvic-extension/classes/GUINode.hpp
@@ -2,7 +2,6 @@
#include <godot_cpp/classes/bit_map.hpp>
#include <godot_cpp/classes/button.hpp>
-#include <godot_cpp/classes/check_box.hpp>
#include <godot_cpp/classes/control.hpp>
#include <godot_cpp/classes/image.hpp>
#include <godot_cpp/classes/input_event.hpp>
@@ -52,7 +51,6 @@ namespace OpenVic {
static godot::Vector2 get_gui_position(godot::String const& gui_scene, godot::String const& gui_position);
static godot::Button* get_button_from_node(godot::Node* node);
- static godot::CheckBox* get_check_box_from_node(godot::Node* node);
static godot::Label* get_label_from_node(godot::Node* node);
static godot::Panel* get_panel_from_node(godot::Node* node);
static godot::TextureProgressBar* get_progress_bar_from_node(godot::Node* node);
@@ -62,7 +60,6 @@ namespace OpenVic {
static GUIListBox* get_gui_listbox_from_node(godot::Node* node);
godot::Button* get_button_from_nodepath(godot::NodePath const& path) const;
- godot::CheckBox* get_check_box_from_nodepath(godot::NodePath const& path) const;
godot::Label* get_label_from_nodepath(godot::NodePath const& path) const;
godot::Panel* get_panel_from_nodepath(godot::NodePath const& path) const;
godot::TextureProgressBar* get_progress_bar_from_nodepath(godot::NodePath const& path) const;
diff --git a/extension/src/openvic-extension/utility/UITools.cpp b/extension/src/openvic-extension/utility/UITools.cpp
index 53f17b9..5d2ef1f 100644
--- a/extension/src/openvic-extension/utility/UITools.cpp
+++ b/extension/src/openvic-extension/utility/UITools.cpp
@@ -1,7 +1,6 @@
#include "UITools.hpp"
#include <godot_cpp/classes/button.hpp>
-#include <godot_cpp/classes/check_box.hpp>
#include <godot_cpp/classes/color_rect.hpp>
#include <godot_cpp/classes/label.hpp>
#include <godot_cpp/classes/panel.hpp>
@@ -287,8 +286,10 @@ static bool generate_icon(generate_gui_args_t&& args) {
} else if (icon.get_sprite()->is_type<GFX::LineChart>()) {
// TODO - generate line chart
} else {
- UtilityFunctions::push_error("Invalid sprite type ", std_view_to_godot_string(icon.get_sprite()->get_type()),
- " for GUI icon ", icon_name);
+ UtilityFunctions::push_error(
+ "Invalid sprite type ", std_view_to_godot_string(icon.get_sprite()->get_type()),
+ " for GUI icon ", icon_name
+ );
ret = false;
}
@@ -313,7 +314,7 @@ static bool generate_icon(generate_gui_args_t&& args) {
static bool generate_button(generate_gui_args_t&& args) {
GUI::Button const& button = static_cast<GUI::Button const&>(args.element);
- // TODO - shortcut, sprite, text
+ // TODO - shortcut, clicksound, rotation (?)
const String button_name = std_view_to_godot_string(button.get_name());
Button* godot_button = nullptr;
@@ -322,9 +323,7 @@ static bool generate_button(generate_gui_args_t&& args) {
godot_button->set_mouse_filter(Control::MOUSE_FILTER_PASS);
- if (!button.get_text().empty()) {
- godot_button->set_text(std_view_to_godot_string(button.get_text()));
- }
+ godot_button->set_text(std_view_to_godot_string(button.get_text()));
if (button.get_sprite() != nullptr) {
Ref<GFXButtonStateHavingTexture> texture;
@@ -351,8 +350,8 @@ static bool generate_button(generate_gui_args_t&& args) {
if (texture.is_valid()) {
godot_button->set_custom_minimum_size(texture->get_size());
- static const StringName theme_name_normal = "normal";
- ret &= add_theme_stylebox(godot_button, theme_name_normal, texture);
+ static const StringName normal_theme = "normal";
+ ret &= add_theme_stylebox(godot_button, normal_theme, texture);
using enum GFXButtonStateTexture::ButtonState;
for (GFXButtonStateTexture::ButtonState button_state : { HOVER, PRESSED, DISABLED }) {
@@ -379,9 +378,10 @@ static bool generate_button(generate_gui_args_t&& args) {
const StringName font_file = std_view_to_godot_string_name(button.get_font()->get_fontname());
const Ref<Font> font = args.asset_manager.get_font(font_file);
if (font.is_valid()) {
- godot_button->add_theme_font_override("font", font);
+ static const StringName font_theme = "font";
+ godot_button->add_theme_font_override(font_theme, font);
} else {
- UtilityFunctions::push_error("Failed to load font for GUI button ", button_name);
+ UtilityFunctions::push_error("Failed to load font \"", font_file, "\" for GUI button ", button_name);
ret = false;
}
@@ -401,35 +401,60 @@ static bool generate_button(generate_gui_args_t&& args) {
static bool generate_checkbox(generate_gui_args_t&& args) {
GUI::Checkbox const& checkbox = static_cast<GUI::Checkbox const&>(args.element);
- // TODO - shortcut, sprite, text
+ // TODO - shortcut
const String checkbox_name = std_view_to_godot_string(checkbox.get_name());
- CheckBox* godot_checkbox = nullptr;
- bool ret = new_control(godot_checkbox, checkbox, args.name);
- ERR_FAIL_NULL_V_MSG(godot_checkbox, false, vformat("Failed to create CheckBox for GUI checkbox %s", checkbox_name));
+ Button* godot_button = nullptr;
+ bool ret = new_control(godot_button, checkbox, args.name);
+ ERR_FAIL_NULL_V_MSG(godot_button, false, vformat("Failed to create Button for GUI checkbutton %s", checkbox_name));
+
+ godot_button->set_text(std_view_to_godot_string(checkbox.get_text()));
+
+ godot_button->set_toggle_mode(true);
if (checkbox.get_sprite() != nullptr) {
GFX::IconTextureSprite const* texture_sprite = checkbox.get_sprite()->cast_to<GFX::IconTextureSprite>();
+
if (texture_sprite != nullptr) {
- Ref<GFXSpriteTexture> icon_texture = GFXSpriteTexture::make_gfx_sprite_texture(texture_sprite, 1);
- if (icon_texture.is_valid()) {
- godot_checkbox->set_custom_minimum_size(icon_texture->get_size());
- godot_checkbox->add_theme_icon_override("unchecked", icon_texture);
- } else {
- UtilityFunctions::push_error("Failed to make unchecked GFXSpriteTexture for GUI checkbox ", checkbox_name);
- ret = false;
- }
- icon_texture = GFXSpriteTexture::make_gfx_sprite_texture(texture_sprite, 2);
- if (icon_texture.is_valid()) {
- godot_checkbox->add_theme_icon_override("checked", icon_texture);
+ Ref<GFXSpriteTexture> texture = GFXSpriteTexture::make_gfx_sprite_texture(texture_sprite);
+
+ if (texture.is_valid()) {
+ godot_button->set_custom_minimum_size(texture->get_size());
+
+ if (texture->get_icon_count() > 1) {
+ static const StringName toggled_signal = "toggled";
+ static const StringName set_toggled_icon_func = "set_toggled_icon";
+ godot_button->connect(
+ toggled_signal, Callable { *texture, set_toggled_icon_func }, Object::CONNECT_PERSIST
+ );
+ }
+
+ static const StringName normal_theme = "normal";
+ ret &= add_theme_stylebox(godot_button, normal_theme, texture);
+
+ using enum GFXButtonStateTexture::ButtonState;
+ for (GFXButtonStateTexture::ButtonState button_state : { HOVER, PRESSED, DISABLED }) {
+ Ref<GFXButtonStateTexture> button_state_texture = texture->get_button_state_texture(button_state);
+ if (button_state_texture.is_valid()) {
+ ret &= add_theme_stylebox(
+ godot_button, button_state_texture->get_button_state_name(), button_state_texture
+ );
+ } else {
+ UtilityFunctions::push_error(
+ "Failed to make ", GFXButtonStateTexture::button_state_to_name(button_state),
+ " GFXButtonStateTexture for GUI checkbox ", checkbox_name
+ );
+ ret = false;
+ }
+ }
} else {
- UtilityFunctions::push_error("Failed to make checked GFXSpriteTexture for GUI checkbox ", checkbox_name);
+ UtilityFunctions::push_error("Failed to make GFXSpriteTexture for GUI checkbox ", checkbox_name);
ret = false;
}
} else {
UtilityFunctions::push_error(
- "Invalid sprite type ", std_view_to_godot_string(checkbox.get_sprite()->get_type()), " for GUI checkbox ",
- checkbox_name
+ "Invalid sprite type ", std_view_to_godot_string(checkbox.get_sprite()->get_type()),
+ " for GUI checkbox ", checkbox_name
);
ret = false;
}
@@ -438,7 +463,27 @@ static bool generate_checkbox(generate_gui_args_t&& args) {
ret = false;
}
- args.result = godot_checkbox;
+ if (checkbox.get_font() != nullptr) {
+ const StringName font_file = std_view_to_godot_string_name(checkbox.get_font()->get_fontname());
+ const Ref<Font> font = args.asset_manager.get_font(font_file);
+ if (font.is_valid()) {
+ static const StringName font_theme = "font";
+ godot_button->add_theme_font_override(font_theme, font);
+ } else {
+ UtilityFunctions::push_error("Failed to load font \"", font_file, "\" for GUI checkbox ", checkbox_name);
+ ret = false;
+ }
+
+ static const std::vector<StringName> checkbox_font_themes {
+ "font_color", "font_hover_color", "font_hover_pressed_color", "font_pressed_color", "font_disabled_color"
+ };
+ const Color colour = Utilities::to_godot_color(checkbox.get_font()->get_colour());
+ for (StringName const& theme_name : checkbox_font_themes) {
+ godot_button->add_theme_color_override(theme_name, colour);
+ }
+ }
+
+ args.result = godot_button;
return ret;
}
@@ -480,13 +525,15 @@ static bool generate_text(generate_gui_args_t&& args) {
const StringName font_file = std_view_to_godot_string_name(text.get_font()->get_fontname());
const Ref<Font> font = args.asset_manager.get_font(font_file);
if (font.is_valid()) {
- godot_label->add_theme_font_override("font", font);
+ static const StringName font_theme = "font";
+ godot_label->add_theme_font_override(font_theme, font);
} else {
- UtilityFunctions::push_error("Failed to load font for GUI text ", text_name);
+ UtilityFunctions::push_error("Failed to load font \"", font_file, "\" for GUI text ", text_name);
ret = false;
}
const Color colour = Utilities::to_godot_color(text.get_font()->get_colour());
- godot_label->add_theme_color_override("font_color", colour);
+ static const StringName font_color_theme = "font_color";
+ godot_label->add_theme_color_override(font_color_theme, colour);
}
args.result = godot_label;
diff --git a/game/src/Game/GameSession/ProvinceOverviewPanel.gd b/game/src/Game/GameSession/ProvinceOverviewPanel.gd
index 5616927..f162370 100644
--- a/game/src/Game/GameSession/ProvinceOverviewPanel.gd
+++ b/game/src/Game/GameSession/ProvinceOverviewPanel.gd
@@ -200,16 +200,6 @@ func _ready() -> void:
push_error("Failed to generate building slot ", current_slot_count, " / ", target_slot_count)
break
- # TODO - fix checkbox positions
- for path : NodePath in [
- ^"./province_view/province_buildings/rallypoint_checkbox",
- ^"./province_view/province_buildings/rallypoint_merge_checkbox",
- ^"./province_view/province_buildings/rallypoint_checkbox_naval",
- ^"./province_view/province_buildings/rallypoint_merge_checkbox_naval"
- ]:
- var rally_checkbox : CheckBox = get_check_box_from_nodepath(path)
- rally_checkbox.set_position(rally_checkbox.get_position() - Vector2(3, 3))
-
hide_nodes([
^"./province_view/province_view_header/state_modifiers",
^"./province_view/province_view_header/occupation_progress",