Dustforce level scripting framework
Project description
Dustmaker
Dustmaker is a Python library for reading, manipulation, and writing binary files used by Dustforce, primarily level files.
Documentation
Documentation can be found at https://dustmaker.readthedocs.io/en/latest/.
Installation
Install with pip through PyPi using
python -m pip install dustmaker
or clone this repository and install using
./setup.py install
Command Line Tool
Dustmaker comes with a few command line tools that can be accessed through running the dustmaker module.
$ python -m dustmaker --help
... listing of available utilities
$ python -m dustmaker transform --upscale 2 downhill big_downhill
... creates upscaled version of downhill and saves to "big_downhill"
Example: Creating a new level from scratch
from dustmaker.level import Level
from dustmaker.tile import Tile, TileShape
from dustmaker.dfwriter import DFWriter
# Create a new empty level and add some tiles.
level = Level()
level.name = b"my level!"
level.virtual_character = True
for i, shape in enumerate(TileShape):
level.tiles[(19, 2 * i, i)] = Tile(shape)
# Automatically figure out edge solidity and connectivity flags
level.calculate_edge_visibility()
level.calculate_edge_caps()
# Write level to a file
with DFWriter(open("mylevel.dflevel", "wb")) as writer:
writer.write_level(level)
Example: Counting how many apples are in a level
from dustmaker.dfreader import DFReader
from dustmaker.entity import Apple
with DFReader(open("mylevel.dflevel", "rb")) as reader:
level = reader.read_level()
apples = 0
for x, y, entity in level.entities.values():
if isinstance(entity, Apple):
apples += 1
print(f"Level has {apples} apples")
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file dustmaker-1.2.0.tar.gz.
File metadata
- Download URL: dustmaker-1.2.0.tar.gz
- Upload date:
- Size: 50.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
085df65371e82d91ee42c1c158b264df21d6e7f95aa146a3c6d19cd10f03f691
|
|
| MD5 |
e3fec142a3c02ac143726229faed7033
|
|
| BLAKE2b-256 |
4ca8120e990483567cd209ae06c94b73950e7397cef954dcc238108b38eb8c53
|
File details
Details for the file dustmaker-1.2.0-py3-none-any.whl.
File metadata
- Download URL: dustmaker-1.2.0-py3-none-any.whl
- Upload date:
- Size: 57.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.6.4 pkginfo/1.7.1 requests/2.22.0 requests-toolbelt/0.9.1 tqdm/4.62.2 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3cdcb2be1db2683a8f384135b0bc539eb784d86ef51599170c1bba16ae0f206d
|
|
| MD5 |
d3d78d1b9ec3b0c8a032838f19986763
|
|
| BLAKE2b-256 |
3c547233875fab58a4ceab761680cddc93466d9b793035d66ac7c807d94857ef
|