ModernLifePatch/src-source/main/java/com/dairymoose/modernlife/blocks/FlatScreenTvBlock.java
2024-10-26 09:40:21 +08:00

75 lines
3.3 KiB
Java

package com.dairymoose.modernlife.blocks;
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.item.context.BlockPlaceContext;
import net.minecraft.world.level.BlockGetter;
import net.minecraft.world.level.block.Block;
import net.minecraft.world.level.block.state.BlockBehaviour;
import net.minecraft.world.level.block.state.BlockState;
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/FlatScreenTvBlock.class */
public class FlatScreenTvBlock extends StandardHorizontalBlock {
protected static final VoxelShape SHAPE_NORTH = (VoxelShape) Stream.of((Object[]) new VoxelShape[]{Block.box(6.0d, 0.0d, 6.0d, 10.0d, 2.0d, 10.0d), Block.box(-11.1d, 1.525d, 7.0d, 27.075d, 22.65d, 9.0d)}).reduce((v1, v2) -> {
return Shapes.join((VoxelShape) v1, (VoxelShape) v2, BooleanOp.OR);
}).get();
protected static final VoxelShape SHAPE_EAST = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_NORTH);
protected static final VoxelShape SHAPE_SOUTH = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_EAST);
protected static final VoxelShape SHAPE_WEST = ModernLifeUtil.RotateVoxelShapeClockwise(SHAPE_SOUTH);
public FlatScreenTvBlock(Properties p_i48377_1_) {
super(p_i48377_1_);
}
@Override // com.dairymoose.modernlife.blocks.StandardHorizontalBlock
public BlockState getStateForPlacement(BlockPlaceContext context) {
return (BlockState) defaultBlockState().setValue(HorizontalDirectionalBlock.FACING, context.getHorizontalDirection().getOpposite());
}
/* renamed from: com.dairymoose.modernlife.blocks.FlatScreenTvBlock$1 */
/* loaded from: outputsrg.jar:com/dairymoose/modernlife/blocks/FlatScreenTvBlock$1.class */
static /* synthetic */ class C00211 {
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 (C00211.$SwitchMap$net$minecraft$core$Direction[bs.getValue(HorizontalDirectionalBlock.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;
}
}
}