Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
lutris / usr / lib / python3 / dist-packages / lutris / runners / browser.py
Size: Mime:
# Standard Library
from gettext import gettext as _

# Lutris Modules
from lutris.runners.runner import Runner


class browser(Runner):
    human_name = _("Browser")
    platforms = [_("Web")]
    description = _("Runs games in the browser")
    game_options = [
        {
            "option": "main_file",
            "type": "string",
            "label": _("Full address (URL)"),
            "help": "The full address of the game's web page.",
        }
    ]
    runner_options = [
        {
            "option":
            "browser",
            "type":
            "file",
            "label":
            _("Custom web browser"),
            "help": _(
                "Select the executable of a browser on your system. \n"
                "If left blank, Lutris will launch your default browser."
            ),
        }
    ]
    system_options_override = [{"option": "disable_runtime", "default": True}]

    def get_executable(self):
        return self.runner_config.get("browser") or "xdg-open"

    def is_installed(self):
        return True

    def play(self):
        url = self.game_config.get("main_file")
        if not url:
            return {
                "error": "CUSTOM",
                "text": _("The web address is empty, \n"
                          "verify the game's configuration."),
            }
        return {"command": [self.get_executable(), url]}