1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
|
package at.hannibal2.skyhanni.data
import at.hannibal2.skyhanni.data.jsonobjects.repo.ArrowTypeJson
import at.hannibal2.skyhanni.events.InventoryFullyOpenedEvent
import at.hannibal2.skyhanni.events.LorenzChatEvent
import at.hannibal2.skyhanni.events.OwnInventoryItemUpdateEvent
import at.hannibal2.skyhanni.events.QuiverUpdateEvent
import at.hannibal2.skyhanni.events.RepositoryReloadEvent
import at.hannibal2.skyhanni.events.SecondPassedEvent
import at.hannibal2.skyhanni.skyhannimodule.SkyHanniModule
import at.hannibal2.skyhanni.test.command.ErrorManager
import at.hannibal2.skyhanni.utils.InventoryUtils
import at.hannibal2.skyhanni.utils.ItemCategory
import at.hannibal2.skyhanni.utils.ItemUtils.getInternalName
import at.hannibal2.skyhanni.utils.ItemUtils.getInternalNameOrNull
import at.hannibal2.skyhanni.utils.ItemUtils.getItemCategoryOrNull
import at.hannibal2.skyhanni.utils.ItemUtils.getLore
import at.hannibal2.skyhanni.utils.LorenzUtils
import at.hannibal2.skyhanni.utils.LorenzUtils.round
import at.hannibal2.skyhanni.utils.NEUInternalName
import at.hannibal2.skyhanni.utils.NEUInternalName.Companion.asInternalName
import at.hannibal2.skyhanni.utils.NumberUtil.formatInt
import at.hannibal2.skyhanni.utils.RegexUtils.matchMatcher
import at.hannibal2.skyhanni.utils.RegexUtils.matches
import at.hannibal2.skyhanni.utils.SkyBlockItemModifierUtils.getExtraAttributes
import at.hannibal2.skyhanni.utils.StringUtils.removeResets
import at.hannibal2.skyhanni.utils.StringUtils.trimWhiteSpace
import at.hannibal2.skyhanni.utils.repopatterns.RepoPattern
import net.minecraft.item.ItemBow
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
@SkyHanniModule
object QuiverAPI {
private val storage get() = ProfileStorageData.profileSpecific
var currentArrow: ArrowType?
get() = storage?.arrows?.currentArrow?.asInternalName()?.let { getArrowByNameOrNull(it) } ?: NONE_ARROW_TYPE
set(value) {
storage?.arrows?.currentArrow = value?.toString() ?: return
}
var arrowAmount: MutableMap<NEUInternalName, Int>
get() = storage?.arrows?.arrowAmount ?: mutableMapOf()
set(value) {
storage?.arrows?.arrowAmount = value
}
var currentAmount: Int
get() = currentArrow?.amount ?: 0
set(value) {
currentArrow?.amount = value
}
var ArrowType.amount: Int
get() = arrowAmount[this.internalName] ?: 0
set(value) {
arrowAmount[this.internalName] = value
}
private var arrows: List<ArrowType> = listOf()
var wearingSkeletonMasterChestplate = false
private set
private var hasBow = false
const val MAX_ARROW_AMOUNT = 2880
private val SKELETON_MASTER_CHESTPLATE = "SKELETON_MASTER_CHESTPLATE".asInternalName()
var NONE_ARROW_TYPE: ArrowType? = null
private var FLINT_ARROW_TYPE: ArrowType? = null
private val group = RepoPattern.group("data.quiver")
private val chatGroup = group.group("chat")
private val selectPattern by chatGroup.pattern("select", "§aYou set your selected arrow type to §.(?<arrow>.*)§a!")
private val fillUpJaxPattern by chatGroup.pattern(
"fillupjax",
"(?:§.)*Jax forged (?:§.)*(?<type>.*?)(?:§.)* x(?<amount>[\\d,]+)(?: (?:§.)*for (?:§.)*(?<coins>[\\d,]+) Coins)?(?:§.)*!"
)
private val fillUpPattern by chatGroup.pattern(
"fillup",
"§aYou filled your quiver with §f(?<flintAmount>.*) §aextra arrows!"
)
private val clearedPattern by chatGroup.pattern(
"cleared",
"§aCleared your quiver!|§c§lYour quiver is now completely empty!"
)
private val arrowRanOutPattern by chatGroup.pattern(
"ranout",
"§c§lQUIVER! §cYou have run out of §f(?<type>.*)s§c!"
)
private val arrowResetPattern by chatGroup.pattern("arrowreset", "§cYour favorite arrow has been reset!")
private val addedToQuiverPattern by chatGroup.pattern(
"addedtoquiver",
"(?:§.)*You've added (?:§.)*(?<type>.*) x(?<amount>.*) (?:§.)*to your quiver!"
)
// Bows that don't use the players arrows, checked using the SkyBlock ID
private val fakeBowsPattern by group.pattern("fakebows", "^(BOSS_SPIRIT_BOW|CRYPT_BOW)$")
private val quiverInventoryNamePattern by group.pattern("quivername", "^Quiver$")
/**
* REGEX-TEST: §7Active Arrow: §fFlint Arrow §7(§e2880§7)
*/
private val quiverInventoryPattern by group.pattern(
"quiver.inventory",
"§7Active Arrow: §.(?<type>.*) §7\\(§e(?<amount>.*)§7\\)"
)
@SubscribeEvent
fun onChat(event: LorenzChatEvent) {
if (!isEnabled()) return
val message = event.message.trimWhiteSpace().removeResets()
selectPattern.matchMatcher(message) {
val type = group("arrow")
currentArrow = getArrowByNameOrNull(type)
?: return ErrorManager.logErrorWithData(
UnknownArrowType("Unknown arrow type: $type"),
"Unknown arrow type: $type",
"message" to message,
)
postUpdateEvent()
return
}
arrowRanOutPattern.matchMatcher(message) {
val type = group("type")
val ranOutType = getArrowByNameOrNull(type)
?: return ErrorManager.logErrorWithData(
UnknownArrowType("Unknown arrow type: $type"),
"Unknown arrow type: $type",
"message" to message,
)
ranOutType.amount = 0
postUpdateEvent(ranOutType)
}
fillUpJaxPattern.matchMatcher(message) {
val type = group("type")
val amount = group("amount").formatInt()
val filledUpType = getArrowByNameOrNull(type)
?: return ErrorManager.logErrorWithData(
UnknownArrowType("Unknown arrow type: $type"),
"Unknown arrow type: $type",
"message" to message,
)
filledUpType.amount += amount
if (filledUpType == currentArrow) {
postUpdateEvent()
}
return
}
fillUpPattern.matchMatcher(message) {
val flintAmount = group("flintAmount").formatInt()
FLINT_ARROW_TYPE?.let { it.amount += flintAmount }
if (currentArrow == FLINT_ARROW_TYPE) {
postUpdateEvent()
}
return
}
addedToQuiverPattern.matchMatcher(message) {
val type = group("type")
val amount = group("amount").formatInt()
val filledUpType = getArrowByNameOrNull(type)
?: return ErrorManager.logErrorWithData(
UnknownArrowType("Unknown arrow type: $type"),
"Unknown arrow type: $type",
"message" to message,
)
filledUpType.amount += amount
if (filledUpType == currentArrow) {
postUpdateEvent()
}
return
}
clearedPattern.matchMatcher(message) {
currentAmount = 0
arrowAmount.clear()
postUpdateEvent()
return
}
arrowResetPattern.matchMatcher(message) {
currentArrow = NONE_ARROW_TYPE
currentAmount = 0
postUpdateEvent()
return
}
}
@SubscribeEvent
fun onInventoryFullyLoaded(event: InventoryFullyOpenedEvent) {
if (!isEnabled()) return
if (!quiverInventoryNamePattern.matches(event.inventoryName)) return
// clear to prevent duplicates
currentAmount = 0
arrowAmount.clear()
val stacks = event.inventoryItems
for (stack in stacks.values) {
if (stack.getItemCategoryOrNull() != ItemCategory.ARROW) continue
val arrow = stack.getInternalNameOrNull() ?: continue
val arrowType = getArrowByNameOrNull(arrow) ?: continue
arrowType.amount += stack.stackSize
}
}
@SubscribeEvent
fun onInventoryUpdate(event: OwnInventoryItemUpdateEvent) {
if (!isEnabled() && event.slot != 44) return
val stack = event.itemStack
if (stack.getExtraAttributes()?.hasKey("quiver_arrow") == true) {
for (line in stack.getLore()) {
quiverInventoryPattern.matchMatcher(line) {
val type = group("type")
val amount = group("amount").formatInt()
val currentArrowType = getArrowByNameOrNull(type)
?: return ErrorManager.logErrorWithData(
UnknownArrowType("Unknown arrow type: $type"),
"Unknown arrow type: $type",
"line" to line,
)
if (currentArrowType != currentArrow || amount != currentAmount) {
currentArrow = currentArrowType
currentAmount = amount
postUpdateEvent()
}
}
}
}
}
fun Int.asArrowPercentage() = ((this.toFloat() / MAX_ARROW_AMOUNT) * 100).round(1)
fun hasBowInInventory() = hasBow
fun isHoldingBow(): Boolean {
InventoryUtils.getItemInHand()?.let {
return it.item is ItemBow && !fakeBowsPattern.matches(it.getInternalName().asString())
} ?: return false
}
fun getArrowByNameOrNull(name: String): ArrowType? {
return arrows.firstOrNull { it.arrow == name }
}
fun getArrowByNameOrNull(internalName: NEUInternalName): ArrowType? {
return arrows.firstOrNull { it.internalName == internalName }
}
private fun NEUInternalName.asArrowTypeOrNull() = getArrowByNameOrNull(this)
fun isEnabled() = LorenzUtils.inSkyBlock && storage != null
private fun checkBowInventory() {
hasBow = InventoryUtils.getItemsInOwnInventory().any {
it.item is ItemBow && !fakeBowsPattern.matches(it.getInternalName().asString())
}
}
private fun checkChestplate() {
val wasWearing = wearingSkeletonMasterChestplate
wearingSkeletonMasterChestplate =
InventoryUtils.getChestplate()?.getInternalName() == SKELETON_MASTER_CHESTPLATE
if (wasWearing != wearingSkeletonMasterChestplate) {
postUpdateEvent()
}
}
private fun postUpdateEvent(arrowType: ArrowType? = currentArrow) {
QuiverUpdateEvent(arrowType, currentAmount).postAndCatch()
}
@SubscribeEvent
fun onSecondPassed(event: SecondPassedEvent) {
if (!isEnabled()) return
if (event.repeatSeconds(2)) {
checkChestplate()
checkBowInventory()
}
}
// Load arrows from repo
@SubscribeEvent
fun onRepoReload(event: RepositoryReloadEvent) {
val arrowData = event.getConstant<ArrowTypeJson>("ArrowTypes")
arrows = arrowData.arrows.map { ArrowType(it.value.arrow, it.key.asInternalName()) }
NONE_ARROW_TYPE = getArrowByNameOrNull("NONE".asInternalName())
FLINT_ARROW_TYPE = getArrowByNameOrNull("ARROW".asInternalName())
}
class UnknownArrowType(message: String) : Exception(message)
}
|