filename:
common/src/main/java/rearth/oritech/init/compat/rei/OritechDisplay.java
branch:
1.21
back to repo
package rearth.oritech.init.compat.rei;
import me.shedaniel.rei.api.common.category.CategoryIdentifier;
import me.shedaniel.rei.api.common.display.Display;
import me.shedaniel.rei.api.common.entry.EntryIngredient;
import me.shedaniel.rei.api.common.util.CollectionUtils;
import me.shedaniel.rei.api.common.util.EntryIngredients;
import net.minecraft.recipe.RecipeEntry;
import rearth.oritech.init.recipes.OritechRecipe;
import java.util.List;
// holds the recipe data, which is then utilized by the different categories
public class OritechDisplay implements Display {
public final RecipeEntry<OritechRecipe> entry;
public OritechDisplay(RecipeEntry<OritechRecipe> entry) {
this.entry = entry;
}
@Override
public List<EntryIngredient> getInputEntries() {
return CollectionUtils.map(entry.value().getInputs(), EntryIngredients::ofIngredient);
}
@Override
public List<EntryIngredient> getOutputEntries() {
return CollectionUtils.map(entry.value().getResults(), EntryIngredients::of);
}
@Override
public CategoryIdentifier<?> getCategoryIdentifier() {
return CategoryIdentifier.of(entry.value().getOriType().getIdentifier());
}
public RecipeEntry<OritechRecipe> getEntry() {
return entry;
}
}