2015-11-16 03:50:54 +00:00
|
|
|
package net.minecraftforge.debug;
|
|
|
|
|
|
|
|
import net.minecraft.block.Block;
|
|
|
|
import net.minecraft.block.BlockPistonBase;
|
|
|
|
import net.minecraft.block.material.Material;
|
|
|
|
import net.minecraft.block.properties.IProperty;
|
|
|
|
import net.minecraft.block.properties.PropertyDirection;
|
|
|
|
import net.minecraft.block.state.IBlockState;
|
2016-03-05 01:43:41 +00:00
|
|
|
import net.minecraft.client.Minecraft;
|
|
|
|
import net.minecraft.client.renderer.block.model.ModelResourceLocation;
|
2016-01-01 15:15:48 +00:00
|
|
|
import net.minecraft.client.renderer.entity.Render;
|
|
|
|
import net.minecraft.client.renderer.entity.RenderLiving;
|
|
|
|
import net.minecraft.client.renderer.entity.RenderManager;
|
2015-11-16 03:50:54 +00:00
|
|
|
import net.minecraft.client.renderer.texture.TextureMap;
|
|
|
|
import net.minecraft.creativetab.CreativeTabs;
|
2016-01-01 15:15:48 +00:00
|
|
|
import net.minecraft.entity.EntityLiving;
|
2015-11-16 03:50:54 +00:00
|
|
|
import net.minecraft.entity.EntityLivingBase;
|
2016-01-01 15:15:48 +00:00
|
|
|
import net.minecraft.entity.SharedMonsterAttributes;
|
2015-11-16 03:50:54 +00:00
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
import net.minecraft.item.Item;
|
2016-03-21 06:15:39 +00:00
|
|
|
import net.minecraft.item.ItemBlock;
|
2016-03-05 01:43:41 +00:00
|
|
|
import net.minecraft.item.ItemStack;
|
2016-03-21 06:15:39 +00:00
|
|
|
import net.minecraft.nbt.NBTTagCompound;
|
2015-11-16 03:50:54 +00:00
|
|
|
import net.minecraft.tileentity.TileEntity;
|
|
|
|
import net.minecraft.util.EnumFacing;
|
2016-03-05 01:43:41 +00:00
|
|
|
import net.minecraft.util.EnumHand;
|
2016-01-01 15:15:48 +00:00
|
|
|
import net.minecraft.util.ResourceLocation;
|
2016-03-05 01:43:41 +00:00
|
|
|
import net.minecraft.util.math.BlockPos;
|
2015-11-23 07:12:01 +00:00
|
|
|
import net.minecraft.world.IBlockAccess;
|
2015-11-16 03:50:54 +00:00
|
|
|
import net.minecraft.world.World;
|
|
|
|
import net.minecraftforge.client.model.ModelLoader;
|
2016-03-21 07:01:30 +00:00
|
|
|
import net.minecraftforge.client.model.ModelLoaderRegistry;
|
2016-01-01 15:15:48 +00:00
|
|
|
import net.minecraftforge.client.model.animation.Animation;
|
|
|
|
import net.minecraftforge.client.model.animation.AnimationTESR;
|
2015-11-16 03:50:54 +00:00
|
|
|
import net.minecraftforge.client.model.b3d.B3DLoader;
|
2016-01-01 15:15:48 +00:00
|
|
|
import net.minecraftforge.client.model.pipeline.VertexLighterSmoothAo;
|
2016-03-21 07:01:30 +00:00
|
|
|
import net.minecraftforge.common.animation.Event;
|
|
|
|
import net.minecraftforge.common.animation.ITimeValue;
|
|
|
|
import net.minecraftforge.common.animation.TimeValues.VariableValue;
|
2016-03-21 06:15:39 +00:00
|
|
|
import net.minecraftforge.common.capabilities.Capability;
|
|
|
|
import net.minecraftforge.common.capabilities.ICapabilityProvider;
|
2016-03-21 07:01:30 +00:00
|
|
|
import net.minecraftforge.common.model.animation.CapabilityAnimation;
|
2016-01-01 15:15:48 +00:00
|
|
|
import net.minecraftforge.common.model.animation.IAnimationStateMachine;
|
2015-11-16 03:50:54 +00:00
|
|
|
import net.minecraftforge.common.property.ExtendedBlockState;
|
|
|
|
import net.minecraftforge.common.property.IUnlistedProperty;
|
2016-01-01 15:15:48 +00:00
|
|
|
import net.minecraftforge.common.property.Properties;
|
2015-11-16 03:50:54 +00:00
|
|
|
import net.minecraftforge.fml.client.registry.ClientRegistry;
|
2016-01-01 15:15:48 +00:00
|
|
|
import net.minecraftforge.fml.client.registry.IRenderFactory;
|
|
|
|
import net.minecraftforge.fml.client.registry.RenderingRegistry;
|
2015-11-16 03:50:54 +00:00
|
|
|
import net.minecraftforge.fml.common.Mod;
|
|
|
|
import net.minecraftforge.fml.common.Mod.EventHandler;
|
2016-01-01 15:15:48 +00:00
|
|
|
import net.minecraftforge.fml.common.Mod.Instance;
|
2015-11-16 03:50:54 +00:00
|
|
|
import net.minecraftforge.fml.common.SidedProxy;
|
|
|
|
import net.minecraftforge.fml.common.event.FMLPreInitializationEvent;
|
2016-01-01 15:15:48 +00:00
|
|
|
import net.minecraftforge.fml.common.registry.EntityRegistry;
|
2015-11-16 03:50:54 +00:00
|
|
|
import net.minecraftforge.fml.common.registry.GameRegistry;
|
|
|
|
|
2016-01-01 15:15:48 +00:00
|
|
|
import com.google.common.collect.ImmutableMap;
|
2015-11-16 03:50:54 +00:00
|
|
|
|
2016-03-13 09:10:50 +00:00
|
|
|
@Mod(modid = ModelAnimationDebug.MODID, version = ModelAnimationDebug.VERSION)
|
2015-11-16 03:50:54 +00:00
|
|
|
public class ModelAnimationDebug
|
|
|
|
{
|
|
|
|
public static final String MODID = "forgedebugmodelanimation";
|
|
|
|
public static final String VERSION = "0.0";
|
|
|
|
|
|
|
|
public static String blockName = "test_animation_block";
|
2016-04-03 07:13:50 +00:00
|
|
|
public static ResourceLocation blockId = new ResourceLocation(MODID, blockName);
|
2015-11-16 03:50:54 +00:00
|
|
|
public static final PropertyDirection FACING = PropertyDirection.create("facing");
|
2016-01-01 15:15:48 +00:00
|
|
|
|
|
|
|
@Instance(MODID)
|
|
|
|
public static ModelAnimationDebug instance;
|
2015-11-16 03:50:54 +00:00
|
|
|
|
2016-01-02 06:59:14 +00:00
|
|
|
@SidedProxy
|
2015-11-16 03:50:54 +00:00
|
|
|
public static CommonProxy proxy;
|
|
|
|
|
2016-01-01 15:15:48 +00:00
|
|
|
public static abstract class CommonProxy
|
2015-11-16 03:50:54 +00:00
|
|
|
{
|
|
|
|
public void preInit(FMLPreInitializationEvent event)
|
|
|
|
{
|
2016-05-18 12:11:56 +00:00
|
|
|
GameRegistry.register(new Block(Material.WOOD)
|
2015-11-16 03:50:54 +00:00
|
|
|
{
|
|
|
|
{
|
2016-05-18 12:11:56 +00:00
|
|
|
setCreativeTab(CreativeTabs.BUILDING_BLOCKS);
|
2015-11-16 03:50:54 +00:00
|
|
|
setUnlocalizedName(MODID + "." + blockName);
|
2016-04-03 07:13:50 +00:00
|
|
|
setRegistryName(blockId);
|
2015-11-16 03:50:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public ExtendedBlockState createBlockState()
|
|
|
|
{
|
2016-01-01 15:15:48 +00:00
|
|
|
return new ExtendedBlockState(this, new IProperty[]{ FACING, Properties.StaticProperty }, new IUnlistedProperty[]{ Properties.AnimationProperty });
|
2015-11-16 03:50:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2016-03-05 01:43:41 +00:00
|
|
|
public boolean isOpaqueCube(IBlockState state) { return false; }
|
2015-11-16 03:50:54 +00:00
|
|
|
|
|
|
|
@Override
|
2016-03-05 01:43:41 +00:00
|
|
|
public boolean isFullCube(IBlockState state) { return false; }
|
2015-11-16 03:50:54 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public IBlockState onBlockPlaced(World world, BlockPos pos, EnumFacing facing, float hitX, float hitY, float hitZ, int meta, EntityLivingBase placer)
|
|
|
|
{
|
2016-03-13 01:40:03 +00:00
|
|
|
return this.getDefaultState().withProperty(FACING, BlockPistonBase.getFacingFromEntity(pos, placer));
|
2015-11-16 03:50:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public IBlockState getStateFromMeta(int meta) {
|
|
|
|
return getDefaultState().withProperty(FACING, EnumFacing.getFront(meta));
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getMetaFromState(IBlockState state) {
|
|
|
|
return ((EnumFacing)state.getValue(FACING)).getIndex();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean hasTileEntity(IBlockState state) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public TileEntity createTileEntity(World world, IBlockState state) {
|
2016-01-01 15:15:48 +00:00
|
|
|
return new Chest();
|
2015-11-16 03:50:54 +00:00
|
|
|
}
|
|
|
|
|
2015-11-23 07:12:01 +00:00
|
|
|
@Override
|
|
|
|
public IBlockState getActualState(IBlockState state, IBlockAccess world, BlockPos pos) {
|
2016-01-01 15:15:48 +00:00
|
|
|
return state.withProperty(Properties.StaticProperty, true);
|
2015-11-23 07:12:01 +00:00
|
|
|
}
|
|
|
|
|
2015-11-16 03:50:54 +00:00
|
|
|
/*@Override
|
|
|
|
public IBlockState getExtendedState(IBlockState state, IBlockAccess world, BlockPos pos) {
|
|
|
|
TileEntity te = world.getTileEntity(pos);
|
|
|
|
if(te instanceof Chest && state instanceof IExtendedBlockState)
|
|
|
|
{
|
|
|
|
return ((Chest)te).getState((IExtendedBlockState)state);
|
|
|
|
}
|
|
|
|
return super.getExtendedState(state, world, pos);
|
|
|
|
}*/
|
|
|
|
|
|
|
|
@Override
|
2016-03-05 01:43:41 +00:00
|
|
|
public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumHand hand, ItemStack heldItem, EnumFacing side, float hitX, float hitY, float hitZ)
|
2015-11-16 03:50:54 +00:00
|
|
|
{
|
|
|
|
if(world.isRemote)
|
|
|
|
{
|
|
|
|
TileEntity te = world.getTileEntity(pos);
|
|
|
|
if(te instanceof Chest)
|
|
|
|
{
|
2016-01-01 15:15:48 +00:00
|
|
|
((Chest)te).click(player.isSneaking());
|
2015-11-16 03:50:54 +00:00
|
|
|
}
|
|
|
|
}
|
2016-01-01 15:15:48 +00:00
|
|
|
return true;
|
2015-11-16 03:50:54 +00:00
|
|
|
}
|
2016-04-03 07:13:50 +00:00
|
|
|
});
|
2016-05-18 12:11:56 +00:00
|
|
|
GameRegistry.register(new ItemBlock(Block.REGISTRY.getObject(blockId))
|
2016-03-21 06:15:39 +00:00
|
|
|
{
|
|
|
|
@Override
|
|
|
|
public ICapabilityProvider initCapabilities(ItemStack stack, NBTTagCompound nbt)
|
|
|
|
{
|
|
|
|
return new ItemAnimationHolder();
|
|
|
|
}
|
2016-04-03 07:13:50 +00:00
|
|
|
}.setRegistryName(blockId));
|
2016-01-01 15:15:48 +00:00
|
|
|
GameRegistry.registerTileEntity(Chest.class, MODID + ":" + "tile_" + blockName);
|
2015-11-16 03:50:54 +00:00
|
|
|
}
|
|
|
|
|
2016-01-01 15:15:48 +00:00
|
|
|
public abstract IAnimationStateMachine load(ResourceLocation location, ImmutableMap<String, ITimeValue> parameters);
|
2015-11-16 03:50:54 +00:00
|
|
|
}
|
|
|
|
|
2016-01-01 15:15:48 +00:00
|
|
|
public static class ServerProxy extends CommonProxy
|
|
|
|
{
|
|
|
|
public IAnimationStateMachine load(ResourceLocation location, ImmutableMap<String, ITimeValue> parameters)
|
|
|
|
{
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
2016-01-02 06:59:14 +00:00
|
|
|
|
2015-11-16 03:50:54 +00:00
|
|
|
public static class ClientProxy extends CommonProxy
|
|
|
|
{
|
|
|
|
@Override
|
|
|
|
public void preInit(FMLPreInitializationEvent event)
|
|
|
|
{
|
|
|
|
super.preInit(event);
|
2016-03-21 07:23:27 +00:00
|
|
|
B3DLoader.INSTANCE.addDomain(MODID);
|
2016-05-18 12:11:56 +00:00
|
|
|
ModelLoader.setCustomModelResourceLocation(Item.REGISTRY.getObject(blockId), 0, new ModelResourceLocation(blockId, "inventory"));
|
2016-01-01 15:15:48 +00:00
|
|
|
ClientRegistry.bindTileEntitySpecialRenderer(Chest.class, new AnimationTESR<Chest>()
|
|
|
|
{
|
|
|
|
@Override
|
|
|
|
public void handleEvents(Chest chest, float time, Iterable<Event> pastEvents)
|
|
|
|
{
|
|
|
|
chest.handleEvents(time, pastEvents);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
String entityName = MODID + ":entity_chest";
|
|
|
|
//EntityRegistry.registerGlobalEntityID(EntityChest.class, entityName, EntityRegistry.findGlobalUniqueEntityId());
|
|
|
|
EntityRegistry.registerModEntity(EntityChest.class, entityName, 0, ModelAnimationDebug.instance, 64, 20, true, 0xFFAAAA00, 0xFFDDDD00);
|
|
|
|
RenderingRegistry.registerEntityRenderingHandler(EntityChest.class, new IRenderFactory<EntityChest>()
|
|
|
|
{
|
2016-03-21 06:15:39 +00:00
|
|
|
@SuppressWarnings("deprecation")
|
2016-01-01 15:15:48 +00:00
|
|
|
public Render<EntityChest> createRenderFor(RenderManager manager)
|
|
|
|
{
|
2016-03-13 13:16:25 +00:00
|
|
|
/*model = ModelLoaderRegistry.getModel(new ResourceLocation(ModelLoaderRegistryDebug.MODID, "block/chest.b3d"));
|
|
|
|
if(model instanceof IRetexturableModel)
|
2016-01-01 15:15:48 +00:00
|
|
|
{
|
2016-03-13 13:16:25 +00:00
|
|
|
model = ((IRetexturableModel)model).retexture(ImmutableMap.of("#chest", "entity/chest/normal"));
|
|
|
|
}
|
|
|
|
if(model instanceof IModelCustomData)
|
|
|
|
{
|
|
|
|
model = ((IModelCustomData)model).process(ImmutableMap.of("mesh", "[\"Base\", \"Lid\"]"));
|
|
|
|
}*/
|
2016-03-21 06:15:39 +00:00
|
|
|
ResourceLocation location = new ModelResourceLocation(new ResourceLocation(MODID, blockName), "entity");
|
|
|
|
return new RenderLiving<EntityChest>(manager, new net.minecraftforge.client.model.animation.AnimationModelBase<EntityChest>(location, new VertexLighterSmoothAo(Minecraft.getMinecraft().getBlockColors()))
|
2016-01-01 15:15:48 +00:00
|
|
|
{
|
2016-03-13 13:16:25 +00:00
|
|
|
@Override
|
|
|
|
public void handleEvents(EntityChest chest, float time, Iterable<Event> pastEvents)
|
2016-01-01 15:15:48 +00:00
|
|
|
{
|
2016-03-13 13:16:25 +00:00
|
|
|
chest.handleEvents(time, pastEvents);
|
2016-01-01 15:15:48 +00:00
|
|
|
}
|
2016-03-13 13:16:25 +00:00
|
|
|
}, 0.5f)
|
2016-01-01 15:15:48 +00:00
|
|
|
{
|
2016-03-13 13:16:25 +00:00
|
|
|
protected ResourceLocation getEntityTexture(EntityChest entity)
|
|
|
|
{
|
2016-05-18 12:11:56 +00:00
|
|
|
return TextureMap.LOCATION_BLOCKS_TEXTURE;
|
2016-03-13 13:16:25 +00:00
|
|
|
}
|
|
|
|
};
|
2016-01-01 15:15:48 +00:00
|
|
|
}
|
|
|
|
});
|
2015-11-16 03:50:54 +00:00
|
|
|
}
|
|
|
|
|
2016-01-01 15:15:48 +00:00
|
|
|
public IAnimationStateMachine load(ResourceLocation location, ImmutableMap<String, ITimeValue> parameters)
|
2015-11-16 03:50:54 +00:00
|
|
|
{
|
2016-03-21 07:01:30 +00:00
|
|
|
return ModelLoaderRegistry.loadASM(location, parameters);
|
2015-11-16 03:50:54 +00:00
|
|
|
}
|
2016-01-01 15:15:48 +00:00
|
|
|
|
2015-11-16 03:50:54 +00:00
|
|
|
}
|
|
|
|
|
2016-03-21 06:15:39 +00:00
|
|
|
private static class ItemAnimationHolder implements ICapabilityProvider
|
|
|
|
{
|
|
|
|
private final VariableValue cycleLength = new VariableValue(4);
|
|
|
|
|
|
|
|
private final IAnimationStateMachine asm = proxy.load(new ResourceLocation(MODID.toLowerCase(), "asms/block/engine.json"), ImmutableMap.<String, ITimeValue>of(
|
|
|
|
"cycle_length", cycleLength
|
|
|
|
));
|
|
|
|
|
|
|
|
public boolean hasCapability(Capability<?> capability, EnumFacing facing)
|
|
|
|
{
|
|
|
|
return capability == CapabilityAnimation.ANIMATION_CAPABILITY;
|
|
|
|
}
|
|
|
|
|
|
|
|
public <T> T getCapability(Capability<T> capability, EnumFacing facing)
|
|
|
|
{
|
|
|
|
if(capability == CapabilityAnimation.ANIMATION_CAPABILITY)
|
|
|
|
{
|
2016-03-22 06:01:00 +00:00
|
|
|
return CapabilityAnimation.ANIMATION_CAPABILITY.cast(asm);
|
2016-03-21 06:15:39 +00:00
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-16 03:50:54 +00:00
|
|
|
@EventHandler
|
|
|
|
public void preInit(FMLPreInitializationEvent event) { proxy.preInit(event); }
|
|
|
|
|
2016-03-21 06:15:39 +00:00
|
|
|
public static class Chest extends TileEntity
|
2015-11-16 03:50:54 +00:00
|
|
|
{
|
2016-01-01 15:15:48 +00:00
|
|
|
private final IAnimationStateMachine asm;
|
|
|
|
private final VariableValue cycleLength = new VariableValue(4);
|
|
|
|
private final VariableValue clickTime = new VariableValue(Float.NEGATIVE_INFINITY);
|
|
|
|
//private final VariableValue offset = new VariableValue(0);
|
|
|
|
|
|
|
|
public Chest() {
|
|
|
|
/*asm = proxy.load(new ResourceLocation(MODID.toLowerCase(), "asms/block/chest.json"), ImmutableMap.<String, ITimeValue>of(
|
|
|
|
"click_time", clickTime
|
|
|
|
));*/
|
|
|
|
asm = proxy.load(new ResourceLocation(MODID.toLowerCase(), "asms/block/engine.json"), ImmutableMap.<String, ITimeValue>of(
|
|
|
|
"cycle_length", cycleLength,
|
|
|
|
"click_time", clickTime
|
|
|
|
//"offset", offset
|
|
|
|
));
|
2015-11-16 03:50:54 +00:00
|
|
|
}
|
|
|
|
|
2016-01-01 15:15:48 +00:00
|
|
|
public void handleEvents(float time, Iterable<Event> pastEvents)
|
2015-11-16 03:50:54 +00:00
|
|
|
{
|
2016-01-01 15:15:48 +00:00
|
|
|
for(Event event : pastEvents)
|
2015-11-16 03:50:54 +00:00
|
|
|
{
|
2016-01-01 15:15:48 +00:00
|
|
|
System.out.println("Event: " + event.event() + " " + event.offset() + " " + getPos() + " " + time);
|
2015-11-16 03:50:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2016-01-01 15:15:48 +00:00
|
|
|
public boolean hasFastRenderer()
|
2015-11-16 03:50:54 +00:00
|
|
|
{
|
2016-01-01 15:15:48 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*public IExtendedBlockState getState(IExtendedBlockState state) {
|
|
|
|
return state.withProperty(B3DFrameProperty.instance, curState);
|
|
|
|
}*/
|
|
|
|
|
|
|
|
public void click(boolean sneaking)
|
|
|
|
{
|
|
|
|
if(asm != null)
|
2015-11-16 03:50:54 +00:00
|
|
|
{
|
2016-01-01 15:15:48 +00:00
|
|
|
if(sneaking)
|
2015-11-16 03:50:54 +00:00
|
|
|
{
|
2016-01-01 15:15:48 +00:00
|
|
|
cycleLength.setValue(6 - cycleLength.apply(0));
|
2015-11-16 03:50:54 +00:00
|
|
|
}
|
2016-01-01 15:15:48 +00:00
|
|
|
/*else if(asm.currentState().equals("closed"))
|
|
|
|
{
|
|
|
|
clickTime.setValue(Animation.getWorldTime(getWorld()));
|
|
|
|
asm.transition("opening");
|
|
|
|
}
|
|
|
|
else if(asm.currentState().equals("open"))
|
|
|
|
{
|
|
|
|
clickTime.setValue(Animation.getWorldTime(getWorld()));
|
|
|
|
asm.transition("closing");
|
|
|
|
}*/
|
|
|
|
else if(asm.currentState().equals("default"))
|
|
|
|
{
|
2016-01-25 14:39:43 +00:00
|
|
|
float time = Animation.getWorldTime(getWorld(), Animation.getPartialTickTime());
|
2016-01-01 15:15:48 +00:00
|
|
|
clickTime.setValue(time);
|
|
|
|
//offset.setValue(time);
|
|
|
|
//asm.transition("moving");
|
|
|
|
asm.transition("starting");
|
|
|
|
}
|
|
|
|
else if(asm.currentState().equals("moving"))
|
2015-11-16 03:50:54 +00:00
|
|
|
{
|
2016-01-25 14:39:43 +00:00
|
|
|
clickTime.setValue(Animation.getWorldTime(getWorld(), Animation.getPartialTickTime()));
|
2016-01-01 15:15:48 +00:00
|
|
|
asm.transition("stopping");
|
2015-11-16 03:50:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-21 06:15:39 +00:00
|
|
|
@Override
|
|
|
|
public boolean hasCapability(Capability<?> capability, EnumFacing side)
|
2015-11-16 03:50:54 +00:00
|
|
|
{
|
2016-03-21 06:15:39 +00:00
|
|
|
if(capability == CapabilityAnimation.ANIMATION_CAPABILITY)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return super.hasCapability(capability, side);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public <T> T getCapability(Capability<T> capability, EnumFacing side)
|
|
|
|
{
|
|
|
|
if(capability == CapabilityAnimation.ANIMATION_CAPABILITY)
|
|
|
|
{
|
2016-03-22 06:01:00 +00:00
|
|
|
return CapabilityAnimation.ANIMATION_CAPABILITY.cast(asm);
|
2016-03-21 06:15:39 +00:00
|
|
|
}
|
|
|
|
return super.getCapability(capability, side);
|
2015-11-16 03:50:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-03-21 06:15:39 +00:00
|
|
|
public static class EntityChest extends EntityLiving
|
2015-11-16 03:50:54 +00:00
|
|
|
{
|
2016-01-01 15:15:48 +00:00
|
|
|
private final IAnimationStateMachine asm;
|
2016-03-21 06:15:39 +00:00
|
|
|
private final VariableValue cycleLength = new VariableValue(getHealth() / 5);
|
2015-11-16 03:50:54 +00:00
|
|
|
|
2016-01-01 15:15:48 +00:00
|
|
|
public EntityChest(World world)
|
2015-11-16 03:50:54 +00:00
|
|
|
{
|
2016-01-01 15:15:48 +00:00
|
|
|
super(world);
|
|
|
|
setSize(1, 1);
|
|
|
|
asm = proxy.load(new ResourceLocation(MODID.toLowerCase(), "asms/block/engine.json"), ImmutableMap.<String, ITimeValue>of(
|
|
|
|
"cycle_length", cycleLength
|
|
|
|
));
|
|
|
|
}
|
2015-11-16 03:50:54 +00:00
|
|
|
|
2016-01-01 15:15:48 +00:00
|
|
|
public void handleEvents(float time, Iterable<Event> pastEvents)
|
|
|
|
{
|
|
|
|
// TODO Auto-generated method stub
|
|
|
|
}
|
2015-11-16 03:50:54 +00:00
|
|
|
|
2016-03-21 06:15:39 +00:00
|
|
|
@Override
|
|
|
|
public void onEntityUpdate()
|
2016-01-01 15:15:48 +00:00
|
|
|
{
|
2016-03-21 06:15:39 +00:00
|
|
|
super.onEntityUpdate();
|
|
|
|
if(worldObj.isRemote && cycleLength != null)
|
2015-11-16 03:50:54 +00:00
|
|
|
{
|
2016-01-01 15:15:48 +00:00
|
|
|
cycleLength.setValue(getHealth() / 5);
|
2015-11-16 03:50:54 +00:00
|
|
|
}
|
2016-03-21 06:15:39 +00:00
|
|
|
}
|
2015-11-16 03:50:54 +00:00
|
|
|
|
2016-01-01 15:15:48 +00:00
|
|
|
@Override
|
|
|
|
protected void applyEntityAttributes()
|
|
|
|
{
|
|
|
|
super.applyEntityAttributes();
|
2016-03-13 01:40:03 +00:00
|
|
|
this.getEntityAttribute(SharedMonsterAttributes.MAX_HEALTH).setBaseValue(60);
|
2015-11-16 03:50:54 +00:00
|
|
|
}
|
2016-03-21 06:15:39 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean hasCapability(Capability<?> capability, EnumFacing side)
|
|
|
|
{
|
|
|
|
if(capability == CapabilityAnimation.ANIMATION_CAPABILITY)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return super.hasCapability(capability, side);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public <T> T getCapability(Capability<T> capability, EnumFacing side)
|
|
|
|
{
|
|
|
|
if(capability == CapabilityAnimation.ANIMATION_CAPABILITY)
|
|
|
|
{
|
2016-03-22 06:01:00 +00:00
|
|
|
return CapabilityAnimation.ANIMATION_CAPABILITY.cast(asm);
|
2016-03-21 06:15:39 +00:00
|
|
|
}
|
|
|
|
return super.getCapability(capability, side);
|
|
|
|
}
|
2015-11-16 03:50:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|