├── .github └── workflows │ └── publish.yml ├── .gitignore ├── MANIFEST.in ├── README.md ├── alternative-install ├── README.md ├── RLBotGUI.bat ├── python-3.7.9-custom-amd64.zip ├── rlbot.ico └── update_venv.py ├── installer.cfg ├── linux-install ├── README.md └── RLBotGUI.sh ├── publish-to-pypi-prod.bat ├── publish-to-pypi-test.bat ├── pynsist_helpers ├── install-and-run.bat ├── requirements.txt ├── rlbot-requirements.txt ├── rlbot.ico └── upgrade.py ├── requirements.txt ├── rlbot_gui ├── __init__.py ├── bot_management │ ├── __init__.py │ ├── bot_creation.py │ └── downloader.py ├── gui.py ├── gui │ ├── css │ │ ├── appearance-editor.css │ │ ├── bootstrap-vue.min.css │ │ ├── bootstrap.min.css │ │ ├── story.css │ │ └── style.css │ ├── csv │ │ └── items.csv │ ├── imgs │ │ ├── arena_diagram.png │ │ ├── arenas │ │ │ ├── AquaDome.jpg │ │ │ ├── Arctagon.jpg │ │ │ ├── Badlands.jpg │ │ │ ├── Badlands_Night.jpg │ │ │ ├── BeckwithPark.jpg │ │ │ ├── BeckwithPark_GothamNight.jpg │ │ │ ├── BeckwithPark_Midnight.jpg │ │ │ ├── BeckwithPark_Stormy.jpg │ │ │ ├── ChampionsField.jpg │ │ │ ├── ChampionsField_Day.jpg │ │ │ ├── ChampionsField_NFL.jpg │ │ │ ├── Cosmic.jpg │ │ │ ├── DFHStadium.jpg │ │ │ ├── DFHStadium_Circuit.jpg │ │ │ ├── DFHStadium_Day.jpg │ │ │ ├── DFHStadium_Snowy.jpg │ │ │ ├── DFHStadium_Stormy.jpg │ │ │ ├── DeadeyeCanyon.jpg │ │ │ ├── DoubleGoal.jpg │ │ │ ├── DropShot_Core707.jpg │ │ │ ├── Farmstead.jpg │ │ │ ├── Farmstead_Night.jpg │ │ │ ├── ForbiddenTemple.jpg │ │ │ ├── ForbiddenTemple_Day.jpg │ │ │ ├── Hoops_DunkHouse.jpg │ │ │ ├── Mannfield.jpg │ │ │ ├── Mannfield_Night.jpg │ │ │ ├── Mannfield_Snowy.jpg │ │ │ ├── Mannfield_Stormy.jpg │ │ │ ├── NeoTokyo.jpg │ │ │ ├── NeonFields.jpg │ │ │ ├── Octagon.jpg │ │ │ ├── Pillars.jpg │ │ │ ├── RivalsArena.jpg │ │ │ ├── SaltyShores.jpg │ │ │ ├── SaltyShores_Night.jpg │ │ │ ├── StarbaseARC.jpg │ │ │ ├── StarbaseArc_Aftermath.jpg │ │ │ ├── ThrowbackStadium.jpg │ │ │ ├── ThrowbackStadium_Snowy.jpg │ │ │ ├── TokyoUnderpass.jpg │ │ │ ├── Underpass.jpg │ │ │ ├── UrbanCentral.jpg │ │ │ ├── UrbanCentral_Dawn.jpg │ │ │ ├── UrbanCentral_Haunted.jpg │ │ │ ├── UrbanCentral_Night.jpg │ │ │ ├── UtopiaColiseum.jpg │ │ │ ├── UtopiaColiseum_Dusk.jpg │ │ │ ├── UtopiaColiseum_Snowy.jpg │ │ │ ├── UtopiaRetro.jpg │ │ │ ├── Wasteland.jpg │ │ │ └── Wasteland_Night.jpg │ │ ├── epic.png │ │ ├── human.png │ │ ├── psyonix.png │ │ ├── rlbot.png │ │ ├── rlbot_logo.png │ │ ├── steam.png │ │ └── story │ │ │ ├── checkmark-100px.png │ │ │ ├── checkmark-outline-100px.png │ │ │ ├── coin.png │ │ │ ├── exit-160px.png │ │ │ ├── lock-100px.png │ │ │ ├── sources.txt │ │ │ ├── story-mode-map.png │ │ │ └── victory-160px.png │ ├── js │ │ ├── Sortable.min.js │ │ ├── appearance-editor-vue.js │ │ ├── bootstrap-vue-icons.min.js │ │ ├── bootstrap-vue.min.js │ │ ├── bot-card-vue.js │ │ ├── bot-pool-vue.js │ │ ├── categories.js │ │ ├── colorpicker-vue.js │ │ ├── community-events-vue.js │ │ ├── item-field-vue.js │ │ ├── konva.min.js │ │ ├── launcher-preference-vue.js │ │ ├── main-vue.js │ │ ├── main.js │ │ ├── mutator-field-vue.js │ │ ├── runnable-card-vue.js │ │ ├── sandbox-vue.js │ │ ├── script-card-vue.js │ │ ├── script-dependencies-vue.js │ │ ├── story-alter-save-state.js │ │ ├── story-challenges.js │ │ ├── story-mode-start.js │ │ ├── story-mode.js │ │ ├── story-pick-team.js │ │ ├── story-recruit-list.js │ │ ├── story-upgrades.js │ │ ├── team-card-vue.js │ │ ├── velocity-arrow-vue.js │ │ ├── vue-konva.min.js │ │ ├── vue-router.js │ │ ├── vue.min.js │ │ ├── vuedraggable.min.js │ │ └── vuex.min.js │ ├── json │ │ ├── colors.json │ │ └── standard-maps.json │ └── main.html ├── match_runner │ ├── __init__.py │ ├── custom_maps.py │ └── match_runner.py ├── persistence │ ├── __init__.py │ └── settings.py ├── story │ ├── __init__.py │ ├── bots-base.json │ ├── load_story_descriptions.py │ ├── story-default-with-cmaps.json │ ├── story-default.json │ ├── story-easy-with-cmaps.json │ ├── story-easy.json │ ├── story_challenge_setup.py │ └── story_runner.py ├── type_translation │ ├── __init__.py │ ├── packet_translation.py │ └── set_state_translation.py └── upgrade │ ├── __init__.py │ ├── upgrade_replacer.py │ └── upgrade_script.py ├── run.py ├── runRLBotInsideEnv.bat ├── screenshots ├── RLBotGUI-Home.PNG └── rl-story-mode.PNG ├── setup.py └── template.nsi /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/.gitignore -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/README.md -------------------------------------------------------------------------------- /alternative-install/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/alternative-install/README.md -------------------------------------------------------------------------------- /alternative-install/RLBotGUI.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/alternative-install/RLBotGUI.bat -------------------------------------------------------------------------------- /alternative-install/python-3.7.9-custom-amd64.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/alternative-install/python-3.7.9-custom-amd64.zip -------------------------------------------------------------------------------- /alternative-install/rlbot.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/alternative-install/rlbot.ico -------------------------------------------------------------------------------- /alternative-install/update_venv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/alternative-install/update_venv.py -------------------------------------------------------------------------------- /installer.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/installer.cfg -------------------------------------------------------------------------------- /linux-install/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/linux-install/README.md -------------------------------------------------------------------------------- /linux-install/RLBotGUI.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/linux-install/RLBotGUI.sh -------------------------------------------------------------------------------- /publish-to-pypi-prod.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/publish-to-pypi-prod.bat -------------------------------------------------------------------------------- /publish-to-pypi-test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/publish-to-pypi-test.bat -------------------------------------------------------------------------------- /pynsist_helpers/install-and-run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/pynsist_helpers/install-and-run.bat -------------------------------------------------------------------------------- /pynsist_helpers/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/pynsist_helpers/requirements.txt -------------------------------------------------------------------------------- /pynsist_helpers/rlbot-requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/pynsist_helpers/rlbot-requirements.txt -------------------------------------------------------------------------------- /pynsist_helpers/rlbot.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/pynsist_helpers/rlbot.ico -------------------------------------------------------------------------------- /pynsist_helpers/upgrade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/pynsist_helpers/upgrade.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/requirements.txt -------------------------------------------------------------------------------- /rlbot_gui/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rlbot_gui/bot_management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rlbot_gui/bot_management/bot_creation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/bot_management/bot_creation.py -------------------------------------------------------------------------------- /rlbot_gui/bot_management/downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/bot_management/downloader.py -------------------------------------------------------------------------------- /rlbot_gui/gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui.py -------------------------------------------------------------------------------- /rlbot_gui/gui/css/appearance-editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/css/appearance-editor.css -------------------------------------------------------------------------------- /rlbot_gui/gui/css/bootstrap-vue.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/css/bootstrap-vue.min.css -------------------------------------------------------------------------------- /rlbot_gui/gui/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/css/bootstrap.min.css -------------------------------------------------------------------------------- /rlbot_gui/gui/css/story.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/css/story.css -------------------------------------------------------------------------------- /rlbot_gui/gui/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/css/style.css -------------------------------------------------------------------------------- /rlbot_gui/gui/csv/items.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/csv/items.csv -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arena_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arena_diagram.png -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/AquaDome.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/AquaDome.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/Arctagon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/Arctagon.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/Badlands.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/Badlands.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/Badlands_Night.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/Badlands_Night.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/BeckwithPark.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/BeckwithPark.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/BeckwithPark_GothamNight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/BeckwithPark_GothamNight.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/BeckwithPark_Midnight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/BeckwithPark_Midnight.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/BeckwithPark_Stormy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/BeckwithPark_Stormy.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/ChampionsField.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/ChampionsField.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/ChampionsField_Day.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/ChampionsField_Day.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/ChampionsField_NFL.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/ChampionsField_NFL.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/Cosmic.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/Cosmic.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/DFHStadium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/DFHStadium.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/DFHStadium_Circuit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/DFHStadium_Circuit.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/DFHStadium_Day.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/DFHStadium_Day.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/DFHStadium_Snowy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/DFHStadium_Snowy.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/DFHStadium_Stormy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/DFHStadium_Stormy.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/DeadeyeCanyon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/DeadeyeCanyon.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/DoubleGoal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/DoubleGoal.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/DropShot_Core707.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/DropShot_Core707.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/Farmstead.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/Farmstead.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/Farmstead_Night.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/Farmstead_Night.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/ForbiddenTemple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/ForbiddenTemple.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/ForbiddenTemple_Day.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/ForbiddenTemple_Day.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/Hoops_DunkHouse.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/Hoops_DunkHouse.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/Mannfield.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/Mannfield.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/Mannfield_Night.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/Mannfield_Night.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/Mannfield_Snowy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/Mannfield_Snowy.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/Mannfield_Stormy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/Mannfield_Stormy.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/NeoTokyo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/NeoTokyo.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/NeonFields.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/NeonFields.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/Octagon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/Octagon.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/Pillars.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/Pillars.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/RivalsArena.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/RivalsArena.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/SaltyShores.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/SaltyShores.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/SaltyShores_Night.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/SaltyShores_Night.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/StarbaseARC.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/StarbaseARC.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/StarbaseArc_Aftermath.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/StarbaseArc_Aftermath.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/ThrowbackStadium.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/ThrowbackStadium.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/ThrowbackStadium_Snowy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/ThrowbackStadium_Snowy.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/TokyoUnderpass.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/TokyoUnderpass.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/Underpass.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/Underpass.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/UrbanCentral.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/UrbanCentral.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/UrbanCentral_Dawn.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/UrbanCentral_Dawn.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/UrbanCentral_Haunted.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/UrbanCentral_Haunted.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/UrbanCentral_Night.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/UrbanCentral_Night.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/UtopiaColiseum.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/UtopiaColiseum.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/UtopiaColiseum_Dusk.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/UtopiaColiseum_Dusk.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/UtopiaColiseum_Snowy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/UtopiaColiseum_Snowy.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/UtopiaRetro.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/UtopiaRetro.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/Wasteland.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/Wasteland.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/arenas/Wasteland_Night.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/arenas/Wasteland_Night.jpg -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/epic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/epic.png -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/human.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/human.png -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/psyonix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/psyonix.png -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/rlbot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/rlbot.png -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/rlbot_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/rlbot_logo.png -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/steam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/steam.png -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/story/checkmark-100px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/story/checkmark-100px.png -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/story/checkmark-outline-100px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/story/checkmark-outline-100px.png -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/story/coin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/story/coin.png -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/story/exit-160px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/story/exit-160px.png -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/story/lock-100px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/story/lock-100px.png -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/story/sources.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/story/sources.txt -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/story/story-mode-map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/story/story-mode-map.png -------------------------------------------------------------------------------- /rlbot_gui/gui/imgs/story/victory-160px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/imgs/story/victory-160px.png -------------------------------------------------------------------------------- /rlbot_gui/gui/js/Sortable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/js/Sortable.min.js -------------------------------------------------------------------------------- /rlbot_gui/gui/js/appearance-editor-vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/js/appearance-editor-vue.js -------------------------------------------------------------------------------- /rlbot_gui/gui/js/bootstrap-vue-icons.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/js/bootstrap-vue-icons.min.js -------------------------------------------------------------------------------- /rlbot_gui/gui/js/bootstrap-vue.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/js/bootstrap-vue.min.js -------------------------------------------------------------------------------- /rlbot_gui/gui/js/bot-card-vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/js/bot-card-vue.js -------------------------------------------------------------------------------- /rlbot_gui/gui/js/bot-pool-vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/js/bot-pool-vue.js -------------------------------------------------------------------------------- /rlbot_gui/gui/js/categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/js/categories.js -------------------------------------------------------------------------------- /rlbot_gui/gui/js/colorpicker-vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/js/colorpicker-vue.js -------------------------------------------------------------------------------- /rlbot_gui/gui/js/community-events-vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/js/community-events-vue.js -------------------------------------------------------------------------------- /rlbot_gui/gui/js/item-field-vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/js/item-field-vue.js -------------------------------------------------------------------------------- /rlbot_gui/gui/js/konva.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/js/konva.min.js -------------------------------------------------------------------------------- /rlbot_gui/gui/js/launcher-preference-vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/js/launcher-preference-vue.js -------------------------------------------------------------------------------- /rlbot_gui/gui/js/main-vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/js/main-vue.js -------------------------------------------------------------------------------- /rlbot_gui/gui/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/js/main.js -------------------------------------------------------------------------------- /rlbot_gui/gui/js/mutator-field-vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/js/mutator-field-vue.js -------------------------------------------------------------------------------- /rlbot_gui/gui/js/runnable-card-vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/js/runnable-card-vue.js -------------------------------------------------------------------------------- /rlbot_gui/gui/js/sandbox-vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/js/sandbox-vue.js -------------------------------------------------------------------------------- /rlbot_gui/gui/js/script-card-vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/js/script-card-vue.js -------------------------------------------------------------------------------- /rlbot_gui/gui/js/script-dependencies-vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/js/script-dependencies-vue.js -------------------------------------------------------------------------------- /rlbot_gui/gui/js/story-alter-save-state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/js/story-alter-save-state.js -------------------------------------------------------------------------------- /rlbot_gui/gui/js/story-challenges.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/js/story-challenges.js -------------------------------------------------------------------------------- /rlbot_gui/gui/js/story-mode-start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/js/story-mode-start.js -------------------------------------------------------------------------------- /rlbot_gui/gui/js/story-mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/js/story-mode.js -------------------------------------------------------------------------------- /rlbot_gui/gui/js/story-pick-team.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/js/story-pick-team.js -------------------------------------------------------------------------------- /rlbot_gui/gui/js/story-recruit-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/js/story-recruit-list.js -------------------------------------------------------------------------------- /rlbot_gui/gui/js/story-upgrades.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/js/story-upgrades.js -------------------------------------------------------------------------------- /rlbot_gui/gui/js/team-card-vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/js/team-card-vue.js -------------------------------------------------------------------------------- /rlbot_gui/gui/js/velocity-arrow-vue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/js/velocity-arrow-vue.js -------------------------------------------------------------------------------- /rlbot_gui/gui/js/vue-konva.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/js/vue-konva.min.js -------------------------------------------------------------------------------- /rlbot_gui/gui/js/vue-router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/js/vue-router.js -------------------------------------------------------------------------------- /rlbot_gui/gui/js/vue.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/js/vue.min.js -------------------------------------------------------------------------------- /rlbot_gui/gui/js/vuedraggable.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/js/vuedraggable.min.js -------------------------------------------------------------------------------- /rlbot_gui/gui/js/vuex.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/js/vuex.min.js -------------------------------------------------------------------------------- /rlbot_gui/gui/json/colors.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/json/colors.json -------------------------------------------------------------------------------- /rlbot_gui/gui/json/standard-maps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/json/standard-maps.json -------------------------------------------------------------------------------- /rlbot_gui/gui/main.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/gui/main.html -------------------------------------------------------------------------------- /rlbot_gui/match_runner/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rlbot_gui/match_runner/custom_maps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/match_runner/custom_maps.py -------------------------------------------------------------------------------- /rlbot_gui/match_runner/match_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/match_runner/match_runner.py -------------------------------------------------------------------------------- /rlbot_gui/persistence/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rlbot_gui/persistence/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/persistence/settings.py -------------------------------------------------------------------------------- /rlbot_gui/story/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rlbot_gui/story/bots-base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/story/bots-base.json -------------------------------------------------------------------------------- /rlbot_gui/story/load_story_descriptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/story/load_story_descriptions.py -------------------------------------------------------------------------------- /rlbot_gui/story/story-default-with-cmaps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/story/story-default-with-cmaps.json -------------------------------------------------------------------------------- /rlbot_gui/story/story-default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/story/story-default.json -------------------------------------------------------------------------------- /rlbot_gui/story/story-easy-with-cmaps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/story/story-easy-with-cmaps.json -------------------------------------------------------------------------------- /rlbot_gui/story/story-easy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/story/story-easy.json -------------------------------------------------------------------------------- /rlbot_gui/story/story_challenge_setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/story/story_challenge_setup.py -------------------------------------------------------------------------------- /rlbot_gui/story/story_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/story/story_runner.py -------------------------------------------------------------------------------- /rlbot_gui/type_translation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rlbot_gui/type_translation/packet_translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/type_translation/packet_translation.py -------------------------------------------------------------------------------- /rlbot_gui/type_translation/set_state_translation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/type_translation/set_state_translation.py -------------------------------------------------------------------------------- /rlbot_gui/upgrade/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rlbot_gui/upgrade/upgrade_replacer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/upgrade/upgrade_replacer.py -------------------------------------------------------------------------------- /rlbot_gui/upgrade/upgrade_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/rlbot_gui/upgrade/upgrade_script.py -------------------------------------------------------------------------------- /run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/run.py -------------------------------------------------------------------------------- /runRLBotInsideEnv.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/runRLBotInsideEnv.bat -------------------------------------------------------------------------------- /screenshots/RLBotGUI-Home.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/screenshots/RLBotGUI-Home.PNG -------------------------------------------------------------------------------- /screenshots/rl-story-mode.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/screenshots/rl-story-mode.PNG -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/setup.py -------------------------------------------------------------------------------- /template.nsi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RLBot/RLBotGUI/HEAD/template.nsi --------------------------------------------------------------------------------