BUff Industrial Jackhammer. Some work on #1944
This commit is contained in:
parent
5d89272a10
commit
525f956e0d
2 changed files with 213 additions and 8 deletions
|
@ -26,14 +26,39 @@ package techreborn.items.tool.industrial;
|
|||
|
||||
import net.fabricmc.api.EnvType;
|
||||
import net.fabricmc.api.Environment;
|
||||
import net.minecraft.block.*;
|
||||
import net.minecraft.client.item.TooltipContext;
|
||||
import net.minecraft.entity.LivingEntity;
|
||||
import net.minecraft.entity.player.PlayerEntity;
|
||||
import net.minecraft.item.ItemGroup;
|
||||
import net.minecraft.item.ItemStack;
|
||||
import net.minecraft.item.Items;
|
||||
import net.minecraft.item.ToolMaterials;
|
||||
import net.minecraft.util.DefaultedList;
|
||||
import net.minecraft.text.LiteralText;
|
||||
import net.minecraft.text.Text;
|
||||
import net.minecraft.util.*;
|
||||
import net.minecraft.util.hit.BlockHitResult;
|
||||
import net.minecraft.util.hit.HitResult;
|
||||
import net.minecraft.util.math.BlockPos;
|
||||
import net.minecraft.util.math.Direction;
|
||||
import net.minecraft.world.RayTraceContext;
|
||||
import net.minecraft.world.World;
|
||||
import reborncore.common.util.ChatUtils;
|
||||
import reborncore.common.util.ItemUtils;
|
||||
import reborncore.common.util.StringUtils;
|
||||
import team.reborn.energy.Energy;
|
||||
import techreborn.config.TechRebornConfig;
|
||||
import techreborn.init.TRContent;
|
||||
import techreborn.items.tool.JackhammerItem;
|
||||
import techreborn.utils.InitUtils;
|
||||
import techreborn.utils.MessageIDs;
|
||||
import techreborn.utils.ToolsUtil;
|
||||
|
||||
import javax.annotation.Nullable;
|
||||
import java.util.Collections;
|
||||
import java.util.HashSet;
|
||||
import java.util.List;
|
||||
import java.util.Set;
|
||||
|
||||
public class IndustrialJackhammerItem extends JackhammerItem {
|
||||
|
||||
|
@ -44,6 +69,187 @@ public class IndustrialJackhammerItem extends JackhammerItem {
|
|||
this.transferLimit = 1000;
|
||||
}
|
||||
|
||||
// Cycle Inactive, Active 3*3 and Active 5*5
|
||||
private void switchAOE(ItemStack stack, int cost, boolean isClient, int messageId){
|
||||
ItemUtils.checkActive(stack, cost, isClient, messageId);
|
||||
if (!ItemUtils.isActive(stack)) {
|
||||
ItemUtils.switchActive(stack, cost, isClient, messageId);
|
||||
stack.getOrCreateTag().putBoolean("AOE5", false);
|
||||
if (isClient) {
|
||||
ChatUtils.sendNoSpamMessages(messageId, new LiteralText(
|
||||
Formatting.GRAY + StringUtils.t("techreborn.message.setTo") + " "
|
||||
+ Formatting.GOLD + "3*3"));
|
||||
}
|
||||
} else {
|
||||
if (isAOE(stack)){
|
||||
ItemUtils.switchActive(stack, cost, isClient, messageId);
|
||||
stack.getOrCreateTag().putBoolean("AOE5", false);
|
||||
}
|
||||
else {
|
||||
stack.getOrCreateTag().putBoolean("AOE5", true);
|
||||
if (isClient) {
|
||||
ChatUtils.sendNoSpamMessages(messageId, new LiteralText(
|
||||
Formatting.GRAY + StringUtils.t("techreborn.message.setTo") + " "
|
||||
+ Formatting.GOLD + "5*5"));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private Set<BlockPos> getTargetBlocks(World worldIn, BlockPos pos, @Nullable LivingEntity entityLiving) {
|
||||
Set<BlockPos> targetBlocks = new HashSet<>();
|
||||
if (!(entityLiving instanceof PlayerEntity)) {
|
||||
return new HashSet<>();
|
||||
}
|
||||
PlayerEntity playerIn = (PlayerEntity) entityLiving;
|
||||
|
||||
//Put a dirt block down to raytrace with to stop it raytracing past the intended block
|
||||
worldIn.setBlockState(pos, Blocks.DIRT.getDefaultState());
|
||||
HitResult hitResult = rayTrace(worldIn, playerIn, RayTraceContext.FluidHandling.NONE);
|
||||
worldIn.setBlockState(pos, Blocks.AIR.getDefaultState());
|
||||
|
||||
if(!(hitResult instanceof BlockHitResult)){
|
||||
return Collections.emptySet();
|
||||
}
|
||||
Direction enumfacing = ((BlockHitResult) hitResult).getSide();
|
||||
int add = isAOE(entityLiving.getMainHandStack()) ? 2 : 0;
|
||||
if (enumfacing == Direction.SOUTH || enumfacing == Direction.NORTH) {
|
||||
for (int i = -1 - add/2; i < 2 + add/2; i++) {
|
||||
for (int j = -1; j < 2 + add; j++) {
|
||||
BlockPos newPos = pos.add(i, j, 0);
|
||||
if (shouldBreak(worldIn, pos, newPos)) {
|
||||
targetBlocks.add(newPos);
|
||||
}
|
||||
}
|
||||
}
|
||||
} else if (enumfacing == Direction.EAST || enumfacing == Direction.WEST) {
|
||||
for (int i = -1 - add/2; i < 2 + add/2; i++) {
|
||||
for (int j = -1; j < 2 + add; j++) {
|
||||
BlockPos newPos = pos.add(0, j, i);
|
||||
if (shouldBreak(worldIn, pos, newPos)) {
|
||||
targetBlocks.add(newPos);
|
||||
}
|
||||
}
|
||||
}
|
||||
} else if (enumfacing == Direction.DOWN || enumfacing == Direction.UP) {
|
||||
Direction playerFacing = playerIn.getHorizontalFacing();
|
||||
int minX = 0;
|
||||
int maxX = 0;
|
||||
int minZ = 0;
|
||||
int maxZ = 0;
|
||||
switch (playerFacing){
|
||||
case SOUTH:
|
||||
minZ = -1;
|
||||
maxZ = 3;
|
||||
minX = -2;
|
||||
maxX = 2;
|
||||
break;
|
||||
case NORTH:
|
||||
minZ = -3;
|
||||
maxZ = 1;
|
||||
minX = -2;
|
||||
maxX = 2;
|
||||
break;
|
||||
case WEST:
|
||||
minZ = -2;
|
||||
maxZ = 2;
|
||||
minX = -3;
|
||||
maxX = 1;
|
||||
break;
|
||||
case EAST:
|
||||
minZ = -2;
|
||||
maxZ = 2;
|
||||
minX = -1;
|
||||
maxX = 3;
|
||||
break;
|
||||
}
|
||||
for (int x = minX; x <= maxX; x++) {
|
||||
for (int z = minZ; z <= maxZ; z++) {
|
||||
BlockPos newPos = pos.add(x, 0, z);
|
||||
if (shouldBreak(worldIn, pos, newPos)) {
|
||||
targetBlocks.add(newPos);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return targetBlocks;
|
||||
}
|
||||
|
||||
private boolean shouldBreak(World worldIn, BlockPos originalPos, BlockPos pos) {
|
||||
if (originalPos.equals(pos)) {
|
||||
return false;
|
||||
}
|
||||
BlockState blockState = worldIn.getBlockState(pos);
|
||||
if (blockState.getMaterial() == Material.AIR) {
|
||||
return false;
|
||||
}
|
||||
if (blockState.getMaterial().isLiquid()) {
|
||||
return false;
|
||||
}
|
||||
if (blockState.getBlock() instanceof OreBlock){
|
||||
return false;
|
||||
}
|
||||
if (blockState.getBlock() instanceof RedstoneOreBlock){
|
||||
return false;
|
||||
}
|
||||
return (Items.IRON_PICKAXE.isEffectiveOn(blockState));
|
||||
}
|
||||
|
||||
private boolean isAOE(ItemStack stack){
|
||||
return !stack.isEmpty() && stack.getTag() != null && stack.getTag().getBoolean("AOE5");
|
||||
}
|
||||
|
||||
// JackhammerItem
|
||||
@Override
|
||||
public boolean postMine(ItemStack stack, World worldIn, BlockState stateIn, BlockPos pos, LivingEntity entityLiving) {
|
||||
if(ItemUtils.isActive(stack)){
|
||||
for (BlockPos additionalPos : getTargetBlocks(worldIn, pos, entityLiving)) {
|
||||
ToolsUtil.breakBlock(stack, worldIn, additionalPos, entityLiving, cost);
|
||||
}
|
||||
}
|
||||
return super.postMine(stack, worldIn, stateIn, pos, entityLiving);
|
||||
}
|
||||
|
||||
// PickaxeItem
|
||||
@Override
|
||||
public float getMiningSpeed(ItemStack stack, BlockState state) {
|
||||
if (state.getMaterial() == Material.STONE && Energy.of(stack).getEnergy() >= cost) {
|
||||
// x4 diamond mining speed
|
||||
return 32.0F;
|
||||
} else {
|
||||
return 0.5F;
|
||||
}
|
||||
}
|
||||
|
||||
// Item
|
||||
@Override
|
||||
public TypedActionResult<ItemStack> use(final World world, final PlayerEntity player, final Hand hand) {
|
||||
final ItemStack stack = player.getStackInHand(hand);
|
||||
if (player.isSneaking()) {
|
||||
switchAOE(stack, cost, world.isClient, MessageIDs.poweredToolID);
|
||||
return new TypedActionResult<>(ActionResult.SUCCESS, stack);
|
||||
}
|
||||
return new TypedActionResult<>(ActionResult.PASS, stack);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void usageTick(World world, LivingEntity entity, ItemStack stack, int i) {
|
||||
ItemUtils.checkActive(stack, cost, entity.world.isClient, MessageIDs.poweredToolID);
|
||||
}
|
||||
|
||||
@Environment(EnvType.CLIENT)
|
||||
@Override
|
||||
public void appendTooltip(ItemStack stack, @Nullable World worldIn, List<Text> tooltip, TooltipContext flagIn) {
|
||||
ItemUtils.buildActiveTooltip(stack, tooltip);
|
||||
if (ItemUtils.isActive(stack)){
|
||||
if (isAOE(stack)) {
|
||||
tooltip.add(new LiteralText("5*5").formatted(Formatting.RED));
|
||||
} else {
|
||||
tooltip.add(new LiteralText("3*3").formatted(Formatting.RED));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Environment(EnvType.CLIENT)
|
||||
@Override
|
||||
public void appendStacks(
|
||||
|
|
|
@ -47,17 +47,16 @@ public class ToolsUtil {
|
|||
if (!(entityLiving instanceof PlayerEntity)) {
|
||||
return;
|
||||
}
|
||||
Random rand = new Random();
|
||||
if (rand.nextInt(EnchantmentHelper.getLevel(Enchantments.UNBREAKING, tool) + 1) == 0) {
|
||||
if (!Energy.of(tool).use(cost)) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
BlockState blockState = world.getBlockState(pos);
|
||||
if (blockState.getHardness(world, pos) == -1.0F) {
|
||||
return;
|
||||
}
|
||||
|
||||
Random rand = new Random();
|
||||
if (rand.nextInt(EnchantmentHelper.getLevel(Enchantments.UNBREAKING, tool) + 1) == 0) {
|
||||
if (!Energy.of(tool).use(cost)) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
blockState.getBlock().afterBreak(world, (PlayerEntity) entityLiving, pos, blockState, world.getBlockEntity(pos), tool);
|
||||
world.setBlockState(pos, Blocks.AIR.getDefaultState());
|
||||
world.removeBlockEntity(pos);
|
||||
|
|
Loading…
Add table
Reference in a new issue