blob: cf74fafbd4542a595b279c0f880beb39d105636b (
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
|
package me.shedaniel.rei.client;
import com.google.common.collect.Lists;
import me.shedaniel.rei.gui.ContainerScreenOverlay;
import me.shedaniel.rei.gui.widget.TextFieldWidget;
import me.shedaniel.rei.listeners.IMixinContainerScreen;
import net.minecraft.client.MinecraftClient;
import net.minecraft.client.gui.ContainerScreen;
import net.minecraft.item.ItemStack;
import java.util.List;
public class GuiHelper {
public static TextFieldWidget searchField;
public static List<ItemStack> inventoryStacks = Lists.newArrayList();
private static boolean overlayVisible = true;
private static ContainerScreenOverlay overlay;
private static ContainerScreen lastContainerScreen;
public static boolean isOverlayVisible() {
return overlayVisible;
}
public static void toggleOverlayVisible() {
overlayVisible = !overlayVisible;
}
public static ContainerScreenOverlay getLastOverlay(boolean reset) {
if (overlay == null || reset) {
overlay = new ContainerScreenOverlay();
overlay.onInitialized();
}
return overlay;
}
public static ContainerScreenOverlay getLastOverlay() {
return getLastOverlay(false);
}
public static void onTick(MinecraftClient client) {
if (client.currentScreen instanceof ContainerScreen && lastContainerScreen != client.currentScreen) {
GuiHelper.lastContainerScreen = (ContainerScreen) client.currentScreen;
}
}
public static ContainerScreen getLastContainerScreen() {
return lastContainerScreen;
}
public static void setLastContainerScreen(ContainerScreen lastContainerScreen) {
GuiHelper.lastContainerScreen = lastContainerScreen;
}
public static IMixinContainerScreen getLastMixinContainerScreen() {
return (IMixinContainerScreen) lastContainerScreen;
}
}
|