mirror of
https://github.com/djibux/BoilR.git
synced 2026-09-01 05:53:41 +02:00
41 lines
1.3 KiB
Rust
41 lines
1.3 KiB
Rust
use std::path::PathBuf;
|
|
|
|
use steam_shortcuts_util::{shortcut::ShortcutOwned, Shortcut};
|
|
|
|
#[derive(Clone)]
|
|
pub struct OriginGame {
|
|
pub id: String,
|
|
pub title: String,
|
|
pub origin_location: PathBuf,
|
|
pub origin_compat_folder: Option<PathBuf>,
|
|
}
|
|
|
|
impl From<OriginGame> for ShortcutOwned {
|
|
fn from(game: OriginGame) -> Self {
|
|
let launch = match game.origin_compat_folder{
|
|
Some(compat_folder) =>
|
|
format!("STEAM_COMPAT_DATA_PATH=\"{}\" %command% \"origin2://game/launch?offerIds={}&autoDownload=1&authCode=&cmdParams=\"", compat_folder.to_string_lossy(), game.id)
|
|
,
|
|
None => format!(
|
|
"\"origin2://game/launch?offerIds={}&autoDownload=1&authCode=&cmdParams=\"",
|
|
game.id)
|
|
};
|
|
let origin_location = format!("\"{}\"", game.origin_location.to_string_lossy());
|
|
let mut owned_shortcut = Shortcut::new(
|
|
"0",
|
|
game.title.as_str(),
|
|
&origin_location,
|
|
"",
|
|
"",
|
|
"",
|
|
launch.as_str(),
|
|
)
|
|
.to_owned();
|
|
owned_shortcut.tags.push("Origin".to_owned());
|
|
owned_shortcut.tags.push("Ready TO Play".to_owned());
|
|
owned_shortcut.tags.push("Installed".to_owned());
|
|
|
|
owned_shortcut
|
|
}
|
|
}
|