summaryrefslogtreecommitdiff
path: root/src/os
diff options
context:
space:
mode:
authorMichael Lutz <michi@icosahedron.de>2018-09-23 19:26:09 +0200
committerMichael Lutz <michi@icosahedron.de>2018-12-08 20:13:27 +0100
commit8d7cd6a5262ae151e30fe6db18d04648ebe9d8d7 (patch)
tree808780a96841751582ed1b91122310b1a439a8b6 /src/os
parent05a93c121c2066baa58e075a3ba6f04f18ab594d (diff)
downloadopenttd-8d7cd6a5262ae151e30fe6db18d04648ebe9d8d7.tar.xz
Add: [OSX] Native natural sort implementation.
Diffstat (limited to 'src/os')
-rw-r--r--src/os/macosx/string_osx.cpp66
-rw-r--r--src/os/macosx/string_osx.h19
2 files changed, 85 insertions, 0 deletions
diff --git a/src/os/macosx/string_osx.cpp b/src/os/macosx/string_osx.cpp
new file mode 100644
index 000000000..93c50722b
--- /dev/null
+++ b/src/os/macosx/string_osx.cpp
@@ -0,0 +1,66 @@
+/* $Id$ */
+
+/*
+ * This file is part of OpenTTD.
+ * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
+ * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+/** @file string_osx.cpp Functions related to localized text support on OSX. */
+
+#include "../../stdafx.h"
+#include "string_osx.h"
+#include "macos.h"
+
+#include <CoreFoundation/CoreFoundation.h>
+
+
+#if (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5)
+static CFLocaleRef _osx_locale = NULL;
+
+/** Store current language locale as a CoreFounation locale. */
+void MacOSSetCurrentLocaleName(const char *iso_code)
+{
+ if (!MacOSVersionIsAtLeast(10, 5, 0)) return;
+
+ if (_osx_locale != NULL) CFRelease(_osx_locale);
+
+ CFStringRef iso = CFStringCreateWithCString(kCFAllocatorNull, iso_code, kCFStringEncodingUTF8);
+ _osx_locale = CFLocaleCreate(kCFAllocatorDefault, iso);
+ CFRelease(iso);
+}
+
+/**
+ * Compares two strings using case insensitive natural sort.
+ *
+ * @param s1 First string to compare.
+ * @param s2 Second string to compare.
+ * @return 1 if s1 < s2, 2 if s1 == s2, 3 if s1 > s2, or 0 if not supported by the OS.
+ */
+int MacOSStringCompare(const char *s1, const char *s2)
+{
+ static bool supported = MacOSVersionIsAtLeast(10, 5, 0);
+ if (!supported) return 0;
+
+ CFStringCompareFlags flags = kCFCompareCaseInsensitive | kCFCompareNumerically | kCFCompareLocalized | kCFCompareWidthInsensitive | kCFCompareForcedOrdering;
+
+ CFStringRef cf1 = CFStringCreateWithCString(kCFAllocatorDefault, s1, kCFStringEncodingUTF8);
+ CFStringRef cf2 = CFStringCreateWithCString(kCFAllocatorDefault, s2, kCFStringEncodingUTF8);
+
+ CFComparisonResult res = CFStringCompareWithOptionsAndLocale(cf1, cf2, CFRangeMake(0, CFStringGetLength(cf1)), flags, _osx_locale);
+
+ CFRelease(cf1);
+ CFRelease(cf2);
+
+ return (int)res + 2;
+}
+
+#else
+void MacOSSetCurrentLocaleName(const char *iso_code) {}
+
+int MacOSStringCompare(const char *s1, const char *s2)
+{
+ return 0;
+}
+#endif /* (MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5) */
diff --git a/src/os/macosx/string_osx.h b/src/os/macosx/string_osx.h
new file mode 100644
index 000000000..90bac48d2
--- /dev/null
+++ b/src/os/macosx/string_osx.h
@@ -0,0 +1,19 @@
+/* $Id$ */
+
+/*
+ * This file is part of OpenTTD.
+ * OpenTTD is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, version 2.
+ * OpenTTD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+ * See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with OpenTTD. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+/** @file string_osx.h Functions related to localized text support on OSX. */
+
+#ifndef STRING_OSX_H
+#define STRING_OSX_H
+
+
+void MacOSSetCurrentLocaleName(const char *iso_code);
+int MacOSStringCompare(const char *s1, const char *s2);
+
+#endif /* STRING_OSX_H */