diff options
author | hop311 <hop3114@gmail.com> | 2024-06-15 12:45:48 +0200 |
---|---|---|
committer | hop311 <hop3114@gmail.com> | 2024-07-04 10:45:35 +0200 |
commit | 99a85d03de5297f2c7c29aedfc83e4e37cbc795b (patch) | |
tree | 2933b65a98ef0a4b32c4bd848ecdad574bc1cfde /extension/src/openvic-extension/classes | |
parent | db246d901d1ccd39b0ed3fc024f28ad7b6b4848b (diff) |
Use CountryDefinition and CountryInstancecountry-definition
Diffstat (limited to 'extension/src/openvic-extension/classes')
-rw-r--r-- | extension/src/openvic-extension/classes/GFXMaskedFlagTexture.cpp | 20 | ||||
-rw-r--r-- | extension/src/openvic-extension/classes/GFXMaskedFlagTexture.hpp | 11 |
2 files changed, 19 insertions, 12 deletions
diff --git a/extension/src/openvic-extension/classes/GFXMaskedFlagTexture.cpp b/extension/src/openvic-extension/classes/GFXMaskedFlagTexture.cpp index fdc1a10..c17fa0e 100644 --- a/extension/src/openvic-extension/classes/GFXMaskedFlagTexture.cpp +++ b/extension/src/openvic-extension/classes/GFXMaskedFlagTexture.cpp @@ -162,7 +162,9 @@ String GFXMaskedFlagTexture::get_gfx_masked_flag_name() const { return gfx_masked_flag != nullptr ? std_view_to_godot_string(gfx_masked_flag->get_name()) : String {}; } -Error GFXMaskedFlagTexture::set_flag_country_and_type(Country const* new_flag_country, StringName const& new_flag_type) { +Error GFXMaskedFlagTexture::set_flag_country_and_type( + CountryDefinition const* new_flag_country, StringName const& new_flag_type +) { if (flag_country == new_flag_country && flag_type == new_flag_type) { return OK; } @@ -193,14 +195,15 @@ Error GFXMaskedFlagTexture::set_flag_country_name_and_type( } GameSingleton* game_singleton = GameSingleton::get_singleton(); ERR_FAIL_NULL_V(game_singleton, FAILED); - Country const* new_flag_country = game_singleton->get_definition_manager().get_country_manager().get_country_by_identifier( - godot_to_std_string(new_flag_country_name) - ); + CountryDefinition const* new_flag_country = + game_singleton->get_definition_manager().get_country_definition_manager().get_country_definition_by_identifier( + godot_to_std_string(new_flag_country_name) + ); ERR_FAIL_NULL_V_MSG(new_flag_country, FAILED, vformat("Country not found: %s", new_flag_country_name)); return set_flag_country_and_type(new_flag_country, new_flag_type); } -Error GFXMaskedFlagTexture::set_flag_country(Country const* new_flag_country) { +Error GFXMaskedFlagTexture::set_flag_country(CountryDefinition const* new_flag_country) { // TODO - get country's current flag type from the game state return set_flag_country_and_type( new_flag_country, {}); } @@ -211,9 +214,10 @@ Error GFXMaskedFlagTexture::set_flag_country_name(String const& new_flag_country } GameSingleton* game_singleton = GameSingleton::get_singleton(); ERR_FAIL_NULL_V(game_singleton, FAILED); - Country const* new_flag_country = game_singleton->get_definition_manager().get_country_manager().get_country_by_identifier( - godot_to_std_string(new_flag_country_name) - ); + CountryDefinition const* new_flag_country = + game_singleton->get_definition_manager().get_country_definition_manager().get_country_definition_by_identifier( + godot_to_std_string(new_flag_country_name) + ); ERR_FAIL_NULL_V_MSG(new_flag_country, FAILED, vformat("Country not found: %s", new_flag_country_name)); return set_flag_country(new_flag_country); } diff --git a/extension/src/openvic-extension/classes/GFXMaskedFlagTexture.hpp b/extension/src/openvic-extension/classes/GFXMaskedFlagTexture.hpp index 9290d5c..3d361e4 100644 --- a/extension/src/openvic-extension/classes/GFXMaskedFlagTexture.hpp +++ b/extension/src/openvic-extension/classes/GFXMaskedFlagTexture.hpp @@ -1,16 +1,17 @@ #pragma once -#include <openvic-simulation/country/Country.hpp> #include <openvic-simulation/interface/GFXSprite.hpp> #include "openvic-extension/classes/GFXButtonStateTexture.hpp" namespace OpenVic { + struct CountryDefinition; + class GFXMaskedFlagTexture : public GFXButtonStateHavingTexture { GDCLASS(GFXMaskedFlagTexture, GFXButtonStateHavingTexture) GFX::MaskedFlag const* PROPERTY(gfx_masked_flag); - Country const* PROPERTY(flag_country); + CountryDefinition const* PROPERTY(flag_country); godot::StringName PROPERTY(flag_type); godot::Ref<godot::Image> overlay_image, mask_image, flag_image; @@ -42,7 +43,9 @@ namespace OpenVic { godot::String get_gfx_masked_flag_name() const; /* Set flag_country and flag_type and update the combined image to use that flag, or no flag if it doesn't exist. */ - godot::Error set_flag_country_and_type(Country const* new_flag_country, godot::StringName const& new_flag_type); + godot::Error set_flag_country_and_type( + CountryDefinition const* new_flag_country, godot::StringName const& new_flag_type + ); /* Look up the country with the specified identifier, then call set_flag_country_and_type with the country and * specified flag_type as arguments. */ @@ -52,7 +55,7 @@ namespace OpenVic { /* Look up the specified country's current flag type, then call set_flag_country_and_type * with the country and its flag type as arguments. */ - godot::Error set_flag_country(Country const* new_flag_country); + godot::Error set_flag_country(CountryDefinition const* new_flag_country); /* Look up the country with the specified identifier, then call set_flag_country with the country its argument. */ godot::Error set_flag_country_name(godot::String const& new_flag_country_name); |