Bonjour,
je voulais créer un item qui permet de poser des blocs avec un clic droit mais éclipse m’indique des erreurs et je ne sais pas comment les résoudre.
Voici la classe de l’item :
| package dev.mff.mod1.common.item; |
| |
| import dev.mff.mod1.ModBlocks; |
| import net.minecraft.block.Block; |
| import net.minecraft.block.BlockBush; |
| import net.minecraft.block.state.BlockState; |
| import net.minecraft.block.state.IBlockState; |
| import net.minecraft.init.Blocks; |
| import net.minecraft.item.Item; |
| import net.minecraft.item.ItemUseContext; |
| import net.minecraft.util.EnumActionResult; |
| import net.minecraft.util.EnumFacing; |
| import net.minecraft.util.math.BlockPos; |
| import net.minecraft.world.World; |
| import net.minecraftforge.eventbus.api.SubscribeEvent; |
| import static net.minecraft.util.EnumFacing.*; |
| |
| public class ConstructingGlove extends Item { |
| |
| public ConstructingGlove(Properties properties) { |
| super(properties);} |
| @SubscribeEvent |
| public EnumActionResult onItemUse(ItemUseContext useContext) { |
| BlockPos blockpos = useContext.getPos(); |
| int x = blockpos.getX(); |
| int y = blockpos.getY(); |
| int z = blockpos.getZ(); |
| World world = useContext.getWorld(); |
| IBlockState iblockstate = world.getBlockState(blockpos); |
| |
| IBlockState testblock_state = ModBlocks.TEST_BLOCK.getDefaultState(); |
| |
| BlockPos up_pos = new BlockPos(x, y + 1, z); |
| if (isBlockAIR(up_pos)) { |
| world.setBlockState(blockpos, testblock_state); |
| |
| } else { |
| switch (this.getEnumFacing()) { |
| case EAST: |
| BlockPos east_pos = new BlockPos(x + 1, y, z); |
| if (isBlockAIR(east_pos)) { |
| world.setBlockState(east_pos, testblock_state); |
| break; |
| } |
| case WEST: |
| BlockPos west_pos = new BlockPos(x - 1, y, z); |
| if (isBlockAIR(west_pos)) { |
| world.setBlockState(west_pos, testblock_state); |
| break; |
| } |
| case NORTH: |
| BlockPos north_pos = new BlockPos(x, y, z + 1); |
| if (isBlockAIR(north_pos)) { |
| world.setBlockState(north_pos, testblock_state); |
| break; |
| } |
| case SOUTH: |
| BlockPos south_pos = new BlockPos(x, y, z - 1); |
| if (isBlockAIR(south_pos)) { |
| world.setBlockState(south_pos, testblock_state); |
| break; |
| } |
| case DOWN: |
| BlockPos down_pos = new BlockPos(x, y - 1, z); |
| if (isBlockAIR(down_pos)) { |
| world.setBlockState(down_pos, testblock_state); |
| break; |
| } |
| } |
| } |
| |
| |
| return EnumActionResult.SUCCESS; |
| |
| } |
| private boolean isBlockAIR(BlockPos pos) { |
| |
| Block getBlock = this.world.getBlockState(pos).getBlock(); |
| if (getBlock instanceof BlockBush) return true; |
| Block[] a = {Blocks.CAVE_AIR, Blocks.AIR, Blocks.SNOW, Blocks.VINE}; |
| for (Block target : a) { |
| if (getBlock == target) return true; |
| } |
| return false; |
| } |
| } |
| |
Les erreurs (les morceau soulignés en rouge) que éclipse m’indique sont :
- this.getEnumFacing()
- this.world.getBlockState(pos).getBlock()
Pour résoudre mon problème je pense qu’il me faudrait quelque chose qui puisse m’indiquer sur quelle face du bloc je clic pour ensuite faire fonctionner le switch. Malheureusement je ne sais pas comment faire.
Merci de vos réponses
