Revert Lutris change when "installed" is true

This commit is contained in:
Philip Kristoffersen
2023-09-19 22:36:45 +02:00
parent aba6c7f834
commit 0aebb690d2
3 changed files with 32 additions and 26 deletions
+1 -1
View File
@@ -62,6 +62,6 @@ mod tests {
let games = parse_lutris_games(content);
assert_eq!(games[1].service, "steam");
assert_eq!(games[1].service.clone().unwrap_or_default(), "steam");
}
}
+12 -3
View File
@@ -9,7 +9,8 @@ pub struct LutrisGame {
pub id: i64,
pub slug: String,
pub name: String,
pub service: String,
pub service: Option<String>,
pub runner:Option<String>,
pub installed: bool,
pub details: String,
pub settings: Option<LutrisSettings>,
@@ -39,17 +40,25 @@ impl LutrisGame {
.as_ref()
.map(|s| s.flatpak)
.unwrap_or_default();
let run_game = self
.settings
.as_ref()
.map(|s| s.installed)
.map(|i| if i { ":rungame/" } else { ":" })
.unwrap_or_default();
if is_flatpak {
format!(
"run {} lutris:{}",
"run {} lutris{}{}",
self.settings
.as_ref()
.map(|s| s.flatpak_image.clone())
.unwrap_or_default(),
run_game,
self.slug
)
} else {
format!("lutris:{}", self.slug)
format!("lutris{}{}", run_game, self.slug)
}
}
+13 -16
View File
@@ -15,9 +15,11 @@ impl LutrisPlatform {
fn get_shortcuts(&self) -> eyre::Result<Vec<LutrisGame>> {
let output = get_lutris_command_output(&self.settings)?;
let games = parse_lutris_games(output.as_str());
let installed = self.settings.installed;
let mut res = vec![];
for mut game in games {
if game.service != "steam" {
let service = if installed { game.runner.clone().unwrap_or_default() } else { game.service.clone().unwrap_or_default() };
if service != "steam" {
game.settings = Some(self.settings.clone());
res.push(game);
}
@@ -32,15 +34,11 @@ fn get_lutris_command_output(settings: &LutrisSettings) -> eyre::Result<String>
#[cfg(not(feature = "flatpak"))]
{
let mut command = Command::new("flatpak");
command
.arg("run")
.arg(flatpak_image)
.arg("-a")
.arg("--json");
command.arg("run").arg(flatpak_image).arg("--json");
if settings.installed {
command.arg("-o").output()?
command.arg("-lo").output()?
} else {
command.output()?
command.arg("-a").output()?
}
}
#[cfg(feature = "flatpak")]
@@ -50,22 +48,21 @@ fn get_lutris_command_output(settings: &LutrisSettings) -> eyre::Result<String>
.arg("--host")
.arg("flatpak")
.arg("run")
.arg(flatpak_image)
.arg("-a")
.arg("--json");
.arg(flatpak_image);
command.arg("run").arg(flatpak_image).arg("--json");
if settings.installed {
command.arg("-o").output()?
command.arg("-lo").output()?
} else {
command.output()?
command.arg("-a").output()?
}
}
} else {
let mut command = Command::new(&settings.executable);
command.arg("-a").arg("--json");
command.arg("--json");
if settings.installed {
command.arg("-o").output()?
command.arg("-lo").output()?
} else {
command.output()?
command.arg("-a").output()?
}
};