From 1e61836d565ee7433894b6fd8444a5bf930891f1 Mon Sep 17 00:00:00 2001 From: vg Date: Mon, 19 Sep 2022 20:50:15 +0200 Subject: git-sync on seele --- gamechestcli/__main__.py | 20 ++++++++++++++++++-- 1 file changed, 18 insertions(+), 2 deletions(-) (limited to 'gamechestcli/__main__.py') diff --git a/gamechestcli/__main__.py b/gamechestcli/__main__.py index 8fe912d..22749bd 100755 --- a/gamechestcli/__main__.py +++ b/gamechestcli/__main__.py @@ -5,16 +5,21 @@ Manage games. Install, remove, run them. Usage: gamechest install gamechest remove gamechest run [--profile_id=] - gamechest set [--profile_id=] [--remote_basedir=] [--gamesaves_path] + gamechest set [--profile_id=] [--remote_basedir=] [--gamesaves_path=] + gamechest list [--installed] + gamechest showconfig ''' import sys import docopt +from rich import print from gamechest.cliactions import install, remove, run from gamechest.gameconfig import config +from gamechest.statusdb import StatusDB +from gamechest.gamedb import GameDB def main(): @@ -35,9 +40,20 @@ def main(): config.set_profile_id(args['--profile_id']) if args['--remote_basedir']: config.set_remote_basedir(args['--remote_basedir']) - if args['--gamesaves_path'] + if args['--gamesaves_path']: config.set_gamesaves_path(args['--gamesaves_path']) config.save() + elif args['list']: + status_db = StatusDB() + if args['--installed']: + print(list(status_db.get_installed())) + else: + game_db = GameDB() + list_installed = list(status_db.get_installed()) + for game_id in game_db.get_ids(): + print(game_id, 'installed:', game_id in list_installed) + elif args['showconfig']: + config.print_config() if __name__ == "__main__": -- cgit v1.2.3