1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
|
package rosegoldaddons.features;
import net.minecraft.block.Block;
import net.minecraft.block.BlockAir;
import net.minecraft.block.BlockStainedGlass;
import net.minecraft.block.BlockStainedGlassPane;
import net.minecraft.block.state.IBlockState;
import net.minecraft.client.Minecraft;
import net.minecraft.client.multiplayer.PlayerControllerMP;
import net.minecraft.init.Blocks;
import net.minecraft.item.EnumDyeColor;
import net.minecraft.network.play.client.C07PacketPlayerDigging;
import net.minecraft.network.play.client.C0APacketAnimation;
import net.minecraft.util.*;
import net.minecraftforge.client.event.RenderWorldLastEvent;
import net.minecraftforge.event.world.BlockEvent;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
import net.minecraftforge.fml.common.gameevent.TickEvent;
import rosegoldaddons.Main;
import rosegoldaddons.utils.ChatUtils;
import rosegoldaddons.utils.PlayerUtils;
import rosegoldaddons.utils.RenderUtils;
import java.awt.*;
import java.util.ArrayList;
public class GemstoneAura {
private static int currentDamage;
private static byte blockHitDelay = 0;
private static BlockPos blockPos;
@SubscribeEvent
public void onTick(TickEvent.ClientTickEvent event) {
if (!Main.gemNukeToggle) {
currentDamage = 0;
return;
}
if (event.phase == TickEvent.Phase.END) {
if(PlayerUtils.pickaxeAbilityReady && Minecraft.getMinecraft().thePlayer != null) {
Minecraft.getMinecraft().playerController.sendUseItem(Minecraft.getMinecraft().thePlayer, Minecraft.getMinecraft().theWorld, Minecraft.getMinecraft().thePlayer.inventory.getStackInSlot(Minecraft.getMinecraft().thePlayer.inventory.currentItem));
}
if(currentDamage > 100) {
currentDamage = 0;
}
if(blockPos != null) {
IBlockState blockState = Minecraft.getMinecraft().theWorld.getBlockState(blockPos);
if (blockState.getBlock() != Blocks.stained_glass && blockState.getBlock() != Blocks.stained_glass_pane) {
currentDamage = 0;
}
}
if(currentDamage == 0) {
blockPos = closestGemstone();
}
if (blockPos != null) {
if (blockHitDelay > 0) {
blockHitDelay--;
return;
}
MovingObjectPosition fake = Minecraft.getMinecraft().objectMouseOver;
fake.hitVec = new Vec3(blockPos);
EnumFacing enumFacing = fake.sideHit;
if (currentDamage == 0 && enumFacing != null) {
Minecraft.getMinecraft().thePlayer.sendQueue.addToSendQueue(new C07PacketPlayerDigging(C07PacketPlayerDigging.Action.START_DESTROY_BLOCK, blockPos, enumFacing));
}
PlayerUtils.swingItem();
currentDamage += 1;
}
}
}
@SubscribeEvent
public void renderWorld(RenderWorldLastEvent event) {
if (!Main.gemNukeToggle) return;
if (blockPos != null) {
IBlockState blockState = Minecraft.getMinecraft().theWorld.getBlockState(blockPos);
EnumDyeColor dyeColor = null;
Color color = Color.BLACK;
if (blockState.getBlock() == Blocks.stained_glass) {
dyeColor = blockState.getValue(BlockStainedGlass.COLOR);
}
if (blockState.getBlock() == Blocks.stained_glass_pane) {
dyeColor = blockState.getValue(BlockStainedGlassPane.COLOR);
}
if (dyeColor == EnumDyeColor.RED) {
color = new Color(188, 3, 29);
} else if (dyeColor == EnumDyeColor.PURPLE) {
color = new Color(137, 0, 201);
} else if (dyeColor == EnumDyeColor.LIME) {
color = new Color(157, 249, 32);
} else if (dyeColor == EnumDyeColor.LIGHT_BLUE) {
color = new Color(60, 121, 224);
} else if (dyeColor == EnumDyeColor.ORANGE) {
color = new Color(237, 139, 35);
} else if (dyeColor == EnumDyeColor.YELLOW) {
color = new Color(249, 215, 36);
} else if (dyeColor == EnumDyeColor.MAGENTA) {
color = new Color(214, 15, 150);
}
RenderUtils.drawBlockBox(blockPos, color, true, event.partialTicks);
}
}
private BlockPos closestGemstone() {
int r = 6;
if (Minecraft.getMinecraft().thePlayer == null) return null;
BlockPos playerPos = Minecraft.getMinecraft().thePlayer.getPosition();
playerPos = playerPos.add(0, 1, 0);
Vec3 playerVec = Minecraft.getMinecraft().thePlayer.getPositionVector();
Vec3i vec3i = new Vec3i(r, r, r);
ArrayList<Vec3> chests = new ArrayList<Vec3>();
if (playerPos != null) {
for (BlockPos blockPos : BlockPos.getAllInBox(playerPos.add(vec3i), playerPos.subtract(vec3i))) {
IBlockState blockState = Minecraft.getMinecraft().theWorld.getBlockState(blockPos);
//Minecraft.getMinecraft().thePlayer.addChatMessage(new ChatComponentText(blockState.getBlock().toString()));
if (blockState.getBlock() == Blocks.stained_glass) {
chests.add(new Vec3(blockPos.getX() + 0.5, blockPos.getY(), blockPos.getZ() + 0.5));
}
if(!Main.configFile.prioblocks) {
if (blockState.getBlock() == Blocks.stained_glass_pane) {
chests.add(new Vec3(blockPos.getX() + 0.5, blockPos.getY(), blockPos.getZ() + 0.5));
}
}
}
if(Main.configFile.prioblocks) {
for (BlockPos blockPos : BlockPos.getAllInBox(playerPos.add(vec3i), playerPos.subtract(vec3i))) {
IBlockState blockState = Minecraft.getMinecraft().theWorld.getBlockState(blockPos);
if(!Main.configFile.prioblocks) {
if (blockState.getBlock() == Blocks.stained_glass_pane) {
chests.add(new Vec3(blockPos.getX() + 0.5, blockPos.getY(), blockPos.getZ() + 0.5));
}
}
}
}
}
double smallest = 9999;
Vec3 closest = null;
for (int i = 0; i < chests.size(); i++) {
double dist = chests.get(i).distanceTo(playerVec);
if (dist < smallest) {
smallest = dist;
closest = chests.get(i);
}
}
if (closest != null && smallest < 5) {
return new BlockPos(closest.xCoord, closest.yCoord, closest.zCoord);
}
return null;
}
}
|