You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
package org.spigotmc;
|
|
|
|
|
|
|
|
public class TickLimiter {
|
|
|
|
private final int maxTime;
|
|
|
|
private long startTime;
|
|
|
|
private int tick;
|
|
|
|
private boolean shouldContinue;
|
|
|
|
public TickLimiter(int maxTime) {
|
|
|
|
this.maxTime = maxTime;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void initTick() {
|
|
|
|
startTime = System.currentTimeMillis();
|
|
|
|
tick = 0;
|
|
|
|
shouldContinue = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean shouldContinue() {
|
|
|
|
if (++tick >= 300 && shouldContinue) {
|
|
|
|
tick = 0;
|
|
|
|
shouldContinue = System.currentTimeMillis() - startTime < maxTime;
|
|
|
|
}
|
|
|
|
return shouldContinue;
|
|
|
|
}
|
|
|
|
}
|