Skip to main content

Mondrian Painting Description Language interpreter

Project description

MPDL interpreter for Python

MPDL

MPDL (Mondrian Painting Description Language) is an esoteric language created by Arnaud Marguerat to describe Piet Mondrian abstract paintings.

Syntax

MPDL operates on a stack of rectangles and outputs a square image. The stack is initialised with a single rectangle filling the whole image. There are 3 commands:

  1. v<integer 0-100>: Pop a rectangle and split it vertically at the position given by the argument as percentage, rounded down. Push the left and right rectangles, in this order.

  2. h<integer 0-100>: Split horizontally. Push the top and bottom rectangles, in this order.

  3. c<integer 1-4>: Pop a rectangle and paint it a colour:

    • 1: white

    • 2: red

    • 3: blue

    • 4: yellow

Rectangles are drawn with a black border.

Example

The sample program:

v25 h71 v93 h50 c4 c1 c1 c2 h71 c3 h44 c1 c1

run with canvas size 256px and border width 3px, outputs

mondrian_composition.png

How to install

Installing from distribution

It’s usually easiest to get the package from the pip repository:

pip install mpdl

Installing from source

To install from source, clone the source repo and run the setup script:

git clone https://github.com/LeopoldTal/mpdl-py.git
cd mpdl-py
pip install -e .

Running the tests

Run tests in the root directory with:

py.test

To generate a coverage report:

py.test --cov --cov-branch --cov-report=term-missing

How to use

Usage:

mpdl [-o OUT] [-s SIZE] [-b BORDER] path/to/source_file.mpdl

Outputs an ASCII PPM image with colour depth 1.

Arguments:

  • -o: Path to output file. Default out.ppm.

  • -s: Side length of square image in pixels. Default 256.

  • -b: Thickness of rectangle borders in pixels. Default 3.

Licence

MIT. See LICENSE file.

Credits

Developer

mpdl-py is developed by Leopold T. de Gaillande.

Language author

MPDL is the work of Arnaud Marguerat.

Dependencies

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

mpdl-0.1.0.tar.gz (12.8 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