resonant-induction/APIs/buildcraft/api/core/SafeTimeTracker.java

54 lines
1.1 KiB
Java
Raw Normal View History

2013-10-12 12:12:59 +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
{
private long lastMark = Long.MIN_VALUE;
2013-10-12 12:12:59 +02:00
private long duration = -1;
/**
* 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;
2013-10-12 12:12:59 +02:00
long currentTime = world.getTotalWorldTime();
if (currentTime < lastMark)
{
lastMark = currentTime;
return false;
}
else if (lastMark + delay <= currentTime)
{
duration = currentTime - lastMark;
2013-10-12 12:12:59 +02:00
lastMark = currentTime;
return true;
}
else
return false;
}
public long durationOfLastDelay()
{
2013-10-12 12:12:59 +02:00
return duration > 0 ? duration : 0;
}
public void markTime(World world)
{
2013-10-12 12:12:59 +02:00
lastMark = world.getTotalWorldTime();
}
}