2020-05-06 11:48:49 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2018-09-18 00:53:27 +02:00
|
|
|
From: Tassu <git@tassu.me>
|
|
|
|
Date: Thu, 13 Sep 2018 08:45:21 +0300
|
|
|
|
Subject: [PATCH] Implement furnace cook speed multiplier API
|
|
|
|
|
|
|
|
Signed-off-by: Tassu <git@tassu.me>
|
|
|
|
|
2020-10-29 23:32:14 +01:00
|
|
|
Fixed an issue where a furnace's cook-speed multiplier rounds down
|
|
|
|
to the nearest Integer when updating its current cook time.
|
|
|
|
|
|
|
|
Modified by: Eric Su <ericsu@alumni.usc.edu>
|
|
|
|
|
2018-09-18 00:53:27 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/TileEntityFurnace.java b/src/main/java/net/minecraft/server/TileEntityFurnace.java
|
2021-03-09 00:12:31 +01:00
|
|
|
index af4db22cf87433fcd4f59be207257a8d7c255883..abc76807595611d35c86f500ef1ef51159e9406b 100644
|
2018-09-18 00:53:27 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/TileEntityFurnace.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/TileEntityFurnace.java
|
2021-03-09 00:12:31 +01:00
|
|
|
@@ -11,6 +11,7 @@ import java.util.Map;
|
2018-09-18 00:53:27 +02:00
|
|
|
import javax.annotation.Nullable;
|
2021-03-09 00:12:31 +01:00
|
|
|
|
2018-09-18 00:53:27 +02:00
|
|
|
// CraftBukkit start
|
2019-05-05 10:33:44 +02:00
|
|
|
+import java.util.List;
|
2018-09-18 00:53:27 +02:00
|
|
|
import org.bukkit.craftbukkit.block.CraftBlock;
|
|
|
|
import org.bukkit.craftbukkit.entity.CraftHumanEntity;
|
|
|
|
import org.bukkit.craftbukkit.inventory.CraftItemStack;
|
2021-03-09 00:12:31 +01:00
|
|
|
@@ -29,6 +30,7 @@ public abstract class TileEntityFurnace extends TileEntityContainer implements I
|
2019-05-05 10:33:44 +02:00
|
|
|
protected NonNullList<ItemStack> items;
|
|
|
|
public int burnTime;
|
2018-09-18 00:53:27 +02:00
|
|
|
private int ticksForCurrentFuel;
|
|
|
|
+ public double cookSpeedMultiplier = 1.0; // Paper - cook speed multiplier API
|
2019-05-05 10:33:44 +02:00
|
|
|
public int cookTime;
|
|
|
|
public int cookTimeTotal;
|
|
|
|
protected final IContainerProperties b;
|
2021-03-09 00:12:31 +01:00
|
|
|
@@ -229,6 +231,11 @@ public abstract class TileEntityFurnace extends TileEntityContainer implements I
|
2020-06-25 16:09:55 +02:00
|
|
|
this.n.put(new MinecraftKey(s), nbttagcompound1.getInt(s));
|
2018-09-18 00:53:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
+ // Paper start - cook speed API
|
|
|
|
+ if (nbttagcompound.hasKey("Paper.CookSpeedMultiplier")) {
|
|
|
|
+ this.cookSpeedMultiplier = nbttagcompound.getDouble("Paper.CookSpeedMultiplier");
|
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
}
|
|
|
|
|
2019-05-05 10:33:44 +02:00
|
|
|
@Override
|
2021-03-09 00:12:31 +01:00
|
|
|
@@ -237,6 +244,7 @@ public abstract class TileEntityFurnace extends TileEntityContainer implements I
|
2018-09-18 00:53:27 +02:00
|
|
|
nbttagcompound.setShort("BurnTime", (short) this.burnTime);
|
|
|
|
nbttagcompound.setShort("CookTime", (short) this.cookTime);
|
|
|
|
nbttagcompound.setShort("CookTimeTotal", (short) this.cookTimeTotal);
|
|
|
|
+ nbttagcompound.setDouble("Paper.CookSpeedMultiplier", this.cookSpeedMultiplier); // Paper - cook speed multiplier API
|
|
|
|
ContainerUtil.a(nbttagcompound, this.items);
|
2020-06-25 16:09:55 +02:00
|
|
|
NBTTagCompound nbttagcompound1 = new NBTTagCompound();
|
|
|
|
|
2021-03-09 00:12:31 +01:00
|
|
|
@@ -297,7 +305,7 @@ public abstract class TileEntityFurnace extends TileEntityContainer implements I
|
2018-09-18 00:53:27 +02:00
|
|
|
|
|
|
|
if (this.isBurning() && this.canBurn(irecipe)) {
|
2020-10-29 23:32:14 +01:00
|
|
|
++this.cookTime;
|
2018-09-18 00:53:27 +02:00
|
|
|
- if (this.cookTime == this.cookTimeTotal) {
|
|
|
|
+ if (this.cookTime >= this.cookTimeTotal) { // Paper - cook speed multiplier API
|
|
|
|
this.cookTime = 0;
|
2019-05-05 10:33:44 +02:00
|
|
|
this.cookTimeTotal = this.getRecipeCookingTime();
|
2018-09-18 00:53:27 +02:00
|
|
|
this.burn(irecipe);
|
2021-03-09 00:12:31 +01:00
|
|
|
@@ -397,9 +405,13 @@ public abstract class TileEntityFurnace extends TileEntityContainer implements I
|
2020-10-29 23:32:14 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
- protected int getRecipeCookingTime() {
|
|
|
|
- return (this.hasWorld()) ? (Integer) this.world.getCraftingManager().craft((Recipes<RecipeCooking>) this.c, this, this.world).map(RecipeCooking::getCookingTime).orElse(200) : 200; // CraftBukkit - SPIGOT-4302 // Eclipse fail
|
|
|
|
+ // Paper begin - Expose this function so CraftFurnace can correctly scale the total cooking time to a new multiplier
|
|
|
|
+ public int getRecipeCookingTime() {
|
|
|
|
+ /* Scale the recipe's cooking time to the current cookSpeedMultiplier */
|
|
|
|
+ int cookTime = (this.hasWorld()) ? (Integer) this.world.getCraftingManager().craft((Recipes<RecipeCooking>) this.c, this, this.world).map(RecipeCooking::getCookingTime).orElse(200) : 200; // CraftBukkit - SPIGOT-4302 // Eclipse fail
|
|
|
|
+ return (int) Math.ceil (cookTime / this.cookSpeedMultiplier);
|
|
|
|
}
|
|
|
|
+ // Paper end
|
|
|
|
|
|
|
|
public static boolean isFuel(ItemStack itemstack) {
|
|
|
|
return f().containsKey(itemstack.getItem());
|
2018-09-18 00:53:27 +02:00
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/block/CraftFurnace.java b/src/main/java/org/bukkit/craftbukkit/block/CraftFurnace.java
|
2021-03-09 00:12:31 +01:00
|
|
|
index 27c8cc130e7466c396b514dd77f1385f967bebdb..298e75d72b889396a15907e713c29430c168b915 100644
|
2018-09-18 00:53:27 +02:00
|
|
|
--- a/src/main/java/org/bukkit/craftbukkit/block/CraftFurnace.java
|
|
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/block/CraftFurnace.java
|
2020-10-29 23:32:14 +01:00
|
|
|
@@ -63,4 +63,20 @@ public abstract class CraftFurnace<T extends TileEntityFurnace> extends CraftCon
|
2019-05-05 10:33:44 +02:00
|
|
|
public void setCookTimeTotal(int cookTimeTotal) {
|
|
|
|
this.getSnapshot().cookTimeTotal = cookTimeTotal;
|
2018-09-18 00:53:27 +02:00
|
|
|
}
|
|
|
|
+
|
|
|
|
+ // Paper start - cook speed multiplier API
|
|
|
|
+ @Override
|
|
|
|
+ public double getCookSpeedMultiplier() {
|
|
|
|
+ return this.getSnapshot().cookSpeedMultiplier;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public void setCookSpeedMultiplier(double multiplier) {
|
|
|
|
+ com.google.common.base.Preconditions.checkArgument(multiplier >= 0, "Furnace speed multiplier cannot be negative");
|
|
|
|
+ com.google.common.base.Preconditions.checkArgument(multiplier <= 200, "Furnace speed multiplier cannot more than 200");
|
2020-10-29 23:32:14 +01:00
|
|
|
+ T snapshot = this.getSnapshot();
|
|
|
|
+ snapshot.cookSpeedMultiplier = multiplier;
|
|
|
|
+ snapshot.cookTimeTotal = snapshot.getRecipeCookingTime(); // Update the snapshot's current total cook time to scale with the newly set multiplier
|
2018-09-18 00:53:27 +02:00
|
|
|
+ }
|
|
|
|
+ // Paper end
|
|
|
|
}
|