# bottles_parser.py # # Copyright 2022 kramo # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # # SPDX-License-Identifier: GPL-3.0-or-later import os import time import yaml from gi.repository import GLib, Gtk from .create_dialog import create_dialog from .save_cover import save_cover def bottles_parser(parent_widget, action): schema = parent_widget.schema bottles_dir = os.path.expanduser(schema.get_string("bottles-location")) def bottles_not_found(): if os.path.exists( os.path.expanduser("~/.var/app/com.usebottles.bottles/data/bottles/") ): schema.set_string( "bottles-location", "~/.var/app/com.usebottles.bottles/data/bottles/" ) action(None, None) elif os.path.exists( os.path.join( os.getenv("XDG_DATA_HOME") or os.path.expanduser(os.path.join("~", ".local", "share")), "bottles", ) ): schema.set_string( "bottles-location", os.path.join( os.getenv("XDG_DATA_HOME") or os.path.expanduser(os.path.join("~", ".local", "share")), "bottles", ), ) action(None, None) else: filechooser = Gtk.FileDialog.new() def set_bottles_dir(_source, result, _unused): try: schema.set_string( "bottles-location", filechooser.select_folder_finish(result).get_path(), ) action(None, None) except GLib.GError: return def choose_folder(_widget): filechooser.select_folder(parent_widget, None, set_bottles_dir, None) def response(widget, response): if response == "choose_folder": choose_folder(widget) create_dialog( parent_widget, _("Couldn't Import Games"), _("The Bottles directory cannot be found."), "choose_folder", _("Set Bottles Location"), ).connect("response", response) if os.path.isfile(os.path.join(bottles_dir, "library.yml")): pass else: bottles_not_found() return {} bottles_dir = os.path.expanduser(schema.get_string("bottles-location")) bottles_games = {} current_time = int(time.time()) with open(os.path.join(bottles_dir, "library.yml"), "r") as open_file: data = open_file.read() open_file.close() library = yaml.load(data, Loader=yaml.Loader) for game in library: game = library[game] values = {} values["game_id"] = "bottles_" + game["id"] if ( values["game_id"] in parent_widget.games and not parent_widget.games[values["game_id"]].removed ): continue values["name"] = game["name"] values["executable"] = ( "xdg-open bottles:run/" + game["bottle"]["name"] + "/" + game["name"] ) values["hidden"] = False values["source"] = "bottles" values["added"] = current_time values["last_played"] = 0 if game["thumbnail"]: save_cover( values, parent_widget, os.path.join( bottles_dir, "bottles", game["bottle"]["path"], "grids", game["thumbnail"].split(":")[1], ), ) bottles_games[values["game_id"]] = values if len(bottles_games) == 0: create_dialog( parent_widget, _("No Games Found"), _("No new games were found in the Bottles library."), ) elif len(bottles_games) == 1: create_dialog( parent_widget, _("Bottles Games Imported"), _("Successfully imported 1 game."), ) elif len(bottles_games) > 1: create_dialog( parent_widget, _("Bottles Games Imported"), # The variable is the number of games _(f"Successfully imported {str(len(bottles_games))} games."), ) return bottles_games