ForgePatch/src/main/java/net/minecraftforge/event/furnace/FurnaceFuelBurnTimeEvent.java

88 lines
2.6 KiB
Java

/*
* Minecraft Forge
* Copyright (c) 2016-2018.
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation version 2.1
* of the License.
*
* This library is distributed in the hope that it will be useful,
* 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.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
*/
package net.minecraftforge.event.furnace;
import javax.annotation.Nonnull;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.event.ForgeEventFactory;
import net.minecraftforge.eventbus.api.Cancelable;
import net.minecraftforge.eventbus.api.Event;
/**
* {@link FurnaceFuelBurnTimeEvent} is fired when determining the fuel value for an ItemStack. <br>
* <br>
* To set the burn time of your own item, use {@link Item#getBurnTime(ItemStack)} instead.<br>
* <br>
* This event is fired from {@link ForgeEventFactory#getItemBurnTime(ItemStack)}.<br>
* <br>
* This event is {@link Cancelable} to prevent later handlers from changing the value.<br>
* <br>
* This event does not have a result. {@link HasResult}<br>
* <br>
* This event is fired on the {@link MinecraftForge#EVENT_BUS}.
**/
@Cancelable
public class FurnaceFuelBurnTimeEvent extends Event
{
@Nonnull
private final ItemStack itemStack;
private int burnTime;
public FurnaceFuelBurnTimeEvent(@Nonnull ItemStack itemStack, int burnTime)
{
this.itemStack = itemStack;
this.burnTime = burnTime;
}
/**
* Get the ItemStack "fuel" in question.
*/
@Nonnull
public ItemStack getItemStack()
{
return itemStack;
}
/**
* Set the burn time for the given ItemStack.
* Setting it to 0 will prevent the item from being used as fuel, overriding vanilla's decision.
*/
public void setBurnTime(int burnTime)
{
if (burnTime >= 0)
{
this.burnTime = burnTime;
setCanceled(true);
}
}
/**
* The resulting value of this event, the burn time for the ItemStack.
* A value of 0 will prevent the item from being used as fuel, overriding vanilla's decision.
*/
public int getBurnTime()
{
return burnTime;
}
}