A simple python script to make it easier to rewrite JAdventure game files. The eventual plan may be to create a gui, but for now, this is a quick way to do it rather than editing json files by hand.
numpy and matplotlib
Note: When displaying locations, you need to encompass the points on the end. And it only displays the underground for now. You can change underground to aboveground in the code to get aboveground views.
To start:
python JAdventureGameEditor.py
The initial beginning for the game and recommended to start editing is 0,0,-1
To move north,south,east,and west:
mn
ms
me
mw
To create a room to the north,south,east,and west:
cn
cs
ce
cw
To delete a room to the north,south,east,and west:
dn
ds
de
dw
The standard title for a corridor undergorund is:
Dark Corridor
The standard description for a corridor underground is:
A very long dark corridor
The standard locationType for tiles underground is:
CAVE
- You currently cannot delete tiles, you'll need to edit by hand if you make a mistake (jsoneditoronline is recommended for this)
- This is very early software and more for personal ease than for production, use with caution. Fix where necessary.
- Going up and down is not yet implemented. Will need to be.
- Fork
- Clone
- Make a branch (optional)
- Push to your own fork
- Make a pull request