From 8dae42d04a63d50c610485e966e62e7a15c9aa11 Mon Sep 17 00:00:00 2001 From: shedaniel Date: Thu, 19 Mar 2020 22:23:52 +0800 Subject: [PATCH] Update REI to v4.1-unstable (#2063) --- build.gradle | 2 +- .../compat/rei/MachineRecipeCategory.java | 86 +++++++++---------- .../java/techreborn/compat/rei/ReiPlugin.java | 5 -- .../FluidGeneratorRecipeCategory.java | 28 +++--- .../FluidReplicatorRecipeCategory.java | 30 +++---- 5 files changed, 69 insertions(+), 82 deletions(-) diff --git a/build.gradle b/build.gradle index 513a4b54c..20a27eefc 100644 --- a/build.gradle +++ b/build.gradle @@ -72,7 +72,7 @@ dependencies { //Fabric api modImplementation "net.fabricmc.fabric-api:fabric-api:0.5.5+build.311-1.16" - optionalDependency ("me.shedaniel:RoughlyEnoughItems:4.0.12-unstable") + optionalDependency ("me.shedaniel:RoughlyEnoughItems:4.1.1-unstable") optionalDependency ('io.github.cottonmc:LibCD:2.3.0+1.15.2') def rcVersion = 'RebornCore:RebornCore-1.16:+' diff --git a/src/main/java/techreborn/compat/rei/MachineRecipeCategory.java b/src/main/java/techreborn/compat/rei/MachineRecipeCategory.java index d074ace89..25716d30d 100644 --- a/src/main/java/techreborn/compat/rei/MachineRecipeCategory.java +++ b/src/main/java/techreborn/compat/rei/MachineRecipeCategory.java @@ -24,14 +24,15 @@ package techreborn.compat.rei; -import me.shedaniel.math.api.Point; -import me.shedaniel.math.api.Rectangle; +import me.shedaniel.math.Point; +import me.shedaniel.math.Rectangle; import me.shedaniel.rei.api.EntryStack; import me.shedaniel.rei.api.RecipeCategory; +import me.shedaniel.rei.api.widgets.Label; +import me.shedaniel.rei.api.widgets.Widgets; import me.shedaniel.rei.gui.entries.RecipeEntry; import me.shedaniel.rei.gui.entries.SimpleRecipeEntry; -import me.shedaniel.rei.gui.widget.*; -import me.shedaniel.rei.impl.ScreenHelper; +import me.shedaniel.rei.gui.widget.Widget; import net.minecraft.item.Items; import net.minecraft.text.Text; import net.minecraft.text.TranslatableText; @@ -43,32 +44,31 @@ import reborncore.common.util.StringUtils; import java.util.Collections; import java.util.LinkedList; import java.util.List; -import java.util.function.Supplier; public class MachineRecipeCategory implements RecipeCategory> { - + private final RebornRecipeType rebornRecipeType; private int recipeLines; - + MachineRecipeCategory(RebornRecipeType rebornRecipeType) { - this(rebornRecipeType, 2); + this(rebornRecipeType, 2); } - - MachineRecipeCategory(RebornRecipeType rebornRecipeType, int lines) { - this.rebornRecipeType = rebornRecipeType; - this.recipeLines = lines; - } - + + MachineRecipeCategory(RebornRecipeType rebornRecipeType, int lines) { + this.rebornRecipeType = rebornRecipeType; + this.recipeLines = lines; + } + @Override public Identifier getIdentifier() { return rebornRecipeType.getName(); } - + @Override public String getCategoryName() { return StringUtils.t(rebornRecipeType.getName().toString()); } - + @Override public EntryStack getLogo() { return EntryStack.create(ReiPlugin.iconMap.getOrDefault(rebornRecipeType, () -> Items.DIAMOND_SHOVEL)); @@ -80,55 +80,51 @@ public class MachineRecipeCategory implements RecipeCate } @Override - public List setupDisplay(Supplier> recipeDisplaySupplier, Rectangle bounds) { - MachineRecipeDisplay machineRecipe = recipeDisplaySupplier.get(); - - Point startPoint = new Point( bounds.getCenterX() - 41, bounds.getCenterY() - recipeLines*12 -1); - - List widgets = new LinkedList<>(); - widgets.add(new RecipeBaseWidget(bounds)); - widgets.add(RecipeArrowWidget.create(new Point(startPoint.x + 24, startPoint.y + 1), true).time(machineRecipe.getTime() * 50.0)); - + public List setupDisplay(MachineRecipeDisplay machineRecipe, Rectangle bounds) { + Point startPoint = new Point(bounds.getCenterX() - 41, bounds.getCenterY() - recipeLines * 12 - 1); + + List widgets = new LinkedList<>(); + widgets.add(Widgets.createRecipeBase(bounds)); + widgets.add(Widgets.createArrow(new Point(startPoint.x + 26, startPoint.y + 1)).animationDurationTicks(machineRecipe.getTime())); + int i = 0; - for (List inputs : machineRecipe.getInputEntries()){ - widgets.add(EntryWidget.create(startPoint.x + 1, startPoint.y + 1 + (i++ * 20)).entries(inputs).markIsInput()); + for (List inputs : machineRecipe.getInputEntries()) { + widgets.add(Widgets.createSlot(new Point(startPoint.x + 1, startPoint.y + 1 + (i++ * 20))).entries(inputs).markInput()); } Text energyPerTick = new TranslatableText("techreborn.jei.recipe.running.cost", "E", machineRecipe.getEnergy()); - LabelWidget costLabel; - widgets.add(costLabel = LabelWidget.create(new Point(startPoint.x + 1, startPoint.y + 1 + (i++ * 20)), energyPerTick.asFormattedString())); - costLabel.setHasShadows(false); - costLabel.setDefaultColor(ScreenHelper.isDarkModeEnabled() ? 0xFFBBBBBB : 0xFF404040); - + Label costLabel; + widgets.add(costLabel = Widgets.createLabel(new Point(startPoint.x + 1, startPoint.y + 1 + (i++ * 20)), energyPerTick.asFormattedString())); + costLabel.shadow(false); + costLabel.color(0xFF404040, 0xFFBBBBBB); + i = 0; - for (EntryStack outputs : machineRecipe.getOutputEntries()){ - widgets.add(EntryWidget.create(startPoint.x + 61, startPoint.y + 1 + (i++ * 20)).entry(outputs).markIsOutput()); + for (EntryStack outputs : machineRecipe.getOutputEntries()) { + widgets.add(Widgets.createSlot(new Point(startPoint.x + 61, startPoint.y + 1 + (i++ * 20))).entry(outputs).markInput()); } int heat = machineRecipe.getHeat(); if (heat > 0) { String neededHeat = heat + " " + StringUtils.t("techreborn.jei.recipe.heat"); - LabelWidget heatLabel; - widgets.add(heatLabel = LabelWidget.create(new Point(startPoint.x + 61, startPoint.y + 1 + (i++ * 20)), neededHeat)); - heatLabel.setHasShadows(false); - heatLabel.setDefaultColor(ScreenHelper.isDarkModeEnabled() ? 0xFFBBBBBB : 0xFF404040); + Label heatLabel; + widgets.add(heatLabel = Widgets.createLabel(new Point(startPoint.x + 61, startPoint.y + 1 + (i++ * 20)), neededHeat)); + heatLabel.shadow(false); + heatLabel.color(0xFF404040, 0xFFBBBBBB); } - + return widgets; } - + @Override public int getDisplayHeight() { if (recipeLines == 1) { return 37; - } - else if (recipeLines == 3) { + } else if (recipeLines == 3) { return 80; - } - else if (recipeLines == 4) { + } else if (recipeLines == 4) { return 105; } return 60; } - + } diff --git a/src/main/java/techreborn/compat/rei/ReiPlugin.java b/src/main/java/techreborn/compat/rei/ReiPlugin.java index 3cc20cacb..070a28cc3 100644 --- a/src/main/java/techreborn/compat/rei/ReiPlugin.java +++ b/src/main/java/techreborn/compat/rei/ReiPlugin.java @@ -91,11 +91,6 @@ public class ReiPlugin implements REIPluginV0 { return PLUGIN; } - @Override - public SemanticVersion getMinimumVersion() throws VersionParsingException { - return SemanticVersion.parse("3.2.5"); - } - @Override public void registerPluginCategories(RecipeHelper recipeHelper) { recipeHelper.registerCategory(new MachineRecipeCategory<>(ModRecipes.ALLOY_SMELTER)); diff --git a/src/main/java/techreborn/compat/rei/fluidgenerator/FluidGeneratorRecipeCategory.java b/src/main/java/techreborn/compat/rei/fluidgenerator/FluidGeneratorRecipeCategory.java index 5abea7d1d..e0669945c 100644 --- a/src/main/java/techreborn/compat/rei/fluidgenerator/FluidGeneratorRecipeCategory.java +++ b/src/main/java/techreborn/compat/rei/fluidgenerator/FluidGeneratorRecipeCategory.java @@ -24,12 +24,13 @@ package techreborn.compat.rei.fluidgenerator; -import me.shedaniel.math.api.Point; -import me.shedaniel.math.api.Rectangle; +import me.shedaniel.math.Point; +import me.shedaniel.math.Rectangle; import me.shedaniel.rei.api.EntryStack; import me.shedaniel.rei.api.RecipeCategory; -import me.shedaniel.rei.gui.widget.*; -import me.shedaniel.rei.impl.ScreenHelper; +import me.shedaniel.rei.api.widgets.Label; +import me.shedaniel.rei.api.widgets.Widgets; +import me.shedaniel.rei.gui.widget.Widget; import net.minecraft.text.Text; import net.minecraft.text.TranslatableText; import net.minecraft.util.Identifier; @@ -39,7 +40,6 @@ import techreborn.init.TRContent; import java.util.LinkedList; import java.util.List; -import java.util.function.Supplier; public class FluidGeneratorRecipeCategory implements RecipeCategory { @@ -67,24 +67,22 @@ public class FluidGeneratorRecipeCategory implements RecipeCategory setupDisplay(Supplier recipeDisplaySupplier, Rectangle bounds) { - FluidGeneratorRecipeDisplay machineRecipe = recipeDisplaySupplier.get(); - + public List setupDisplay(FluidGeneratorRecipeDisplay machineRecipe, Rectangle bounds) { Point startPoint = new Point(bounds.getCenterX() - 41, bounds.getCenterY() - 13); List widgets = new LinkedList<>(); - widgets.add(new RecipeBaseWidget(bounds)); - widgets.add(RecipeArrowWidget.create(new Point(startPoint.x + 24, startPoint.y + 1), true).time(1000.0)); + widgets.add(Widgets.createRecipeBase(bounds)); + widgets.add(Widgets.createArrow(new Point(startPoint.x + 26, startPoint.y + 1)).animationDurationMS(1000.0)); for (List inputs : machineRecipe.getInputEntries()) { - widgets.add(EntryWidget.create(startPoint.x + 1, startPoint.y + 1).entries(inputs).markIsInput()); + widgets.add(Widgets.createSlot(new Point(startPoint.x + 1, startPoint.y + 1)).entries(inputs).markInput()); } Text energyPerTick = new TranslatableText("techreborn.jei.recipe.generator.total", machineRecipe.getTotalEnergy()); - LabelWidget costLabel; - widgets.add(costLabel = LabelWidget.create(new Point(bounds.getCenterX(), startPoint.y + 20), energyPerTick.asFormattedString())); - costLabel.setHasShadows(false); - costLabel.setDefaultColor(ScreenHelper.isDarkModeEnabled() ? 0xFFBBBBBB : 0xFF404040); + Label costLabel; + widgets.add(costLabel = Widgets.createLabel(new Point(bounds.getCenterX(), startPoint.y + 20), energyPerTick.asFormattedString())); + costLabel.shadow(false); + costLabel.color(0xFF404040, 0xFFBBBBBB); return widgets; } diff --git a/src/main/java/techreborn/compat/rei/fluidreplicator/FluidReplicatorRecipeCategory.java b/src/main/java/techreborn/compat/rei/fluidreplicator/FluidReplicatorRecipeCategory.java index e7163a8f3..765dbd2f3 100644 --- a/src/main/java/techreborn/compat/rei/fluidreplicator/FluidReplicatorRecipeCategory.java +++ b/src/main/java/techreborn/compat/rei/fluidreplicator/FluidReplicatorRecipeCategory.java @@ -24,12 +24,13 @@ package techreborn.compat.rei.fluidreplicator; -import me.shedaniel.math.api.Point; -import me.shedaniel.math.api.Rectangle; +import me.shedaniel.math.Point; +import me.shedaniel.math.Rectangle; import me.shedaniel.rei.api.EntryStack; import me.shedaniel.rei.api.RecipeCategory; -import me.shedaniel.rei.gui.widget.*; -import me.shedaniel.rei.impl.ScreenHelper; +import me.shedaniel.rei.api.widgets.Label; +import me.shedaniel.rei.api.widgets.Widgets; +import me.shedaniel.rei.gui.widget.Widget; import net.minecraft.item.Items; import net.minecraft.text.Text; import net.minecraft.text.TranslatableText; @@ -41,7 +42,6 @@ import techreborn.compat.rei.ReiPlugin; import java.util.LinkedList; import java.util.List; -import java.util.function.Supplier; public class FluidReplicatorRecipeCategory implements RecipeCategory { @@ -68,28 +68,26 @@ public class FluidReplicatorRecipeCategory implements RecipeCategory setupDisplay(Supplier recipeDisplaySupplier, Rectangle bounds) { - FluidReplicatorRecipeDisplay machineRecipe = recipeDisplaySupplier.get(); - + public List setupDisplay(FluidReplicatorRecipeDisplay machineRecipe, Rectangle bounds) { Point startPoint = new Point(bounds.getCenterX() - 41, bounds.getCenterY() - 13); List widgets = new LinkedList<>(); - widgets.add(new RecipeBaseWidget(bounds)); - widgets.add(RecipeArrowWidget.create(new Point(startPoint.x + 24, startPoint.y + 1), true).time(machineRecipe.getTime() * 50.0)); + widgets.add(Widgets.createRecipeBase(bounds)); + widgets.add(Widgets.createArrow(new Point(startPoint.x + 26, startPoint.y + 1)).animationDurationTicks(machineRecipe.getTime())); int i = 0; for (List inputs : machineRecipe.getInputEntries()) { - widgets.add(EntryWidget.create(startPoint.x + 1, startPoint.y + 1 + (i++ * 20)).entries(inputs).markIsInput()); + widgets.add(Widgets.createSlot(new Point(startPoint.x + 1, startPoint.y + 1 + (i++ * 20))).entries(inputs).markInput()); } Text energyPerTick = new TranslatableText("techreborn.jei.recipe.running.cost", "E", machineRecipe.getEnergy()); - LabelWidget costLabel; - widgets.add(costLabel = LabelWidget.create(new Point(startPoint.x + 1, startPoint.y + 1 + (i++ * 20)), energyPerTick.asFormattedString())); - costLabel.setHasShadows(false); - costLabel.setDefaultColor(ScreenHelper.isDarkModeEnabled() ? 0xFFBBBBBB : 0xFF404040); + Label costLabel; + widgets.add(costLabel = Widgets.createLabel(new Point(startPoint.x + 1, startPoint.y + 1 + (i++ * 20)), energyPerTick.asFormattedString())); + costLabel.shadow(false); + costLabel.color(0xFF404040, 0xFFBBBBBB); if (!machineRecipe.getOutputEntries().isEmpty()) - widgets.add(EntryWidget.create(startPoint.x + 61, startPoint.y + 1).entries(machineRecipe.getOutputEntries()).markIsOutput()); + widgets.add(Widgets.createSlot(new Point(startPoint.x + 61, startPoint.y + 1)).entries(machineRecipe.getOutputEntries()).markInput()); return widgets; }