aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCalMWolfs <94038482+CalMWolfs@users.noreply.github.com>2023-10-17 23:30:03 +1100
committerGitHub <noreply@github.com>2023-10-17 14:30:03 +0200
commit5a099cbd5e8a3560e554d64a34ecbc8eb8329ada (patch)
tree4bb0c4a123e4adb026b6dd87939ce1d270184e06 /src
parenta793c14d3b246afbbb657e6a919806194c4cf64c (diff)
downloadskyhanni-5a099cbd5e8a3560e554d64a34ecbc8eb8329ada.tar.gz
skyhanni-5a099cbd5e8a3560e554d64a34ecbc8eb8329ada.tar.bz2
skyhanni-5a099cbd5e8a3560e554d64a34ecbc8eb8329ada.zip
sack changes (#582)
better sack status #582
Diffstat (limited to 'src')
-rw-r--r--src/main/java/at/hannibal2/skyhanni/data/SackAPI.kt41
-rw-r--r--src/main/java/at/hannibal2/skyhanni/features/garden/composter/ComposterOverlay.kt7
2 files changed, 28 insertions, 20 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/data/SackAPI.kt b/src/main/java/at/hannibal2/skyhanni/data/SackAPI.kt
index 9e2e4a7fa..35d1d8771 100644
--- a/src/main/java/at/hannibal2/skyhanni/data/SackAPI.kt
+++ b/src/main/java/at/hannibal2/skyhanni/data/SackAPI.kt
@@ -224,20 +224,21 @@ object SackAPI {
val internalName = NEUInternalName.fromItemName(item)
sackChanges.add(SackChange(delta, internalName, sacks))
}
- SackChangeEvent(sackChanges, otherItemsAdded, otherItemsRemoved).postAndCatch()
+ val sackEvent = SackChangeEvent(sackChanges, otherItemsAdded, otherItemsRemoved)
+ updateSacks(sackEvent)
+ sackEvent.postAndCatch()
if (chatConfig.hideSacksChange) {
event.blockedReason = "sacks_change"
}
}
- @SubscribeEvent
- fun sackChange(event: SackChangeEvent) {
+ private fun updateSacks(changes: SackChangeEvent) {
sackData = ProfileStorageData.sackProfiles?.sackContents ?: return
// if it gets added and subtracted but only 1 shows it will be outdated
val justChanged = mutableMapOf<NEUInternalName, Int>()
- for (change in event.sackChanges) {
+ for (change in changes.sackChanges) {
if (change.internalName in justChanged) {
justChanged[change.internalName] = (justChanged[change.internalName] ?: 0) + change.delta
} else {
@@ -254,36 +255,37 @@ object SackAPI {
newAmount = 0
changed = 0
}
- sackData = sackData.editCopy { this[item.key] = SackItem(newAmount, changed, oldData.outdatedStatus) }
+ sackData = sackData.editCopy { this[item.key] = SackItem(newAmount, changed, oldData.status) }
} else {
val newAmount = if (item.value > 0) item.value else 0
- sackData = sackData.editCopy { this[item.key] = SackItem(newAmount.toLong(), newAmount, 2) }
+ sackData =
+ sackData.editCopy { this[item.key] = SackItem(newAmount.toLong(), newAmount, SackStatus.OUTDATED) }
}
}
- if (event.otherItemsAdded || event.otherItemsRemoved) {
+ if (changes.otherItemsAdded || changes.otherItemsRemoved) {
for (item in sackData) {
if (item.key in justChanged) continue
val oldData = sackData[item.key]
- sackData = sackData.editCopy { this[item.key] = SackItem(oldData!!.amount, 0, 1) }
+ sackData = sackData.editCopy { this[item.key] = SackItem(oldData!!.amount, 0, SackStatus.ALRIGHT) }
}
}
saveSackData()
}
private fun setSackItem(item: NEUInternalName, amount: Long) {
- sackData = sackData.editCopy { this[item] = SackItem(amount, 0, 0) }
+ sackData = sackData.editCopy { this[item] = SackItem(amount, 0, SackStatus.CORRECT) }
}
fun fetchSackItem(item: NEUInternalName): SackItem {
- sackData = ProfileStorageData.sackProfiles?.sackContents ?: return SackItem(0, 0, -1)
+ sackData = ProfileStorageData.sackProfiles?.sackContents ?: return SackItem(0, 0, SackStatus.MISSING)
if (sackData.containsKey(item)) {
- return sackData[item] ?: return SackItem(0, 0, -1)
+ return sackData[item] ?: return SackItem(0, 0, SackStatus.MISSING)
}
- sackData = sackData.editCopy { this[item] = SackItem(0, 0, 2) }
- return sackData[item] ?: return SackItem(0, 0, -1)
+ sackData = sackData.editCopy { this[item] = SackItem(0, 0, SackStatus.OUTDATED) }
+ return sackData[item] ?: return SackItem(0, 0, SackStatus.MISSING)
}
fun commandGetFromSacks(item: String, amount: Int) = LorenzUtils.sendCommandToServer("gfs $item $amount")
@@ -321,13 +323,10 @@ object SackAPI {
)
}
-// status -1 = fetching data failed, 0 = < 1% of being wrong, 1 = 10% of being wrong, 2 = is 100% wrong
-// lastChange is set to 0 when value is refreshed in the sacks gui and when being set initially
-// if it didn't change in an update the lastChange value will stay the same and not be set to 0
data class SackItem(
@Expose val amount: Long,
@Expose val lastChange: Int,
- @Expose val outdatedStatus: Int
+ @Expose val status: SackStatus
)
private val gemstoneMap = mapOf(
@@ -340,3 +339,11 @@ private val gemstoneMap = mapOf(
"Ruby Gemstones" to "ROUGH_RUBY_GEM".asInternalName(),
"Opal Gemstones" to "ROUGH_OPAL_GEM".asInternalName(),
)
+
+// ideally should be correct but using alright should also be fine unless they sold their whole sacks
+enum class SackStatus {
+ MISSING,
+ CORRECT,
+ ALRIGHT,
+ OUTDATED;
+} \ No newline at end of file
diff --git a/src/main/java/at/hannibal2/skyhanni/features/garden/composter/ComposterOverlay.kt b/src/main/java/at/hannibal2/skyhanni/features/garden/composter/ComposterOverlay.kt
index 672d6fe4f..38f95aa5f 100644
--- a/src/main/java/at/hannibal2/skyhanni/features/garden/composter/ComposterOverlay.kt
+++ b/src/main/java/at/hannibal2/skyhanni/features/garden/composter/ComposterOverlay.kt
@@ -3,6 +3,7 @@ package at.hannibal2.skyhanni.features.garden.composter
import at.hannibal2.skyhanni.SkyHanniMod
import at.hannibal2.skyhanni.config.ConfigUpdaterMigrator
import at.hannibal2.skyhanni.data.SackAPI
+import at.hannibal2.skyhanni.data.SackStatus
import at.hannibal2.skyhanni.data.model.ComposterUpgrade
import at.hannibal2.skyhanni.events.GuiRenderEvent
import at.hannibal2.skyhanni.events.InventoryCloseEvent
@@ -455,10 +456,10 @@ class ComposterOverlay {
return
}
- val (amountInSacks, _, sacksLoaded) = SackAPI.fetchSackItem(internalName.asInternalName())
+ val (amountInSacks, _, sackStatus) = SackAPI.fetchSackItem(internalName.asInternalName())
- if (sacksLoaded == -1 || sacksLoaded == 2) {
- if (sacksLoaded == 2) LorenzUtils.sendCommandToServer("gfs $internalName ${itemsNeeded - having}")
+ if (sackStatus == SackStatus.MISSING || sackStatus == SackStatus.OUTDATED) {
+ if (sackStatus == SackStatus.OUTDATED) LorenzUtils.sendCommandToServer("gfs $internalName ${itemsNeeded - having}")
val sackType = if (internalName == "VOLTA" || internalName == "OIL_BARREL") "Mining" else "Enchanted Agronomy" // TODO Add sack type repo data
LorenzUtils.clickableChat(
"§e[SkyHanni] Sacks could not be loaded. Click here and open your §9$sackType Sack §eto update the data!",