aboutsummaryrefslogtreecommitdiff
path: root/mod/src/main/kotlin/moe/nea/ledger/modules/BankInterestDetection.kt
blob: 5069930a099d498371bf5409b693af9619f693c5 (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
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.Matcher
import java.util.regex.Pattern

class BankInterestDetection {

	val bankInterestPattern =
		Pattern.compile("You have just received (?<coins>$SHORT_NUMBER_PATTERN) coins as interest in your (co-op|personal) bank account!")
	val offlineBankInterestPattern =
		Pattern.compile("Since you've been away you earned (?<coins>$SHORT_NUMBER_PATTERN) coins as interest in your personal bank account!")

	@Inject
	lateinit var logger: LedgerLogger


	@SubscribeEvent
	fun onChat(event: ChatReceived) {
		fun Matcher.logInterest() {
			logger.logEntry(
				LedgerEntry(
					TransactionType.BANK_INTEREST,
					event.timestamp,
					listOf(
						ItemChange.gainCoins(parseShortNumber(group("coins"))),
					)
				)
			)
		}

		bankInterestPattern.useMatcher(event.message) { logInterest() }
		offlineBankInterestPattern.useMatcher(event.message) { logInterest() }
	}
}