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
FieldsModifier and TypeFieldDescriptionprivate DataGeneratorprivate static com.google.gson.Gsonprivate Stringprivate booleanprivate Map<String,Tuple<GlobalLootModifierSerializer<?>,com.google.gson.JsonObject>>Fields inherited from interface net.minecraft.data.DataProvider
SHA1 -
Constructor Summary
Constructors -
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 voidSets the "replace" key in global_loot_modifiers to true.voidprotected abstract voidstart()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<?>,com.google.gson.JsonObject>> toSerialize -
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:
runin 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:
getNamein interfaceDataProvider
-