Package net.minecraftforge.common.data
Class GlobalLootModifierProvider
java.lang.Object
net.minecraftforge.common.data.GlobalLootModifierProvider
- All Implemented Interfaces:
DataProvider
- Direct Known Subclasses:
GlobalLootModifiersTest.DataProvider
Provider for forge's GlobalLootModifier system. See
LootModifier
and GlobalLootModifierSerializer
.
This provider only requires implementing start()
and calling add(java.lang.String, net.minecraftforge.common.loot.GlobalLootModifierSerializer<T>, T)
from it.-
Field Summary
Modifier and TypeFieldDescriptionprivate final DataGenerator
private static final com.google.gson.Gson
private final String
private boolean
private final Map<String,
Tuple<GlobalLootModifierSerializer<?>, com.google.gson.JsonObject>> Fields inherited from interface net.minecraft.data.DataProvider
SHA1
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescription<T extends IGlobalLootModifier>
voidadd
(String modifier, GlobalLootModifierSerializer<T> serializer, T instance) Passes in the data needed to create the file without any extra objects.getName()
protected void
Sets the "replace" key in global_loot_modifiers to true.void
protected abstract void
start()
Calladd(java.lang.String, net.minecraftforge.common.loot.GlobalLootModifierSerializer<T>, T)
here, which will pass in the necessary information to write the jsons.
-
Field Details
-
GSON
private static final com.google.gson.Gson GSON -
gen
-
modid
-
toSerialize
private final Map<String,Tuple<GlobalLootModifierSerializer<?>, toSerializecom.google.gson.JsonObject>> -
replace
private boolean replace
-
-
Constructor Details
-
GlobalLootModifierProvider
-
-
Method Details
-
replacing
protected void replacing()Sets the "replace" key in global_loot_modifiers to true. -
start
protected abstract void start()Calladd(java.lang.String, net.minecraftforge.common.loot.GlobalLootModifierSerializer<T>, T)
here, which will pass in the necessary information to write the jsons. -
run
- Specified by:
run
in interfaceDataProvider
- Throws:
IOException
-
add
public <T extends IGlobalLootModifier> void add(String modifier, GlobalLootModifierSerializer<T> serializer, T instance) Passes in the data needed to create the file without any extra objects.- Parameters:
modifier
- The name of the modifier, which will be the file name.serializer
- The serializer of this modifier.
-
getName
- Specified by:
getName
in interfaceDataProvider
-