blob: 908aae3884eada336af57d5133bcd47b7cae10d5 (
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 at.hannibal2.skyhanni.data
import at.hannibal2.skyhanni.events.EntityMoveEvent
import at.hannibal2.skyhanni.utils.LorenzUtils
import at.hannibal2.skyhanni.utils.LorenzVec
import at.hannibal2.skyhanni.utils.getLorenzVec
import net.minecraft.entity.Entity
import net.minecraftforge.event.world.WorldEvent
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent
import net.minecraftforge.fml.common.gameevent.TickEvent
class EntityMovementHelper {
companion object {
private val entityLocation = mutableMapOf<Entity, LorenzVec>()
fun addToTrack(entity: Entity) {
if (entity !in entityLocation) {
entityLocation[entity] = entity.getLorenzVec()
}
}
}
var tick = 0
@SubscribeEvent
fun onTick(event: TickEvent.ClientTickEvent) {
if (!LorenzUtils.inSkyblock) return
for (entity in entityLocation.keys) {
if (entity.isDead) continue
val newLocation = entity.getLorenzVec()
val oldLocation = entityLocation[entity]!!
val distance = newLocation.distance(oldLocation)
if (distance > 0.01) {
entityLocation[entity] = newLocation
EntityMoveEvent(entity).postAndCatch()
}
}
}
@SubscribeEvent
fun onWorldChange(event: WorldEvent.Load) {
entityLocation.clear()
}
}
|