blob: ea9e4d2bfd4272ced942d47cf6a5134691e25593 (
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
|
package moe.nea.ledger
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
import java.time.Instant
class BitsShop(val ledger: LedgerLogger) {
data class BitShopEntry(
val id: String,
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, 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(
"COMMUNITY_SHOP_BUY", Instant.now(),
lastBit.bitPrice.toDouble(),
lastBit.id,
1
)
)
}
}
}
|