ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/blocks/BlockCrystal.java

97 lines
3.2 KiB
Java
Raw Normal View History

2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.blocks;
2015-11-09 18:05:52 +01:00
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
import de.ellpeck.actuallyadditions.mod.blocks.base.BlockItemBase;
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.items.metalists.TheCrystals;
import de.ellpeck.actuallyadditions.mod.util.StringUtil;
2015-11-09 18:05:52 +01:00
import net.minecraft.block.Block;
import net.minecraft.block.SoundType;
2015-11-09 18:05:52 +01:00
import net.minecraft.block.material.Material;
2016-11-21 16:23:48 +01:00
import net.minecraft.block.properties.PropertyEnum;
import net.minecraft.block.state.BlockStateContainer;
import net.minecraft.block.state.IBlockState;
2015-11-09 18:05:52 +01:00
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.item.EnumRarity;
import net.minecraft.item.ItemStack;
2016-11-19 21:11:17 +01:00
import net.minecraft.util.NonNullList;
2019-05-02 09:08:15 +02:00
import net.minecraftforge.common.IRarity;
import net.minecraftforge.common.ToolType;
2016-01-07 18:20:59 +01:00
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
2015-11-09 18:05:52 +01:00
public class BlockCrystal extends Block {
2015-11-09 18:05:52 +01:00
2016-06-17 23:50:38 +02:00
public static final TheCrystals[] ALL_CRYSTALS = TheCrystals.values();
2016-11-21 16:23:48 +01:00
private static final PropertyEnum<TheCrystals> TYPE = PropertyEnum.create("type", TheCrystals.class);
2015-11-09 18:05:52 +01:00
private final boolean isEmpowered;
public BlockCrystal(boolean isEmpowered) {
super(Properties.create(Material.ROCK)
.hardnessAndResistance(1.5f, 10.0f)
.harvestTool(ToolType.PICKAXE)
.sound(SoundType.STONE));
this.isEmpowered = isEmpowered;
2015-11-09 18:05:52 +01:00
}
@Override
2019-05-02 09:08:15 +02:00
public int damageDropped(IBlockState state) {
return this.getMetaFromState(state);
2015-11-09 18:05:52 +01:00
}
@Override
2015-11-09 18:05:52 +01:00
@SideOnly(Side.CLIENT)
2019-05-02 09:08:15 +02:00
public void getSubBlocks(CreativeTabs tab, NonNullList<ItemStack> list) {
for (int j = 0; j < ALL_CRYSTALS.length; j++) {
2017-06-17 00:48:49 +02:00
list.add(new ItemStack(this, 1, j));
2015-11-09 18:05:52 +01:00
}
}
@Override
protected BlockItemBase getItemBlock() {
2016-04-20 21:39:03 +02:00
return new TheItemBlock(this);
}
2016-02-01 17:49:55 +01:00
@Override
2019-05-02 09:08:15 +02:00
public void registerRendering() {
for (int i = 0; i < ALL_CRYSTALS.length; i++) {
ActuallyAdditions.PROXY.addRenderRegister(new ItemStack(this, 1, i), this.getRegistryName(), TYPE.getName() + "=" + ALL_CRYSTALS[i].name);
2016-02-01 17:49:55 +01:00
}
}
2015-11-09 18:05:52 +01:00
@Override
2019-05-02 09:08:15 +02:00
public IBlockState getStateFromMeta(int meta) {
2016-11-21 16:23:48 +01:00
return this.getDefaultState().withProperty(TYPE, TheCrystals.values()[meta]);
}
@Override
2019-05-02 09:08:15 +02:00
public int getMetaFromState(IBlockState state) {
2016-11-21 16:23:48 +01:00
return state.getValue(TYPE).ordinal();
2015-11-09 18:05:52 +01:00
}
@Override
2019-05-02 09:08:15 +02:00
protected BlockStateContainer createBlockState() {
2016-11-21 16:23:48 +01:00
return new BlockStateContainer(this, TYPE);
}
public static class TheItemBlock extends BlockItemBase {
2015-11-09 18:05:52 +01:00
2019-05-02 09:08:15 +02:00
public TheItemBlock(Block block) {
2015-11-09 18:05:52 +01:00
super(block);
this.setHasSubtypes(true);
this.setMaxDamage(0);
}
@Override
2019-05-02 09:08:15 +02:00
public String getTranslationKey(ItemStack stack) {
return stack.getItemDamage() >= ALL_CRYSTALS.length ? StringUtil.BUGGED_ITEM_NAME : this.getTranslationKey() + "_" + ALL_CRYSTALS[stack.getItemDamage()].name;
2015-11-09 18:05:52 +01:00
}
@Override
2019-05-02 09:08:15 +02:00
public boolean hasEffect(ItemStack stack) {
return this.block instanceof BlockCrystal && ((BlockCrystal) this.block).isEmpowered;
}
2015-11-09 18:05:52 +01:00
}
}