2011-07-16 04:09:49 +08:00
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
// SFML - Simple and Fast Multimedia Library
|
2024-01-26 08:17:10 +08:00
|
|
|
// Copyright (C) 2007-2024 Marco Antognini (antognini.marco@gmail.com),
|
2015-02-26 19:57:16 +08:00
|
|
|
// Laurent Gomila (laurent@sfml-dev.org)
|
2011-07-16 04:09:49 +08:00
|
|
|
//
|
|
|
|
// This software is provided 'as-is', without any express or implied warranty.
|
|
|
|
// In no event will the authors be held liable for any damages arising from the use of this software.
|
|
|
|
//
|
|
|
|
// Permission is granted to anyone to use this software for any purpose,
|
|
|
|
// including commercial applications, and to alter it and redistribute it freely,
|
|
|
|
// subject to the following restrictions:
|
|
|
|
//
|
|
|
|
// 1. The origin of this software must not be misrepresented;
|
|
|
|
// you must not claim that you wrote the original software.
|
|
|
|
// If you use this software in a product, an acknowledgment
|
|
|
|
// in the product documentation would be appreciated but is not required.
|
|
|
|
//
|
|
|
|
// 2. Altered source versions must be plainly marked as such,
|
|
|
|
// and must not be misrepresented as being the original software.
|
|
|
|
//
|
|
|
|
// 3. This notice may not be removed or altered from any source distribution.
|
|
|
|
//
|
|
|
|
////////////////////////////////////////////////////////////
|
|
|
|
|
2022-07-05 00:20:58 +08:00
|
|
|
#import "NSString+stdstring.h"
|
|
|
|
|
2023-04-24 20:13:52 +08:00
|
|
|
#include <SFML/System/Utf.hpp>
|
|
|
|
|
2011-07-16 04:09:49 +08:00
|
|
|
@implementation NSString (NSString_stdstring)
|
|
|
|
|
2022-07-05 00:20:58 +08:00
|
|
|
+ (id)stringWithstdstring:(const std::string&)string
|
2011-07-16 04:09:49 +08:00
|
|
|
{
|
|
|
|
std::string utf8;
|
|
|
|
utf8.reserve(string.size() + 1);
|
2013-09-20 21:00:11 +08:00
|
|
|
|
2012-03-12 16:19:07 +08:00
|
|
|
sf::Utf8::fromAnsi(string.begin(), string.end(), std::back_inserter(utf8));
|
2013-09-20 21:00:11 +08:00
|
|
|
|
2022-07-05 00:20:58 +08:00
|
|
|
NSString* str = [NSString stringWithCString:utf8.c_str() encoding:NSUTF8StringEncoding];
|
2011-07-16 04:09:49 +08:00
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
2022-07-05 00:20:58 +08:00
|
|
|
+ (id)stringWithstdwstring:(const std::wstring&)string
|
2014-05-17 19:48:44 +08:00
|
|
|
{
|
2021-12-19 05:21:52 +08:00
|
|
|
const void* data = static_cast<const void*>(string.data());
|
2023-12-23 10:29:43 +08:00
|
|
|
auto size = static_cast<unsigned>(string.size() * sizeof(wchar_t));
|
2014-05-17 19:48:44 +08:00
|
|
|
|
|
|
|
NSString* str = [[[NSString alloc] initWithBytes:data length:size
|
|
|
|
encoding:NSUTF32LittleEndianStringEncoding] autorelease];
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
2022-07-05 00:20:58 +08:00
|
|
|
- (std::string)tostdstring
|
2011-07-16 04:09:49 +08:00
|
|
|
{
|
|
|
|
// Not sure about the encoding to use. Using [self UTF8String] doesn't
|
|
|
|
// work for characters like é or à.
|
2022-07-05 00:20:58 +08:00
|
|
|
const char* cstr = [self cStringUsingEncoding:NSISOLatin1StringEncoding];
|
2013-09-20 21:00:11 +08:00
|
|
|
|
2021-12-03 22:45:32 +08:00
|
|
|
if (cstr != nullptr)
|
2014-05-17 19:48:44 +08:00
|
|
|
return std::string(cstr);
|
2024-06-26 04:22:42 +08:00
|
|
|
|
|
|
|
return "";
|
2011-07-16 04:09:49 +08:00
|
|
|
}
|
|
|
|
|
2022-07-05 00:20:58 +08:00
|
|
|
- (std::wstring)tostdwstring
|
2011-07-16 04:09:49 +08:00
|
|
|
{
|
2023-02-12 12:49:05 +08:00
|
|
|
// According to Wikipedia, macOS is Little Endian on x86 and x86-64
|
2018-02-08 20:46:09 +08:00
|
|
|
// https://en.wikipedia.org/wiki/Endianness
|
2011-07-16 04:09:49 +08:00
|
|
|
NSData* asData = [self dataUsingEncoding:NSUTF32LittleEndianStringEncoding];
|
2021-12-19 05:21:52 +08:00
|
|
|
return std::wstring(static_cast<const wchar_t*>([asData bytes]), [asData length] / sizeof(wchar_t));
|
2011-07-16 04:09:49 +08:00
|
|
|
}
|
|
|
|
|
2013-09-20 21:00:11 +08:00
|
|
|
@end
|