blob: b0bc64a988f58b017a8af69b4f9d67e7a31c1e15 (
plain)
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
|
package me.shedaniel.rei.client;
import com.google.common.collect.Lists;
import io.netty.buffer.Unpooled;
import me.shedaniel.rei.RoughlyEnoughItemsCore;
import me.shedaniel.rei.listeners.ClientLoaded;
import net.fabricmc.api.ClientModInitializer;
import net.fabricmc.loader.FabricLoader;
import net.minecraft.client.MinecraftClient;
import net.minecraft.client.Mouse;
import net.minecraft.enchantment.Enchantment;
import net.minecraft.enchantment.EnchantmentHelper;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.item.Items;
import net.minecraft.server.network.packet.CustomPayloadServerPacket;
import net.minecraft.util.Identifier;
import net.minecraft.util.PacketByteBuf;
import net.minecraft.util.registry.Registry;
import java.awt.*;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
public class ClientHelper implements ClientLoaded, ClientModInitializer {
private static List<ItemStack> itemList;
private static boolean cheating;
public ClientHelper() {
this.itemList = Lists.newLinkedList();
}
public static String getModFromItemStack(ItemStack stack) {
if (!stack.isEmpty()) {
Identifier location = Registry.ITEM.getId(stack.getItem());
assert location != null;
String modid = location.getNamespace();
if (modid.equalsIgnoreCase("minecraft"))
return "Minecraft";
return FabricLoader.INSTANCE.getModContainers().stream()
.map(modContainer -> {
return modContainer.getInfo();
})
.filter(modInfo -> modInfo.getId().equals(modid) || (modInfo.getName() != null && modInfo.getName().equals(modid)))
.findFirst().map(modInfo -> {
if (modInfo.getName() != null)
return modInfo.getName();
return modid;
}).orElse(modid);
}
return "";
}
public static List<ItemStack> getItemList() {
return itemList;
}
public static Point getMouseLocation() {
MinecraftClient client = MinecraftClient.getInstance();
Mouse mouse = client.mouse;
double double_1 = mouse.getX() * (double) client.window.getScaledWidth() / (double) client.window.method_4480();
double double_2 = mouse.getY() * (double) client.window.getScaledHeight() / (double) client.window.method_4507();
return new Point((int) double_1, (int) double_2);
}
public static boolean isCheating() {
return cheating;
}
public static void sendDeletePacket() {
PacketByteBuf buf = new PacketByteBuf(Unpooled.buffer());
MinecraftClient.getInstance().getNetworkHandler().sendPacket(new CustomPayloadServerPacket(RoughlyEnoughItemsCore.DELETE_ITEMS_PACKET, buf));
}
public static boolean tryCheatingStack(ItemStack cheatedStack) {
try {
PacketByteBuf buf = new PacketByteBuf(Unpooled.buffer());
buf.writeItemStack(cheatedStack.copy());
MinecraftClient.getInstance().getNetworkHandler().sendPacket(new CustomPayloadServerPacket(RoughlyEnoughItemsCore.CREATE_ITEMS_PACKET, buf));
return true;
} catch (Exception e) {
return false;
}
}
public static boolean executeRecipeKeyBind() {
return false;
}
public static boolean executeUsageKeyBind() {
return false;
}
@Override
public void clientLoaded() {
Registry.ITEM.forEach(this::registerItem);
Registry.ENCHANTMENT.forEach(enchantment -> {
for(int i = enchantment.getMinimumLevel(); i < enchantment.getMaximumLevel(); i++) {
Map<Enchantment, Integer> map = new HashMap<>();
map.put(enchantment, i);
ItemStack itemStack = new ItemStack(Items.ENCHANTED_BOOK);
EnchantmentHelper.set(map, itemStack);
registerItemStack(itemStack);
}
});
}
public void registerItem(Item item) {
registerItemStack(item.getDefaultStack());
}
public void registerItemStack(ItemStack stack) {
if (!stack.getItem().equals(Items.AIR))
itemList.add(stack);
}
@Override
public void onInitializeClient() {
this.cheating = true;
}
}
|