diff options
Diffstat (limited to 'game/renpy.rpy')
-rw-r--r-- | game/renpy.rpy | 33 |
1 files changed, 29 insertions, 4 deletions
diff --git a/game/renpy.rpy b/game/renpy.rpy index d968dff..dcfaf92 100644 --- a/game/renpy.rpy +++ b/game/renpy.rpy @@ -66,9 +66,34 @@ label start: hide TMW2 with dissolve #centered "Error" $ RPCUpdate("Moubootaur Legends", "Main Menu", "tmw2") - "User ID: [vaultId]" - call screen mirrorlake - "Selected: [_return]" - + if config.developer: + "User ID: [vaultId]" + while True: + $ renpy.block_rollback() + call screen mirrorlake + #if config.developer: + # "Selected: [_return]" + if _return is None or _return == "QUIT": + $ stdout("Good bye!") + $ renpy.quit() + return + scene black + show TMW2 at truecenter + with None + python: + HOST=persistent.serverlist[_return]["Host"] + PORT=persistent.serverlist[_return]["Port"] + CMD=handle_client(launch=True) + OPT="-s %s -y evol2 -p %s" % (HOST, PORT) + # TODO: Obtain access token from Vault + stdout("%s %s" % (CMD, OPT)) + if not renpy.mobile and persistent.iconify: + renpy.iconify() + execute("%s %s" % (CMD, OPT), shell=True) + # NOTE: Now we would like to un-minimize ourselves + # But we cannot =/ + # There's a few tricks but not very nice... + # https://stackoverflow.com/questions/45426203/minimize-window-with-python (Linux) + # https://stackoverflow.com/questions/2791489/how-do-i-take-out-the-focus-or-minimize-a-window-with-python/2792059 (Windows) return |