minecraft-source/src/net/minecraft/world/level/block/CraftingTableBlock.java

46 lines
1.8 KiB
Java

package net.minecraft.world.level.block;
import net.minecraft.network.chat.TranslatableComponent;
import net.minecraft.world.inventory.AbstractContainerMenu;
import net.minecraft.world.entity.player.Inventory;
import net.minecraft.world.SimpleMenuProvider;
import net.minecraft.world.inventory.CraftingMenu;
import net.minecraft.world.inventory.ContainerLevelAccess;
import net.minecraft.world.MenuProvider;
import net.minecraft.stats.Stats;
import net.minecraft.world.InteractionResult;
import net.minecraft.world.phys.BlockHitResult;
import net.minecraft.world.InteractionHand;
import net.minecraft.world.entity.player.Player;
import net.minecraft.core.BlockPos;
import net.minecraft.world.level.Level;
import net.minecraft.world.level.block.state.BlockState;
import net.minecraft.network.chat.Component;
public class CraftingTableBlock extends Block {
private static final Component CONTAINER_TITLE;
protected CraftingTableBlock(final Properties c) {
super(c);
}
@Override
public InteractionResult use(final BlockState byg, final Level bjt, final BlockPos fk, final Player ayg, final InteractionHand ajh, final BlockHitResult cvd) {
if (bjt.isClientSide) {
return InteractionResult.SUCCESS;
}
ayg.openMenu(byg.getMenuProvider(bjt, fk));
ayg.awardStat(Stats.INTERACT_WITH_CRAFTING_TABLE);
return InteractionResult.SUCCESS;
}
@Override
public MenuProvider getMenuProvider(final BlockState byg, final Level bjt, final BlockPos fk) {
return new SimpleMenuProvider((integer, ayf, ayg) -> new CraftingMenu(integer, ayf, ContainerLevelAccess.create(bjt, fk)), CraftingTableBlock.CONTAINER_TITLE);
}
static {
CONTAINER_TITLE = new TranslatableComponent("container.crafting", new Object[0]);
}
}