Coder Social home page Coder Social logo

customgamerules's Introduction

CustomGamerules API
Maven Repository

A modding API that provides a way to register custom gamerules and adds a gamerules menu.

Features

  • Faster rule value access
  • A game rule menu
  • Default game rules, used at world creation
  • Namespaced game rules
  • and more...

Maven

repositories {
    maven {url "https://maven.misterpemodder.com/libs-release/"}
}

dependencies {
    modCompile "com.misterpemodder.customgamerules:custom-gamerules:<VERSION>"
}

API

Better GameRule access

Instances of GameRules can be converted to CustomGameRules using CustomGameRules.of
The CustomGameRules class provides access to extended game rules and access to rule values directly without needing to parse the value using CustomGameRules.getValue.
Also, CustomGameRules.get returns an instance of GameRuleValue, its value is updated dynamically, with no need to use GameRules.get each time you want to get a value.

Registering game rules

Builtin rule types:

  • Boolean: GameRuleTypes.BOOLEAN
  • String: GameRuleTypes.STRING
  • Integer: GameRuleTypes.INTEGER
  • Long: GameRuleTypes.LONG
  • Float: GameRuleTypes.FLOAT
  • Double: GameRuleTypes.DOUBLE

You can add you own rule type by extending GameRuleType and registering it with GameRuleRegistry.registerType

To register a custom game rule, use GameRuleRegistry.register and you can supply a ValueUpdateHandler and/or a ValueValidator to have better control over your rule value.

Example of a custom game rule:

GameRuleRegistry.INSTANCE.register("my_mod_id", "myGameRule", GameRuleTypes.BOOLEAN, true);

Menu API

The menu can be opened with GameRulesMenu.INSTANCE.open

Custom Rule widgets:
(WIP)

This mod requires Fabric (https://minecraft.curseforge.com/projects/fabric).

customgamerules's People

Contributors

misterpemodder avatar

Watchers

James Cloos avatar

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.