package pneumaticCraft.common.sensor.pollSensors; import java.util.ArrayList; import java.util.List; import net.minecraft.client.gui.FontRenderer; import net.minecraft.tileentity.TileEntity; import net.minecraft.util.EnumChatFormatting; import net.minecraft.world.World; import org.lwjgl.util.Rectangle; import pneumaticCraft.api.universalSensor.IPollSensorSetting; import cpw.mods.fml.relauncher.Side; import cpw.mods.fml.relauncher.SideOnly; public class WorldTimeSensor implements IPollSensorSetting{ @Override public String getSensorPath(){ return "dispenser/World/Time"; } @Override public boolean needsTextBox(){ return false; } @Override public List<String> getDescription(){ List<String> text = new ArrayList<String>(); text.add(EnumChatFormatting.BLACK + "Emits a redstone signal of which the strength is proportional to the time of the world."); text.add(EnumChatFormatting.RED + "strength = time / 1500"); text.add(EnumChatFormatting.GREEN + "Example: If the time is 6000, the redstone strength will be 4."); return text; } @Override public int getPollFrequency(TileEntity te){ return 40; } @Override public int getRedstoneValue(World world, int x, int y, int z, int sensorRange, String textBoxText){ return (int)(world.getWorldTime() % 24000) / 1500; } @Override @SideOnly(Side.CLIENT) public void drawAdditionalInfo(FontRenderer fontRenderer){} @Override public Rectangle needsSlot(){ return null; } }