From 6352e8e3196f78388b6c771073f9e03eaa612673 Mon Sep 17 00:00:00 2001 From: Kae <80987908+Novaenia@users.noreply.github.com> Date: Tue, 20 Jun 2023 14:33:09 +1000 Subject: everything everywhere all at once --- source/core/StarString_windows.cpp | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 source/core/StarString_windows.cpp (limited to 'source/core/StarString_windows.cpp') diff --git a/source/core/StarString_windows.cpp b/source/core/StarString_windows.cpp new file mode 100644 index 0000000..77c3e89 --- /dev/null +++ b/source/core/StarString_windows.cpp @@ -0,0 +1,34 @@ +#include "StarString_windows.hpp" + +namespace Star { + +size_t wcharLen(WCHAR const* s) { + size_t size = 0; + while (*s) { + ++size; + ++s; + } + return size; +} + +String utf16ToString(WCHAR const* s) { + if (!s) + return ""; + int sLen = wcharLen(s); + int utf8Len = WideCharToMultiByte(CP_UTF8, 0, s, sLen + 1, NULL, 0, NULL, NULL); + auto utf8Buffer = new char[utf8Len]; + WideCharToMultiByte(CP_UTF8, 0, s, sLen + 1, utf8Buffer, utf8Len, NULL, NULL); + auto result = String(utf8Buffer, utf8Len - 1); + delete[] utf8Buffer; + return result; +} + +unique_ptr stringToUtf16(String const& s) { + int utf16Len = MultiByteToWideChar(CP_UTF8, 0, s.utf8Ptr(), s.utf8Size() + 1, NULL, 0); + unique_ptr result; + result.reset(new WCHAR[utf16Len]); + MultiByteToWideChar(CP_UTF8, 0, s.utf8Ptr(), s.utf8Size() + 1, result.get(), utf16Len); + return result; +} + +} -- cgit v1.2.3