Skip to content

Commit

Permalink
Revert Lutris change when "installed" is true
Browse files Browse the repository at this point in the history
  • Loading branch information
PhilipK committed Sep 19, 2023
1 parent aba6c7f commit 0aebb69
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 26 deletions.
2 changes: 1 addition & 1 deletion src/platforms/lutris/game_list_parser.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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");
}
}
15 changes: 12 additions & 3 deletions src/platforms/lutris/lutris_game.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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>,
Expand Down Expand Up @@ -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)
}
}

Expand Down
41 changes: 19 additions & 22 deletions src/platforms/lutris/lutris_platform.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand All @@ -32,16 +34,12 @@ 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");
if settings.installed {
command.arg("-o").output()?
} else {
command.output()?
}
command.arg("run").arg(flatpak_image).arg("--json");
if settings.installed {
command.arg("-lo").output()?
} else {
command.arg("-a").output()?
}
}
#[cfg(feature = "flatpak")]
{
Expand All @@ -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");
if settings.installed {
command.arg("-o").output()?
} else {
command.output()?
}
.arg(flatpak_image);
command.arg("run").arg(flatpak_image).arg("--json");
if settings.installed {
command.arg("-lo").output()?
} else {
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()?
}
};

Expand Down

0 comments on commit 0aebb69

Please sign in to comment.