diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-05-08 04:07:12 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-05-08 04:07:12 -0300 |
commit | 70af0220ba9dec5a19677a10ec924efe034314da (patch) | |
tree | d570915b665f7ef56144816a80e73e8909016b2c /game/renpy.rpy | |
parent | fe939c80b53e28c22e8383bcafe6576263701f09 (diff) | |
download | renpy-2021.05.07.tar.gz renpy-2021.05.07.tar.bz2 renpy-2021.05.07.tar.xz renpy-2021.05.07.zip |
Connection core, still need to retrieve server credentials from Vaultv2021.05.07
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 |