aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/moe/nea/ledger/modules
diff options
context:
space:
mode:
authorjani270 <69345714+jani270@users.noreply.github.com>2025-01-08 16:03:22 +0100
committerLinnea Gräf <nea@nea.moe>2025-01-08 16:11:00 +0100
commit8239840f4990494319e7b85fffda8f82d469a8d9 (patch)
tree5f948f27184288103aeedcdaaec64d6de5a4dff4 /src/main/kotlin/moe/nea/ledger/modules
parentf578d67bf9f8229050a9d5ada52ef3f38b92550c (diff)
downloadLocalTransactionLedger-8239840f4990494319e7b85fffda8f82d469a8d9.tar.gz
LocalTransactionLedger-8239840f4990494319e7b85fffda8f82d469a8d9.tar.bz2
LocalTransactionLedger-8239840f4990494319e7b85fffda8f82d469a8d9.zip
feat: Allowance Detection (i know this is useless but idc)
Diffstat (limited to 'src/main/kotlin/moe/nea/ledger/modules')
-rw-r--r--src/main/kotlin/moe/nea/ledger/modules/AllowanceDetection.kt37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/main/kotlin/moe/nea/ledger/modules/AllowanceDetection.kt b/src/main/kotlin/moe/nea/ledger/modules/AllowanceDetection.kt
new file mode 100644
index 0000000..cd48d45
--- /dev/null
+++ b/src/main/kotlin/moe/nea/ledger/modules/AllowanceDetection.kt
@@ -0,0 +1,37 @@
+package moe.nea.ledger.modules
+
+import moe.nea.ledger.ItemChange
+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.events.ChatReceived
+import moe.nea.ledger.parseShortNumber
+import moe.nea.ledger.useMatcher
+import moe.nea.ledger.utils.di.Inject
+import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
+import java.util.regex.Pattern
+
+class AllowanceDetection {
+
+ val allowancePattern =
+ Pattern.compile("ALLOWANCE! You earned (?<coins>$SHORT_NUMBER_PATTERN) coins!")
+
+ @Inject
+ lateinit var logger: LedgerLogger
+
+ @SubscribeEvent
+ fun onAllowanceGain(event: ChatReceived) {
+ allowancePattern.useMatcher(event.message) {
+ logger.logEntry(
+ LedgerEntry(
+ TransactionType.ALLOWANCE_GAIN,
+ event.timestamp,
+ listOf(
+ ItemChange.gainCoins(parseShortNumber(group("coins"))),
+ )
+ )
+ )
+ }
+ }
+}