aboutsummaryrefslogtreecommitdiff
path: root/src/main/kotlin/util/mc/SlotUtils.kt
blob: 2f5fd491cbcb62d24d6c0ebcc69cc290b32d08f9 (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
package moe.nea.firmament.util.mc

import org.lwjgl.glfw.GLFW
import net.minecraft.world.inventory.AbstractContainerMenu
import net.minecraft.world.inventory.Slot
import net.minecraft.world.inventory.ClickType
import moe.nea.firmament.util.MC

object SlotUtils {
	fun Slot.clickMiddleMouseButton(handler: AbstractContainerMenu) {
		MC.interactionManager?.handleInventoryMouseClick(
			handler.containerId,
			this.index,
			GLFW.GLFW_MOUSE_BUTTON_MIDDLE,
			ClickType.CLONE,
			MC.player
		)
	}

	fun Slot.swapWithHotBar(handler: AbstractContainerMenu, hotbarIndex: Int) {
		MC.interactionManager?.handleInventoryMouseClick(
			handler.containerId, this.index,
			hotbarIndex, ClickType.SWAP,
			MC.player
		)
	}

	fun Slot.clickRightMouseButton(handler: AbstractContainerMenu) {
		MC.interactionManager?.handleInventoryMouseClick(
			handler.containerId,
			this.index,
			GLFW.GLFW_MOUSE_BUTTON_RIGHT,
			ClickType.PICKUP,
			MC.player
		)
	}

	fun Slot.clickLeftMouseButton(handler: AbstractContainerMenu) {
		MC.interactionManager?.handleInventoryMouseClick(
			handler.containerId,
			this.index,
			GLFW.GLFW_MOUSE_BUTTON_LEFT,
			ClickType.PICKUP,
			MC.player
		)
	}
}