Fix improper tick count incrementation
This commit is contained in:
parent
6341f9fcb4
commit
f02c33d95a
@ -19,22 +19,20 @@ package baritone.api.event.events;
|
|||||||
|
|
||||||
import baritone.api.event.events.type.EventState;
|
import baritone.api.event.events.type.EventState;
|
||||||
|
|
||||||
|
import java.util.function.BiFunction;
|
||||||
|
|
||||||
public final class TickEvent {
|
public final class TickEvent {
|
||||||
|
|
||||||
|
private static int overallTickCount;
|
||||||
|
|
||||||
private final EventState state;
|
private final EventState state;
|
||||||
private final Type type;
|
private final Type type;
|
||||||
private final int count;
|
private final int count;
|
||||||
|
|
||||||
private static int overallTickCount;
|
public TickEvent(EventState state, Type type, int count) {
|
||||||
|
|
||||||
public TickEvent(EventState state, Type type) {
|
|
||||||
this.state = state;
|
this.state = state;
|
||||||
this.type = type;
|
this.type = type;
|
||||||
this.count = incrementCount();
|
this.count = count;
|
||||||
}
|
|
||||||
|
|
||||||
private static synchronized int incrementCount() {
|
|
||||||
return overallTickCount++;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getCount() {
|
public int getCount() {
|
||||||
@ -49,6 +47,10 @@ public final class TickEvent {
|
|||||||
return state;
|
return state;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static synchronized BiFunction<EventState, Type, TickEvent> createNextProvider() {
|
||||||
|
final int count = overallTickCount++;
|
||||||
|
return (state, type) -> new TickEvent(state, type, count);
|
||||||
|
}
|
||||||
|
|
||||||
public enum Type {
|
public enum Type {
|
||||||
/**
|
/**
|
||||||
|
@ -41,6 +41,8 @@ import org.spongepowered.asm.mixin.injection.Redirect;
|
|||||||
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
|
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
|
||||||
import org.spongepowered.asm.mixin.injection.callback.LocalCapture;
|
import org.spongepowered.asm.mixin.injection.callback.LocalCapture;
|
||||||
|
|
||||||
|
import java.util.function.BiFunction;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author Brady
|
* @author Brady
|
||||||
* @since 7/31/2018
|
* @since 7/31/2018
|
||||||
@ -84,13 +86,15 @@ public class MixinMinecraft {
|
|||||||
)
|
)
|
||||||
)
|
)
|
||||||
private void runTick(CallbackInfo ci) {
|
private void runTick(CallbackInfo ci) {
|
||||||
for (IBaritone ibaritone : BaritoneAPI.getProvider().getAllBaritones()) {
|
final BiFunction<EventState, TickEvent.Type, TickEvent> tickProvider = TickEvent.createNextProvider();
|
||||||
|
|
||||||
TickEvent.Type type = ibaritone.getPlayerContext().player() != null && ibaritone.getPlayerContext().world() != null
|
for (IBaritone baritone : BaritoneAPI.getProvider().getAllBaritones()) {
|
||||||
|
|
||||||
|
TickEvent.Type type = baritone.getPlayerContext().player() != null && baritone.getPlayerContext().world() != null
|
||||||
? TickEvent.Type.IN
|
? TickEvent.Type.IN
|
||||||
: TickEvent.Type.OUT;
|
: TickEvent.Type.OUT;
|
||||||
|
|
||||||
ibaritone.getGameEventHandler().onTick(new TickEvent(EventState.PRE, type));
|
baritone.getGameEventHandler().onTick(tickProvider.apply(EventState.PRE, type));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user