diff options
author | jani270 <69345714+jani270@users.noreply.github.com> | 2024-10-30 11:48:09 +0100 |
---|---|---|
committer | jani270 <69345714+jani270@users.noreply.github.com> | 2024-10-30 11:48:09 +0100 |
commit | db0b75a351e08c1e82885fcf01e967c59a915b8c (patch) | |
tree | 344728b139da41206cb792d8dfe9a9a7500f1e57 /src/main/kotlin/moe/nea/ledger/NpcDetection.kt | |
parent | 5c7f1f4e9677ed5794604b2835098e64294e5357 (diff) | |
download | LocalTransactionLedger-db0b75a351e08c1e82885fcf01e967c59a915b8c.tar.gz LocalTransactionLedger-db0b75a351e08c1e82885fcf01e967c59a915b8c.tar.bz2 LocalTransactionLedger-db0b75a351e08c1e82885fcf01e967c59a915b8c.zip |
feat: NPC Detection
Diffstat (limited to 'src/main/kotlin/moe/nea/ledger/NpcDetection.kt')
-rw-r--r-- | src/main/kotlin/moe/nea/ledger/NpcDetection.kt | 42 |
1 files changed, 42 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..8f20bc4 --- /dev/null +++ b/src/main/kotlin/moe/nea/ledger/NpcDetection.kt @@ -0,0 +1,42 @@ +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!") + + // You bought Cactus x32 for 465.6 Coins! + // You sold Cactus x1 for 3 Coins! + + + @SubscribeEvent + fun onNpcBuy(event: ChatReceived) { + npcBuyPattern.useMatcher(event.message) { + ledger.logEntry( + LedgerEntry( + "NPC_BUY", + event.timestamp, + parseShortNumber(group("coins")), + ids.findForName(group("what")), + parseShortNumber(group("count")).toInt(), + ) + ) + } + npcSellPattern.useMatcher(event.message) { + ledger.logEntry( + LedgerEntry( + "NPC_SELL", + event.timestamp, + parseShortNumber(group("coins")), + ids.findForName(group("what")), + parseShortNumber(group("count")).toInt(), + ) + ) + } + } +} |