com.bladecoder.engine.i18n.I18N Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of blade-engine Show documentation
Show all versions of blade-engine Show documentation
Classic point and click adventure game engine
/*******************************************************************************
* Copyright 2014 Rafael Garcia Moreno.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
******************************************************************************/
package com.bladecoder.engine.i18n;
import java.util.Locale;
import java.util.ResourceBundle;
import com.bladecoder.engine.util.EngineLogger;
public class I18N {
public static final char PREFIX = '@';
public static final String ENCODING = "UTF-8";
// public static final String ENCODING = "ISO-8859-1";
private static ResourceBundle i18nWorld;
private static ResourceBundle i18nChapter;
private static Locale locale = Locale.getDefault();
private static String i18nChapterFilename = null;
private static String i18nWorldFilename = null;
public static void loadChapter(String i18nChapterFilename) {
try {
i18nChapter = ResourceBundle.getBundle(i18nChapterFilename, locale, new I18NControl(ENCODING));
I18N.i18nChapterFilename = i18nChapterFilename;
} catch (Exception e) {
EngineLogger.error("ERROR LOADING BUNDLE: " + i18nChapter);
}
}
public static void loadWorld(String i18nWorldFilename) {
try {
ResourceBundle.clearCache();
i18nWorld = ResourceBundle.getBundle(i18nWorldFilename, locale, new I18NControl(ENCODING));
I18N.i18nWorldFilename = i18nWorldFilename;
} catch (Exception e) {
EngineLogger.error("ERROR LOADING BUNDLE: " + i18nWorld);
}
}
public static void setLocale(Locale l) {
locale = l;
// RELOAD TRANSLATIONS
if (i18nWorld != null) {
// loadWorld(i18nWorld.getBaseBundleName());
loadWorld(i18nWorldFilename);
}
if (i18nChapter != null) {
// loadChapter(i18nChapter.getBaseBundleName());
loadChapter(i18nChapterFilename);
}
}
public static String getString(String key) {
try {
return i18nChapter.getString(key);
} catch (Exception e) {
try {
return i18nWorld.getString(key);
} catch (Exception e2) {
EngineLogger.error("MISSING TRANSLATION KEY: " + key);
return key;
}
}
}
public static Locale getCurrentLocale() {
return locale;
}
}