├── .github └── workflows │ └── python-app.yaml ├── .gitignore ├── .gitmodules ├── LICENSE ├── MANIFEST.in ├── README.md ├── bintray-template.json ├── decompiler ├── __init__.py ├── astdump.py ├── atldecompiler.py ├── magic.py ├── renpycompat.py ├── sl2decompiler.py ├── testcasedecompiler.py ├── translate.py └── util.py ├── deobfuscate.py ├── make-bintray-json.sh ├── setup.py ├── testcases ├── README.md ├── compiled │ ├── the_question-8.2 │ │ ├── gui.rpyc │ │ ├── options.rpyc │ │ ├── screens.rpyc │ │ └── script.rpyc │ └── tutorial-8.2 │ │ ├── 01director_support.rpyc │ │ ├── 01example.rpyc │ │ ├── examples.rpyc │ │ ├── gui.rpyc │ │ ├── indepth_character.rpyc │ │ ├── indepth_displayables.rpyc │ │ ├── indepth_minigame.rpyc │ │ ├── indepth_style.rpyc │ │ ├── indepth_text.rpyc │ │ ├── indepth_transitions.rpyc │ │ ├── indepth_translations.rpyc │ │ ├── options.rpyc │ │ ├── screens.rpyc │ │ ├── script.rpyc │ │ ├── testcases.rpyc │ │ ├── tutorial_atl.rpyc │ │ ├── tutorial_director.rpyc │ │ ├── tutorial_distribute.rpyc │ │ ├── tutorial_nvlmode.rpyc │ │ ├── tutorial_playing.rpyc │ │ ├── tutorial_quickstart.rpyc │ │ ├── tutorial_screen_displayables.rpyc │ │ ├── tutorial_screens.rpyc │ │ └── tutorial_video.rpyc ├── expected │ ├── the_question-8.2 │ │ ├── gui.rpy │ │ ├── options.rpy │ │ ├── screens.rpy │ │ └── script.rpy │ └── tutorial-8.2 │ │ ├── 01director_support.rpy │ │ ├── 01example.rpy │ │ ├── examples.rpy │ │ ├── gui.rpy │ │ ├── indepth_character.rpy │ │ ├── indepth_displayables.rpy │ │ ├── indepth_minigame.rpy │ │ ├── indepth_style.rpy │ │ ├── indepth_text.rpy │ │ ├── indepth_transitions.rpy │ │ ├── indepth_translations.rpy │ │ ├── options.rpy │ │ ├── screens.rpy │ │ ├── script.rpy │ │ ├── testcases.rpy │ │ ├── tutorial_atl.rpy │ │ ├── tutorial_director.rpy │ │ ├── tutorial_distribute.rpy │ │ ├── tutorial_nvlmode.rpy │ │ ├── tutorial_playing.rpy │ │ ├── tutorial_quickstart.rpy │ │ ├── tutorial_screen_displayables.rpy │ │ ├── tutorial_screens.rpy │ │ └── tutorial_video.rpy ├── originals │ ├── the_question-8.2 │ │ ├── LICENSE │ │ ├── gui.rpy │ │ ├── options.rpy │ │ ├── screens.rpy │ │ └── script.rpy │ └── tutorial-8.2 │ │ ├── 01director_support.rpy │ │ ├── 01example.rpy │ │ ├── LICENSE │ │ ├── examples.rpy │ │ ├── gui.rpy │ │ ├── indepth_character.rpy │ │ ├── indepth_displayables.rpy │ │ ├── indepth_minigame.rpy │ │ ├── indepth_style.rpy │ │ ├── indepth_text.rpy │ │ ├── indepth_transitions.rpy │ │ ├── indepth_translations.rpy │ │ ├── options.rpy │ │ ├── screens.rpy │ │ ├── script.rpy │ │ ├── testcases.rpy │ │ ├── tutorial_atl.rpy │ │ ├── tutorial_director.rpy │ │ ├── tutorial_distribute.rpy │ │ ├── tutorial_nvlmode.rpy │ │ ├── tutorial_playing.rpy │ │ ├── tutorial_quickstart.rpy │ │ ├── tutorial_screen_displayables.rpy │ │ ├── tutorial_screens.rpy │ │ └── tutorial_video.rpy ├── test_un_rpyc.py └── validate_expected.py ├── un.rpyc ├── .gitignore ├── README.md ├── compile.py ├── makefile └── unrpyc-compile.py └── unrpyc.py /.github/workflows/python-app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/.github/workflows/python-app.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | README 2 | LICENSE 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/README.md -------------------------------------------------------------------------------- /bintray-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/bintray-template.json -------------------------------------------------------------------------------- /decompiler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/decompiler/__init__.py -------------------------------------------------------------------------------- /decompiler/astdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/decompiler/astdump.py -------------------------------------------------------------------------------- /decompiler/atldecompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/decompiler/atldecompiler.py -------------------------------------------------------------------------------- /decompiler/magic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/decompiler/magic.py -------------------------------------------------------------------------------- /decompiler/renpycompat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/decompiler/renpycompat.py -------------------------------------------------------------------------------- /decompiler/sl2decompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/decompiler/sl2decompiler.py -------------------------------------------------------------------------------- /decompiler/testcasedecompiler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/decompiler/testcasedecompiler.py -------------------------------------------------------------------------------- /decompiler/translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/decompiler/translate.py -------------------------------------------------------------------------------- /decompiler/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/decompiler/util.py -------------------------------------------------------------------------------- /deobfuscate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/deobfuscate.py -------------------------------------------------------------------------------- /make-bintray-json.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/make-bintray-json.sh -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/setup.py -------------------------------------------------------------------------------- /testcases/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/README.md -------------------------------------------------------------------------------- /testcases/compiled/the_question-8.2/gui.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/compiled/the_question-8.2/gui.rpyc -------------------------------------------------------------------------------- /testcases/compiled/the_question-8.2/options.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/compiled/the_question-8.2/options.rpyc -------------------------------------------------------------------------------- /testcases/compiled/the_question-8.2/screens.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/compiled/the_question-8.2/screens.rpyc -------------------------------------------------------------------------------- /testcases/compiled/the_question-8.2/script.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/compiled/the_question-8.2/script.rpyc -------------------------------------------------------------------------------- /testcases/compiled/tutorial-8.2/01director_support.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/compiled/tutorial-8.2/01director_support.rpyc -------------------------------------------------------------------------------- /testcases/compiled/tutorial-8.2/01example.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/compiled/tutorial-8.2/01example.rpyc -------------------------------------------------------------------------------- /testcases/compiled/tutorial-8.2/examples.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/compiled/tutorial-8.2/examples.rpyc -------------------------------------------------------------------------------- /testcases/compiled/tutorial-8.2/gui.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/compiled/tutorial-8.2/gui.rpyc -------------------------------------------------------------------------------- /testcases/compiled/tutorial-8.2/indepth_character.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/compiled/tutorial-8.2/indepth_character.rpyc -------------------------------------------------------------------------------- /testcases/compiled/tutorial-8.2/indepth_displayables.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/compiled/tutorial-8.2/indepth_displayables.rpyc -------------------------------------------------------------------------------- /testcases/compiled/tutorial-8.2/indepth_minigame.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/compiled/tutorial-8.2/indepth_minigame.rpyc -------------------------------------------------------------------------------- /testcases/compiled/tutorial-8.2/indepth_style.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/compiled/tutorial-8.2/indepth_style.rpyc -------------------------------------------------------------------------------- /testcases/compiled/tutorial-8.2/indepth_text.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/compiled/tutorial-8.2/indepth_text.rpyc -------------------------------------------------------------------------------- /testcases/compiled/tutorial-8.2/indepth_transitions.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/compiled/tutorial-8.2/indepth_transitions.rpyc -------------------------------------------------------------------------------- /testcases/compiled/tutorial-8.2/indepth_translations.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/compiled/tutorial-8.2/indepth_translations.rpyc -------------------------------------------------------------------------------- /testcases/compiled/tutorial-8.2/options.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/compiled/tutorial-8.2/options.rpyc -------------------------------------------------------------------------------- /testcases/compiled/tutorial-8.2/screens.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/compiled/tutorial-8.2/screens.rpyc -------------------------------------------------------------------------------- /testcases/compiled/tutorial-8.2/script.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/compiled/tutorial-8.2/script.rpyc -------------------------------------------------------------------------------- /testcases/compiled/tutorial-8.2/testcases.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/compiled/tutorial-8.2/testcases.rpyc -------------------------------------------------------------------------------- /testcases/compiled/tutorial-8.2/tutorial_atl.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/compiled/tutorial-8.2/tutorial_atl.rpyc -------------------------------------------------------------------------------- /testcases/compiled/tutorial-8.2/tutorial_director.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/compiled/tutorial-8.2/tutorial_director.rpyc -------------------------------------------------------------------------------- /testcases/compiled/tutorial-8.2/tutorial_distribute.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/compiled/tutorial-8.2/tutorial_distribute.rpyc -------------------------------------------------------------------------------- /testcases/compiled/tutorial-8.2/tutorial_nvlmode.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/compiled/tutorial-8.2/tutorial_nvlmode.rpyc -------------------------------------------------------------------------------- /testcases/compiled/tutorial-8.2/tutorial_playing.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/compiled/tutorial-8.2/tutorial_playing.rpyc -------------------------------------------------------------------------------- /testcases/compiled/tutorial-8.2/tutorial_quickstart.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/compiled/tutorial-8.2/tutorial_quickstart.rpyc -------------------------------------------------------------------------------- /testcases/compiled/tutorial-8.2/tutorial_screen_displayables.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/compiled/tutorial-8.2/tutorial_screen_displayables.rpyc -------------------------------------------------------------------------------- /testcases/compiled/tutorial-8.2/tutorial_screens.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/compiled/tutorial-8.2/tutorial_screens.rpyc -------------------------------------------------------------------------------- /testcases/compiled/tutorial-8.2/tutorial_video.rpyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/compiled/tutorial-8.2/tutorial_video.rpyc -------------------------------------------------------------------------------- /testcases/expected/the_question-8.2/gui.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/expected/the_question-8.2/gui.rpy -------------------------------------------------------------------------------- /testcases/expected/the_question-8.2/options.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/expected/the_question-8.2/options.rpy -------------------------------------------------------------------------------- /testcases/expected/the_question-8.2/screens.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/expected/the_question-8.2/screens.rpy -------------------------------------------------------------------------------- /testcases/expected/the_question-8.2/script.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/expected/the_question-8.2/script.rpy -------------------------------------------------------------------------------- /testcases/expected/tutorial-8.2/01director_support.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/expected/tutorial-8.2/01director_support.rpy -------------------------------------------------------------------------------- /testcases/expected/tutorial-8.2/01example.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/expected/tutorial-8.2/01example.rpy -------------------------------------------------------------------------------- /testcases/expected/tutorial-8.2/examples.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/expected/tutorial-8.2/examples.rpy -------------------------------------------------------------------------------- /testcases/expected/tutorial-8.2/gui.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/expected/tutorial-8.2/gui.rpy -------------------------------------------------------------------------------- /testcases/expected/tutorial-8.2/indepth_character.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/expected/tutorial-8.2/indepth_character.rpy -------------------------------------------------------------------------------- /testcases/expected/tutorial-8.2/indepth_displayables.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/expected/tutorial-8.2/indepth_displayables.rpy -------------------------------------------------------------------------------- /testcases/expected/tutorial-8.2/indepth_minigame.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/expected/tutorial-8.2/indepth_minigame.rpy -------------------------------------------------------------------------------- /testcases/expected/tutorial-8.2/indepth_style.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/expected/tutorial-8.2/indepth_style.rpy -------------------------------------------------------------------------------- /testcases/expected/tutorial-8.2/indepth_text.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/expected/tutorial-8.2/indepth_text.rpy -------------------------------------------------------------------------------- /testcases/expected/tutorial-8.2/indepth_transitions.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/expected/tutorial-8.2/indepth_transitions.rpy -------------------------------------------------------------------------------- /testcases/expected/tutorial-8.2/indepth_translations.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/expected/tutorial-8.2/indepth_translations.rpy -------------------------------------------------------------------------------- /testcases/expected/tutorial-8.2/options.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/expected/tutorial-8.2/options.rpy -------------------------------------------------------------------------------- /testcases/expected/tutorial-8.2/screens.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/expected/tutorial-8.2/screens.rpy -------------------------------------------------------------------------------- /testcases/expected/tutorial-8.2/script.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/expected/tutorial-8.2/script.rpy -------------------------------------------------------------------------------- /testcases/expected/tutorial-8.2/testcases.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/expected/tutorial-8.2/testcases.rpy -------------------------------------------------------------------------------- /testcases/expected/tutorial-8.2/tutorial_atl.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/expected/tutorial-8.2/tutorial_atl.rpy -------------------------------------------------------------------------------- /testcases/expected/tutorial-8.2/tutorial_director.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/expected/tutorial-8.2/tutorial_director.rpy -------------------------------------------------------------------------------- /testcases/expected/tutorial-8.2/tutorial_distribute.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/expected/tutorial-8.2/tutorial_distribute.rpy -------------------------------------------------------------------------------- /testcases/expected/tutorial-8.2/tutorial_nvlmode.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/expected/tutorial-8.2/tutorial_nvlmode.rpy -------------------------------------------------------------------------------- /testcases/expected/tutorial-8.2/tutorial_playing.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/expected/tutorial-8.2/tutorial_playing.rpy -------------------------------------------------------------------------------- /testcases/expected/tutorial-8.2/tutorial_quickstart.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/expected/tutorial-8.2/tutorial_quickstart.rpy -------------------------------------------------------------------------------- /testcases/expected/tutorial-8.2/tutorial_screen_displayables.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/expected/tutorial-8.2/tutorial_screen_displayables.rpy -------------------------------------------------------------------------------- /testcases/expected/tutorial-8.2/tutorial_screens.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/expected/tutorial-8.2/tutorial_screens.rpy -------------------------------------------------------------------------------- /testcases/expected/tutorial-8.2/tutorial_video.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/expected/tutorial-8.2/tutorial_video.rpy -------------------------------------------------------------------------------- /testcases/originals/the_question-8.2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/originals/the_question-8.2/LICENSE -------------------------------------------------------------------------------- /testcases/originals/the_question-8.2/gui.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/originals/the_question-8.2/gui.rpy -------------------------------------------------------------------------------- /testcases/originals/the_question-8.2/options.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/originals/the_question-8.2/options.rpy -------------------------------------------------------------------------------- /testcases/originals/the_question-8.2/screens.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/originals/the_question-8.2/screens.rpy -------------------------------------------------------------------------------- /testcases/originals/the_question-8.2/script.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/originals/the_question-8.2/script.rpy -------------------------------------------------------------------------------- /testcases/originals/tutorial-8.2/01director_support.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/originals/tutorial-8.2/01director_support.rpy -------------------------------------------------------------------------------- /testcases/originals/tutorial-8.2/01example.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/originals/tutorial-8.2/01example.rpy -------------------------------------------------------------------------------- /testcases/originals/tutorial-8.2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/originals/tutorial-8.2/LICENSE -------------------------------------------------------------------------------- /testcases/originals/tutorial-8.2/examples.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/originals/tutorial-8.2/examples.rpy -------------------------------------------------------------------------------- /testcases/originals/tutorial-8.2/gui.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/originals/tutorial-8.2/gui.rpy -------------------------------------------------------------------------------- /testcases/originals/tutorial-8.2/indepth_character.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/originals/tutorial-8.2/indepth_character.rpy -------------------------------------------------------------------------------- /testcases/originals/tutorial-8.2/indepth_displayables.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/originals/tutorial-8.2/indepth_displayables.rpy -------------------------------------------------------------------------------- /testcases/originals/tutorial-8.2/indepth_minigame.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/originals/tutorial-8.2/indepth_minigame.rpy -------------------------------------------------------------------------------- /testcases/originals/tutorial-8.2/indepth_style.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/originals/tutorial-8.2/indepth_style.rpy -------------------------------------------------------------------------------- /testcases/originals/tutorial-8.2/indepth_text.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/originals/tutorial-8.2/indepth_text.rpy -------------------------------------------------------------------------------- /testcases/originals/tutorial-8.2/indepth_transitions.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/originals/tutorial-8.2/indepth_transitions.rpy -------------------------------------------------------------------------------- /testcases/originals/tutorial-8.2/indepth_translations.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/originals/tutorial-8.2/indepth_translations.rpy -------------------------------------------------------------------------------- /testcases/originals/tutorial-8.2/options.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/originals/tutorial-8.2/options.rpy -------------------------------------------------------------------------------- /testcases/originals/tutorial-8.2/screens.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/originals/tutorial-8.2/screens.rpy -------------------------------------------------------------------------------- /testcases/originals/tutorial-8.2/script.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/originals/tutorial-8.2/script.rpy -------------------------------------------------------------------------------- /testcases/originals/tutorial-8.2/testcases.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/originals/tutorial-8.2/testcases.rpy -------------------------------------------------------------------------------- /testcases/originals/tutorial-8.2/tutorial_atl.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/originals/tutorial-8.2/tutorial_atl.rpy -------------------------------------------------------------------------------- /testcases/originals/tutorial-8.2/tutorial_director.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/originals/tutorial-8.2/tutorial_director.rpy -------------------------------------------------------------------------------- /testcases/originals/tutorial-8.2/tutorial_distribute.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/originals/tutorial-8.2/tutorial_distribute.rpy -------------------------------------------------------------------------------- /testcases/originals/tutorial-8.2/tutorial_nvlmode.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/originals/tutorial-8.2/tutorial_nvlmode.rpy -------------------------------------------------------------------------------- /testcases/originals/tutorial-8.2/tutorial_playing.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/originals/tutorial-8.2/tutorial_playing.rpy -------------------------------------------------------------------------------- /testcases/originals/tutorial-8.2/tutorial_quickstart.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/originals/tutorial-8.2/tutorial_quickstart.rpy -------------------------------------------------------------------------------- /testcases/originals/tutorial-8.2/tutorial_screen_displayables.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/originals/tutorial-8.2/tutorial_screen_displayables.rpy -------------------------------------------------------------------------------- /testcases/originals/tutorial-8.2/tutorial_screens.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/originals/tutorial-8.2/tutorial_screens.rpy -------------------------------------------------------------------------------- /testcases/originals/tutorial-8.2/tutorial_video.rpy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/originals/tutorial-8.2/tutorial_video.rpy -------------------------------------------------------------------------------- /testcases/test_un_rpyc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/test_un_rpyc.py -------------------------------------------------------------------------------- /testcases/validate_expected.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/testcases/validate_expected.py -------------------------------------------------------------------------------- /un.rpyc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/un.rpyc/.gitignore -------------------------------------------------------------------------------- /un.rpyc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/un.rpyc/README.md -------------------------------------------------------------------------------- /un.rpyc/compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/un.rpyc/compile.py -------------------------------------------------------------------------------- /un.rpyc/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/un.rpyc/makefile -------------------------------------------------------------------------------- /un.rpyc/unrpyc-compile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/un.rpyc/unrpyc-compile.py -------------------------------------------------------------------------------- /unrpyc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/madeddy/unrpyc/HEAD/unrpyc.py --------------------------------------------------------------------------------