blob: d7e0a0d95b5933f371090c302a783d86d0c5e401 (
plain)
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
|
package moe.nea.ledger.modules
import moe.nea.ledger.ItemChange
import moe.nea.ledger.ItemId
import moe.nea.ledger.events.ChatReceived
import moe.nea.ledger.events.GuiClickEvent
import moe.nea.ledger.LedgerEntry
import moe.nea.ledger.LedgerLogger
import moe.nea.ledger.SHORT_NUMBER_PATTERN
import moe.nea.ledger.TransactionType
import moe.nea.ledger.getInternalId
import moe.nea.ledger.getLore
import moe.nea.ledger.parseShortNumber
import moe.nea.ledger.unformattedString
import moe.nea.ledger.useMatcher
import moe.nea.ledger.utils.di.Inject
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
import java.time.Instant
class BitsShopDetection @Inject constructor(val ledger: LedgerLogger) {
data class BitShopEntry(
val id: ItemId,
val stackSize: Int,
val bitPrice: Int,
val timestamp: Long = System.currentTimeMillis()
)
var lastClickedBitShopItem: BitShopEntry? = null
var bitCostPattern = "(?<cost>$SHORT_NUMBER_PATTERN) Bits".toPattern()
@SubscribeEvent
fun recordLastBitPrice(event: GuiClickEvent) {
val slot = event.slotIn ?: return
val name = slot.inventory.displayName.unformattedText.unformattedString()
if (name != "Community Shop" && !name.startsWith("Bits Shop"))
return
val stack = slot.stack ?: return
val id = stack.getInternalId() ?: return
val bitPrice = stack.getLore()
.firstNotNullOfOrNull { bitCostPattern.useMatcher(it.unformattedString()) { parseShortNumber(group("cost")).toInt() } }
?: return
lastClickedBitShopItem = BitShopEntry(id, stack.stackSize, bitPrice)
}
@SubscribeEvent
fun onChat(event: ChatReceived) {
if (event.message.startsWith("You bought ")) {
val lastBit = lastClickedBitShopItem ?: return
if (System.currentTimeMillis() - lastBit.timestamp > 5000) return
ledger.logEntry(
LedgerEntry(
TransactionType.COMMUNITY_SHOP_BUY,
Instant.now(),
listOf(
ItemChange.lose(ItemId.BITS, lastBit.bitPrice.toDouble()),
ItemChange.gain(lastBit.id, lastBit.stackSize)
)
)
)
}
}
}
|