From bd9b0206bcfc8848c865055a933d1e207521ac8e Mon Sep 17 00:00:00 2001 From: Hop311 Date: Mon, 22 May 2023 13:57:00 +0100 Subject: GD/std string cleanup + separate data loading cpp --- extension/src/Utilities.hpp | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 extension/src/Utilities.hpp (limited to 'extension/src/Utilities.hpp') diff --git a/extension/src/Utilities.hpp b/extension/src/Utilities.hpp new file mode 100644 index 0000000..16193e8 --- /dev/null +++ b/extension/src/Utilities.hpp @@ -0,0 +1,22 @@ +#pragma once + +#include + +#include "openvic/Types.hpp" + +#define ERR(x) ((x) == SUCCESS ? OK : FAILED) + +namespace OpenVic { + + inline char const* godot_to_c_string(godot::String const& str) { + return str.ascii().get_data(); + } + + inline std::string godot_to_std_string(godot::String const& str) { + return godot_to_c_string(str); + } + + inline godot::String std_to_godot_string(std::string const& str) { + return str.c_str(); + } +} -- cgit v1.2.3-56-ga3b1