You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
132 lines
4.4 KiB
132 lines
4.4 KiB
/****************************************************************************
|
|
Copyright (c) 2021-2023 Xiamen Yaji Software Co., Ltd.
|
|
|
|
http://www.cocos.com
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights to
|
|
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
|
|
of the Software, and to permit persons to whom the Software is furnished to do so,
|
|
subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
all copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
THE SOFTWARE.
|
|
****************************************************************************/
|
|
|
|
#include "platform/linux/modules/System.h"
|
|
#include <string.h>
|
|
#include <sys/utsname.h>
|
|
#include "SDL2/SDL_clipboard.h"
|
|
|
|
namespace cc {
|
|
|
|
using OSType = System::OSType;
|
|
|
|
OSType System::getOSType() const {
|
|
return OSType::LINUX;
|
|
}
|
|
|
|
ccstd::string System::getDeviceModel() const {
|
|
return "Linux";
|
|
}
|
|
|
|
System::LanguageType System::getCurrentLanguage() const {
|
|
char *pLanguageName = getenv("LANG");
|
|
if (!pLanguageName) {
|
|
return LanguageType::ENGLISH;
|
|
}
|
|
strtok(pLanguageName, "_");
|
|
if (!pLanguageName) {
|
|
return LanguageType::ENGLISH;
|
|
}
|
|
|
|
return getLanguageTypeByISO2(pLanguageName);
|
|
}
|
|
|
|
ccstd::string System::getCurrentLanguageCode() const {
|
|
static char code[3] = {0};
|
|
char *pLanguageName = getenv("LANG");
|
|
if (!pLanguageName) {
|
|
return "en";
|
|
}
|
|
strtok(pLanguageName, "_");
|
|
if (!pLanguageName) {
|
|
return "en";
|
|
}
|
|
strncpy(code, pLanguageName, 2);
|
|
code[2] = '\0';
|
|
return code;
|
|
}
|
|
|
|
ccstd::string System::getSystemVersion() const {
|
|
struct utsname u;
|
|
uname(&u);
|
|
return u.version;
|
|
}
|
|
|
|
bool System::openURL(const ccstd::string &url) {
|
|
ccstd::string op = ccstd::string("xdg-open '").append(url).append("'");
|
|
return system(op.c_str()) == 0;
|
|
}
|
|
|
|
System::LanguageType System::getLanguageTypeByISO2(const char *code) const {
|
|
// this function is used by all platforms to get system language
|
|
// except windows: cocos/platform/win32/CCApplication-win32.cpp
|
|
LanguageType ret = LanguageType::ENGLISH;
|
|
|
|
if (strncmp(code, "zh", 2) == 0) {
|
|
ret = LanguageType::CHINESE;
|
|
} else if (strncmp(code, "ja", 2) == 0) {
|
|
ret = LanguageType::JAPANESE;
|
|
} else if (strncmp(code, "fr", 2) == 0) {
|
|
ret = LanguageType::FRENCH;
|
|
} else if (strncmp(code, "it", 2) == 0) {
|
|
ret = LanguageType::ITALIAN;
|
|
} else if (strncmp(code, "de", 2) == 0) {
|
|
ret = LanguageType::GERMAN;
|
|
} else if (strncmp(code, "es", 2) == 0) {
|
|
ret = LanguageType::SPANISH;
|
|
} else if (strncmp(code, "nl", 2) == 0) {
|
|
ret = LanguageType::DUTCH;
|
|
} else if (strncmp(code, "ru", 2) == 0) {
|
|
ret = LanguageType::RUSSIAN;
|
|
} else if (strncmp(code, "hu", 2) == 0) {
|
|
ret = LanguageType::HUNGARIAN;
|
|
} else if (strncmp(code, "pt", 2) == 0) {
|
|
ret = LanguageType::PORTUGUESE;
|
|
} else if (strncmp(code, "ko", 2) == 0) {
|
|
ret = LanguageType::KOREAN;
|
|
} else if (strncmp(code, "ar", 2) == 0) {
|
|
ret = LanguageType::ARABIC;
|
|
} else if (strncmp(code, "nb", 2) == 0) {
|
|
ret = LanguageType::NORWEGIAN;
|
|
} else if (strncmp(code, "pl", 2) == 0) {
|
|
ret = LanguageType::POLISH;
|
|
} else if (strncmp(code, "tr", 2) == 0) {
|
|
ret = LanguageType::TURKISH;
|
|
} else if (strncmp(code, "uk", 2) == 0) {
|
|
ret = LanguageType::UKRAINIAN;
|
|
} else if (strncmp(code, "ro", 2) == 0) {
|
|
ret = LanguageType::ROMANIAN;
|
|
} else if (strncmp(code, "bg", 2) == 0) {
|
|
ret = LanguageType::BULGARIAN;
|
|
} else if (strncmp(code, "hi", 2) == 0) {
|
|
ret = LanguageType::HINDI;
|
|
}
|
|
return ret;
|
|
}
|
|
|
|
void System::copyTextToClipboard(const ccstd::string &text) {
|
|
SDL_SetClipboardText(text.c_str());
|
|
}
|
|
|
|
} // namespace cc
|