1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-22 22:13:35 +02:00

Revert "another approach"

This reverts commit 2f64457a9a.
This commit is contained in:
Laserlicht 2023-09-24 15:02:59 +02:00
parent 2f64457a9a
commit e93a04409e
3 changed files with 39 additions and 31 deletions

View File

@ -17,6 +17,9 @@ import org.libsdl.app.SDLActivity;
import java.io.File; import java.io.File;
import java.lang.ref.WeakReference; import java.lang.ref.WeakReference;
import java.util.Date;
import java.util.Locale;
import java.text.SimpleDateFormat;
import eu.vcmi.vcmi.util.Log; import eu.vcmi.vcmi.util.Log;
@ -153,6 +156,14 @@ public class NativeMethods
} }
} }
@SuppressWarnings(Const.JNI_METHOD_SUPPRESS)
public static String getFormattedDateTime()
{
String currentDate = new SimpleDateFormat((new SimpleDateFormat()).toLocalizedPattern(), Locale.getDefault()).format(new Date());
return currentDate;
}
private static void internalProgressDisplay(final boolean show) private static void internalProgressDisplay(final boolean show)
{ {
final Context ctx = SDL.getContext(); final Context ctx = SDL.getContext();

View File

@ -57,9 +57,6 @@ struct Options
/// primary IETF language tag /// primary IETF language tag
std::string tagIETF; std::string tagIETF;
/// POSIX locale
std::string locale;
/// VCMI supports translations into this language /// VCMI supports translations into this language
bool hasTranslation = false; bool hasTranslation = false;
}; };
@ -68,27 +65,27 @@ inline const auto & getLanguageList()
{ {
static const std::array<Options, 20> languages static const std::array<Options, 20> languages
{ { { {
{ "czech", "Czech", "Čeština", "CP1250", "cs", "cs_CZ.UTF-8", true }, { "czech", "Czech", "Čeština", "CP1250", "cs", true },
{ "chinese", "Chinese", "简体中文", "GBK", "zh", "zh_CN.UTF-8", true }, // Note: actually Simplified Chinese { "chinese", "Chinese", "简体中文", "GBK", "zh", true }, // Note: actually Simplified Chinese
{ "english", "English", "English", "CP1252", "en", "en_US.UTF-8", true }, { "english", "English", "English", "CP1252", "en", true },
{ "finnish", "Finnish", "Suomi", "CP1252", "fi", "fi_FI.UTF-8", true }, { "finnish", "Finnish", "Suomi", "CP1252", "fi", true },
{ "french", "French", "Français", "CP1252", "fr", "fr_FR.UTF-8", true }, { "french", "French", "Français", "CP1252", "fr", true },
{ "german", "German", "Deutsch", "CP1252", "de", "de_DE.UTF-8", true }, { "german", "German", "Deutsch", "CP1252", "de", true },
{ "hungarian", "Hungarian", "Magyar", "CP1250", "hu", "hu_HU.UTF-8", true }, { "hungarian", "Hungarian", "Magyar", "CP1250", "hu", true },
{ "italian", "Italian", "Italiano", "CP1250", "it", "it_IT.UTF-8", true }, { "italian", "Italian", "Italiano", "CP1250", "it", true },
{ "korean", "Korean", "한국어", "CP949", "ko", "ko_KR.UTF-8", true }, { "korean", "Korean", "한국어", "CP949", "ko", true },
{ "polish", "Polish", "Polski", "CP1250", "pl", "pl_PL.UTF-8", true }, { "polish", "Polish", "Polski", "CP1250", "pl", true },
{ "portuguese", "Portuguese", "Português", "CP1252", "pt", "pt_BR.UTF-8", true }, // Note: actually Brazilian Portuguese { "portuguese", "Portuguese", "Português", "CP1252", "pt", true }, // Note: actually Brazilian Portuguese
{ "russian", "Russian", "Русский", "CP1251", "ru", "ru_RU.UTF-8", true }, { "russian", "Russian", "Русский", "CP1251", "ru", true },
{ "spanish", "Spanish", "Español", "CP1252", "es", "es_ES.UTF-8", true }, { "spanish", "Spanish", "Español", "CP1252", "es", true },
{ "swedish", "Swedish", "Svenska", "CP1252", "sv", "sv_SE.UTF-8", true }, { "swedish", "Swedish", "Svenska", "CP1252", "sv", true },
{ "turkish", "Turkish", "Türkçe", "CP1254", "tr", "tr_TR.UTF-8", true }, { "turkish", "Turkish", "Türkçe", "CP1254", "tr", true },
{ "ukrainian", "Ukrainian", "Українська", "CP1251", "uk", "uk_UA.UTF-8", true }, { "ukrainian", "Ukrainian", "Українська", "CP1251", "uk", true },
{ "vietnamese", "Vietnamese", "Tiếng Việt", "UTF-8", "vi", "vi_VN.UTF-8", true }, // Fan translation uses special encoding { "vietnamese", "Vietnamese", "Tiếng Việt", "UTF-8", "vi", true }, // Fan translation uses special encoding
{ "other_cp1250", "Other (East European)", "", "CP1250", "", "", false }, { "other_cp1250", "Other (East European)", "", "CP1250", "", false },
{ "other_cp1251", "Other (Cyrillic Script)", "", "CP1251", "", "", false }, { "other_cp1251", "Other (Cyrillic Script)", "", "CP1251", "", false },
{ "other_cp1252", "Other (West European)", "", "CP1252", "", "", false } { "other_cp1252", "Other (West European)", "", "CP1252", "", false }
} }; } };
static_assert(languages.size() == static_cast<size_t>(ELanguages::COUNT), "Languages array is missing a value!"); static_assert(languages.size() == static_cast<size_t>(ELanguages::COUNT), "Languages array is missing a value!");

View File

@ -1,8 +1,9 @@
#include "StdInc.h" #include "StdInc.h"
#include <vstd/DateUtils.h> #include <vstd/DateUtils.h>
#include "../CConfigHandler.h" #if defined(VCMI_ANDROID)
#include "../Languages.h" #include "../CAndroidVMHelper.h"
#endif
VCMI_LIB_NAMESPACE_BEGIN VCMI_LIB_NAMESPACE_BEGIN
@ -11,17 +12,16 @@ namespace vstd
DLL_LINKAGE std::string getFormattedDateTime(std::time_t dt) DLL_LINKAGE std::string getFormattedDateTime(std::time_t dt)
{ {
std::string lang = settings["general"]["language"].String(); #if defined(VCMI_ANDROID)
std::string locale = Languages::getLanguageOptions(lang).locale; CAndroidVMHelper vmHelper;
return vmHelper.callStaticStringMethod(CAndroidVMHelper::NATIVE_METHODS_DEFAULT_CLASS, "getFormattedDateTime");
#endif
std::tm tm = *std::localtime(&dt); std::tm tm = *std::localtime(&dt);
std::stringstream s; std::stringstream s;
try try
{ {
if(locale.empty())
s.imbue(std::locale("")); s.imbue(std::locale(""));
else
s.imbue(std::locale(locale));
} }
catch(const std::runtime_error & e) catch(const std::runtime_error & e)
{ {