aboutsummaryrefslogtreecommitdiff
path: root/extension/src/openvic-extension/LoadLocalisation.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'extension/src/openvic-extension/LoadLocalisation.hpp')
-rw-r--r--extension/src/openvic-extension/LoadLocalisation.hpp28
1 files changed, 28 insertions, 0 deletions
diff --git a/extension/src/openvic-extension/LoadLocalisation.hpp b/extension/src/openvic-extension/LoadLocalisation.hpp
new file mode 100644
index 0000000..04ec5c7
--- /dev/null
+++ b/extension/src/openvic-extension/LoadLocalisation.hpp
@@ -0,0 +1,28 @@
+#pragma once
+
+#include <godot_cpp/classes/translation.hpp>
+
+namespace OpenVic {
+ class LoadLocalisation : public godot::Object {
+
+ GDCLASS(LoadLocalisation, godot::Object)
+
+ static LoadLocalisation* singleton;
+
+ godot::Error _load_file_into_translation(godot::String const& file_path, godot::Ref<godot::Translation> translation);
+ godot::Ref<godot::Translation> _get_translation(godot::String const& locale);
+
+ protected:
+ static void _bind_methods();
+
+ public:
+ static LoadLocalisation* get_singleton();
+
+ LoadLocalisation();
+ ~LoadLocalisation();
+
+ godot::Error load_file(godot::String const& file_path, godot::String const& locale);
+ godot::Error load_locale_dir(godot::String const& dir_path, godot::String const& locale);
+ godot::Error load_localisation_dir(godot::String const& dir_path);
+ };
+}