Wastelands Room Data editor
A tool for the creation of rooms used in maps in the game Wastelands
Creates .wrd files, that get loaded by the map generator in-game.
Make sure to read the help page by using the ? button in the editor!
Compilation
Strictly there is no need to compile it to use it, but its encouraged. You will need Python 3 to compile it.
- Make sure you have pyinstaller installed, if not, run
pip install pyinstaller
in your command line - In the directory where
main.py
is located, runpyinstaller --noconsole --onefile main.py
- Copy-paste the
resources
folder into thedist
folder pyinstaller just created. - The
main.exe
file located inside thedist
folder should now be completely functional.
Note that the resources
folder should always be located in the same directory as main.exe
AV software problem
Pyinstaller, the compilation method I use, has a recurrent problem where compiled exes get confused as Trojans by Windows Defender and other AV software. Note that the room editor ISN'T MALWARE NOR CONTAINS MALWARE. It's a direct compilation of main.py
. If you want to check it out by yourself, compile main.py
with the method explained above and compare the exe with the releases
.exe file. Sorry for any inconvenience this could cause.