Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rlbot/rlbotgui
https://github.com/rlbot/rlbotgui
hacktoberfest
Last synced: 7 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/rlbot/rlbotgui
- Owner: RLBot
- Created: 2018-12-02T12:54:41.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-02-23T13:29:50.000Z (9 months ago)
- Last Synced: 2024-04-24T13:22:16.820Z (7 months ago)
- Topics: hacktoberfest
- Language: JavaScript
- Homepage:
- Size: 62.8 MB
- Stars: 33
- Watchers: 11
- Forks: 24
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# RLBotGUI
[](https://pypi.org/project/rlbot-gui/)
## About
RLBotGUI is a streamlined user interface that helps you run custom
Rocket League bots for offline entertainment. It relies on the RLBot
project to work its magic: https://github.com/RLBot/RLBotWorks on Windows and Linux
## Features
- Download various bots programmed by the community
- Get started with creating your own bot
- Create matches against bots
- Customize game mode, arena and mutators!
- Try out the Story Mode## Screenshots
You can download, update or create bots
![HomeScreenshot](screenshots/RLBotGUI-Home.PNG)
In Story Mode, you can take over cities by beating challenges and can also
recruit teammates and purchase upgrades for your car!![StoryMode](screenshots/rl-story-mode.PNG)
## Installation
If you just want to use this GUI, you can go download the installer from http://www.rlbot.org/
It will put "RLBotGUI" in your Windows start menu.
## Dev Environment Setup
### Prerequisites
- Python 3.7
### Setup
1. In a command prompt, run `pip install -r requirements.txt`
2. Run `python run.py`### Deployment to PyPI
For normal changes, e.g. things happening inside the rlbot_gui folder,
you should be publishing an update to PyPI. All users will get this change
automatically without needing to reinstall!To deploy:
1. Create a .pypirc file like the one described here:
https://github.com/RLBot/RLBot/wiki/Deploying-Changes#first-time-setup
1. Look in setup.py and increment the version number.
1. Run `publish-to-pypi-prod.bat`#### Note
When deploying to pypi, the files which get included are controlled by the MANIFEST.in file.
You may wish to exclude anything which does not belong in the initial install, e.g.
bot logos which get copied in to the GUI folder as you use the program.As a rule of thumb, if you add something to .gitignore, it may also belong in MANIFEST.in
as a prune line.### Building the Installer
You can build an installer executable for users to download. You will rarely need
to do this, because normal updates should be pushed to users by deploying to PyPI.You really only need a new installer if you changed something in the pynsist_helpers
folder, run.py, or anything else that gets referenced in installer.cfg. **AVOID THIS**
because you don't want to run around bugging users to reinstall.1. Follow https://pynsist.readthedocs.io/en/latest/index.html to get NSIS installed.
2. Run `pip install pynsist`
3. Run `pynsist installer.cfg`Find the resulting executable in build\nsis.
### How to update items in the appearance editor
1. Install and run [BakkesMod](http://www.bakkesmod.com/)
2. In Rocket League, press F6 to open the BakkesMod console, and enter the `dumpitems` command
3. Find the output `items.csv` in the folder where your `RocketLeague.exe` is, usually `C:/Program Files (x86)/Steam/steamapps/common/rocketleague/Binaries/Win64`
4. Replace `rlbot_gui/gui/csv/items.csv` with the new file
5. Change encoding of the new file to UTF-8. Here's how to do that in VS Code:
- use the _Change File Encoding_ command (or click the UTF-8 button in the bottom right)
- select _Reopen with Encoding_, select the one with _Guessed from content_
- now do that again, but _Save with Encoding_ and _UTF-8_
6. Don't forget to bump the version number in `setup.py`