GDPC (Generative Design Python Client) is a Python framework for use in conjunction with the GDMC-HTTP mod for Minecraft Java edition. It is designed for the Generative Design in Minecraft Competition (GDMC).
You need to be playing in a Minecraft world with the mod installed to use the framework.
The latest version of GDPC is compatible with GDMC-HTTP versions >=1.0.0, <2.0.0 and Minecraft 1.20.2 (see note).
from gdpc import Editor, Block, geometry
editor = Editor(buffering=True)
# Get a block
block = editor.getBlock((0,48,0))
# Place a block
editor.placeBlock((0,80,0), Block("stone"))
# Build a cube
geometry.placeCuboid(editor, (0,80,2), (2,82,4), Block("oak_planks"))
These abbreviations are all very similar, but refer to different things.
GDMC: Short for the Generative Design in Minecraft Competition, a yearly competition for generative AI systems in Minecraft. The challenge is to write an algorithm that creates a settlement while adapting to the pre-existing terrain. The competition also has a Discord server.
GDMC-HTTP: A Minecraft Forge mod that provides a HTTP interface to edit the world. It allows you to modify the world live, while you're playing in it. This makes it possible to iterate quickly on generator algorithms. The mod is an official submission method for the competition.
GDPC: This repository (notice the "P"). A Python framework for interacting with the GDMC-HTTP interface. It provides many high-level tools that make working with the interface much simpler.
GDPC requires Python 3.7 or above. It is available on PyPI; to install, run:
python3 -m pip install gdpc
To update, run:
python3 -m pip install --upgrade gdpc
On Windows, you may need to replace python3
with py
.
If you would like to install the latest cutting-edge development version directly from GitHub, replace gdpc
with
git+https://github.com/avdstaaij/gdpc
For more information on installing from GitHub (such as getting old versions), see the pip documentation.
There are various tutorial scripts that will help to get you started:
Tutorial | Description |
---|---|
Hello block | Place and retrieve a single block in the world. |
Vectors | Use vector math and some of GDPC's various vector utilities. |
Build area | Get the specified build area and use it to place a block inside the bounds. |
World slice | Load and use a world slice for faster read access. |
Geometry | Use the geometry module to place geometrical regions of blocks. |
Advanced blocks | Place blocks with block states and block entity data, and use block palettes. |
Editor performance | Use the Editor class's various optional performance features. |
Transformation | Use GDPC's powerful transformation system. |
Some practical examples are also available, though they're slightly older and may not reflect the latest features:
Example | Description |
---|---|
Visualize map | Displays a map of the Minecraft world using OpenCV. |
Emerald city | Demonstrates basic GDPC functionality by building a simple model of the Emerald City. |
Note: the links above always point to tutorials/examples for the latest release of GDPC. To view the examples for an older version, switch to the tag for that version (using the dropdown box at the top left of the file list, where it probably says "master"), and manually navigate to the examples.
We list a specific compatible version of Minecraft, but most of GDPC actually supports a wide range of Minecraft versions. In particular, basic block getting and setting should work with any Minecraft version for which there is a compatible version of GDMC-HTTP. The parts of GDPC that may not be compatible with Minecraft versions other than the listed one are those that interact with "Minecraft data". These include:
- Rotation and flipping of individual blocks.
- Utility functions from the
minecraft_tools
andeditor_tools
modules that generate Minecraft data, such asbookData
andplaceSign
. - The
WorldSlice
class and associated functions likeEditor.loadWorldSlice()
.
We are working on fully supporting multiple versions of Minecraft simultaneously (#99), but this probably won't be done soon.
See CONTRIBUTING.md for information about how to contribute.
GDPC was progressively developed with the help of various members of the GDMC community. Of special note are Niki Gawlik, who started both GDMC-HTTP and GDPC, and Blinkenlights, who previously maintained the project.