1
Fork 0
mirror of https://github.com/Steffo99/flyingsnake.git synced 2024-10-16 14:37:34 +00:00
flyingsnake/README.md

105 lines
3.5 KiB
Markdown
Raw Normal View History

2019-08-19 18:49:56 +00:00
# ![](https://gamepedia.cursecdn.com/terraria_gamepedia/8/82/Flying_Snake.png?version=2b0351f579d721166af80a12d2c2e325) `flyingsnake` [![](https://img.shields.io/pypi/v/flyingsnake)](https://pypi.org/project/flyingsnake/)
Generate Terraria world maps with this easy to use command line utility!
![A world map](https://i.imgur.com/HtNEIKw.png)
## Requirements
To use `flyingsnake`, you need [Python 3.7 or higher](https://www.python.org/downloads/) installed on your machine.
## Installing
`flyingsnake` is available on PyPI, so you can download it through `pip`.
Just enter this in your terminal:
```
2019-08-28 11:20:43 +00:00
python3.7 -m pip install flyingsnake
2019-08-19 18:49:56 +00:00
```
## Usage
To create a basic world map named `Output.png` from the `Small_Example.wld` file present in your current working directory, run in your terminal:
```
python3.7 -m flyingsnake Small_Example.wld Output.png
```
### Layers
The world map is generated by merging together multiple layers that can be enabled/disabled through flags.
In order, those are:
- Background
- Walls
- Liquids
- Blocks
- Wires
#### Background
The background layer is made by coloring the Overworld, the Underground and the Caverns their respective background color.
2019-08-28 11:20:43 +00:00
It can be selected exclusively with the `--background` flag, or turned off with the `--no-background` flag.
2019-08-19 18:49:56 +00:00
![The background layer](https://i.imgur.com/69qRLZX.png)
#### Walls
The walls layer contains the colors of the walls present in the world.
2019-08-28 11:20:43 +00:00
It can be selected exclusively with the `--walls` flag, or turned off with the `--no-walls` flag.
2019-08-19 18:49:56 +00:00
2019-08-28 12:03:33 +00:00
If the walls are painted, they will be colored with the paint color.
You can turn off paint colors with the `--no-paints` flag.
2019-08-19 18:49:56 +00:00
![The wall layer](https://i.imgur.com/Grkq5PQ.png)
#### Liquids
The liquids layer contains the colors of the liquids present in the world (water, lava, honey...)
2019-08-28 11:20:43 +00:00
It can be selected exclusively with the `--liquids` flag, or turned off with the `--no-liquids` flag.
2019-08-19 18:49:56 +00:00
![The liquids layer](https://i.imgur.com/Pifjb4D.png)
#### Blocks
The blocks layer contains the colors of the blocks present in the world.
2019-08-28 11:20:43 +00:00
It can be selected exclusively with the `--blocks` flag, or turned off with the `--no-blocks` flag.
2019-08-19 18:49:56 +00:00
2019-08-28 12:03:33 +00:00
If the blocks are painted, they will be colored with the paint color.
You can turn off paint colors with the `--no-paints` flag.
2019-08-19 18:49:56 +00:00
![The blocks layer](https://i.imgur.com/E05kgOA.png)
#### Wires
The wires layer is a semi-transparent overlay of the wires present in the world.
2019-08-28 11:20:43 +00:00
It can be selected exclusively with the `--wires` flag, or turned off with the `--no-wires` flag.
2019-08-19 18:49:56 +00:00
![The wires layer](https://i.imgur.com/XDLRCAE.png)
### Custom colors
Different colors can be specified by passing the `--colors file.json` option to the command.
You can see an example color file [here](https://github.com/Steffo99/flyingsnake/tree/master/flyingsnake/example_colors.json); the colors are in RGBA format, and go from 0 to 255.
If no custom colors are passed, the script will use the default [TEdit](https://github.com/TEdit/Terraria-Map-Editor) colors (defined in settings.xml).
## License
`flyingsnake` is licensed under the [AGPL 3.0](/LICENSE.txt).
That means you have to publish under the same license the source code of any program you create that uses `flyingsnake`.
## See also
2019-08-28 11:20:43 +00:00
If you are interested in `flyingsnake`, you might be interested in these other programs too:
- [lihzahrd](https://github.com/Steffo99/lihzahrd), the package used to make this generator
- [TEdit](https://github.com/TEdit/Terraria-Map-Editor), the Terraria map editor from which this package gets the default colors