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

56 lines
1.6 KiB
Java
Raw Normal View History

2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.blocks.base;
2015-04-26 20:07:57 +02:00
2016-03-18 18:38:39 +01:00
import de.ellpeck.actuallyadditions.mod.util.ItemUtil;
2015-04-26 20:07:57 +02:00
import net.minecraft.block.material.Material;
import net.minecraft.item.EnumRarity;
import net.minecraft.item.ItemStack;
2016-03-18 23:47:22 +01:00
import net.minecraft.util.math.BlockPos;
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
2019-05-02 09:10:29 +02:00
public class BlockFluidFlowing extends BlockFluidClassic implements ItemBlockBase.ICustomRarity {
2015-04-26 20:07:57 +02:00
2016-05-19 20:05:12 +02:00
private final String name;
2015-04-26 20:07:57 +02:00
2019-05-02 09:10:29 +02:00
public BlockFluidFlowing(Fluid fluid, Material material, String unlocalizedName) {
2015-05-20 22:39:43 +02:00
super(fluid, material);
this.name = unlocalizedName;
this.displacements.put(this, false);
this.register();
}
2019-05-02 09:10:29 +02:00
private void register() {
2016-03-18 18:38:39 +01:00
ItemUtil.registerBlock(this, this.getItemBlock(), this.getBaseName(), this.shouldAddCreative());
}
2019-05-02 09:10:29 +02:00
protected String getBaseName() {
return this.name;
}
2019-05-02 09:10:29 +02:00
protected ItemBlockBase getItemBlock() {
2016-04-20 21:39:03 +02:00
return new ItemBlockBase(this);
2015-04-26 20:07:57 +02:00
}
2019-05-02 09:10:29 +02:00
public boolean shouldAddCreative() {
return false;
2015-12-19 10:30:39 +01:00
}
2015-04-26 20:07:57 +02:00
@Override
2019-05-02 09:10:29 +02:00
public boolean canDisplace(IBlockAccess world, BlockPos pos) {
2016-07-04 20:15:41 +02:00
return !world.getBlockState(pos).getMaterial().isLiquid() && super.canDisplace(world, pos);
2015-04-26 20:07:57 +02:00
}
@Override
2019-05-02 09:10:29 +02:00
public boolean displaceIfPossible(World world, BlockPos pos) {
2016-07-04 20:15:41 +02:00
return !world.getBlockState(pos).getMaterial().isLiquid() && super.displaceIfPossible(world, pos);
2015-04-26 20:07:57 +02:00
}
2016-06-27 20:24:45 +02:00
@Override
2019-05-02 09:10:29 +02:00
public EnumRarity getRarity(ItemStack stack) {
return EnumRarity.EPIC;
2015-04-26 20:07:57 +02:00
}
}