blob: b7dccd76bd2b369457142331c11a9b6b6a1ecb71 (
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 at.hannibal2.skyhanni.data
import at.hannibal2.skyhanni.events.EntityClickEvent
import at.hannibal2.skyhanni.events.ItemClickInHandEvent
import at.hannibal2.skyhanni.utils.LorenzUtils
import net.minecraft.client.Minecraft
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
import net.minecraftforge.fml.common.gameevent.InputEvent
import org.lwjgl.input.Mouse
class ItemClickData {
@SubscribeEvent
fun onClick(event: InputEvent.MouseInputEvent) {
if (!Mouse.getEventButtonState()) return
val clickType = when (Mouse.getEventButton()) {
0 -> ClickType.LEFT_CLICK
1 -> ClickType.RIGHT_CLICK
else -> return
}
val itemStack = Minecraft.getMinecraft().thePlayer.heldItem
ItemClickInHandEvent(clickType, itemStack).postAndCatch()
}
@SubscribeEvent
fun onEntityClick(event: InputEvent.MouseInputEvent) {
if (!LorenzUtils.inSkyBlock) return
val minecraft = Minecraft.getMinecraft()
val clickedEntity = minecraft.pointedEntity
if (minecraft.thePlayer == null) return
if (clickedEntity == null) return
val clickType = when (Mouse.getEventButton()) {
0 -> ClickType.LEFT_CLICK
1 -> ClickType.RIGHT_CLICK
else -> return
}
EntityClickEvent(clickType, clickedEntity).postAndCatch()
}
}
|