A randomizer platform for a multitude of games.
Project description
Randovania
Welcome to Randovania, a randomizer platform for a multitude of games.
New here or looking to install? Check our website.
Supported Games
- Another Metroid 2 Remake
- Cave Story
- Metroid Dread
- Metroid Prime
- Metroid Prime 2: Echoes
Experimental Games
- Metroid Prime 3: Corruption
- Metroid: Samus Returns
- Super Metroid
Here you will be able to randomize many aspects of either game, while still being ensured it's possible to finish without any trick or glitch! What can be randomized?
-
Randomize what can be found in each pickup location, including major upgrades, expansions, keys and artifacts.
-
Play with multiple people, via multiworld sessions. Your pickups will be shuffled among the games of everyone involved, no matter what game they're playing!
-
Randomize where each teleporter goes, or what you need to unlock a translator gate. In either case, there's advanced options for how they're shuffled.
-
The location you start the game in as well as the items you start with. If you're feeling brave, you can even shuffle items you normally start with, like the Power Beam and Scan Visor.
So have fun and start randomizing.
Installation
In the releases page, we have zip files with everything ready to use. Just extract and run!
For Linux users, we recommend using our Flatpak instead.
Community
Join the Randovania Discord: https://discord.gg/M23gCxj6fw
Invite links for specific games' servers can be found in the #game-communities
channel in our server.
Credits
GUI and logic written by Henrique Gemignani, with contributions by SpaghettiToastBook, gollop and many others.
BashPrime, Pwootage, and April Wade made https://randomizer.metroidprime.run/, from which the GUI was based.
Website created by Hugoshido and duncathan_salt. portfolYOU Jekyll theme by Youssef Raafat. Free for personal and commercial use under the MIT license.
Installer is powered by Advanced Installer, which has graciously provided us with an open source license.
Linux Flatpak build contributed by Ethan Lee.
Games
Metroid Prime 1
- Game patching via randomprime. Originally authored by April Wade, it is now maintained and developed by toasterparty with contributions from others
- Room data collected by UltiNaruto, EthanArmbrust and SolventMercury.
- Converting Metroid Prime 2 models by Migs.
Metroid Prime 2: Echoes
- Game patching written by Claris.
- Room data initially collected by Claris, revamped by Dyceron.
- Menu Mod created by Claris. For more information, see the Menu Mod README.
- Converting Metroid Prime models by Migs.
Metroid Prime 3: Corruption
- Game patching written by gollop.
- Room data collected by Dyceron and KirbymastaH.
Super Metroid
- Game Patching and Logic Database by SolventMercury.
- Custom Item PLMs patch by Kazuto.
- Skip Intro Saves patch by PHOSPHOTiDYL.
- Other individual patches by Total, Foosda, Leodox, and others.
Cave Story
- Patcher and logic written by duncathan_salt.
- Based on the original randomizer by shru.
- Features contributions from many others.
Metroid Dread
-
Game Patching by:
-
Logic Database by:
-
Assets by:
- Morph Ball and Speed Booster pickup textures created by BigSharkZ.
- Spider Magnet pickup texture by duncathan_salt with help from BigSharkZ.
- New map icons by SkyTheLucario.
Another Metroid 2 Remake
-
Game Patching by:
-
Logic Database by:
-
Assets by:
- Morph Ball, and the Missile Launcher sprites were made by ShirtyScarab554 licensed under CC BY-SA 4.0.
- Power Grip and the Shiny Nothing Orb were made by ShirtyScarab554, used under CC BY-SA 4.0, modified by AbyssalCreature and licensed under CC BY-SA 4.0.
- New door sprites and other AM2R item sprites were made by AbyssalCreature licensed under CC BY-SA 4.0.
Auto Tracker
- Game theme assets were provided by MaskedTAS.
- Pixel theme assets were provided by Uncle Reggie.
- AM2R 1.5.5 item sprites were made by Eskimode7 licensed under CC BY-SA 4.0.
- The AM2R DNA sprite was made by AbyssalCreature licensed under CC BY-SA 4.0.
- The AM2R Morph Ball and Power Grip sprites were made by ShirtyScarab554 licensed under CC BY-SA 4.0.
Multiworld
Server and logic written by Henrique "Darkszero" Gemignani.
Primes
Dolphin and Nintendont integrations written by Henrique "Darkszero" Gemignani. These were based on Dolphin Memory Engine and Pwootage's Nintendont fork, respectively. In-game message alert initially written by encounter.
Cave Story
Cave Story Doukutsu and CSE2 Tweaked integations written by duncathan_salt, periwinkle and ikuyo.
Metroid Dread
Integration written by Thanatos and Henrique "Darkszero" Gemignani. The "unplug" icon is by tezar tantular from Noun Project (licensed under CC BY 3.0).
Another Metroid 2 Remake
Integration written by Miepee. Offworld sprites are licensed under CC BY-SA 4.0 and are made by AbyssalCreature, ShirtyScarab554 and many others.
Developer Help
Dependencies
Setup
Getting started:
- Clone this repository (downloading the zip is not supported and will not work)
- Open a terminal in the repository root
- Run the following file:
- Windows:
tools/prepare_virtual_env.bat
- Linux/macOS:
tools/prepare_virtual_env.sh
- Windows:
- You should see "Setup finished successfully." visible when the command finishes.
- For certain use cases, such as exporting games or running tests, additional setup is needed.
In order to start Randovania, open:
- Windows:
tools/start_client.bat
- Linux/macOS:
tools/start_client.sh
In order to update your repository:
- Update the git repository. (With
git pull
or anything else) - Make sure that Randovania is closed.
- Re-run the steps from "Getting Started", starting at step 2.
- In case of unexpected errors, delete the
venv
in the root of the repository and start again.
- In case of unexpected errors, delete the
- Open Randovania normally.
In order to be able to export games:
- Run both "Getting started" and "Start Randovania" steps.
- Activate the virtual env. Check start_client.bat/sh for details.
- Run
python -m pip install -r requirements.txt
.
In order to run the tests:
- Run both "Getting started" and "Start Randovania" steps.
- Activate the virtual env. Check start_client.bat/sh for details.
- Run
python -m pip install -r requirements.txt
. - Run
python -m pytest test
.
In order to run the server:
- Run both "Getting started" and "Start Randovania" steps.
- Activate the virtual env. Check start_client.bat/sh for details.
- Run
python -m pip install -r requirements.txt
. - Run
python tools/prepare_dev_server_config.py
once. - If you wish to use any Discord functionality, you'll need to create an app in Discord
and fill both ids in
tools/dev-server-configuration.json
. - Run the server and client. You can this on
- Windows with
tools/start_dev_server.bat
for the server andtools/start_debug_client.bat
for the client - Linux/macOS with
tools/start_dev_server.sh
for the server andtools_start_debug_client.sh
for client
- Windows with
This repository uses pre-commit. The hook is automatically configured with
the prepare_virtual_env
scripts.
Suggested IDE: PyCharm Community
*If using Visual Studio Code, make sure to set "qtForPython.uic.liveExecution.enabled": false
when using the QT extension.
Documentation
- Unfamiliar with a term? Check the glossary.
- Adding a new game? Check the dedicated guide.
- Changing a data format? Check the migrations documentation.
- Working with the logic database?
- Read how the database is organized.
- Read the unfinished script for a video on how to use the data editor.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file randovania-7.4.1.tar.gz
.
File metadata
- Download URL: randovania-7.4.1.tar.gz
- Upload date:
- Size: 23.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9e1c790faf5e078396a8cbf2648fe87bdcb150122c9b4561a661bdca7b9ede87 |
|
MD5 | 8425a481b10dafb0bd360be9f03b30b7 |
|
BLAKE2b-256 | 41daab728feca231bf264fcf30cc594176ddd9653fb2b128279a29cae1b74708 |
File details
Details for the file randovania-7.4.1-py3-none-any.whl
.
File metadata
- Download URL: randovania-7.4.1-py3-none-any.whl
- Upload date:
- Size: 21.6 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2cda0f0dc05d9a6bee54158c5a1362bbaca4471debf4fd259e16dcd9cf9bdd53 |
|
MD5 | 542fec7241143e420c37c985999e7e5c |
|
BLAKE2b-256 | 16ae4327fa09c0dbdd0294767c2dd422263ae75761abf3634238f104307a3866 |