Giter Club home page Giter Club logo

endermite's Introduction

endermite

Build Status PyPI Version Python Version

A high-level, opinionated python framework for building Minecraft data packs.

๐Ÿšง This is a huge work in progress ๐Ÿšง

Introduction

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.

Installation

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

Getting started

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.

Creating a new 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.

Building your endermite projects

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.

Contributing

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

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.