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

118 lines
4.4 KiB
Java
Raw Normal View History

2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.blocks;
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.blocks.base.BlockBase;
import de.ellpeck.actuallyadditions.mod.util.WorldUtil;
import net.minecraft.block.Block;
2016-11-21 16:23:48 +01:00
import net.minecraft.block.BlockDirectional;
2016-03-18 23:47:22 +01:00
import net.minecraft.block.SoundType;
import net.minecraft.block.material.Material;
2016-11-21 16:23:48 +01:00
import net.minecraft.block.state.BlockStateContainer;
import net.minecraft.block.state.IBlockState;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.item.EnumRarity;
import net.minecraft.item.ItemStack;
import net.minecraft.util.EnumFacing;
2016-11-21 16:23:48 +01:00
import net.minecraft.util.Mirror;
import net.minecraft.util.Rotation;
2016-03-18 23:47:22 +01:00
import net.minecraft.util.math.BlockPos;
import net.minecraft.world.World;
import net.minecraftforge.common.ToolType;
import java.util.ArrayList;
import java.util.List;
public class BlockLampPowerer extends Block {
public BlockLampPowerer() {
super(Block.Properties.create(Material.REDSTONE_LIGHT)
.hardnessAndResistance(1.5f, 10.0f)
.harvestTool(ToolType.PICKAXE)
.sound(SoundType.STONE));
}
@Override
2019-05-02 09:10:29 +02:00
public void neighborChanged(IBlockState state, World worldIn, BlockPos pos, Block blockIn, BlockPos otherPos) {
2016-05-19 20:05:12 +02:00
this.updateLamp(worldIn, pos);
}
@Override
2019-05-02 09:10:29 +02:00
public void onBlockAdded(World world, BlockPos pos, IBlockState state) {
2016-01-08 13:31:58 +01:00
this.updateLamp(world, pos);
}
@Override
2019-05-02 09:10:29 +02:00
public void onBlockPlacedBy(World world, BlockPos pos, IBlockState state, EntityLivingBase player, ItemStack stack) {
2016-11-26 21:32:27 +01:00
int rotation = EnumFacing.getDirectionFromEntityLiving(pos, player).ordinal();
2016-07-04 20:15:41 +02:00
world.setBlockState(pos, this.getStateFromMeta(rotation), 2);
super.onBlockPlacedBy(world, pos, state, player, stack);
}
2019-05-02 09:10:29 +02:00
private void updateLamp(World world, BlockPos pos) {
if (!world.isRemote) {
2016-07-04 20:15:41 +02:00
IBlockState state = world.getBlockState(pos);
2018-03-19 16:46:43 +01:00
BlockPos coords = pos.offset(WorldUtil.getDirectionByPistonRotation(state));
2018-08-04 04:22:20 +02:00
this.updateLampsAtPos(world, coords, world.getRedstonePowerFromNeighbors(pos) > 0, new ArrayList<BlockPos>());
}
}
2019-05-02 09:10:29 +02:00
private void updateLampsAtPos(World world, BlockPos pos, boolean powered, List<BlockPos> updatedAlready) {
IBlockState state = world.getBlockState(pos);
Block block = state.getBlock();
2019-05-02 09:10:29 +02:00
if (block instanceof BlockColoredLamp) {
boolean isOn = ((BlockColoredLamp) block).isOn;
2019-05-02 09:10:29 +02:00
if (powered) {
if (!isOn) {
world.setBlockState(pos, InitBlocks.blockColoredLampOn.getDefaultState().withProperty(BlockColoredLamp.TYPE, state.getValue(BlockColoredLamp.TYPE)), 2);
}
2019-05-02 09:10:29 +02:00
} else {
if (isOn) {
world.setBlockState(pos, InitBlocks.blockColoredLamp.getDefaultState().withProperty(BlockColoredLamp.TYPE, state.getValue(BlockColoredLamp.TYPE)), 2);
}
}
this.updateSurrounding(world, pos, powered, updatedAlready);
}
}
2019-05-02 09:10:29 +02:00
private void updateSurrounding(World world, BlockPos pos, boolean powered, List<BlockPos> updatedAlready) {
for (EnumFacing side : EnumFacing.values()) {
BlockPos offset = pos.offset(side);
2019-05-02 09:10:29 +02:00
if (!updatedAlready.contains(offset)) {
updatedAlready.add(pos);
this.updateLampsAtPos(world, offset, powered, updatedAlready);
}
}
}
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-02-01 17:49:55 +01:00
@Override
2019-05-02 09:10:29 +02:00
public IBlockState getStateFromMeta(int meta) {
2018-08-04 04:22:20 +02:00
return this.getDefaultState().withProperty(BlockDirectional.FACING, EnumFacing.byIndex(meta));
2016-11-21 16:23:48 +01:00
}
@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(BlockDirectional.FACING).getIndex();
}
@Override
2019-05-02 09:10:29 +02:00
protected BlockStateContainer createBlockState() {
2016-11-21 16:23:48 +01:00
return new BlockStateContainer(this, BlockDirectional.FACING);
}
@Override
2019-05-02 09:10:29 +02:00
public IBlockState withRotation(IBlockState state, Rotation rot) {
2016-11-21 16:23:48 +01:00
return state.withProperty(BlockDirectional.FACING, rot.rotate(state.getValue(BlockDirectional.FACING)));
}
@Override
2019-05-02 09:10:29 +02:00
public IBlockState withMirror(IBlockState state, Mirror mirror) {
2016-11-21 16:23:48 +01:00
return this.withRotation(state, mirror.toRotation(state.getValue(BlockDirectional.FACING)));
2016-02-01 17:49:55 +01:00
}
}