aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gtPlusPlus/api/recipe/GTPPRecipeMaps.java
diff options
context:
space:
mode:
authorNotAPenguin <michiel.vandeginste@gmail.com>2024-09-02 23:17:17 +0200
committerGitHub <noreply@github.com>2024-09-02 23:17:17 +0200
commit1b820de08a05070909a267e17f033fcf58ac8710 (patch)
tree02831a025986a06b20f87e5bcc69d1e0c639a342 /src/main/java/gtPlusPlus/api/recipe/GTPPRecipeMaps.java
parentafd3fd92b6a6ab9ab0d0dc3214e6bc8ff7a86c9b (diff)
downloadGT5-Unofficial-1b820de08a05070909a267e17f033fcf58ac8710.tar.gz
GT5-Unofficial-1b820de08a05070909a267e17f033fcf58ac8710.tar.bz2
GT5-Unofficial-1b820de08a05070909a267e17f033fcf58ac8710.zip
The Great Renaming (#3014)
* move kekztech to a single root dir * move detrav to a single root dir * move gtnh-lanthanides to a single root dir * move tectech and delete some gross reflection in gt++ * remove more reflection inside gt5u * delete more reflection in gt++ * fix imports * move bartworks and bwcrossmod * fix proxies * move galactigreg and ggfab * move gtneioreplugin * try to fix gt++ bee loader * apply the rename rules to BW * apply rename rules to bwcrossmod * apply rename rules to detrav scanner mod * apply rename rules to galacticgreg * apply rename rules to ggfab * apply rename rules to goodgenerator * apply rename rules to gtnh-lanthanides * apply rename rules to gt++ * apply rename rules to kekztech * apply rename rules to kubatech * apply rename rules to tectech * apply rename rules to gt apply the rename rules to gt * fix tt import * fix mui hopefully * fix coremod except intergalactic * rename assline recipe class * fix a class name i stumbled on * rename StructureUtility to GTStructureUtility to prevent conflict with structurelib * temporary rename of GTTooltipDataCache to old name * fix gt client/server proxy names
Diffstat (limited to 'src/main/java/gtPlusPlus/api/recipe/GTPPRecipeMaps.java')
-rw-r--r--src/main/java/gtPlusPlus/api/recipe/GTPPRecipeMaps.java56
1 files changed, 26 insertions, 30 deletions
diff --git a/src/main/java/gtPlusPlus/api/recipe/GTPPRecipeMaps.java b/src/main/java/gtPlusPlus/api/recipe/GTPPRecipeMaps.java
index 6958f71080..e6610c40df 100644
--- a/src/main/java/gtPlusPlus/api/recipe/GTPPRecipeMaps.java
+++ b/src/main/java/gtPlusPlus/api/recipe/GTPPRecipeMaps.java
@@ -1,6 +1,6 @@
package gtPlusPlus.api.recipe;
-import static gregtech.api.util.GT_RecipeConstants.LFTR_OUTPUT_POWER;
+import static gregtech.api.util.GTRecipeConstants.LFTR_OUTPUT_POWER;
import java.util.Arrays;
import java.util.Collections;
@@ -9,28 +9,28 @@ import net.minecraft.util.StatCollector;
import com.gtnewhorizons.modularui.common.widget.ProgressBar;
-import gregtech.api.gui.modularui.GT_UITextures;
+import gregtech.api.gui.modularui.GTUITextures;
import gregtech.api.recipe.RecipeMap;
import gregtech.api.recipe.RecipeMapBackend;
import gregtech.api.recipe.RecipeMapBuilder;
import gregtech.api.recipe.maps.FluidOnlyFrontend;
import gregtech.api.recipe.maps.FuelBackend;
import gregtech.api.recipe.maps.LargeNEIFrontend;
-import gregtech.api.util.GT_Utility;
+import gregtech.api.util.GTUtility;
import gregtech.nei.formatter.FuelSpecialValueFormatter;
import gregtech.nei.formatter.HeatingCoilSpecialValueFormatter;
import gregtech.nei.formatter.SimpleSpecialValueFormatter;
import gtPlusPlus.core.util.math.MathUtils;
import gtPlusPlus.core.util.minecraft.ItemUtils;
-import gtPlusPlus.xmod.gregtech.api.gui.GTPP_UITextures;
-import gtPlusPlus.xmod.gregtech.common.tileentities.machines.multi.production.GregtechMetaTileEntityTreeFarm;
+import gtPlusPlus.xmod.gregtech.api.gui.GTPPUITextures;
+import gtPlusPlus.xmod.gregtech.common.tileentities.machines.multi.production.MTETreeFarm;
public class GTPPRecipeMaps {
public static final RecipeMap<RecipeMapBackend> cokeOvenRecipes = RecipeMapBuilder.of("gtpp.recipe.cokeoven")
.maxIO(2, 9, 1, 1)
.minInputs(1, 0)
- .progressBar(GT_UITextures.PROGRESSBAR_SIFT, ProgressBar.Direction.DOWN)
+ .progressBar(GTUITextures.PROGRESSBAR_SIFT, ProgressBar.Direction.DOWN)
.build();
public static final RecipeMap<RecipeMapBackend> multiblockMassFabricatorRecipes = RecipeMapBuilder
.of("gtpp.recipe.matterfab2")
@@ -43,13 +43,13 @@ public class GTPPRecipeMaps {
recipeInfo -> Collections.singletonList(
StatCollector.translateToLocalFormatted(
"GT5U.nei.fuel",
- GT_Utility.formatNumbers(recipeInfo.recipe.mSpecialValue * 3000L))))
+ GTUtility.formatNumbers(recipeInfo.recipe.mSpecialValue * 3000L))))
.build();
public static final RecipeMap<RecipeMapBackend> quantumForceTransformerRecipes = RecipeMapBuilder
.of("gtpp.recipe.quantumforcesmelter")
.maxIO(6, 6, 6, 6)
.minInputs(1, 0)
- .progressBar(GT_UITextures.PROGRESSBAR_ARROW_MULTIPLE)
+ .progressBar(GTUITextures.PROGRESSBAR_ARROW_MULTIPLE)
.neiSpecialInfoFormatter(new SimpleSpecialValueFormatter("GT5U.nei.tier"))
.frontend(QuantumForceTransformerFrontend::new)
.disableOptimize()
@@ -57,7 +57,7 @@ public class GTPPRecipeMaps {
public static final RecipeMap<RecipeMapBackend> chemicalDehydratorRecipes = RecipeMapBuilder
.of("gtpp.recipe.chemicaldehydrator")
.maxIO(2, 9, 1, 1)
- .progressBar(GT_UITextures.PROGRESSBAR_SIFT, ProgressBar.Direction.DOWN)
+ .progressBar(GTUITextures.PROGRESSBAR_SIFT, ProgressBar.Direction.DOWN)
.disableOptimize()
.build();
public static final RecipeMap<RecipeMapBackend> vacuumFurnaceRecipes = RecipeMapBuilder.of("gtpp.recipe.vacfurnace")
@@ -82,7 +82,7 @@ public class GTPPRecipeMaps {
final long eut = recipeInfo.recipe.getMetadataOrDefault(LFTR_OUTPUT_POWER, 0);
final int duration = recipeInfo.recipe.mDuration;
return Arrays.asList(
- StatCollector.translateToLocalFormatted("gtpp.nei.lftr.power", GT_Utility.formatNumbers(eut)),
+ StatCollector.translateToLocalFormatted("gtpp.nei.lftr.power", GTUtility.formatNumbers(eut)),
StatCollector
.translateToLocalFormatted("gtpp.nei.lftr.dynamo", MathUtils.formatNumbers(duration * eut)),
StatCollector
@@ -109,25 +109,25 @@ public class GTPPRecipeMaps {
.build();
public static final RecipeMap<RecipeMapBackend> coldTrapRecipes = RecipeMapBuilder.of("gtpp.recipe.coldtrap")
.maxIO(2, 9, 1, 1)
- .progressBar(GT_UITextures.PROGRESSBAR_SIFT, ProgressBar.Direction.DOWN)
+ .progressBar(GTUITextures.PROGRESSBAR_SIFT, ProgressBar.Direction.DOWN)
.build();
public static final RecipeMap<RecipeMapBackend> reactorProcessingUnitRecipes = RecipeMapBuilder
.of("gtpp.recipe.reactorprocessingunit")
.maxIO(2, 9, 1, 1)
- .progressBar(GT_UITextures.PROGRESSBAR_SIFT, ProgressBar.Direction.DOWN)
+ .progressBar(GTUITextures.PROGRESSBAR_SIFT, ProgressBar.Direction.DOWN)
.build();
public static final RecipeMap<RecipeMapBackend> simpleWasherRecipes = RecipeMapBuilder
.of("gtpp.recipe.simplewasher")
.maxIO(1, 1, 1, 0)
.slotOverlays(
- (index, isFluid, isOutput, isSpecial) -> !isFluid && !isOutput ? GT_UITextures.OVERLAY_SLOT_CAULDRON : null)
- .progressBar(GT_UITextures.PROGRESSBAR_ARROW_MULTIPLE)
+ (index, isFluid, isOutput, isSpecial) -> !isFluid && !isOutput ? GTUITextures.OVERLAY_SLOT_CAULDRON : null)
+ .progressBar(GTUITextures.PROGRESSBAR_ARROW_MULTIPLE)
.build();
public static final RecipeMap<RecipeMapBackend> molecularTransformerRecipes = RecipeMapBuilder
.of("gtpp.recipe.moleculartransformer")
.maxIO(1, 1, 0, 0)
.slotOverlays(
- (index, isFluid, isOutput, isSpecial) -> !isFluid && !isOutput ? GT_UITextures.OVERLAY_SLOT_MICROSCOPE
+ (index, isFluid, isOutput, isSpecial) -> !isFluid && !isOutput ? GTUITextures.OVERLAY_SLOT_MICROSCOPE
: null)
.neiHandlerInfo(
builder -> builder
@@ -139,16 +139,16 @@ public class GTPPRecipeMaps {
.slotOverlays((index, isFluid, isOutput, isSpecial) -> {
if (isFluid) {
if (isOutput) {
- return GT_UITextures.OVERLAY_SLOT_VIAL_2;
+ return GTUITextures.OVERLAY_SLOT_VIAL_2;
}
- return GT_UITextures.OVERLAY_SLOT_MOLECULAR_3;
+ return GTUITextures.OVERLAY_SLOT_MOLECULAR_3;
}
if (isOutput) {
- return GT_UITextures.OVERLAY_SLOT_VIAL_1;
+ return GTUITextures.OVERLAY_SLOT_VIAL_1;
}
- return GT_UITextures.OVERLAY_SLOT_MOLECULAR_1;
+ return GTUITextures.OVERLAY_SLOT_MOLECULAR_1;
})
- .progressBar(GTPP_UITextures.PROGRESSBAR_FLUID_REACTOR, ProgressBar.Direction.CIRCULAR_CW)
+ .progressBar(GTPPUITextures.PROGRESSBAR_FLUID_REACTOR, ProgressBar.Direction.CIRCULAR_CW)
.progressBarPos(82, 24)
.neiSpecialInfoFormatter(recipeInfo -> {
int tier = recipeInfo.recipe.mSpecialValue + 1;
@@ -184,8 +184,8 @@ public class GTPPRecipeMaps {
public static final RecipeMap<RecipeMapBackend> fishPondRecipes = RecipeMapBuilder.of("gtpp.recipe.fishpond")
.maxIO(1, 1, 0, 0)
.slotOverlays(
- (index, isFluid, isOutput, isSpecial) -> !isFluid && !isOutput ? GT_UITextures.OVERLAY_SLOT_CAULDRON : null)
- .progressBar(GT_UITextures.PROGRESSBAR_ARROW_MULTIPLE)
+ (index, isFluid, isOutput, isSpecial) -> !isFluid && !isOutput ? GTUITextures.OVERLAY_SLOT_CAULDRON : null)
+ .progressBar(GTUITextures.PROGRESSBAR_ARROW_MULTIPLE)
.build();
public static final RecipeMap<RecipeMapBackend> spargeTowerFakeRecipes = RecipeMapBuilder
.of("gtpp.recipe.spargetower")
@@ -199,18 +199,18 @@ public class GTPPRecipeMaps {
public static final RecipeMap<RecipeMapBackend> centrifugeNonCellRecipes = RecipeMapBuilder
.of("gtpp.recipe.multicentrifuge")
.maxIO(6, 6, 6, 6)
- .progressBar(GT_UITextures.PROGRESSBAR_EXTRACT)
+ .progressBar(GTUITextures.PROGRESSBAR_EXTRACT)
.frontend(LargeNEIFrontend::new)
.build();
public static final RecipeMap<RecipeMapBackend> electrolyzerNonCellRecipes = RecipeMapBuilder
.of("gtpp.recipe.multielectro")
.maxIO(6, 6, 6, 6)
- .progressBar(GT_UITextures.PROGRESSBAR_EXTRACT)
+ .progressBar(GTUITextures.PROGRESSBAR_EXTRACT)
.frontend(LargeNEIFrontend::new)
.build();
public static final RecipeMap<RecipeMapBackend> mixerNonCellRecipes = RecipeMapBuilder.of("gtpp.recipe.multimixer")
.maxIO(9, 9, 6, 6)
- .progressBar(GT_UITextures.PROGRESSBAR_MIXER, ProgressBar.Direction.CIRCULAR_CW)
+ .progressBar(GTUITextures.PROGRESSBAR_MIXER, ProgressBar.Direction.CIRCULAR_CW)
.frontend(LargeNEIFrontend::new)
.build();
public static final RecipeMap<RecipeMapBackend> chemicalDehydratorNonCellRecipes = RecipeMapBuilder
@@ -230,11 +230,7 @@ public class GTPPRecipeMaps {
.build();
public static final RecipeMap<RecipeMapBackend> treeGrowthSimulatorFakeRecipes = RecipeMapBuilder
.of("gtpp.recipe.treefarm")
- .maxIO(
- GregtechMetaTileEntityTreeFarm.Mode.values().length,
- GregtechMetaTileEntityTreeFarm.Mode.values().length,
- 0,
- 0)
+ .maxIO(MTETreeFarm.Mode.values().length, MTETreeFarm.Mode.values().length, 0, 0)
.minInputs(1, 0)
.useSpecialSlot()
.frontend(TGSFrontend::new)