blob: 4f3706cbaf324e93ee719ca2e884cc40b6bc2bd1 (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
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.gen.ItemIds
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 StonksAuctionDetection {
val stonksPlacedBid =
Pattern.compile("Successfully placed your Stonk bid of (?<coins>$SHORT_NUMBER_PATTERN) Coins!")
val stonksIncreaseBid =
Pattern.compile("Successfully increased your Stonk bid by (?<coins>$SHORT_NUMBER_PATTERN) Coins!")
val stonksClaim =
Pattern.compile("You claimed (?<count>$SHORT_NUMBER_PATTERN)x Stock of Stonks from the Stonks Auction!")
@Inject
lateinit var logger: LedgerLogger
@SubscribeEvent
fun onChat(event: ChatReceived) {
fun Matcher.logBidding() {
logger.logEntry(
LedgerEntry(
TransactionType.STONKS_AUCTION,
event.timestamp,
listOf(
ItemChange.loseCoins(parseShortNumber(group("coins"))),
)
)
)
}
fun Matcher.logClaim() {
logger.logEntry(
LedgerEntry(
TransactionType.STONKS_AUCTION,
event.timestamp,
listOf(
ItemChange.gain(ItemIds.STOCK_OF_STONKS, parseShortNumber(group("count")))
)
)
)
}
stonksPlacedBid.useMatcher(event.message) { logBidding() }
stonksIncreaseBid.useMatcher(event.message) { logBidding() }
stonksClaim.useMatcher(event.message) { logClaim() }
}
}
|