ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/blocks/base/BlockFluidFlowing.java

97 lines
3.1 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
2016-01-03 16:05:51 +01:00
* http://ellpeck.de/actaddlicense/
2015-08-29 14:33:25 +02:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2016-01-03 16:05:51 +01:00
* © 2016 Ellpeck
2015-08-29 14:33:25 +02:00
*/
2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.blocks.base;
2015-04-26 20:07:57 +02:00
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.creative.CreativeTab;
import de.ellpeck.actuallyadditions.mod.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;
2016-01-07 18:20:59 +01:00
import net.minecraftforge.fml.common.registry.GameRegistry;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
2015-04-26 20:07:57 +02:00
public class BlockFluidFlowing extends BlockFluidClassic{
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);
this.register();
}
private void register(){
this.setBlockName(ModUtil.MOD_ID_LOWER+"."+this.getBaseName());
GameRegistry.registerBlock(this, this.getItemBlock(), this.getBaseName());
if(this.shouldAddCreative()){
this.setCreativeTab(CreativeTab.instance);
}
else{
this.setCreativeTab(null);
}
}
protected String getBaseName(){
return this.name;
}
protected Class<? extends ItemBlockBase> getItemBlock(){
return ItemBlockBase.class;
2015-04-26 20:07:57 +02:00
}
2015-12-19 10:30:39 +01:00
public boolean shouldAddCreative(){
return false;
2015-12-19 10:30:39 +01:00
}
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){
this.stillIcon = iconReg.registerIcon(ModUtil.MOD_ID_LOWER+":"+this.getBaseName()+"Still");
this.flowingIcon = iconReg.registerIcon(ModUtil.MOD_ID_LOWER+":"+this.getBaseName()+"Flowing");
2015-05-20 22:39:43 +02:00
this.definedFluid.setIcons(this.stillIcon, this.flowingIcon);
2015-04-26 20:07:57 +02:00
}
public EnumRarity getRarity(ItemStack stack){
return EnumRarity.epic;
2015-04-26 20:07:57 +02:00
}
}