diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2022-11-27 20:35:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-27 20:35:11 +0100 |
commit | 8d40bca06dc8eea63c5eb7e4ae93f38e29654c7b (patch) | |
tree | aa34f767f23150aa9c72cd13b7fa2543f0dc37f4 | |
parent | 516bbf8830b6038018666a7cc87684eed5f1e6aa (diff) | |
download | FlightCore-8d40bca06dc8eea63c5eb7e4ae93f38e29654c7b.tar.gz FlightCore-8d40bca06dc8eea63c5eb7e4ae93f38e29654c7b.zip |
refactor: Make var containing core mods pub const (#74)
This way we only define them in one place
-rw-r--r-- | src-tauri/src/northstar/mod.rs | 15 | ||||
-rw-r--r-- | src-tauri/src/repair_and_verify/mod.rs | 15 |
2 files changed, 12 insertions, 18 deletions
diff --git a/src-tauri/src/northstar/mod.rs b/src-tauri/src/northstar/mod.rs index a7ec044a..8adfeec2 100644 --- a/src-tauri/src/northstar/mod.rs +++ b/src-tauri/src/northstar/mod.rs @@ -1,6 +1,12 @@ //! This module deals with handling things around Northstar such as //! - getting version number +pub const CORE_MODS: [&str; 3] = [ + "Northstar.Client", + "Northstar.Custom", + "Northstar.CustomServers", +]; + use crate::check_mod_version_number; use anyhow::anyhow; @@ -12,20 +18,15 @@ pub fn get_northstar_version_number(game_path: String) -> Result<String, anyhow: // TODO: // Check if NorthstarLauncher.exe exists and check its version number let profile_folder = "R2Northstar"; - let core_mods = [ - "Northstar.Client", - "Northstar.Custom", - "Northstar.CustomServers", - ]; let initial_version_number = match check_mod_version_number(format!( "{}/{}/mods/{}", - game_path, profile_folder, core_mods[0] + game_path, profile_folder, CORE_MODS[0] )) { Ok(version_number) => version_number, Err(err) => return Err(err), }; - for core_mod in core_mods { + for core_mod in CORE_MODS { let current_version_number = match check_mod_version_number(format!( "{}/{}/mods/{}", game_path, profile_folder, core_mod diff --git a/src-tauri/src/repair_and_verify/mod.rs b/src-tauri/src/repair_and_verify/mod.rs index 32715622..47ec4cc9 100644 --- a/src-tauri/src/repair_and_verify/mod.rs +++ b/src-tauri/src/repair_and_verify/mod.rs @@ -1,7 +1,7 @@ /// Contains various functions to repair common issues and verifying installation use app::{get_enabled_mods, GameInstall}; -use crate::mod_management::set_mod_enabled_status; +use crate::{mod_management::set_mod_enabled_status, northstar::CORE_MODS}; use anyhow::anyhow; /// Verifies Titanfall2 game files @@ -15,17 +15,10 @@ pub fn verify_game_files(game_install: GameInstall) -> Result<String, String> { pub fn disable_all_but_core(game_install: GameInstall) -> Result<(), String> { let current_mods = get_enabled_mods(game_install.clone())?; - // These are the mods we do not want to disable - let core_mods = [ - "Northstar.Client", - "Northstar.Custom", - "Northstar.CustomServers", - ]; - // let sub_values: Vec<HashMap<String, Value>> = serde_json::from_str(&json)?; - + // Disable all mods, set core mods to enabled for (key, _value) in current_mods.as_object().unwrap() { - if core_mods.contains(&key.as_str()) { - // This is a core mod + if CORE_MODS.contains(&key.as_str()) { + // This is a core mod, we do not want to disable it set_mod_enabled_status(game_install.clone(), key.to_string(), true)?; } else { // Not a core mod |