aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-09-02 11:20:01 +0200
committerhannibal2 <24389977+hannibal00212@users.noreply.github.com>2023-09-02 11:20:01 +0200
commit23582658340b9ac748ab2205b754e0ddfa38936d (patch)
treea26b67587ed12b352893b3895d02920bb347e183
parenta3b1bf17efa61e7e02a9bf4be451693a0e4b9b88 (diff)
downloadskyhanni-23582658340b9ac748ab2205b754e0ddfa38936d.tar.gz
skyhanni-23582658340b9ac748ab2205b754e0ddfa38936d.tar.bz2
skyhanni-23582658340b9ac748ab2205b754e0ddfa38936d.zip
using ConfigManager.gson to allow working with NEUInternalName, better error handling
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/misc/items/EstimatedItemValue.kt33
-rw-r--r--src/main/java/at/hannibal2/skyhanni/test/command/CopyErrorCommand.kt4
2 files changed, 27 insertions, 10 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/misc/items/EstimatedItemValue.kt b/src/main/java/at/hannibal2/skyhanni/features/misc/items/EstimatedItemValue.kt
index d0273bc56..fdad96da2 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/misc/items/EstimatedItemValue.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/misc/items/EstimatedItemValue.kt
@@ -1,15 +1,18 @@
package at.hannibal2.skyhanni.features.misc.items
import at.hannibal2.skyhanni.SkyHanniMod
+import at.hannibal2.skyhanni.config.ConfigManager
import at.hannibal2.skyhanni.events.ConfigLoadEvent
import at.hannibal2.skyhanni.events.GuiRenderEvent
import at.hannibal2.skyhanni.events.InventoryCloseEvent
import at.hannibal2.skyhanni.events.RenderItemTooltipEvent
+import at.hannibal2.skyhanni.test.command.CopyErrorCommand
import at.hannibal2.skyhanni.utils.ItemUtils.getInternalName
import at.hannibal2.skyhanni.utils.ItemUtils.getInternalNameOrNull
import at.hannibal2.skyhanni.utils.ItemUtils.getInternalName_old
import at.hannibal2.skyhanni.utils.ItemUtils.getItemName
import at.hannibal2.skyhanni.utils.ItemUtils.getLore
+import at.hannibal2.skyhanni.utils.ItemUtils.name
import at.hannibal2.skyhanni.utils.LorenzUtils
import at.hannibal2.skyhanni.utils.LorenzUtils.addAsSingletonList
import at.hannibal2.skyhanni.utils.LorenzUtils.onToggle
@@ -52,7 +55,6 @@ import at.hannibal2.skyhanni.utils.SkyBlockItemModifierUtils.hasWoodSingularity
import at.hannibal2.skyhanni.utils.SkyBlockItemModifierUtils.isRecombobulated
import at.hannibal2.skyhanni.utils.StringUtils.firstLetterUppercase
import at.hannibal2.skyhanni.utils.StringUtils.removeColor
-import com.google.gson.Gson
import com.google.gson.reflect.TypeToken
import io.github.moulberry.notenoughupdates.events.RepositoryReloadEvent
import io.github.moulberry.notenoughupdates.recipes.Ingredient
@@ -69,7 +71,7 @@ object EstimatedItemValue {
private var display = emptyList<List<Any>>()
private val cache = mutableMapOf<ItemStack, List<List<Any>>>()
private var lastToolTipTime = 0L
- private var gemstoneUnlockCosts = HashMap<String, HashMap<String, List<String>>>()
+ private var gemstoneUnlockCosts = HashMap<NEUInternalName, HashMap<String, List<String>>>()
@SubscribeEvent
fun onRepoReload(event: RepositoryReloadEvent) {
@@ -78,7 +80,10 @@ object EstimatedItemValue {
if (data != null)
// item_internal_names -> gemstone_slots -> ingredients_array
gemstoneUnlockCosts =
- Gson().fromJson(data, object : TypeToken<HashMap<String, HashMap<String, List<String>>>>() {}.getType())
+ ConfigManager.gson.fromJson(
+ data,
+ object : TypeToken<HashMap<NEUInternalName, HashMap<String, List<String>>>>() {}.type
+ )
else
LorenzUtils.error("Gemstone Slot Unlock Costs failed to load")
}
@@ -666,17 +671,28 @@ object EstimatedItemValue {
}
private fun addGemstoneSlotUnlockCost(stack: ItemStack, list: MutableList<String>): Double {
- val internalName = stack.getInternalName_old()
+ val internalName = stack.getInternalName()
// item have to contains gems.unlocked_slots NBT array for unlocked slot detection
- val unlockedSlots = stack.getExtraAttributes()?.getCompoundTag("gems")?.getTag("unlocked_slots").toString()
+ val unlockedSlots = stack.getExtraAttributes()?.getCompoundTag("gems")?.getTag("unlocked_slots")?.toString() ?: return 0.0
+
+ // TODO detection for old items which doesnt have gems.unlocked_slots NBT array
+// if (unlockedSlots == "null") return 0.0
val priceMap = mutableMapOf<String, Double>()
+ if (gemstoneUnlockCosts.isEmpty()) return 0.0
- if (gemstoneUnlockCosts.isEmpty() || !gemstoneUnlockCosts.contains(internalName)) return 0.0
+ if (internalName !in gemstoneUnlockCosts) {
+ CopyErrorCommand.logErrorState(
+ "Could not find gemstone slot price for ${stack.name}",
+ "EstimatedItemValue has no gemstoneUnlockCosts for $internalName"
+ )
+ return 0.0
+ }
var totalPrice = 0.0
- for (slot in gemstoneUnlockCosts.get(internalName)!!) {
+ val slots = gemstoneUnlockCosts[internalName] ?: return 0.0
+ for (slot in slots) {
if (!unlockedSlots.contains(slot.key)) continue
val previousTotal = totalPrice
@@ -702,9 +718,6 @@ object EstimatedItemValue {
priceMap[" §$colorCode $displayName §7(§6$formattedPrice§7)"] = totalPrice - previousTotal
}
- // TODO detection for old items which doesnt have gems.unlocked_slots NBT array
- if (unlockedSlots == "null") return 0.0
-
list.add("§7Gemstone Slot Unlock Cost: §6" + NumberUtil.format(totalPrice))
list += priceMap.sortedDesc().keys
return totalPrice
diff --git a/src/main/java/at/hannibal2/skyhanni/test/command/CopyErrorCommand.kt b/src/main/java/at/hannibal2/skyhanni/test/command/CopyErrorCommand.kt
index 946255996..dd830571f 100644
--- a/src/main/java/at/hannibal2/skyhanni/test/command/CopyErrorCommand.kt
+++ b/src/main/java/at/hannibal2/skyhanni/test/command/CopyErrorCommand.kt
@@ -42,6 +42,10 @@ object CopyErrorCommand {
} ?: "§c[SkyHanni] Error id not found!")
}
+ fun logErrorState(userMessage: String, internalMessage: String) {
+ logError(IllegalStateException(internalMessage), userMessage)
+ }
+
fun logError(throwable: Throwable, message: String) {
val error = Error(message, throwable)
Minecraft.getMinecraft().thePlayer ?: throw error