111 lines
4.1 KiB
Java
111 lines
4.1 KiB
Java
package ru.betterend.blocks;
|
|
|
|
import java.util.Collections;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
import java.util.Random;
|
|
|
|
import com.google.common.collect.Maps;
|
|
|
|
import net.fabricmc.fabric.api.object.builder.v1.block.FabricBlockSettings;
|
|
import net.fabricmc.fabric.api.tool.attribute.v1.FabricToolTags;
|
|
import net.minecraft.block.Block;
|
|
import net.minecraft.block.BlockState;
|
|
import net.minecraft.block.Blocks;
|
|
import net.minecraft.block.MaterialColor;
|
|
import net.minecraft.block.SnowBlock;
|
|
import net.minecraft.enchantment.EnchantmentHelper;
|
|
import net.minecraft.enchantment.Enchantments;
|
|
import net.minecraft.entity.player.PlayerEntity;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.loot.context.LootContext;
|
|
import net.minecraft.loot.context.LootContextParameters;
|
|
import net.minecraft.server.network.ServerPlayerEntity;
|
|
import net.minecraft.server.world.ServerWorld;
|
|
import net.minecraft.sound.SoundCategory;
|
|
import net.minecraft.sound.SoundEvents;
|
|
import net.minecraft.util.ActionResult;
|
|
import net.minecraft.util.Hand;
|
|
import net.minecraft.util.Identifier;
|
|
import net.minecraft.util.hit.BlockHitResult;
|
|
import net.minecraft.util.math.BlockPos;
|
|
import net.minecraft.util.math.Direction;
|
|
import net.minecraft.util.registry.Registry;
|
|
import net.minecraft.world.World;
|
|
import net.minecraft.world.WorldView;
|
|
import net.minecraft.world.chunk.light.ChunkLightProvider;
|
|
import ru.betterend.blocks.basis.BlockBase;
|
|
import ru.betterend.patterns.Patterns;
|
|
|
|
public class EndTerrainBlock extends BlockBase {
|
|
private Block pathBlock;
|
|
|
|
public EndTerrainBlock(MaterialColor color) {
|
|
super(FabricBlockSettings.copyOf(Blocks.END_STONE).materialColor(color).sounds(BlockSounds.TERRAIN_SOUND).ticksRandomly());
|
|
}
|
|
|
|
public void setPathBlock(Block roadBlock) {
|
|
this.pathBlock = roadBlock;
|
|
}
|
|
|
|
@Override
|
|
public ActionResult onUse(BlockState state, World world, BlockPos pos, PlayerEntity player, Hand hand, BlockHitResult hit) {
|
|
if (pathBlock != null && player.getMainHandStack().getItem().isIn(FabricToolTags.SHOVELS)) {
|
|
world.playSound(player, pos, SoundEvents.ITEM_SHOVEL_FLATTEN, SoundCategory.BLOCKS, 1.0F, 1.0F);
|
|
if (!world.isClient) {
|
|
world.setBlockState(pos, pathBlock.getDefaultState());
|
|
if (player != null && !player.isCreative()) {
|
|
player.getMainHandStack().damage(1, world.random, (ServerPlayerEntity) player);
|
|
}
|
|
}
|
|
return ActionResult.SUCCESS;
|
|
}
|
|
return ActionResult.FAIL;
|
|
}
|
|
|
|
@Override
|
|
public List<ItemStack> getDroppedStacks(BlockState state, LootContext.Builder builder) {
|
|
ItemStack tool = builder.get(LootContextParameters.TOOL);
|
|
if (tool != null && EnchantmentHelper.getLevel(Enchantments.SILK_TOUCH, tool) > 0) {
|
|
return Collections.singletonList(new ItemStack(this));
|
|
}
|
|
return Collections.singletonList(new ItemStack(Blocks.END_STONE));
|
|
}
|
|
|
|
@Override
|
|
public void randomTick(BlockState state, ServerWorld world, BlockPos pos, Random random) {
|
|
if (random.nextInt(16) == 0 && !canSurvive(state, world, pos)) {
|
|
world.setBlockState(pos, Blocks.END_STONE.getDefaultState());
|
|
}
|
|
}
|
|
|
|
public static boolean canSurvive(BlockState state, WorldView worldView, BlockPos pos) {
|
|
BlockPos blockPos = pos.up();
|
|
BlockState blockState = worldView.getBlockState(blockPos);
|
|
if (blockState.isOf(Blocks.SNOW) && (Integer) blockState.get(SnowBlock.LAYERS) == 1) {
|
|
return true;
|
|
}
|
|
else if (blockState.getFluidState().getLevel() == 8) {
|
|
return false;
|
|
}
|
|
else {
|
|
int i = ChunkLightProvider.getRealisticOpacity(worldView, state, pos, blockState, blockPos, Direction.UP, blockState.getOpacity(worldView, blockPos));
|
|
return i < 5;
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public String getModelPattern(String block) {
|
|
String name = Registry.BLOCK.getId(this).getPath();
|
|
Map<String, String> map = Maps.newHashMap();
|
|
map.put("%top%", "betterend:block/" + name + "_top");
|
|
map.put("%side%", "betterend:block/" + name + "_side");
|
|
map.put("%bottom%", "minecraft:block/end_stone");
|
|
return Patterns.createJson(Patterns.BLOCK_TOP_SIDE_BOTTOM, map);
|
|
}
|
|
|
|
@Override
|
|
public Identifier statePatternId() {
|
|
return Patterns.STATE_ROTATED_TOP;
|
|
}
|
|
}
|