From 444134a93bd5c704f5201ff30371dc81d0669e46 Mon Sep 17 00:00:00 2001 From: hop311 Date: Tue, 5 Mar 2024 00:19:27 +0000 Subject: Move GDExtension menu-related functions to MenuSingleton --- .../openvic-extension/singletons/MenuSingleton.hpp | 48 ++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100644 extension/src/openvic-extension/singletons/MenuSingleton.hpp (limited to 'extension/src/openvic-extension/singletons/MenuSingleton.hpp') diff --git a/extension/src/openvic-extension/singletons/MenuSingleton.hpp b/extension/src/openvic-extension/singletons/MenuSingleton.hpp new file mode 100644 index 0000000..6bd90c5 --- /dev/null +++ b/extension/src/openvic-extension/singletons/MenuSingleton.hpp @@ -0,0 +1,48 @@ +#pragma once + +#include + +#include + +namespace OpenVic { + struct GameManager; + + class MenuSingleton : public godot::Object { + GDCLASS(MenuSingleton, godot::Object) + + static inline MenuSingleton* singleton = nullptr; + + GameManager* game_manager; + + protected: + static void _bind_methods(); + + public: + static MenuSingleton* get_singleton(); + + /* This should only be called AFTER GameSingleton has been initialised! */ + MenuSingleton(); + ~MenuSingleton(); + + /* PROVINCE OVERVIEW PANEL */ + /* Get info to display in Province Overview Panel, packaged in a Dictionary using StringName constants as keys. */ + godot::Dictionary get_province_info_from_index(int32_t index) const; + int32_t get_province_building_count() const; + godot::String get_province_building_identifier(int32_t building_index) const; + godot::Error expand_selected_province_building(int32_t building_index); + int32_t get_slave_pop_icon_index() const; + int32_t get_administrative_pop_icon_index() const; + int32_t get_rgo_owner_pop_icon_index() const; + + /* TIME/SPEED CONTROL PANEL */ + void set_paused(bool paused); + void toggle_paused(); + bool is_paused() const; + void increase_speed(); + void decrease_speed(); + int32_t get_speed() const; + bool can_increase_speed() const; + bool can_decrease_speed() const; + godot::String get_longform_date() const; + }; +} -- cgit v1.2.3-56-ga3b1