baritone/src/api/java/baritone/api/event/events/TickEvent.java

66 lines
1.7 KiB
Java
Raw Normal View History

2018-08-08 03:16:53 +00:00
/*
* This file is part of Baritone.
*
* Baritone is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
2018-08-08 03:16:53 +00:00
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Baritone is distributed in the hope that it will be useful,
2018-08-08 03:16:53 +00:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
2018-08-08 03:16:53 +00:00
*
* You should have received a copy of the GNU Lesser General Public License
2018-08-08 03:16:53 +00:00
* along with Baritone. If not, see <https://www.gnu.org/licenses/>.
*/
2018-08-28 00:37:21 +00:00
package baritone.api.event.events;
2018-08-05 23:50:24 +00:00
2018-08-28 00:37:21 +00:00
import baritone.api.event.events.type.EventState;
2018-08-05 23:50:24 +00:00
public final class TickEvent {
private final EventState state;
private final Type type;
2018-09-17 00:49:19 +00:00
private final int count;
2018-08-05 23:50:24 +00:00
2018-09-17 00:49:19 +00:00
private static int overallTickCount;
2018-08-05 23:50:24 +00:00
public TickEvent(EventState state, Type type) {
this.state = state;
this.type = type;
2018-09-17 00:49:19 +00:00
this.count = incrementCount();
}
private static synchronized int incrementCount() {
return overallTickCount++;
}
public int getCount() {
return count;
2018-08-05 23:50:24 +00:00
}
2018-08-06 02:15:25 +00:00
public Type getType() {
return type;
}
public EventState getState() {
return state;
}
2018-08-05 23:50:24 +00:00
public enum Type {
/**
* When guarantees can be made about
* the game state and in-game variables.
*/
IN,
/**
* No guarantees can be made about the game state.
* This probably means we are at the main menu.
*/
OUT,
}
}