NaturesAura/src/main/java/de/ellpeck/naturesaura/recipes/ModRecipes.java

172 lines
8.8 KiB
Java
Raw Normal View History

2018-10-16 01:36:30 +02:00
package de.ellpeck.naturesaura.recipes;
2020-04-29 16:38:50 +02:00
import com.google.gson.JsonObject;
2020-09-22 03:17:02 +02:00
import com.mojang.serialization.Dynamic;
import com.mojang.serialization.JsonOps;
2018-10-22 00:14:52 +02:00
import de.ellpeck.naturesaura.NaturesAura;
import de.ellpeck.naturesaura.api.NaturesAuraAPI;
2020-10-24 15:58:38 +02:00
import de.ellpeck.naturesaura.api.misc.WeatherType;
2020-04-29 16:38:50 +02:00
import de.ellpeck.naturesaura.api.misc.WeightedOre;
2020-01-22 20:31:09 +01:00
import net.minecraft.block.Blocks;
import net.minecraft.client.resources.ReloadListener;
2020-01-24 17:05:41 +01:00
import net.minecraft.entity.EntityType;
2018-10-16 01:36:30 +02:00
import net.minecraft.item.ItemStack;
2020-10-24 15:58:38 +02:00
import net.minecraft.item.Items;
2020-04-29 16:38:50 +02:00
import net.minecraft.item.crafting.IRecipe;
import net.minecraft.item.crafting.IRecipeSerializer;
import net.minecraft.item.crafting.IRecipeType;
import net.minecraft.nbt.CompoundNBT;
import net.minecraft.nbt.INBT;
import net.minecraft.nbt.NBTDynamicOps;
2018-10-22 00:14:52 +02:00
import net.minecraft.util.ResourceLocation;
2020-04-29 16:38:50 +02:00
import net.minecraft.util.registry.Registry;
2020-01-23 22:40:03 +01:00
import net.minecraftforge.common.Tags;
2020-04-29 16:38:50 +02:00
import net.minecraftforge.event.RegistryEvent;
import net.minecraftforge.registries.IForgeRegistry;
import java.util.Arrays;
2020-04-29 00:24:07 +02:00
import java.util.List;
2020-04-29 16:38:50 +02:00
public final class ModRecipes {
2018-10-16 01:36:30 +02:00
2020-04-29 16:38:50 +02:00
public static final IRecipeType<AltarRecipe> ALTAR_TYPE = new RecipeType<>();
public static final IRecipeSerializer<AltarRecipe> ALTAR_SERIAIZER = new AltarRecipe.Serializer();
2020-04-29 16:38:50 +02:00
public static final IRecipeType<AnimalSpawnerRecipe> ANIMAL_SPAWNER_TYPE = new RecipeType<>();
public static final IRecipeSerializer<AnimalSpawnerRecipe> ANIMAL_SPAWNER_SERIALIZER = new AnimalSpawnerRecipe.Serializer();
2018-10-18 13:34:37 +02:00
2020-04-29 16:38:50 +02:00
public static final IRecipeType<OfferingRecipe> OFFERING_TYPE = new RecipeType<>();
public static final IRecipeSerializer<OfferingRecipe> OFFERING_SERIALIZER = new OfferingRecipe.Serializer();
2018-10-31 01:17:58 +01:00
2020-04-29 16:38:50 +02:00
public static final IRecipeType<TreeRitualRecipe> TREE_RITUAL_TYPE = new RecipeType<>();
public static final IRecipeSerializer<TreeRitualRecipe> TREE_RITUAL_SERIALIZER = new TreeRitualRecipe.Serializer();
2018-11-20 19:59:18 +01:00
2020-04-29 16:38:50 +02:00
public static void register(IForgeRegistry<IRecipeSerializer<?>> registry) {
register(registry, "altar", ALTAR_TYPE, ALTAR_SERIAIZER);
register(registry, "animal_spawner", ANIMAL_SPAWNER_TYPE, ANIMAL_SPAWNER_SERIALIZER);
register(registry, "offering", OFFERING_TYPE, OFFERING_SERIALIZER);
register(registry, "tree_ritual", TREE_RITUAL_TYPE, TREE_RITUAL_SERIALIZER);
}
2018-11-20 19:59:18 +01:00
2020-04-29 16:38:50 +02:00
public static void init() {
2018-11-20 19:59:18 +01:00
NaturesAuraAPI.BOTANIST_PICKAXE_CONVERSIONS.put(
Blocks.COBBLESTONE.getDefaultState(),
Blocks.MOSSY_COBBLESTONE.getDefaultState());
NaturesAuraAPI.BOTANIST_PICKAXE_CONVERSIONS.put(
2020-01-22 20:31:09 +01:00
Blocks.STONE_BRICKS.getDefaultState(),
Blocks.MOSSY_STONE_BRICKS.getDefaultState());
2019-02-01 17:42:59 +01:00
NaturesAuraAPI.BOTANIST_PICKAXE_CONVERSIONS.put(
2020-01-22 20:31:09 +01:00
Blocks.COBBLESTONE_WALL.getDefaultState(),
Blocks.MOSSY_COBBLESTONE_WALL.getDefaultState());
NaturesAuraAPI.BOTANIST_PICKAXE_CONVERSIONS.put(
Blocks.STONE_BRICK_WALL.getDefaultState(),
Blocks.MOSSY_STONE_BRICK_WALL.getDefaultState());
2018-11-20 19:59:18 +01:00
2020-04-29 16:38:50 +02:00
ore(NaturesAuraAPI.OVERWORLD_ORES, "ores/coal", 5000);
ore(NaturesAuraAPI.NETHER_ORES, "ores/nether/coal", 5000);
2020-04-29 16:38:50 +02:00
ore(NaturesAuraAPI.OVERWORLD_ORES, "ores/iron", 3000);
ore(NaturesAuraAPI.NETHER_ORES, "ores/nether/iron", 3000);
2020-04-29 16:38:50 +02:00
ore(NaturesAuraAPI.OVERWORLD_ORES, "ores/gold", 500);
ore(NaturesAuraAPI.NETHER_ORES, "ores/nether/gold", 500);
2020-04-29 16:38:50 +02:00
ore(NaturesAuraAPI.OVERWORLD_ORES, "ores/diamond", 50);
ore(NaturesAuraAPI.NETHER_ORES, "ores/nether/diamond", 50);
2020-04-29 16:38:50 +02:00
ore(NaturesAuraAPI.OVERWORLD_ORES, "ores/lapis", 250);
ore(NaturesAuraAPI.NETHER_ORES, "ores/nether/lapis", 250);
2020-04-29 16:38:50 +02:00
ore(NaturesAuraAPI.OVERWORLD_ORES, "ores/redstone", 200);
ore(NaturesAuraAPI.NETHER_ORES, "ores/nether/redstone", 200);
2020-04-29 16:38:50 +02:00
ore(NaturesAuraAPI.OVERWORLD_ORES, "ores/emerald", 30);
ore(NaturesAuraAPI.NETHER_ORES, "ores/nether/emerald", 30);
ore(NaturesAuraAPI.NETHER_ORES, "ores/quartz", 8000);
ore(NaturesAuraAPI.NETHER_ORES, "ores/netherite_scrap", 30);
2020-04-29 16:38:50 +02:00
ore(NaturesAuraAPI.OVERWORLD_ORES, "ores/copper", 2000);
ore(NaturesAuraAPI.NETHER_ORES, "ores/nether/copper", 2000);
ore(NaturesAuraAPI.OVERWORLD_ORES, "ores/tin", 1800);
ore(NaturesAuraAPI.NETHER_ORES, "ores/nether/tin", 1800);
ore(NaturesAuraAPI.OVERWORLD_ORES, "ores/lead", 1500);
ore(NaturesAuraAPI.NETHER_ORES, "ores/nether/lead", 1500);
ore(NaturesAuraAPI.OVERWORLD_ORES, "ores/silver", 1000);
ore(NaturesAuraAPI.NETHER_ORES, "ores/nether/silver", 1000);
ore(NaturesAuraAPI.OVERWORLD_ORES, "ores/nickel", 100);
ore(NaturesAuraAPI.NETHER_ORES, "ores/nether/nickel", 100);
ore(NaturesAuraAPI.OVERWORLD_ORES, "ores/platinum", 20);
ore(NaturesAuraAPI.NETHER_ORES, "ores/nether/platinum", 20);
ore(NaturesAuraAPI.OVERWORLD_ORES, "ores/aluminum", 1200);
ore(NaturesAuraAPI.OVERWORLD_ORES, "ores/aluminium", 1200);
ore(NaturesAuraAPI.OVERWORLD_ORES, "ores/osmium", 1500);
ore(NaturesAuraAPI.OVERWORLD_ORES, "ores/zinc", 1000);
ore(NaturesAuraAPI.OVERWORLD_ORES, "ores/yellorite", 1200);
ore(NaturesAuraAPI.OVERWORLD_ORES, "ores/uranium", 400);
ore(NaturesAuraAPI.OVERWORLD_ORES, "ores/apatite", 700);
ore(NaturesAuraAPI.OVERWORLD_ORES, "ores/ruby", 40);
ore(NaturesAuraAPI.OVERWORLD_ORES, "ores/peridot", 40);
ore(NaturesAuraAPI.OVERWORLD_ORES, "ores/topaz", 40);
ore(NaturesAuraAPI.OVERWORLD_ORES, "ores/tanzanite", 40);
ore(NaturesAuraAPI.OVERWORLD_ORES, "ores/malachite", 40);
ore(NaturesAuraAPI.OVERWORLD_ORES, "ores/sapphire", 40);
ore(NaturesAuraAPI.OVERWORLD_ORES, "ores/amber", 150);
ore(NaturesAuraAPI.OVERWORLD_ORES, "ores/resonating", 50);
ore(NaturesAuraAPI.OVERWORLD_ORES, "ores/sulfur", 3000);
ore(NaturesAuraAPI.OVERWORLD_ORES, "ores/saltpeter", 250);
ore(NaturesAuraAPI.NETHER_ORES, "ores/firestone", 30);
ore(NaturesAuraAPI.OVERWORLD_ORES, "ores/salt", 2900);
ore(NaturesAuraAPI.OVERWORLD_ORES, "ores/draconium", 5);
ore(NaturesAuraAPI.NETHER_ORES, "ores/cobalt", 50);
ore(NaturesAuraAPI.NETHER_ORES, "ores/ardite", 50);
2019-03-12 19:34:59 +01:00
NaturesAuraAPI.PROJECTILE_GENERATIONS.put(EntityType.EGG, 10000);
NaturesAuraAPI.PROJECTILE_GENERATIONS.put(EntityType.SNOWBALL, 7000);
NaturesAuraAPI.PROJECTILE_GENERATIONS.put(EntityType.SMALL_FIREBALL, 35000);
NaturesAuraAPI.PROJECTILE_GENERATIONS.put(EntityType.ENDER_PEARL, 50000);
NaturesAuraAPI.PROJECTILE_GENERATIONS.put(EntityType.EXPERIENCE_BOTTLE, 200000);
NaturesAuraAPI.PROJECTILE_GENERATIONS.put(EntityType.ARROW, 30000);
NaturesAuraAPI.PROJECTILE_GENERATIONS.put(EntityType.SPECTRAL_ARROW, 40000);
NaturesAuraAPI.PROJECTILE_GENERATIONS.put(EntityType.SHULKER_BULLET, 300000);
NaturesAuraAPI.PROJECTILE_GENERATIONS.put(EntityType.LLAMA_SPIT, 100000);
2020-01-24 17:05:41 +01:00
NaturesAuraAPI.PROJECTILE_GENERATIONS.put(EntityType.TRIDENT, 3000000);
2020-10-24 15:58:38 +02:00
NaturesAuraAPI.WEATHER_CHANGER_CONVERSIONS.put(new ItemStack(Blocks.SUNFLOWER), WeatherType.SUN);
NaturesAuraAPI.WEATHER_CHANGER_CONVERSIONS.put(new ItemStack(Items.DARK_PRISMARINE), WeatherType.RAIN);
NaturesAuraAPI.WEATHER_CHANGER_CONVERSIONS.put(new ItemStack(Items.FIRE_CHARGE), WeatherType.THUNDERSTORM);
}
2020-04-29 16:38:50 +02:00
private static void ore(List<WeightedOre> list, String name, int weight) {
2020-04-29 00:24:07 +02:00
ResourceLocation res = new ResourceLocation("forge", name);
2020-04-29 16:38:50 +02:00
list.add(new WeightedOre(res, weight));
}
2020-04-29 16:38:50 +02:00
private static void register(IForgeRegistry<IRecipeSerializer<?>> registry, String name, IRecipeType<?> type, IRecipeSerializer<?> serializer) {
ResourceLocation res = new ResourceLocation(NaturesAura.MOD_ID, name);
Registry.register(Registry.RECIPE_TYPE, res, type);
registry.register(serializer.setRegistryName(res));
}
2020-04-29 16:38:50 +02:00
public static JsonObject serializeStack(ItemStack stack) {
CompoundNBT nbt = stack.write(new CompoundNBT());
byte c = nbt.getByte("Count");
if (c != 1) {
nbt.putByte("count", c);
}
nbt.remove("Count");
renameTag(nbt, "id", "item");
renameTag(nbt, "tag", "nbt");
Dynamic<INBT> dyn = new Dynamic<>(NBTDynamicOps.INSTANCE, nbt);
return dyn.convert(JsonOps.INSTANCE).getValue().getAsJsonObject();
}
2020-04-29 16:38:50 +02:00
private static void renameTag(CompoundNBT nbt, String oldName, String newName) {
INBT tag = nbt.get(oldName);
if (tag != null) {
nbt.remove(oldName);
nbt.put(newName, tag);
}
}
2020-04-29 16:38:50 +02:00
private static class RecipeType<T extends IRecipe<?>> implements IRecipeType<T> {
@Override
public String toString() {
return Registry.RECIPE_TYPE.getKey(this).toString();
}
}
2018-10-16 01:36:30 +02:00
}