package com.dairymoose.modernlife.blocks; import com.dairymoose.modernlife.tileentities.CCTVCameraBlockEntity; import com.dairymoose.modernlife.util.ModernLifeUtil; import java.util.stream.Stream; import net.minecraft.core.BlockPos; import net.minecraft.core.Direction; import net.minecraft.world.entity.LivingEntity; import net.minecraft.world.item.ItemStack; import net.minecraft.world.item.context.BlockPlaceContext; import net.minecraft.world.level.BlockGetter; import net.minecraft.world.level.Level; import net.minecraft.world.level.LevelAccessor; import net.minecraft.world.level.LevelReader; import net.minecraft.world.level.block.Block; import net.minecraft.world.level.block.Blocks; import net.minecraft.world.level.block.EntityBlock; import net.minecraft.world.level.block.FaceAttachedHorizontalDirectionalBlock; import net.minecraft.world.level.block.Mirror; import net.minecraft.world.level.block.Rotation; import net.minecraft.world.level.block.entity.BlockEntity; import net.minecraft.world.level.block.state.BlockBehaviour; import net.minecraft.world.level.block.state.BlockState; import net.minecraft.world.level.block.state.StateDefinition; import net.minecraft.world.level.block.state.properties.BlockStateProperties; import net.minecraft.world.level.block.state.properties.DirectionProperty; import net.minecraft.world.level.block.state.properties.Property; import net.minecraft.world.phys.shapes.BooleanOp; import net.minecraft.world.phys.shapes.CollisionContext; import net.minecraft.world.phys.shapes.Shapes; import net.minecraft.world.phys.shapes.VoxelShape; /* loaded from: outputsrg.jar:com/dairymoose/modernlife/blocks/CCTVCameraBlock.class */ public class CCTVCameraBlock extends Block implements EntityBlock { protected static final VoxelShape SHAPE_SOUTH = (VoxelShape) Stream.of((Object[]) new VoxelShape[]{Block.box(6.5d, 5.0d, 0.0d, 9.5d, 8.5d, 5.0d), Block.box(6.5d, 7.75d, 4.4d, 9.5d, 10.5d, 10.1d)}).reduce((v1, v2) -> { return Shapes.join((VoxelShape) v1, (VoxelShape) v2, BooleanOp.OR); }).get(); protected static final VoxelShape SHAPE_WEST = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_SOUTH); protected static final VoxelShape SHAPE_NORTH = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_WEST); protected static final VoxelShape SHAPE_EAST = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_NORTH); public static final DirectionProperty FACING = BlockStateProperties.HORIZONTAL_FACING; public CCTVCameraBlock(Properties props) { super(props); registerDefaultState((BlockState) this.stateDefinition.any().setValue(FACING, Direction.SOUTH)); } public BlockState rotate(BlockState state, Rotation rotation) { return (BlockState) state.setValue(FACING, rotation.rotate(state.getValue(FACING))); } public BlockState mirror(BlockState state, Mirror mirror) { return state.rotate(mirror.getRotation(state.getValue(FACING))); } @Deprecated public void onRemove(BlockState p_196243_1_, Level p_196243_2_, BlockPos p_196243_3_, BlockState p_196243_4_, boolean p_196243_5_) { BlockEntity tileEntity = p_196243_2_.getBlockEntity(p_196243_3_); if (tileEntity instanceof CCTVCameraBlockEntity) { CCTVCameraBlockEntity.cctvCameras.remove(tileEntity); } super.onRemove(p_196243_1_, p_196243_2_, p_196243_3_, p_196243_4_, p_196243_5_); } public BlockState updateShape(BlockState p_196271_1_, Direction p_196271_2_, BlockState p_196271_3_, LevelAccessor p_196271_4_, BlockPos p_196271_5_, BlockPos p_196271_6_) { if (p_196271_1_.getValue(FACING).getOpposite() == p_196271_2_ && !p_196271_1_.canSurvive(p_196271_4_, p_196271_5_)) { return Blocks.AIR.defaultBlockState(); } return super.updateShape(p_196271_1_, p_196271_2_, p_196271_3_, p_196271_4_, p_196271_5_, p_196271_6_); } public void setPlacedBy(Level p_180633_1_, BlockPos p_180633_2_, BlockState p_180633_3_, LivingEntity p_180633_4_, ItemStack p_180633_5_) { BlockEntity tileEntity = p_180633_1_.getBlockEntity(p_180633_2_); if (tileEntity instanceof CCTVCameraBlockEntity) { CCTVCameraBlockEntity cameraBlockEntity = (CCTVCameraBlockEntity) tileEntity; cameraBlockEntity.setInternalId(CCTVCameraBlockEntity.cctvCameras.size() + 1); } } /* renamed from: com.dairymoose.modernlife.blocks.CCTVCameraBlock$1 */ /* loaded from: outputsrg.jar:com/dairymoose/modernlife/blocks/CCTVCameraBlock$1.class */ static /* synthetic */ class C00101 { static final /* synthetic */ int[] $SwitchMap$net$minecraft$core$Direction = new int[Direction.values().length]; static { try { $SwitchMap$net$minecraft$core$Direction[Direction.NORTH.ordinal()] = 1; } catch (NoSuchFieldError e) { } try { $SwitchMap$net$minecraft$core$Direction[Direction.SOUTH.ordinal()] = 2; } catch (NoSuchFieldError e2) { } try { $SwitchMap$net$minecraft$core$Direction[Direction.EAST.ordinal()] = 3; } catch (NoSuchFieldError e3) { } try { $SwitchMap$net$minecraft$core$Direction[Direction.WEST.ordinal()] = 4; } catch (NoSuchFieldError e4) { } } } public VoxelShape getShape(BlockState bs, BlockGetter reader, BlockPos pos, CollisionContext sel) { switch (C00101.$SwitchMap$net$minecraft$core$Direction[bs.getValue(FACING).ordinal()]) { case 1: return SHAPE_NORTH; case 2: return SHAPE_SOUTH; case 3: return SHAPE_EAST; case 4: return SHAPE_WEST; default: return SHAPE_NORTH; } } public BlockEntity newBlockEntity(BlockPos pos, BlockState state) { CCTVCameraBlockEntity toReturn = (CCTVCameraBlockEntity) CCTVCameraBlockEntity.CCTV_CAMERA.create(pos, state); return toReturn; } protected void createBlockStateDefinition(StateDefinition.Builder builder) { builder.add(new Property[]{FACING}); } public boolean canSurvive(BlockState p_196260_1_, LevelReader p_196260_2_, BlockPos p_196260_3_) { return FaceAttachedHorizontalDirectionalBlock.canAttach(p_196260_2_, p_196260_3_, p_196260_1_.getValue(FACING).getOpposite()); } public BlockState getStateForPlacement(BlockPlaceContext context) { Direction[] var2 = context.getNearestLookingDirections(); for (Direction lvt_5_1_ : var2) { if (lvt_5_1_.getAxis() != Direction.Axis.Y) { BlockState lvt_6_2_ = (BlockState) defaultBlockState().setValue(FACING, lvt_5_1_.getOpposite()); if (lvt_6_2_.canSurvive(context.getLevel(), context.getClickedPos())) { return lvt_6_2_; } } } return defaultBlockState(); } }