ActuallyAdditions/src/main/java/ellpeck/actuallyadditions/blocks/BlockFluidFlowing.java

76 lines
2.5 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
* This file ("BlockFluidFlowing.java") is part of the Actually Additions Mod for Minecraft.
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
* http://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2015-11-02 20:55:19 +01:00
* © 2015 Ellpeck
2015-08-29 14:33:25 +02:00
*/
2015-04-26 20:07:57 +02:00
package ellpeck.actuallyadditions.blocks;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import ellpeck.actuallyadditions.util.IActAddItemOrBlock;
2015-05-20 22:39:43 +02:00
import ellpeck.actuallyadditions.util.ModUtil;
2015-04-26 20:07:57 +02:00
import net.minecraft.block.material.Material;
import net.minecraft.client.renderer.texture.IIconRegister;
import net.minecraft.item.EnumRarity;
import net.minecraft.item.ItemStack;
import net.minecraft.util.IIcon;
2015-05-20 22:39:43 +02:00
import net.minecraft.world.IBlockAccess;
2015-04-26 20:07:57 +02:00
import net.minecraft.world.World;
2015-05-20 22:39:43 +02:00
import net.minecraftforge.fluids.BlockFluidClassic;
import net.minecraftforge.fluids.Fluid;
2015-04-26 20:07:57 +02:00
public class BlockFluidFlowing extends BlockFluidClassic implements IActAddItemOrBlock{
2015-04-26 20:07:57 +02:00
2015-10-28 14:46:04 +01:00
@SideOnly(Side.CLIENT)
2015-05-20 22:39:43 +02:00
public IIcon stillIcon;
2015-10-28 14:46:04 +01:00
@SideOnly(Side.CLIENT)
2015-05-20 22:39:43 +02:00
public IIcon flowingIcon;
2015-10-03 10:16:18 +02:00
private String name;
2015-04-26 20:07:57 +02:00
2015-05-20 22:39:43 +02:00
public BlockFluidFlowing(Fluid fluid, Material material, String unlocalizedName){
super(fluid, material);
this.name = unlocalizedName;
this.setRenderPass(1);
displacements.put(this, false);
2015-04-26 20:07:57 +02:00
}
@Override
2015-05-20 22:39:43 +02:00
public boolean canDisplace(IBlockAccess world, int x, int y, int z){
return !world.getBlock(x, y, z).getMaterial().isLiquid() && super.canDisplace(world, x, y, z);
2015-04-26 20:07:57 +02:00
}
@Override
2015-05-20 22:39:43 +02:00
public boolean displaceIfPossible(World world, int x, int y, int z){
return !world.getBlock(x, y, z).getMaterial().isLiquid() && super.displaceIfPossible(world, x, y, z);
2015-04-26 20:07:57 +02:00
}
@Override
2015-10-28 14:46:04 +01:00
@SideOnly(Side.CLIENT)
2015-05-20 22:39:43 +02:00
public IIcon getIcon(int side, int meta){
return side <= 1 ? this.stillIcon : this.flowingIcon;
2015-04-26 20:07:57 +02:00
}
@Override
2015-05-20 22:39:43 +02:00
@SideOnly(Side.CLIENT)
public void registerBlockIcons(IIconRegister iconReg){
2015-10-02 16:48:01 +02:00
this.stillIcon = iconReg.registerIcon(ModUtil.MOD_ID_LOWER+":"+this.getName()+"Still");
this.flowingIcon = iconReg.registerIcon(ModUtil.MOD_ID_LOWER+":"+this.getName()+"Flowing");
2015-05-20 22:39:43 +02:00
this.definedFluid.setIcons(this.stillIcon, this.flowingIcon);
2015-04-26 20:07:57 +02:00
}
@Override
public String getName(){
2015-05-20 22:39:43 +02:00
return this.name;
2015-04-26 20:07:57 +02:00
}
@Override
public EnumRarity getRarity(ItemStack stack){
return EnumRarity.epic;
2015-04-26 20:07:57 +02:00
}
}