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
|
package me.Danker.utils;
import java.util.ArrayList;
import java.util.List;
import java.util.regex.Matcher;
import me.Danker.TheMod;
import me.Danker.handlers.TextRenderer;
import net.minecraft.client.Minecraft;
import net.minecraft.client.gui.ScaledResolution;
import net.minecraft.entity.item.EntityItem;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.util.AxisAlignedBB;
import net.minecraft.util.ChatComponentText;
import net.minecraft.util.StringUtils;
public class Utils {
public static int getItems(String item) {
Minecraft mc = Minecraft.getMinecraft();
EntityPlayer player = mc.thePlayer;
double x = player.posX;
double y = player.posY;
double z = player.posZ;
AxisAlignedBB scan = new AxisAlignedBB(x - 6, y - 6, z - 6, x + 6, y + 6, z + 6);
List<EntityItem> items = mc.theWorld.getEntitiesWithinAABB(EntityItem.class, scan);
for (EntityItem i : items) {
String itemName = StringUtils.stripControlCodes(i.getEntityItem().getDisplayName());
if (itemName.equals(item)) return i.getEntityItem().stackSize;
}
// No items found
return 0;
}
public static String returnGoldenEnchants(String line) {
Matcher matcher = TheMod.pattern.matcher(line);
StringBuffer out = new StringBuffer();
while (matcher.find()) {
matcher.appendReplacement(out, TheMod.t6Enchants.get(matcher.group(1)));
}
matcher.appendTail(out);
return out.toString();
}
public static List<String> getMatchingPlayers(String arg) {
List<String> matchingPlayers = new ArrayList<>();
List<EntityPlayer> players = Minecraft.getMinecraft().theWorld.playerEntities;
for (EntityPlayer player : players) {
String playerName = player.getName();
if (playerName.toLowerCase().startsWith(arg.toLowerCase())) {
matchingPlayers.add(playerName);
}
}
return matchingPlayers;
}
public static void createTitle(String text, int seconds) {
Minecraft.getMinecraft().thePlayer.playSound("random.orb", 1, (float) 0.5);
TheMod.titleTimer = seconds * 20;
TheMod.showTitle = true;
TheMod.titleText = text;
}
public static void drawTitle(String text) {
Minecraft mc = Minecraft.getMinecraft();
ScaledResolution scaledResolution = new ScaledResolution(mc);
int height = scaledResolution.getScaledHeight();
int width = scaledResolution.getScaledWidth();
int textLength = mc.fontRendererObj.getStringWidth(text);
double scale = 4;
if (textLength * scale > (width * 0.9F)) {
scale = (width * 0.9F) / (float) textLength;
}
int titleX = (int) ((width / 2) - (textLength * scale / 2));
int titleY = (int) ((height * 0.45) / scale);
new TextRenderer(mc, text, titleX, titleY, scale);
}
}
|