98 lines
3.9 KiB
Java
98 lines
3.9 KiB
Java
/*
|
|
* Ex Deorum
|
|
* Copyright (c) 2024 thedarkcolour
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
package thedarkcolour.exdeorum.compat;
|
|
|
|
import it.unimi.dsi.fastutil.objects.ObjectArrayList;
|
|
import net.minecraft.core.component.DataComponents;
|
|
import net.minecraft.network.chat.Component;
|
|
import net.minecraft.world.item.Item;
|
|
import net.minecraft.world.item.ItemStack;
|
|
import net.minecraft.world.item.TooltipFlag;
|
|
import net.minecraft.world.item.crafting.Recipe;
|
|
import net.minecraft.world.item.crafting.RecipeHolder;
|
|
import net.minecraft.world.item.crafting.RecipeInput;
|
|
import net.minecraft.world.item.crafting.RecipeType;
|
|
import net.minecraft.world.item.enchantment.ItemEnchantments;
|
|
import net.minecraft.world.level.ItemLike;
|
|
import net.minecraft.world.level.Level;
|
|
import net.neoforged.fml.ModList;
|
|
import thedarkcolour.exdeorum.material.DefaultMaterials;
|
|
import thedarkcolour.exdeorum.material.MaterialRegistry;
|
|
import thedarkcolour.exdeorum.recipe.RecipeUtil;
|
|
import thedarkcolour.exdeorum.registry.EItems;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
import java.util.function.Consumer;
|
|
import java.util.function.Function;
|
|
|
|
public class CompatUtil {
|
|
public static List<ItemLike> getAvailableBarrels(boolean registered) {
|
|
return getAvailableMaterials(DefaultMaterials.BARRELS, registered);
|
|
}
|
|
|
|
public static List<ItemLike> getAvailableSieves(boolean registered, boolean includeMechanical) {
|
|
List<ItemLike> sieves = getAvailableMaterials(DefaultMaterials.SIEVES, registered);
|
|
if (includeMechanical) {
|
|
sieves.add(EItems.MECHANICAL_SIEVE.get());
|
|
}
|
|
return sieves;
|
|
}
|
|
|
|
public static List<ItemLike> getAvailableLavaCrucibles(boolean registered) {
|
|
return getAvailableMaterials(DefaultMaterials.LAVA_CRUCIBLES, registered);
|
|
}
|
|
|
|
public static List<ItemLike> getAvailableWaterCrucibles(boolean registered) {
|
|
return getAvailableMaterials(DefaultMaterials.WATER_CRUCIBLES, registered);
|
|
}
|
|
|
|
public static List<ItemLike> getAvailableCompressedSieves(boolean registered) {
|
|
return getAvailableMaterials(DefaultMaterials.COMPRESSED_SIEVES, registered);
|
|
}
|
|
|
|
private static List<ItemLike> getAvailableMaterials(MaterialRegistry<?> registry, boolean registered) {
|
|
List<ItemLike> materials = new ArrayList<>();
|
|
|
|
for (var material : registry) {
|
|
if (registered == ModList.get().isLoaded(material.requiredModId)) {
|
|
materials.add(material);
|
|
}
|
|
}
|
|
|
|
return materials;
|
|
}
|
|
|
|
public static <C extends RecipeInput, R extends Recipe<C>, T> List<T> collectAllRecipes(RecipeType<R> recipeType, Function<R, T> mapper) {
|
|
var byType = RecipeUtil.getRecipeMap().byType(recipeType);
|
|
List<T> recipes = new ObjectArrayList<>(byType.size());
|
|
for (RecipeHolder<R> value : byType) {
|
|
recipes.add(mapper.apply(value.value()));
|
|
}
|
|
return recipes;
|
|
}
|
|
|
|
public static void addEnchantmentsTooltip(ItemStack mesh, Level level, Consumer<Component> aggregator) {
|
|
var enchantments = mesh.getOrDefault(DataComponents.ENCHANTMENTS, ItemEnchantments.EMPTY);
|
|
if (!enchantments.isEmpty()) {
|
|
enchantments.addToTooltip(Item.TooltipContext.of(level), aggregator, TooltipFlag.NORMAL, mesh);
|
|
}
|
|
}
|
|
}
|