aboutsummaryrefslogtreecommitdiff
path: root/extension/src/MapSingleton.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'extension/src/MapSingleton.hpp')
-rw-r--r--extension/src/MapSingleton.hpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/extension/src/MapSingleton.hpp b/extension/src/MapSingleton.hpp
new file mode 100644
index 0000000..767ae88
--- /dev/null
+++ b/extension/src/MapSingleton.hpp
@@ -0,0 +1,30 @@
+#pragma once
+
+#include <godot_cpp/core/class_db.hpp>
+#include <godot_cpp/classes/image.hpp>
+#include "openvic2/Map.hpp"
+
+namespace OpenVic2 {
+ class MapSingleton : public godot::Object {
+
+ GDCLASS(MapSingleton, godot::Object)
+
+ static MapSingleton* singleton;
+
+ godot::Ref<godot::Image> province_shape_image;
+ Map map;
+
+ protected:
+ static void _bind_methods();
+
+ public:
+ static MapSingleton* get_singleton();
+
+ MapSingleton();
+ ~MapSingleton();
+
+ godot::Error load_province_identifier_file(godot::String const& file_path);
+ godot::Error load_province_shape_file(godot::String const& file_path);
+ godot::Ref<godot::Image> get_province_shape_image() const;
+ };
+}