depot/pkgs/games/openra_2019/mod-launch-game.sh
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

25 lines
835 B
Bash

#!/usr/bin/env bash
show_error() {
if command -v zenity > /dev/null; then
zenity --no-wrap --no-markup --error --title "OpenRA - @title@" --text "$1" 2>/dev/null
else
printf "$1\n" >&2
fi
exit 1
}
pushd "@out@/lib/openra_2019-@name@" > /dev/null
# Check for missing assets
assetsError='@assetsError@'
if [[ -n "$assetsError" && ! -d "$HOME/.openra/Content/@name@" ]]; then
show_error "$assetsError"
fi
# Run the game
mono --debug OpenRA.Game.exe Game.Mod=@name@ Engine.LaunchPath="@out@/bin/openra-@name@" Engine.ModSearchPaths="@out@/lib/openra_2019-@name@/mods" "$@"
# Show a crash dialog if something went wrong
if (( $? != 0 && $? != 1 )); then
show_error $'OpenRA - @title@ has encountered a fatal error.\nPlease refer to the crash logs for more information.\n\nLog files are located in ~/.openra/Logs'
fi