aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/events/IsSlotProtectedEvent.kt
blob: bda1bb370216463de34334a64d29a0cb1f0de22e (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
60
61
62
63
64
package moe.nea.firmament.events

import net.minecraft.world.item.ItemStack
import net.minecraft.world.inventory.Slot
import net.minecraft.world.inventory.ClickType
import moe.nea.firmament.util.CommonSoundEffects
import moe.nea.firmament.util.MC
import moe.nea.firmament.util.grey
import moe.nea.firmament.util.hover
import moe.nea.firmament.util.red
import moe.nea.firmament.util.tr

data class IsSlotProtectedEvent(
    val slot: Slot?,
    val actionType: ClickType,
    var isProtected: Boolean,
    val itemStackOverride: ItemStack?,
    val origin: MoveOrigin,
    var silent: Boolean = false,
) : FirmamentEvent() {
	val itemStack get() = itemStackOverride ?: slot!!.item

	fun protect() {
		isProtected = true
		silent = false
	}

	fun protectSilent() {
		if (!isProtected) {
			silent = true
		}
		isProtected = true
	}

	enum class MoveOrigin {
		DROP_FROM_HOTBAR,
		SALVAGE,
		INVENTORY_MOVE
		;
	}

	companion object : FirmamentEventBus<IsSlotProtectedEvent>() {
		@JvmStatic
		@JvmOverloads
		fun shouldBlockInteraction(
            slot: Slot?, action: ClickType,
            origin: MoveOrigin,
            itemStackOverride: ItemStack? = null,
		): Boolean {
			if (slot == null && itemStackOverride == null) return false
			val event = IsSlotProtectedEvent(slot, action, false, itemStackOverride, origin)
			publish(event)
			if (event.isProtected && !event.silent) {
				MC.sendChat(tr("firmament.protectitem", "Firmament protected your item: ${event.itemStack.hoverName}.\n")
					            .red()
					            .append(tr("firmament.protectitem.hoverhint", "Hover for more info.").grey())
					            .hover(tr("firmament.protectitem.hint",
					                      "To unlock this item use the Lock Slot or Lock Item keybind from Firmament while hovering over this item.")))
				CommonSoundEffects.playFailure()
			}
			return event.isProtected
		}
	}
}