Access Transformers
Access Transformers (ATs for short) allow for widening the visibility and modifying the final
flags of classes, methods, and fields. They allow modders to access and modify otherwise inaccessible members in classes outside their control.
The specification document can be viewed on the NeoForged GitHub.
Adding ATs
Adding an Access Transformer to your mod project is as simple as adding a single line into your build.gradle
:
// This block is where your mappings version is also specified
minecraft {
accessTransformer = file('src/main/resources/META-INF/accesstransformer.cfg')
}
After adding or modifying the Access Transformer, the gradle project must be refreshed for the transformations to take effect.
During development, the AT file can be anywhere specified by the line above. However, when loading in a non-development environment, Forge will only search for the exact path of META-INF/accesstransformer.cfg
in your JAR file.
Comments
All text after a #
until the end of the line will be treated as a comment and will not be parsed.
Access Modifiers
Access modifiers specify to what new member visibility the given target will be transformed to. In decreasing order of visibility:
public
- visible to all classes inside and outside its packageprotected
- visible only to classes inside the package and subclassesdefault
- visible only to classes inside the packageprivate
- visible only to inside the class
A special modifier +f
and -f
can be appended to the aforementioned modifiers to either add or remove respectively the final
modifier, which prevents subclassing, method overriding, or field modification when applied.
Directives only modify the method they directly reference; any overriding methods will not be access-transformed. It is advised to ensure transformed methods do not have non-transformed overrides that restrict the visibility, which will result in the JVM throwing an error.
Examples of methods that can be safely transformed are private
methods, final
methods (or methods in final
classes), and static
methods.
Targets and Directives
When using Access Transformers on Minecraft classes, the SRG name must be used for fields and methods.
Classes
To target classes:
<access modifier> <fully qualified class name>
Inner classes are denoted by combining the fully qualified name of the outer class and the name of the inner class with a $
as separator.
Fields
To target fields:
<access modifier> <fully qualified class name> <field name>
Methods
Targeting methods require a special syntax to denote the method parameters and return type:
<access modifier> <fully qualified class name> <method name>(<parameter types>)<return type>
Specifying Types
Also called "descriptors": see the Java Virtual Machine Specification, SE 8, sections 4.3.2 and 4.3.3 for more technical details.
B
-byte
, a signed byteC
-char
, a Unicode character code point in UTF-16D
-double
, a double-precision floating-point valueF
-float
, a single-precision floating-point valueI
-integer
, a 32-bit integerJ
-long
, a 64-bit integerS
-short
, a signed shortZ
-boolean
, atrue
orfalse
value[
- references one dimension of an array- Example:
[[S
refers toshort[][]
- Example:
L<class name>;
- references a reference type- Example:
Ljava/lang/String;
refers tojava.lang.String
reference type (note the use of slashes instead of periods)
- Example:
(
- references a method descriptor, parameters should be supplied here or nothing if no parameters are present- Example:
<method>(I)Z
refers to a method that requires an integer argument and returns a boolean V
- indicates a method returns no value, can only be used at the end of a method descriptor- Example:
<method>()V
refers to a method that has no arguments and returns nothing
- Example:
Examples
# Makes public the ByteArrayToKeyFunction interface in Crypt
public net.minecraft.util.Crypt$ByteArrayToKeyFunction
# Makes protected and removes the final modifier from 'random' in MinecraftServer
protected-f net.minecraft.server.MinecraftServer f_129758_ #random
# Makes public the 'makeExecutor' method in Util,
# accepting a String and returns an ExecutorService
public net.minecraft.Util m_137477_(Ljava/lang/String;)Ljava/util/concurrent/ExecutorService; #makeExecutor
# Makes public the 'leastMostToIntArray' method in UUIDUtil,
# accepting two longs and returning an int[]
public net.minecraft.core.UUIDUtil m_235872_(JJ)[I #leastMostToIntArray