2019-07-28 10:08:49 +02:00
|
|
|
package com.simibubi.create;
|
|
|
|
|
|
|
|
import java.util.function.Supplier;
|
|
|
|
|
2019-08-22 15:52:15 +02:00
|
|
|
import com.simibubi.create.modules.contraptions.base.ProcessingRecipeSerializer;
|
|
|
|
import com.simibubi.create.modules.contraptions.receivers.CrushingRecipe;
|
2019-07-28 10:08:49 +02:00
|
|
|
import com.simibubi.create.modules.curiosities.placementHandgun.BuilderGunUpgradeRecipe;
|
|
|
|
|
2019-08-22 15:52:15 +02:00
|
|
|
import net.minecraft.inventory.IInventory;
|
|
|
|
import net.minecraft.item.crafting.IRecipe;
|
2019-07-28 10:08:49 +02:00
|
|
|
import net.minecraft.item.crafting.IRecipeSerializer;
|
2019-08-22 15:52:15 +02:00
|
|
|
import net.minecraft.item.crafting.IRecipeType;
|
2019-07-28 10:08:49 +02:00
|
|
|
import net.minecraft.util.ResourceLocation;
|
2019-08-22 15:52:15 +02:00
|
|
|
import net.minecraft.util.registry.Registry;
|
2019-07-28 10:08:49 +02:00
|
|
|
import net.minecraftforge.event.RegistryEvent;
|
|
|
|
|
|
|
|
public enum AllRecipes {
|
|
|
|
|
2019-08-22 15:52:15 +02:00
|
|
|
Placement_Handgun_Upgrade(BuilderGunUpgradeRecipe.Serializer::new, IRecipeType.CRAFTING),
|
|
|
|
|
|
|
|
Crushing(() -> {
|
|
|
|
return new ProcessingRecipeSerializer<>(CrushingRecipe::new);
|
|
|
|
}, Types.CRUSHING),
|
|
|
|
|
2019-08-06 19:00:51 +02:00
|
|
|
;
|
2019-07-28 10:08:49 +02:00
|
|
|
|
2019-08-22 15:52:15 +02:00
|
|
|
public static class Types {
|
|
|
|
public static IRecipeType<CrushingRecipe> CRUSHING = register("crushing");
|
|
|
|
|
|
|
|
static <T extends IRecipe<?>> IRecipeType<T> register(final String key) {
|
|
|
|
return Registry.register(Registry.RECIPE_TYPE, new ResourceLocation(key), new IRecipeType<T>() {
|
|
|
|
public String toString() {
|
|
|
|
return key;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-07-28 10:08:49 +02:00
|
|
|
public IRecipeSerializer<?> serializer;
|
|
|
|
public Supplier<IRecipeSerializer<?>> supplier;
|
2019-08-22 15:52:15 +02:00
|
|
|
public IRecipeType<? extends IRecipe<? extends IInventory>> type;
|
2019-07-28 10:08:49 +02:00
|
|
|
|
2019-08-22 15:52:15 +02:00
|
|
|
private AllRecipes(Supplier<IRecipeSerializer<?>> supplier,
|
|
|
|
IRecipeType<? extends IRecipe<? extends IInventory>> type) {
|
2019-07-28 10:08:49 +02:00
|
|
|
this.supplier = supplier;
|
2019-08-22 15:52:15 +02:00
|
|
|
this.type = type;
|
2019-07-28 10:08:49 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public static void register(RegistryEvent.Register<IRecipeSerializer<?>> event) {
|
|
|
|
for (AllRecipes r : AllRecipes.values()) {
|
|
|
|
r.serializer = r.supplier.get();
|
|
|
|
ResourceLocation location = new ResourceLocation(Create.ID, r.name().toLowerCase());
|
|
|
|
event.getRegistry().register(r.serializer.setRegistryName(location));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|