2020-02-01 20:39:39 +00:00
|
|
|
use common::{
|
|
|
|
assets,
|
|
|
|
assets::{load_expect, load_glob, Asset},
|
|
|
|
};
|
2020-01-17 23:43:18 +00:00
|
|
|
use deunicode::deunicode;
|
|
|
|
use ron::de::from_reader;
|
|
|
|
use serde_derive::*;
|
2020-02-01 20:39:39 +00:00
|
|
|
use std::{
|
|
|
|
collections::{HashMap, HashSet},
|
|
|
|
fs::File,
|
|
|
|
io::BufReader,
|
|
|
|
};
|
2020-01-17 23:43:18 +00:00
|
|
|
|
|
|
|
/// The reference language, aka the more up-to-date localization data.
|
|
|
|
/// Also the default language at first startup.
|
|
|
|
pub const REFERENCE_LANG: &str = "en";
|
|
|
|
|
|
|
|
/// How a language can be described
|
|
|
|
#[derive(Clone, Debug, PartialEq, Eq, Serialize, Deserialize)]
|
|
|
|
pub struct LanguageMetadata {
|
|
|
|
/// A human friendly language name (e.g. "English (US)")
|
|
|
|
pub language_name: String,
|
|
|
|
|
|
|
|
/// A short text identifier for this language (e.g. "en_US")
|
|
|
|
///
|
|
|
|
/// On the opposite of `language_name` that can change freely,
|
|
|
|
/// `language_identifier` value shall be stable in time as it
|
|
|
|
/// is used by setting components to store the language
|
|
|
|
/// selected by the user.
|
|
|
|
pub language_identifier: String,
|
|
|
|
}
|
|
|
|
|
2020-01-26 19:29:46 +00:00
|
|
|
/// Store font metadata
|
|
|
|
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
|
|
|
|
pub struct Font {
|
|
|
|
/// Key to retrieve the font in the asset system
|
|
|
|
pub asset_key: String,
|
|
|
|
|
|
|
|
/// Scale ratio to resize the UI text dynamicly
|
|
|
|
pub scale_ratio: f32,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Font {
|
|
|
|
/// Scale input size to final UI size
|
|
|
|
pub fn scale(&self, value: u32) -> u32 { (value as f32 * self.scale_ratio).round() as u32 }
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Store font metadata
|
|
|
|
pub type VoxygenFonts = HashMap<String, Font>;
|
|
|
|
|
2020-01-17 23:43:18 +00:00
|
|
|
/// Store internationalization data
|
2020-01-26 19:29:46 +00:00
|
|
|
#[derive(Clone, Debug, PartialEq, Serialize, Deserialize)]
|
2020-01-17 23:43:18 +00:00
|
|
|
pub struct VoxygenLocalization {
|
|
|
|
/// A map storing the localized texts
|
|
|
|
///
|
|
|
|
/// Localized content can be access using a String key
|
|
|
|
pub string_map: HashMap<String, String>,
|
|
|
|
|
|
|
|
/// Either to convert the input text encoded in UTF-8
|
|
|
|
/// into a ASCII version by using the `deunicode` crate.
|
|
|
|
pub convert_utf8_to_ascii: bool,
|
|
|
|
|
2020-01-26 19:29:46 +00:00
|
|
|
/// Font configuration is stored here
|
|
|
|
pub fonts: VoxygenFonts,
|
|
|
|
|
2020-01-17 23:43:18 +00:00
|
|
|
pub metadata: LanguageMetadata,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl VoxygenLocalization {
|
|
|
|
/// Get a localized text from the given key
|
|
|
|
///
|
|
|
|
/// If the key is not present in the localization object
|
|
|
|
/// then the key is returned.
|
2020-01-22 21:15:19 +00:00
|
|
|
pub fn get<'a>(&'a self, key: &'a str) -> &str {
|
2020-01-17 23:43:18 +00:00
|
|
|
match self.string_map.get(key) {
|
2020-01-21 20:05:02 +00:00
|
|
|
Some(localized_text) => localized_text,
|
|
|
|
None => key,
|
2020-01-17 23:43:18 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Return the missing keys compared to the reference language and return
|
|
|
|
/// them
|
|
|
|
pub fn list_missing_entries(&self) -> HashSet<String> {
|
|
|
|
let reference_localization =
|
|
|
|
load_expect::<VoxygenLocalization>(i18n_asset_key(REFERENCE_LANG).as_ref());
|
|
|
|
let reference_keys: HashSet<_> =
|
|
|
|
reference_localization.string_map.keys().cloned().collect();
|
|
|
|
let current_keys: HashSet<_> = self.string_map.keys().cloned().collect();
|
|
|
|
|
|
|
|
reference_keys.difference(¤t_keys).cloned().collect()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Log missing entries (compared to the reference language) as warnings
|
|
|
|
pub fn log_missing_entries(&self) {
|
|
|
|
for missing_key in self.list_missing_entries() {
|
|
|
|
log::warn!(
|
|
|
|
"[{:?}] Missing key {:?}",
|
|
|
|
self.metadata.language_identifier,
|
|
|
|
missing_key
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Asset for VoxygenLocalization {
|
|
|
|
const ENDINGS: &'static [&'static str] = &["ron"];
|
|
|
|
|
|
|
|
/// Load the translations located in the input buffer and convert them
|
|
|
|
/// into a `VoxygenLocalization` object.
|
|
|
|
fn parse(buf_reader: BufReader<File>) -> Result<Self, assets::Error> {
|
|
|
|
let mut asked_localization: VoxygenLocalization = from_reader(buf_reader).unwrap();
|
|
|
|
|
|
|
|
// Update the text if UTF-8 to ASCII conversion is enabled
|
|
|
|
if asked_localization.convert_utf8_to_ascii {
|
|
|
|
for value in asked_localization.string_map.values_mut() {
|
|
|
|
*value = deunicode(value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
asked_localization.metadata.language_name =
|
|
|
|
deunicode(&asked_localization.metadata.language_name);
|
|
|
|
|
|
|
|
Ok(asked_localization)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Load all the available languages located in the Voxygen asset directory
|
|
|
|
pub fn list_localizations() -> Vec<LanguageMetadata> {
|
|
|
|
let voxygen_locales_assets = "voxygen.i18n.*";
|
|
|
|
let lang_list = load_glob::<VoxygenLocalization>(voxygen_locales_assets).unwrap();
|
|
|
|
lang_list.iter().map(|e| (*e).metadata.clone()).collect()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Return the asset associated with the language_id
|
2020-02-01 20:39:39 +00:00
|
|
|
pub fn i18n_asset_key(language_id: &str) -> String { "voxygen.i18n.".to_string() + language_id }
|