aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/features/diana/DianaWaypoints.kt
blob: 6d87262795e7251370d67448c4f0c1336db2fb90 (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
package moe.nea.firmament.features.diana

import moe.nea.firmament.annotations.Subscribe
import moe.nea.firmament.events.AttackBlockEvent
import moe.nea.firmament.events.UseBlockEvent
import moe.nea.firmament.features.FirmamentFeature
import moe.nea.firmament.gui.config.ManagedConfig

object DianaWaypoints : FirmamentFeature {
    override val identifier get() = "diana"
    override val config get() = TConfig

    object TConfig : ManagedConfig(identifier, Category.EVENTS) {
        val ancestralSpadeSolver by toggle("ancestral-spade") { true }
        val ancestralSpadeTeleport by keyBindingWithDefaultUnbound("ancestral-teleport")
        val nearbyWaypoints by toggle("nearby-waypoints") { true }
    }


    @Subscribe
    fun onBlockUse(event: UseBlockEvent) {
        NearbyBurrowsSolver.onBlockClick(event.hitResult.blockPos)
    }

    @Subscribe
    fun onBlockAttack(event: AttackBlockEvent) {
        NearbyBurrowsSolver.onBlockClick(event.blockPos)
    }
}