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

156 lines
5.8 KiB
Java
Raw Normal View History

2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.blocks;
2015-06-28 21:28:58 +02:00
2019-05-02 09:10:29 +02:00
import java.util.Random;
2016-01-08 13:31:58 +01:00
2016-01-08 20:51:03 +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.blocks.metalists.TheColoredLampColors;
import de.ellpeck.actuallyadditions.mod.util.StackUtil;
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.util.StringUtil;
import de.ellpeck.actuallyadditions.mod.util.Util;
2015-06-28 21:28:58 +02:00
import net.minecraft.block.Block;
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-06-28 21:28:58 +02:00
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.EnumRarity;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.util.EnumFacing;
2016-03-18 23:47:22 +01:00
import net.minecraft.util.EnumHand;
2016-11-19 21:11:17 +01:00
import net.minecraft.util.NonNullList;
2016-03-18 23:47:22 +01:00
import net.minecraft.util.math.BlockPos;
2015-06-28 21:28:58 +02:00
import net.minecraft.world.IBlockAccess;
import net.minecraft.world.World;
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-06-28 21:28:58 +02:00
import net.minecraftforge.oredict.OreDictionary;
public class BlockColoredLamp extends Block {
2015-06-28 21:28:58 +02:00
2016-06-17 23:50:38 +02:00
public static final TheColoredLampColors[] ALL_LAMP_TYPES = TheColoredLampColors.values();
public static final PropertyEnum<TheColoredLampColors> TYPE = PropertyEnum.create("type", TheColoredLampColors.class);
2016-05-19 20:05:12 +02:00
public final boolean isOn;
2015-06-28 21:28:58 +02:00
public BlockColoredLamp(boolean isOn) {
super(Block.Properties.create(Material.REDSTONE_LIGHT)
.hardnessAndResistance(0.5f, 3.0f)
.harvestTool(ToolType.PICKAXE));
2015-06-28 21:28:58 +02:00
this.isOn = isOn;
}
2015-10-03 10:19:40 +02:00
@Override
2019-05-02 09:10:29 +02:00
public Item getItemDropped(IBlockState state, Random rand, int par3) {
2015-10-03 10:19:40 +02:00
return Item.getItemFromBlock(InitBlocks.blockColoredLamp);
}
@Override
2019-05-02 09:10:29 +02:00
public int damageDropped(IBlockState state) {
return this.getMetaFromState(state);
2015-06-28 21:28:58 +02:00
}
@Override
2019-05-02 09:10:29 +02:00
public boolean onBlockActivated(World world, BlockPos pos, IBlockState state, EntityPlayer player, EnumHand hand, EnumFacing side, float hitX, float hitY, float hitZ) {
2016-11-19 21:11:17 +01:00
ItemStack stack = player.getHeldItem(hand);
2015-06-28 21:28:58 +02:00
//Turning On
2019-05-02 09:10:29 +02:00
if (hand == EnumHand.MAIN_HAND && stack.isEmpty()) {
world.setBlockState(pos, (this.isOn ? InitBlocks.blockColoredLamp : InitBlocks.blockColoredLampOn).getDefaultState().withProperty(TYPE, state.getValue(TYPE)), 2);
world.notifyLightSet(pos);
2015-06-28 21:28:58 +02:00
return true;
}
2019-05-02 09:10:29 +02:00
if (StackUtil.isValid(stack)) {
//Changing Colors
int[] oreIDs = OreDictionary.getOreIDs(stack);
2019-05-02 09:10:29 +02:00
if (oreIDs.length > 0) {
for (int oreID : oreIDs) {
String name = OreDictionary.getOreName(oreID);
TheColoredLampColors color = TheColoredLampColors.getColorFromDyeName(name);
2019-05-02 09:10:29 +02:00
if (color != null) {
if (this.getMetaFromState(state) != color.ordinal()) {
if (!world.isRemote) {
2016-07-04 20:15:41 +02:00
world.setBlockState(pos, this.getStateFromMeta(color.ordinal()), 2);
2019-05-02 09:10:29 +02:00
if (!player.capabilities.isCreativeMode) {
player.inventory.decrStackSize(player.inventory.currentItem, 1);
}
2015-10-02 16:48:01 +02:00
}
return true;
2015-06-28 21:28:58 +02:00
}
}
}
}
}
return false;
}
@Override
2015-06-28 21:28:58 +02:00
@SideOnly(Side.CLIENT)
2019-05-02 09:10:29 +02:00
public void getSubBlocks(CreativeTabs tab, NonNullList<ItemStack> list) {
for (int j = 0; j < ALL_LAMP_TYPES.length; j++) {
2017-06-17 00:48:49 +02:00
list.add(new ItemStack(this, 1, j));
2015-06-28 21:28:58 +02:00
}
}
@Override
2019-05-02 09:10:29 +02:00
public int getLightValue(IBlockState state, IBlockAccess world, BlockPos pos) {
2015-10-03 10:19:40 +02:00
return this.isOn ? 15 : 0;
}
@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:10:29 +02:00
public void registerRendering() {
for (int i = 0; i < ALL_LAMP_TYPES.length; i++) {
ActuallyAdditions.PROXY.addRenderRegister(new ItemStack(this, 1, i), this.getRegistryName(), TYPE.getName() + "=" + ALL_LAMP_TYPES[i].regName);
2016-02-01 17:49:55 +01:00
}
}
2015-12-19 10:30:39 +01:00
@Override
2019-05-02 09:10:29 +02:00
public EnumRarity getRarity(ItemStack stack) {
return EnumRarity.RARE;
2015-12-19 10:30:39 +01:00
}
2016-01-08 20:51:03 +01:00
@Override
2019-05-02 09:10:29 +02:00
public IBlockState getStateFromMeta(int meta) {
2016-11-21 16:23:48 +01:00
return this.getDefaultState().withProperty(TYPE, TheColoredLampColors.values()[meta]);
}
@Override
2019-05-02 09:10:29 +02:00
public int getMetaFromState(IBlockState state) {
2016-11-21 16:23:48 +01:00
return state.getValue(TYPE).ordinal();
}
@Override
2019-05-02 09:10:29 +02:00
protected BlockStateContainer createBlockState() {
2016-11-21 16:23:48 +01:00
return new BlockStateContainer(this, TYPE);
2016-01-08 20:51:03 +01:00
}
public static class TheItemBlock extends BlockItemBase {
2015-06-28 21:28:58 +02:00
2019-05-02 09:10:29 +02:00
public TheItemBlock(Block block) {
2015-06-28 21:28:58 +02:00
super(block);
this.setHasSubtypes(true);
this.setMaxDamage(0);
}
@Override
2019-05-02 09:10:29 +02:00
public String getItemStackDisplayName(ItemStack stack) {
if (stack.getItemDamage() >= ALL_LAMP_TYPES.length) { return StringUtil.BUGGED_ITEM_NAME; }
if (Util.isClient()) return super.getItemStackDisplayName(stack) + (((BlockColoredLamp) this.block).isOn ? " (" + StringUtil.localize("tooltip." + ActuallyAdditions.MODID + ".onSuffix.desc") + ")" : "");
2019-02-27 19:53:05 +01:00
else return super.getItemStackDisplayName(stack);
2015-06-28 21:28:58 +02:00
}
2015-10-03 10:19:40 +02:00
@Override
2019-05-02 09:10:29 +02:00
public String getTranslationKey(ItemStack stack) {
return InitBlocks.blockColoredLamp.getTranslationKey() + "_" + ALL_LAMP_TYPES[stack.getItemDamage()].regName;
2015-10-03 10:19:40 +02:00
}
2015-06-28 21:28:58 +02:00
}
}