A high-level, opinionated python framework for building Minecraft data packs.
🚧 This is a huge work in progress 🚧
Minecraft data packs make it possible for anyone to customize the game by writing bits of JSON and a few functions. The underlying format is simple and straight-forward, making it easy to parse, but it hasn't been created with a specific developer experience in mind. When you sit down in front of your text editor, it can be hard to figure out how you're supposed to make use of the available features to do what you want to do.
Endermite is a python framework that combines and exposes data pack features through a layer of abstraction. It aims to make it easier to develop, encapsulate and compose behavior by providing a component-based approach.
from endermite import Component
from endermite.decorators import public, tick
class Hello(Component):
"""Output `Hello, world!` each tick when attached to an entity."""
@tick
@public
def say_hello(self):
self.say('Hello, world!')
Components are coupled pieces of state and behavior that can be attached to entities. They're conceptually similar to what you might be used to with MonoBehaviour
scripts if you've worked with the Unity game engine.
Make sure that you're using Python 3.7 or above. You can install endermite with pip
.
$ pip install endermite
You can check that endermite is correctly installed by trying to use the command-line interface shipped with the package.
$ ender --version
The easiest way to get started with endermite is to get familiar with the command-line workflow. You can use endermite without it but the ender
CLI will usually allow you to be much more productive.
$ ender --help
Usage: ender [OPTIONS] COMMAND [ARGS]...
Command-line utility to manage endermite projects.
Options:
--version Show the version and exit.
--help Show this message and exit.
Commands:
build Build all the projects of the current world.
init Create a new endermite project.
The ender
CLI lets you create an endermite project inside of a Minecraft world folder by running the init
command. Note that you can create as many endermite projects as you want in the same world.
$ ender init
endermite vX.X.X
Creating endermite project.
Project name [testing_endermite]: tutorial
Project description [An endermite project]:
Project author [N/A]:
Project version [0.1.0]:
About to create .../.minecraft/saves/testing_endermite/@endermite/tutorial.
Is this ok? [Y/n]:
Done!
The project created by the ender
CLI is simply a python package that exports an endermite Project
object.
You can use the build
command to build all the projects you created in a specific Minecraft world. The command will output the corresponding data packs in the datapacks
directory.
$ ender build
endermite vX.X.X
Building endermite projects.
Attempting to build "tutorial"...
Done! (took X.XXXs)
Running the build
command with the --watch
option will rebuild your projects whenever you make modifications to the @endermite
directory. It lets you forget about having to run the build
command manually.
$ ender build --watch
endermite vX.X.X
Building endermite projects.
Watching directory .../.minecraft/saves/testing_endermite/@endermite.
HH:MM:SS X changes detected
Attempting to build "tutorial"...
Done! (took X.XXXs)
Remember that you still need to run /reload
in-game.
Contributions are welcome. Make sure that Python 3.7 or newer is installed and create a virtual environment in the project directory.
$ python -m venv env
This will create a virtual environment in the env
directory. If you're not familiar with virtual environments, please check out the official documentation. You can now activate the virtual environment.
# Windows
$ env\Scripts\activate.bat
# Unix or MacOS
$ source env/bin/activate
Remember to activate the virtual environment every time you work on the project! Let's install the dependencies for the endermite
package and the necessary development dependencies.
(env) $ pip install -U -r requirements.txt -r requirements.dev.txt
You should now be able to lint the source code and to run the tests with tox
.
(env) $ tox
The project relies on pylint
and pytest
for linting and testing. If you're not familiar with these tools, you can check out their respective documentation.
License - MIT