mirror of
https://gitlab.com/veloren/veloren.git
synced 2024-08-30 18:12:32 +00:00
101 lines
3.2 KiB
Rust
101 lines
3.2 KiB
Rust
use common::comp;
|
|
use directories::ProjectDirs;
|
|
use serde::{Deserialize, Serialize};
|
|
use std::{fs, io::Write, path::PathBuf};
|
|
use tracing::warn;
|
|
|
|
const VALID_VERSION: u32 = 0; // Change this if you broke charsaves
|
|
#[derive(Clone, Debug, Serialize, Deserialize)]
|
|
#[repr(C)]
|
|
pub struct CharacterData {
|
|
pub name: String,
|
|
pub body: comp::Body,
|
|
pub tool: Option<String>,
|
|
}
|
|
|
|
#[derive(Clone, Debug, Default, Serialize, Deserialize)]
|
|
//#[serde(default)]
|
|
#[repr(C)]
|
|
pub struct Meta {
|
|
pub characters: Vec<CharacterData>,
|
|
pub selected_character: usize,
|
|
pub version: u32,
|
|
}
|
|
|
|
impl Meta {
|
|
pub fn delete_character(&mut self, index: usize) {
|
|
self.characters.remove(index);
|
|
if index < self.selected_character {
|
|
self.selected_character -= 1;
|
|
}
|
|
}
|
|
|
|
pub fn add_character(&mut self, data: CharacterData) -> usize {
|
|
self.characters.push(data);
|
|
// return new character's index
|
|
self.characters.len() - 1
|
|
}
|
|
|
|
pub fn load() -> Self {
|
|
let path = Self::get_meta_path();
|
|
|
|
if let Ok(file) = fs::File::open(&path) {
|
|
match ron::de::from_reader::<_, Meta>(file) {
|
|
Ok(s) => {
|
|
if s.version == VALID_VERSION {
|
|
return s;
|
|
}
|
|
},
|
|
Err(e) => {
|
|
warn!(?e, ?file, "Failed to parse meta file! Fallback to default");
|
|
// Rename the corrupted settings file
|
|
let mut new_path = path.to_owned();
|
|
new_path.pop();
|
|
new_path.push("meta.invalid.ron");
|
|
if let Err(e) = std::fs::rename(path.clone(), new_path.clone()) {
|
|
warn!(?e, ?path, ?new_path, "Failed to rename meta file");
|
|
}
|
|
},
|
|
}
|
|
}
|
|
// This is reached if either:
|
|
// - The file can't be opened (presumably it doesn't exist)
|
|
// - Or there was an error parsing the file
|
|
let default = Self::default();
|
|
default.save_to_file_warn();
|
|
default
|
|
}
|
|
|
|
pub fn save_to_file_warn(&self) {
|
|
if let Err(err) = self.save_to_file() {
|
|
warn!(?e, "Failed to save settings");
|
|
}
|
|
}
|
|
|
|
pub fn save_to_file(&self) -> std::io::Result<()> {
|
|
let path = Self::get_meta_path();
|
|
if let Some(dir) = path.parent() {
|
|
fs::create_dir_all(dir)?;
|
|
}
|
|
let mut meta_file = fs::File::create(path)?;
|
|
|
|
let s: &str = &ron::ser::to_string_pretty(self, ron::ser::PrettyConfig::default()).unwrap();
|
|
meta_file.write_all(s.as_bytes()).unwrap();
|
|
Ok(())
|
|
}
|
|
|
|
pub fn get_meta_path() -> PathBuf {
|
|
if let Some(path) = std::env::var_os("VOXYGEN_CONFIG") {
|
|
let meta = PathBuf::from(path).join("meta.ron");
|
|
if meta.exists() || meta.parent().map(|x| x.exists()).unwrap_or(false) {
|
|
return meta;
|
|
}
|
|
warn!(?path, "VOXYGEN_CONFIG points to invalid path.");
|
|
}
|
|
|
|
let proj_dirs = ProjectDirs::from("net", "veloren", "voxygen")
|
|
.expect("System's $HOME directory path not found!");
|
|
proj_dirs.config_dir().join("meta").with_extension("ron")
|
|
}
|
|
}
|