Mekanism-tilera-Edition/common/buildcraft/api/core/SafeTimeTracker.java

50 lines
1.1 KiB
Java
Raw Normal View History

2013-04-13 16:35:13 +02:00
/**
* Copyright (c) SpaceToad, 2011
* http://www.mod-buildcraft.com
*
* BuildCraft is distributed under the terms of the Minecraft Mod Public
* License 1.0, or MMPL. Please check the contents of the license located in
* http://www.mod-buildcraft.com/MMPL-1.0.txt
*/
package buildcraft.api.core;
import net.minecraft.world.World;
public class SafeTimeTracker {
2013-08-08 19:10:11 +02:00
private long lastMark = Long.MIN_VALUE;
private long duration = 0;
private boolean marked;
2013-04-13 16:35:13 +02:00
/**
* Return true if a given delay has passed since last time marked was called successfully.
*/
public boolean markTimeIfDelay(World world, long delay) {
if (world == null)
return false;
long currentTime = world.getWorldTime();
if (currentTime < lastMark) {
lastMark = currentTime;
return false;
} else if (lastMark + delay <= currentTime) {
2013-08-08 19:10:11 +02:00
duration = currentTime - lastMark;
2013-04-13 16:35:13 +02:00
lastMark = world.getWorldTime();
2013-08-08 19:10:11 +02:00
marked = true;
2013-04-13 16:35:13 +02:00
return true;
} else
return false;
}
2013-08-08 19:10:11 +02:00
public long durationOfLastDelay(){
return marked ? duration : 0;
}
2013-04-13 16:35:13 +02:00
public void markTime(World world) {
lastMark = world.getWorldTime();
}
}