91 lines
3.4 KiB
Java
91 lines
3.4 KiB
Java
package ru.bclib.blocks;
|
|
|
|
import java.util.Collections;
|
|
import java.util.List;
|
|
import java.util.function.Consumer;
|
|
|
|
import com.google.common.collect.Lists;
|
|
|
|
import net.fabricmc.fabric.api.object.builder.v1.block.FabricBlockSettings;
|
|
import net.fabricmc.fabric.api.tool.attribute.v1.FabricToolTags;
|
|
import net.minecraft.client.renderer.block.model.BlockModel;
|
|
import net.minecraft.resources.ResourceLocation;
|
|
import net.minecraft.world.item.ItemStack;
|
|
import net.minecraft.world.item.enchantment.EnchantmentHelper;
|
|
import net.minecraft.world.item.enchantment.Enchantments;
|
|
import net.minecraft.world.level.block.Block;
|
|
import net.minecraft.world.level.block.Blocks;
|
|
import net.minecraft.world.level.block.LeavesBlock;
|
|
import net.minecraft.world.level.block.state.BlockState;
|
|
import net.minecraft.world.level.material.MaterialColor;
|
|
import net.minecraft.world.level.storage.loot.LootContext;
|
|
import net.minecraft.world.level.storage.loot.parameters.LootContextParams;
|
|
import ru.bclib.client.render.BCLRenderLayer;
|
|
import ru.bclib.interfaces.BlockModelProvider;
|
|
import ru.bclib.interfaces.RenderLayerProvider;
|
|
import ru.bclib.util.MHelper;
|
|
|
|
public class BaseLeavesBlock extends LeavesBlock implements BlockModelProvider, RenderLayerProvider {
|
|
protected final Block sapling;
|
|
|
|
private static FabricBlockSettings makeLeaves(MaterialColor color) {
|
|
return FabricBlockSettings.copyOf(Blocks.OAK_LEAVES)
|
|
.mapColor(color)
|
|
.breakByTool(FabricToolTags.HOES)
|
|
.breakByTool(FabricToolTags.SHEARS)
|
|
.breakByHand(true)
|
|
.allowsSpawning((state, world, pos, type) -> false)
|
|
.suffocates((state, world, pos) -> false)
|
|
.blockVision((state, world, pos) -> false);
|
|
}
|
|
|
|
public BaseLeavesBlock(Block sapling, MaterialColor color, Consumer<FabricBlockSettings> customizeProperties) {
|
|
super(BaseBlock.acceptAndReturn(customizeProperties, makeLeaves(color)));
|
|
this.sapling = sapling;
|
|
}
|
|
|
|
public BaseLeavesBlock(Block sapling, MaterialColor color, int light, Consumer<FabricBlockSettings> customizeProperties) {
|
|
super(BaseBlock.acceptAndReturn(customizeProperties, makeLeaves(color).luminance(light)));
|
|
this.sapling = sapling;
|
|
}
|
|
|
|
public BaseLeavesBlock(Block sapling, MaterialColor color) {
|
|
super(makeLeaves(color));
|
|
this.sapling = sapling;
|
|
}
|
|
|
|
public BaseLeavesBlock(Block sapling, MaterialColor color, int light) {
|
|
super(makeLeaves(color).lightLevel(light));
|
|
this.sapling = sapling;
|
|
}
|
|
|
|
@Override
|
|
public BCLRenderLayer getRenderLayer() {
|
|
return BCLRenderLayer.CUTOUT;
|
|
}
|
|
|
|
@Override
|
|
@SuppressWarnings("deprecation")
|
|
public List<ItemStack> getDrops(BlockState state, LootContext.Builder builder) {
|
|
ItemStack tool = builder.getParameter(LootContextParams.TOOL);
|
|
if (tool != null) {
|
|
if (FabricToolTags.SHEARS.contains(tool.getItem()) || EnchantmentHelper.getItemEnchantmentLevel(
|
|
Enchantments.SILK_TOUCH,
|
|
tool
|
|
) > 0) {
|
|
return Collections.singletonList(new ItemStack(this));
|
|
}
|
|
int fortune = EnchantmentHelper.getItemEnchantmentLevel(Enchantments.BLOCK_FORTUNE, tool);
|
|
if (MHelper.RANDOM.nextInt(16) <= fortune) {
|
|
return Lists.newArrayList(new ItemStack(sapling));
|
|
}
|
|
return Lists.newArrayList();
|
|
}
|
|
return MHelper.RANDOM.nextInt(16) == 0 ? Lists.newArrayList(new ItemStack(sapling)) : Lists.newArrayList();
|
|
}
|
|
|
|
@Override
|
|
public BlockModel getItemModel(ResourceLocation resourceLocation) {
|
|
return getBlockModel(resourceLocation, defaultBlockState());
|
|
}
|
|
}
|