2012-09-27 00:54:15 +00:00
|
|
|
package net.minecraftforge.event;
|
2012-12-13 07:27:57 +00:00
|
|
|
|
2013-03-05 04:29:05 +00:00
|
|
|
import java.util.List;
|
|
|
|
|
2012-12-13 07:27:57 +00:00
|
|
|
import net.minecraft.block.Block;
|
2013-01-02 06:20:30 +00:00
|
|
|
import net.minecraft.entity.EntityLiving;
|
2013-03-05 04:29:05 +00:00
|
|
|
import net.minecraft.entity.EnumCreatureType;
|
2012-12-13 07:27:57 +00:00
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
import net.minecraft.item.ItemStack;
|
2013-01-02 06:20:30 +00:00
|
|
|
import net.minecraft.world.World;
|
2013-03-05 04:29:05 +00:00
|
|
|
import net.minecraft.world.WorldServer;
|
2012-09-27 00:54:15 +00:00
|
|
|
import net.minecraftforge.common.MinecraftForge;
|
2013-01-02 06:20:30 +00:00
|
|
|
import net.minecraftforge.event.Event.Result;
|
|
|
|
import net.minecraftforge.event.entity.living.LivingSpawnEvent;
|
2013-03-05 04:29:05 +00:00
|
|
|
import net.minecraftforge.event.entity.player.PlayerDestroyItemEvent;
|
|
|
|
import net.minecraftforge.event.entity.player.PlayerEvent;
|
|
|
|
import net.minecraftforge.event.entity.player.PlayerInteractEvent;
|
2012-09-27 04:18:18 +00:00
|
|
|
import net.minecraftforge.event.entity.player.PlayerInteractEvent.Action;
|
2013-03-05 04:29:05 +00:00
|
|
|
import net.minecraftforge.event.world.WorldEvent;
|
2012-09-27 00:54:15 +00:00
|
|
|
|
2013-01-02 06:20:30 +00:00
|
|
|
@SuppressWarnings("deprecation")
|
2012-09-27 00:54:15 +00:00
|
|
|
public class ForgeEventFactory
|
|
|
|
{
|
|
|
|
public static boolean doPlayerHarvestCheck(EntityPlayer player, Block block, boolean success)
|
|
|
|
{
|
|
|
|
PlayerEvent.HarvestCheck event = new PlayerEvent.HarvestCheck(player, block, success);
|
|
|
|
MinecraftForge.EVENT_BUS.post(event);
|
|
|
|
return event.success;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static float getBreakSpeed(EntityPlayer player, Block block, int metadata, float original)
|
|
|
|
{
|
|
|
|
PlayerEvent.BreakSpeed event = new PlayerEvent.BreakSpeed(player, block, metadata, original);
|
|
|
|
return (MinecraftForge.EVENT_BUS.post(event) ? -1 : event.newSpeed);
|
|
|
|
}
|
2012-09-27 04:18:18 +00:00
|
|
|
|
|
|
|
public static PlayerInteractEvent onPlayerInteract(EntityPlayer player, Action action, int x, int y, int z, int face)
|
|
|
|
{
|
|
|
|
PlayerInteractEvent event = new PlayerInteractEvent(player, action, x, y, z, face);
|
|
|
|
MinecraftForge.EVENT_BUS.post(event);
|
|
|
|
return event;
|
|
|
|
}
|
|
|
|
|
|
|
|
public static void onPlayerDestroyItem(EntityPlayer player, ItemStack stack)
|
|
|
|
{
|
|
|
|
MinecraftForge.EVENT_BUS.post(new PlayerDestroyItemEvent(player, stack));
|
|
|
|
}
|
2013-01-02 06:20:30 +00:00
|
|
|
|
|
|
|
public static Result canEntitySpawn(EntityLiving entity, World world, float x, float y, float z)
|
|
|
|
{
|
|
|
|
LivingSpawnEvent.CheckSpawn event = new LivingSpawnEvent.CheckSpawn(entity, world, x, y, z);
|
|
|
|
MinecraftForge.EVENT_BUS.post(event);
|
|
|
|
return event.getResult();
|
|
|
|
}
|
|
|
|
|
|
|
|
public static boolean doSpecialSpawn(EntityLiving entity, World world, float x, float y, float z)
|
|
|
|
{
|
2013-03-05 04:29:05 +00:00
|
|
|
return MinecraftForge.EVENT_BUS.post(new LivingSpawnEvent.SpecialSpawn(entity, world, x, y, z));
|
|
|
|
}
|
2013-01-02 06:20:30 +00:00
|
|
|
|
2013-03-05 04:29:05 +00:00
|
|
|
public static List getPotentialSpawns(WorldServer world, EnumCreatureType type, int x, int y, int z, List oldList)
|
|
|
|
{
|
|
|
|
WorldEvent.PotentialSpawns event = new WorldEvent.PotentialSpawns(world, type, x, y, z, oldList);
|
|
|
|
if (MinecraftForge.EVENT_BUS.post(event))
|
|
|
|
{
|
|
|
|
return null;
|
2013-01-02 06:20:30 +00:00
|
|
|
}
|
2013-03-05 04:29:05 +00:00
|
|
|
return event.list;
|
2013-01-02 06:20:30 +00:00
|
|
|
}
|
2012-09-27 00:54:15 +00:00
|
|
|
}
|