Structuring Your Mod

We’ll look at how to organize your mod into different files and what those files should do.

Packaging

Pick a unique package name. If you own a URL associated with your project, you can use it as your top level package. For example if you own “example.com”, you may use com.example as your top level package.

Important

If you do not own a domain, do not use it for your top level package. It is perfectly acceptable to start your package with anything, such as your name/nickname, or the name of the mod.

After the top level package (if you have one) you append a unique name for your mod, such as examplemod. In our case it will end up as com.example.examplemod.

The mcmod.info file

This file defines the metadata of your mod. Its information may be viewed by users from the main screen of the game through the Mods button. A single info file can describe several mods. When a mod is annotated by the @Mod annotation, it may define the useMetadata property, which defaults to false. When useMetadata is true, the metadata within mcmod.info overrides whatever has been defined in the annotation.

The mcmod.info file is formatted as JSON, where the root element is a list of objects and each object describes one modid. It should be stored as src/main/resources/mcmod.info. A basic mcmod.info, describing one mod, may look like this:

[{
  "modid": "examplemod",
  "name": "Example Mod",
  "description": "Lets you craft dirt into diamonds. This is a traditional mod that has existed for eons. It is ancient. The holy Notch created it. Jeb rainbowfied it. Dinnerbone made it upside down. Etc.",
  "version": "1.0.0.0",
  "mcversion": "1.10.2",
  "logoFile": "assets/examplemod/textures/logo.png",
  "url": "minecraftforge.net/",
  "updateJSON": "minecraftforge.net/versions.json",
  "authorList": ["Author"],
  "credits": "I'd like to thank my mother and father.",
}]

The default Gradle configuration replaces ${version} with the project version, and ${mcversion} with the Minecraft version, but only within mcmod.info, so you should use those instead of directly writing them out. Here is a table of attributes that may be given to a mod, where required means there is no default and the absence of the property causes an error. In addition to the required properties, you should also define description, version, mcversion, url, and authorList.

Property Type Default Description
modid string required The modid this description is linked to. If the mod is not loaded, the description is ignored.
name string required The user-friendly name of this mod.
description string "" A description of this mod in 1-2 paragraphs.
version string "" The version of the mod.
mcversion string "" The Minecraft version.
url string "" A link to the mod’s homepage.
updateUrl string "" Defined but unused. Superseded by updateJSON.
updateJSON string "" The URL to a version JSON.
authorList [string] [] A list of authors to this mod.
credits string "" A string that contains any acknowledgements you want to mention.
logoFile string "" The path to the mod’s logo. It is resolved on top of the classpath, so you should put it in a location where the name will not conflict, maybe under your own assets folder.
screenshots [string] [] A list of images to be shown on the info page. Currently unimplemented.
parent string "" The modid of a parent mod, if applicable. Using this allows modules of another mod to be listed under it in the info page, like BuildCraft.
useDependencyInformation boolean false If true and Mod.useMetadata, the below 3 lists of dependencies will be used. If not, they do nothing.
requiredMods [string] [] A list of modids. If one is missing, the game will crash. This does not affect the ordering of mod loading! To specify ordering as well as requirement, have a coupled entry in dependencies.
dependencies [string] [] A list of modids. All of the listed mods will load before this one. If one is not present, nothing happens.
dependants [string] [] A list of modids. All of the listed mods will load after this one. If one is not present, nothing happens.

A good example mcmod.info that uses many of these properties is BuildCraft.

The Mod File

Generally, we’ll start with a file named after your mod, and put into your package. This is the entry point to your mod and will contain some special indicators marking it as such.

What is @Mod?

This is an annotation indicating to the Forge Mod Loader that the class is a Mod entry point. It contains various metadata about the mod. It also designates the class that will receive @EventHandler events. More information can be found at… (Coming Soon)

You can find an example mod in the Forge src download.

Keeping Your Code Clean Using Sub-packages

Rather than clutter up a single class and package with everything, it is recommended you break your mod into subpackages.

A common subpackage strategy has packages for common and client code, which is code that can be run on server/client and client, respectively. Inside the common package would go things like Items, Blocks, and Tile Entities (which can each in turn be another subpackage). Things like GUIs and Renderers would go inside the client package.

Note

This package style is only a suggestion, though it is a commonly used style. Feel free to use your own packaging system.

By keeping your code in clean subpackages, you can grow your mod much more organically.

Class Naming Schemes

A common class naming scheme allows easier deciphering of what a class is, and also makes it easier for someone developing with your mod to find things.

For Example:

  • An Item called PowerRing would be in an item package, with a class name of ItemPowerRing.
  • A Block called NotDirt would be in a block package, with a class name of BlockNotDirt.
  • Finally, a TileEntity for a block called SuperChewer would be a tile or tileentity package, with a class name of TileSuperChewer.

Prepending your class names with what kind of object they are makes it easier to figure out what a class is, or guess the class for an object.