Skip to main content

Dustforce level scripting framework

Project description

Dustmaker
=========

Dustmaker is a python3 library (only, at the moment) for read, manipulating, and
writing Dustforce level files.

Documentation
-------------

[http://dustkid.com/static/dustmaker/index.html](http://dustkid.com/static/dustmaker/index.html)

Installation
------------

easy_install3 dustmaker

or

pip install dustmaker

Creating A Map From Scratch
---------------------------

from dustmaker import write_map, Map, Tile, TileShape

map = Map()
map.start_position((0, 0))
map.virtual_character(True)
for (i, shape) in enumerate(TileShape):
map.add_tile(19, 2 * i, 1, Tile(shape))
map.name("Test Map")

f_out = "/home/msg555/.HitboxTeam/Dustforce/user/level_src/testmap"

with open(f_out, "wb") as f:
f.write(write_map(map))


Reading in an existing map
--------------------------

from dustmaker import read_map

f_in = "/home/msg555/Dustforce/content/levels2/downhill"
with open(f_in, "rb") as f:
map = read_map(f.read())

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dustmaker-0.1.4.tar.gz (11.7 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page