diff options
author | Linnea Gräf <nea@nea.moe> | 2024-10-30 19:02:48 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-10-30 19:02:48 +0100 |
commit | 3115eeef02d541822470f08f298110e37fa7a1e6 (patch) | |
tree | 03003b0de745e71226420e005acefc03fe4d4d48 /src/main/kotlin/moe/nea/ledger/NpcDetection.kt | |
parent | 5c7f1f4e9677ed5794604b2835098e64294e5357 (diff) | |
parent | 3001af7c4277c96f2818ea2efe3c7836b1f1498f (diff) | |
download | LocalTransactionLedger-3115eeef02d541822470f08f298110e37fa7a1e6.tar.gz LocalTransactionLedger-3115eeef02d541822470f08f298110e37fa7a1e6.tar.bz2 LocalTransactionLedger-3115eeef02d541822470f08f298110e37fa7a1e6.zip |
Merge https://github.com/nea89o/LocalTransactionLedger/pull/2
Diffstat (limited to 'src/main/kotlin/moe/nea/ledger/NpcDetection.kt')
-rw-r--r-- | src/main/kotlin/moe/nea/ledger/NpcDetection.kt | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/main/kotlin/moe/nea/ledger/NpcDetection.kt b/src/main/kotlin/moe/nea/ledger/NpcDetection.kt new file mode 100644 index 0000000..65693ef --- /dev/null +++ b/src/main/kotlin/moe/nea/ledger/NpcDetection.kt @@ -0,0 +1,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 (?<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, + ) + ) + } + } +} |