aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/ledger/NpcDetection.kt
blob: 3c3fe87e412ab482dcb199c5217d0bcefcb0c815 (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
package moe.nea.ledger

import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
import java.util.regex.Pattern

class NpcDetection(val ledger: LedgerLogger, val ids: ItemIdProvider) {

    val npcBuyPattern =
        Pattern.compile("You bought (back )?(?<what>.*?) (x(?<count>$SHORT_NUMBER_PATTERN) )?for (?<coins>$SHORT_NUMBER_PATTERN) Coins!")
    val npcSellPattern =
        Pattern.compile("You sold (?<what>.*) (x(?<count>$SHORT_NUMBER_PATTERN) )?for (?<coins>$SHORT_NUMBER_PATTERN) Coins!")

    @SubscribeEvent
    fun onNpcBuy(event: ChatReceived) {
        npcBuyPattern.useMatcher(event.message) {
            ledger.logEntry(
                LedgerEntry(
                    "NPC_BUY",
                    event.timestamp,
                    parseShortNumber(group("coins")),
                    ids.findForName(group("what")),
                    group("count")?.let(::parseShortNumber)?.toInt() ?: 1,
                )
            )
        }
        npcSellPattern.useMatcher(event.message) {
            ledger.logEntry(
                LedgerEntry(
                    "NPC_SELL",
                    event.timestamp,
                    parseShortNumber(group("coins")),
                    ids.findForName(group("what")),
                    group("count")?.let(::parseShortNumber)?.toInt() ?: 1,
                )
            )
        }
    }
}