diff options
author | GeckoEidechse <gecko.eidechse+git@pm.me> | 2022-09-10 19:31:50 +0200 |
---|---|---|
committer | GeckoEidechse <gecko.eidechse+git@pm.me> | 2022-09-10 19:31:50 +0200 |
commit | 18cf7fa1daf9ea0f3ba71ad0ee4d857e703bd4b4 (patch) | |
tree | babf8293ddb24d5a51569bdd1a18290bcf2128cd /src-tauri | |
parent | 45a9903b07c71254ebd7d01b09598b6ad9dd68cb (diff) | |
download | FlightCore-18cf7fa1daf9ea0f3ba71ad0ee4d857e703bd4b4.tar.gz FlightCore-18cf7fa1daf9ea0f3ba71ad0ee4d857e703bd4b4.zip |
Add initial front-end code for launching Northstar
Diffstat (limited to 'src-tauri')
-rw-r--r-- | src-tauri/src/lib.rs | 6 | ||||
-rw-r--r-- | src-tauri/src/main.rs | 10 |
2 files changed, 12 insertions, 4 deletions
diff --git a/src-tauri/src/lib.rs b/src-tauri/src/lib.rs index 916a78ed..d0377917 100644 --- a/src-tauri/src/lib.rs +++ b/src-tauri/src/lib.rs @@ -4,7 +4,7 @@ use regex::Regex; use serde::{Deserialize, Serialize}; use zip::ZipArchive; -#[derive(Serialize, Deserialize, Debug)] +#[derive(Serialize, Deserialize, Debug, Clone)] pub enum InstallType { STEAM, ORIGIN, @@ -12,10 +12,10 @@ pub enum InstallType { UNKNOWN, } -#[derive(Serialize, Deserialize, Debug)] +#[derive(Serialize, Deserialize, Debug, Clone)] pub struct GameInstall { game_path: String, - install_type: InstallType, + pub install_type: InstallType, } /// Check version number of a mod diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs index 2ba190bb..097774d4 100644 --- a/src-tauri/src/main.rs +++ b/src-tauri/src/main.rs @@ -55,7 +55,8 @@ fn main() { verify_install_location, get_host_os, install_northstar_caller, - update_northstar_caller + update_northstar_caller, + launch_northstar ]) .run(tauri::generate_context!()) .expect("error while running tauri application"); @@ -187,3 +188,10 @@ async fn update_northstar_caller(game_path: String) -> Result<bool, String> { } } } + +#[tauri::command] +/// Launches Northstar +fn launch_northstar(game_install: GameInstall) -> Result<String, String> { + dbg!(game_install.clone()); + Err(format!("Not yet implemented for {:?} on {}", game_install.install_type, get_host_os())) +} |