Paper/patches/server/0369-Implement-alternative-item-despawn-rate.patch

106 lines
5 KiB
Diff
Raw Normal View History

2021-06-11 12:02:28 +00:00
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: kickash32 <kickash32@gmail.com>
Date: Mon, 3 Jun 2019 02:02:39 -0400
Subject: [PATCH] Implement alternative item-despawn-rate
2021-06-14 02:41:44 +00:00
2021-06-11 12:02:28 +00:00
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
2021-06-16 13:14:19 +00:00
index 45e30c0d78b7625a6a55e6d7d60a823b674b75db..31f192773fe5159ed2109f0d367e6b7287ffd186 100644
2021-06-11 12:02:28 +00:00
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
2021-06-16 06:25:38 +00:00
@@ -492,6 +492,54 @@ public class PaperWorldConfig {
2021-06-14 02:41:44 +00:00
this.noTickViewDistance = this.getInt("viewdistances.no-tick-view-distance", -1);
2021-06-11 12:02:28 +00:00
}
2021-06-15 13:20:52 +00:00
2021-06-11 12:02:28 +00:00
+ public boolean altItemDespawnRateEnabled;
2021-06-15 13:20:52 +00:00
+ public java.util.Map<org.bukkit.Material, Integer> altItemDespawnRateMap;
2021-06-11 12:02:28 +00:00
+ private void altItemDespawnRate() {
+ String path = "alt-item-despawn-rate";
+
+ altItemDespawnRateEnabled = getBoolean(path + ".enabled", false);
+
2021-06-15 13:20:52 +00:00
+ java.util.Map<org.bukkit.Material, Integer> altItemDespawnRateMapDefault = new java.util.EnumMap<>(org.bukkit.Material.class);
+ altItemDespawnRateMapDefault.put(org.bukkit.Material.COBBLESTONE, 300);
+ for (org.bukkit.Material key : altItemDespawnRateMapDefault.keySet()) {
2021-06-11 12:02:28 +00:00
+ config.addDefault("world-settings.default." + path + ".items." + key, altItemDespawnRateMapDefault.get(key));
+ }
+
2021-06-15 13:20:52 +00:00
+ java.util.Map<String, Integer> rawMap = new java.util.HashMap<>();
2021-06-11 12:02:28 +00:00
+ try {
2021-06-15 13:20:52 +00:00
+ org.bukkit.configuration.ConfigurationSection mapSection = config.getConfigurationSection("world-settings." + worldName + "." + path + ".items");
2021-06-11 12:02:28 +00:00
+ if (mapSection == null) {
+ mapSection = config.getConfigurationSection("world-settings.default." + path + ".items");
+ }
+ for (String key : mapSection.getKeys(false)) {
+ int val = mapSection.getInt(key);
+ rawMap.put(key, val);
+ }
+ }
+ catch (Exception e) {
+ logError("alt-item-despawn-rate was malformatted");
+ altItemDespawnRateEnabled = false;
+ }
+
2021-06-15 13:20:52 +00:00
+ altItemDespawnRateMap = new java.util.EnumMap<>(org.bukkit.Material.class);
2021-06-11 12:02:28 +00:00
+ if (!altItemDespawnRateEnabled) {
+ return;
+ }
+
+ for(String key : rawMap.keySet()) {
+ try {
2021-06-15 13:20:52 +00:00
+ altItemDespawnRateMap.put(org.bukkit.Material.valueOf(key), rawMap.get(key));
2021-06-11 12:02:28 +00:00
+ } catch (Exception e) {
+ logError("Could not add item " + key + " to altItemDespawnRateMap: " + e.getMessage());
+ }
+ }
+ if(altItemDespawnRateEnabled) {
2021-06-15 13:20:52 +00:00
+ for(org.bukkit.Material key : altItemDespawnRateMap.keySet()) {
2021-06-11 12:02:28 +00:00
+ log("Alternative item despawn rate of " + key + ": " + altItemDespawnRateMap.get(key));
+ }
+ }
+ }
2021-06-15 13:20:52 +00:00
+
public boolean antiXray;
public EngineMode engineMode;
2021-06-16 13:14:19 +00:00
public int maxBlockHeight;
2021-06-11 12:02:28 +00:00
diff --git a/src/main/java/net/minecraft/world/entity/item/ItemEntity.java b/src/main/java/net/minecraft/world/entity/item/ItemEntity.java
2021-06-14 02:41:44 +00:00
index 9ee1dc89dd4c6b9453e1f6f92208d454877d23c9..e0c13a112c95eed9867d4608e18dc797b0c9c9cf 100644
2021-06-11 12:02:28 +00:00
--- a/src/main/java/net/minecraft/world/entity/item/ItemEntity.java
+++ b/src/main/java/net/minecraft/world/entity/item/ItemEntity.java
2021-06-14 02:41:44 +00:00
@@ -175,7 +175,7 @@ public class ItemEntity extends Entity {
2021-06-11 12:02:28 +00:00
}
}
- if (!this.level.isClientSide && this.age >= level.spigotConfig.itemDespawnRate) { // Spigot
+ if (!this.level.isClientSide && this.age >= this.getDespawnRate()) { // Spigot // Paper
// CraftBukkit start - fire ItemDespawnEvent
if (org.bukkit.craftbukkit.event.CraftEventFactory.callItemDespawnEvent(this).isCancelled()) {
this.age = 0;
2021-06-14 02:41:44 +00:00
@@ -199,7 +199,7 @@ public class ItemEntity extends Entity {
2021-06-11 12:02:28 +00:00
this.lastTick = MinecraftServer.currentTick;
// CraftBukkit end
- if (!this.level.isClientSide && this.age >= level.spigotConfig.itemDespawnRate) { // Spigot
+ if (!this.level.isClientSide && this.age >= this.getDespawnRate()) { // Spigot // Paper
// CraftBukkit start - fire ItemDespawnEvent
if (org.bukkit.craftbukkit.event.CraftEventFactory.callItemDespawnEvent(this).isCancelled()) {
this.age = 0;
2021-06-14 02:41:44 +00:00
@@ -559,9 +559,16 @@ public class ItemEntity extends Entity {
2021-06-11 12:02:28 +00:00
public void makeFakeItem() {
this.setNeverPickUp();
- this.age = level.spigotConfig.itemDespawnRate - 1; // Spigot
2021-06-14 02:41:44 +00:00
+ this.age = this.getDespawnRate() - 1; // Spigot
2021-06-11 12:02:28 +00:00
}
+ // Paper start
+ public int getDespawnRate(){
2021-06-14 02:41:44 +00:00
+ org.bukkit.Material material = this.getItem().getBukkitStack().getType();
2021-06-11 12:02:28 +00:00
+ return level.paperConfig.altItemDespawnRateMap.getOrDefault(material, level.spigotConfig.itemDespawnRate);
+ }
+ // Paper end
+
2021-06-14 02:41:44 +00:00
public float getSpin(float tickDelta) {
return ((float) this.getAge() + tickDelta) / 20.0F + this.bobOffs;
}