diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-08-30 15:19:39 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-08-30 15:19:39 -0300 |
commit | b017d9f4ba3be92cf8d2474ac3850bb776ec71d1 (patch) | |
tree | 3d0f6e1eea10b3c29e5bee8475c5a67f60a85d62 | |
parent | bd36c692357c85de7058a28abc63ab9abc228a58 (diff) | |
download | renpy-b017d9f4ba3be92cf8d2474ac3850bb776ec71d1.tar.gz renpy-b017d9f4ba3be92cf8d2474ac3850bb776ec71d1.tar.bz2 renpy-b017d9f4ba3be92cf8d2474ac3850bb776ec71d1.tar.xz renpy-b017d9f4ba3be92cf8d2474ac3850bb776ec71d1.zip |
Remove sast folder from git, it is obviously the poor tool fault
-rw-r--r-- | .gitlab-ci.yml | 2 | ||||
-rw-r--r-- | sast/client.rpy-sast.py | 13 | ||||
-rw-r--r-- | sast/core.rpy-sast.py | 20 | ||||
-rw-r--r-- | sast/discord.rpy-sast.py | 14 | ||||
-rw-r--r-- | sast/gui.rpy-sast.py | 4 | ||||
-rw-r--r-- | sast/manaplus.rpy-sast.py | 9 | ||||
-rw-r--r-- | sast/manaverse.rpy-sast.py | 9 | ||||
-rw-r--r-- | sast/mirrorlake.rpy-sast.py | 1 | ||||
-rw-r--r-- | sast/options.rpy-sast.py | 5 | ||||
-rw-r--r-- | sast/renpy.rpy-sast.py | 34 | ||||
-rw-r--r-- | sast/screens.rpy-sast.py | 4 | ||||
-rw-r--r-- | sast/soul.rpy-sast.py | 52 | ||||
-rw-r--r-- | sast/update.rpy-sast.py | 58 |
13 files changed, 1 insertions, 224 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 744bc61..06fbb00 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -33,5 +33,5 @@ bandit-sast: - cp game/*/*.rpy debug/ - python rparse.py - mv debug/*-sast.py . - - sleep 10 + - sleep 1 diff --git a/sast/client.rpy-sast.py b/sast/client.rpy-sast.py deleted file mode 100644 index eebc423..0000000 --- a/sast/client.rpy-sast.py +++ /dev/null @@ -1,13 +0,0 @@ -if True: - def handle_client(CLIENT_NAME="", launch=False, download=True): - ## Local variables - f=False - if (CLIENT_NAME == ""): - CLIENT_NAME=persistent.evol2cli - # https://stackoverflow.com/questions/2791489/how-do-i-take-out-the-focus-or-minimize-a-window-with-python/2792059 (Windows) - - ######################################################################## - ## Cleanup - statusmsg=_("Thanks for playing!") - # time.sleep(0.1) ## TODO: Ensure the world finishes updating Vault - progress=100 diff --git a/sast/core.rpy-sast.py b/sast/core.rpy-sast.py deleted file mode 100644 index aae140d..0000000 --- a/sast/core.rpy-sast.py +++ /dev/null @@ -1,20 +0,0 @@ -if True: - renpy.add_python_directory("python-extra") - import requests, zlib, base64, sys, copy, uuid, time, json, traceback - ######## - ## Force Update - if persistent.version != config.version: - persistent.version = config.version - if (persistent.evol2cli is not None and - persistent.host is not None and - handle_client(launch=True, download=False)): - md5check_client(silent=True) - if persistent.hello is None: - p1=2.5 - p2=1.5 - persistent.hello=True - stdout("Program died.") - USE_DUMMY_DATA = False - stdout("Auto-launching...") - AUTOLAUNCH=False - renpy.quit() diff --git a/sast/discord.rpy-sast.py b/sast/discord.rpy-sast.py deleted file mode 100644 index 9c231c5..0000000 --- a/sast/discord.rpy-sast.py +++ /dev/null @@ -1,14 +0,0 @@ -if True: - def readyCallback(current_user): - print('Our user: {}'.format(current_user)) - stdout("Discord RPC disabled") - # Note: 'event_name': callback - responsive=False - print("") - try: - stdout("Shutdown requested, cleaning up...") - if persistent.discord: - discord_rpc.shutdown() - stdout("Thanks for playing the Mana Launcher.") - except: - pass diff --git a/sast/gui.rpy-sast.py b/sast/gui.rpy-sast.py deleted file mode 100644 index a14ebcc..0000000 --- a/sast/gui.rpy-sast.py +++ /dev/null @@ -1,4 +0,0 @@ -if True: - gui.init(1280, 720) - - ## This increases the size of the quick buttons to make them easier to touch diff --git a/sast/manaplus.rpy-sast.py b/sast/manaplus.rpy-sast.py deleted file mode 100644 index 082c031..0000000 --- a/sast/manaplus.rpy-sast.py +++ /dev/null @@ -1,9 +0,0 @@ -if True: - ############################################################################# - def download_manaplus(fname): - installdir=get_path("manaplus") - status_update("Downloading %s on RAM..." % fname, 62) - r=requests.get(persistent.host+"/%s" % fname, timeout=60.0) - if (r.status_code != 200): - status_update("Failure retrieving M+: ERROR %d" % r.status_code) - return False diff --git a/sast/manaverse.rpy-sast.py b/sast/manaverse.rpy-sast.py deleted file mode 100644 index d9f7255..0000000 --- a/sast/manaverse.rpy-sast.py +++ /dev/null @@ -1,9 +0,0 @@ -if True: - ############################################################################# - def download_manaverse(fname): - installdir=get_path("manaplus") - status_update("Downloading %s on RAM..." % fname, 62) - r=requests.get(persistent.host+"/%s" % fname, timeout=60.0) - if (r.status_code != 200): - status_update("Failure retrieving M+: ERROR %d" % r.status_code) - return False diff --git a/sast/mirrorlake.rpy-sast.py b/sast/mirrorlake.rpy-sast.py deleted file mode 100644 index 150ca8d..0000000 --- a/sast/mirrorlake.rpy-sast.py +++ /dev/null @@ -1 +0,0 @@ -if True: diff --git a/sast/options.rpy-sast.py b/sast/options.rpy-sast.py deleted file mode 100644 index 3b6a5bb..0000000 --- a/sast/options.rpy-sast.py +++ /dev/null @@ -1,5 +0,0 @@ -if True: - ## Macintosh: HOME/Library/RenPy/<config.save_directory> - ## Linux: HOME/.renpy/<config.save_directory> - - ## The following functions take file patterns. File patterns are case- diff --git a/sast/renpy.rpy-sast.py b/sast/renpy.rpy-sast.py deleted file mode 100644 index d49c2bf..0000000 --- a/sast/renpy.rpy-sast.py +++ /dev/null @@ -1,34 +0,0 @@ -if True: - if persistent.steam: - stdout("Steam Module verification...") - try: - steam.init() - except: - import _renpysteam as steam - statusmsg=_("Validating SSL Certificates...") - stdout("Before menu OK") - build_vault() - stdout("Vault PEM OK") - renpy.invoke_in_thread(CONFIGURE_LAUNCHER) - stdout("Thread start OK") - # Block the main thread until the socket connection is done - stdout("Thread finish OK") - status_update(_("{color=#F00}Failure! Vault ID could not be set.{/color}")) - stdout("Connection established! User ID %d" % vaultId) - persistent.vaultId = vaultId - renpy.block_rollback() - stdout("Good bye!") - renpy.quit() - stdout("V0id") - statusmsg=_("Now loading...") - renpy.invoke_in_thread(launch_game, _return) - stdout("Program died - unsucessful game launch") - stdout("MLP Destination is set") - try: - _return=dl_search_idx(persistent.serverlist, "UUID", MLP_DEST) - _return=int(_return) - except: - traceback.print_exc() - _return=-1 - MLP_DEST=None - stdout("WID Target: %d" % (_return)) diff --git a/sast/screens.rpy-sast.py b/sast/screens.rpy-sast.py deleted file mode 100644 index de3d90c..0000000 --- a/sast/screens.rpy-sast.py +++ /dev/null @@ -1,4 +0,0 @@ -if True: - config.character_id_prefixes.append('namebox') - config.overlay_screens.append("quick_menu") - what = renpy.filter_text_tags(h.what, allow=gui.history_allow_tags) diff --git a/sast/soul.rpy-sast.py b/sast/soul.rpy-sast.py deleted file mode 100644 index b1ea694..0000000 --- a/sast/soul.rpy-sast.py +++ /dev/null @@ -1,52 +0,0 @@ -if True: - class ManaSparkle(object): - def __init__(self, spd=25, multi=True): - self.sm = SpriteManager(update=self.update) - self.items = [ ] - if multi: - d = Transform("images/EnBallBlue.png", zoom=.05) - for i in range(0, 80): - self.add(d, renpy.random.randint(spd, spd*2)) - d = Transform("images/EnBallBlue.png", zoom=.10) - for i in range(0, 45): - self.add(d, renpy.random.randint(spd, spd*2)) - d = Transform("images/EnBallBlue.png", zoom=.25) - for i in range(0, 10): - self.add(d, renpy.random.randint(spd, spd*2)) - d = Transform("images/EnBallBlue.png", zoom=.40) - for i in range(0, 5): - self.add(d, renpy.random.randint(spd, spd*2)) - def add(self, d, speed): - s = self.sm.create(d) - startx = renpy.random.randint(0, 1200) - starty = renpy.random.randint(400, 720) - vect = renpy.random.randint(0, 4) - self.items.append((s, startx, starty, vect, speed)) - def update(self, st): - for s, startx, starty, vect, speed in self.items: - if vect % 2 == 0: - s.x = (startx + speed * st) % 1300 - else: - s.x = (startx - speed * st) % 1300 - if vect % 2 == 1: - s.y = (starty - speed * st) % 800 - else: - s.y = (starty + speed * st) % 800 - return 0 - progress = 0 - mySoul = None - renpy.invoke_in_thread(load_souldata) - while progress < 100: - if responsive: - sdelay() - else: - responsive = True - break - if persistent.steam and steam.initialized: - mySoul["name"] = steam.get_persona_name() - loop = True - renpy.call_in_new_context(_return) - loop = False - del loop - RPCUpdate("The Void", "launcher") - RPCUpdate("The Void", "launcher") diff --git a/sast/update.rpy-sast.py b/sast/update.rpy-sast.py deleted file mode 100644 index b67197b..0000000 --- a/sast/update.rpy-sast.py +++ /dev/null @@ -1,58 +0,0 @@ -if True: - def status_update(smsg="", pc=-1): - global progress, statusmsg - if pc > 0 and pc != progress: - progress=min(pc, 100) - if (smsg != ""): - statusmsg=smsg - stdout(smsg) - status_update(" ", 80) - _return = persistent.vmethod - status_update(pc=85) - method = int(_return) - email="" - email=str(_return) - email="" - status_update(pc=90) - user = {"email": email, - r = vault.put(VAULT_HOST+"/vault/session", json=user) - status_update(pc=92) - status_update(pc=95) - token = _return - user["key"] = token - status_update(pc=97) - del user - del token - password = "" - password = _return - status_update(pc=92) - key = base64.b32decode(persistent.totp.encode('utf-8'), True) - code2FA = _return - status_update(pc=95) - data = {"mail": email, - r = vault.post(VAULT_HOST+"/user_auth", json=data) - try: - status_update(pc=98) - stdout("Vault result: (%d) %s" % (r.status_code, ifte(config.developer, r.text, "OK"))) - auth2 = r.json() - vaultId = auth2["vaultId"] - vaultToken = auth2["token"] - except: - traceback.print_exc() - stdout("Error - Vault result is bad.") - del data - del code2FA - del method - del email - status_update(_("Success!"), 100) - status_update(_("{color=#F00}Failure!{/color}"), pc=100) - if _return.startswith("otpauth:"): - try: - tmp=_return.split("secret=") - _return=tmp[1].split("&")[0] - print("OTP Token: %s" % _return) - except: - renpy.call_screen("notice", _("Invalid OTPAuth URL.\nEnsure you used the URL sent to you by email!")) - persistent.totp = None - persistent.vmethod = None - persistent.vmethod = _return |