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
|
package dev.isxander.yacl.gui;
import com.mojang.blaze3d.systems.RenderSystem;
import dev.isxander.yacl.api.utils.Dimension;
import net.minecraft.client.MinecraftClient;
import net.minecraft.client.font.TextRenderer;
import net.minecraft.client.gui.Drawable;
import net.minecraft.client.gui.DrawableHelper;
import net.minecraft.client.gui.Element;
import net.minecraft.client.gui.Selectable;
import net.minecraft.client.gui.screen.narration.NarrationMessageBuilder;
import net.minecraft.client.gui.widget.ClickableWidget;
import net.minecraft.client.render.GameRenderer;
import net.minecraft.client.sound.PositionedSoundInstance;
import net.minecraft.client.util.math.MatrixStack;
import net.minecraft.sound.SoundEvents;
import java.awt.Color;
public abstract class AbstractWidget implements Element, Drawable, Selectable {
protected final MinecraftClient client = MinecraftClient.getInstance();
protected final TextRenderer textRenderer = client.textRenderer;
protected final int inactiveColor = 0xFFA0A0A0;
private Dimension<Integer> dim;
public AbstractWidget(Dimension<Integer> dim) {
this.dim = dim;
}
public void postRender(MatrixStack matrices, int mouseX, int mouseY, float delta) {
}
public boolean canReset() {
return false;
}
@Override
public boolean isMouseOver(double mouseX, double mouseY) {
if (dim == null) return false;
return this.dim.isPointInside((int) mouseX, (int) mouseY);
}
public void setDimension(Dimension<Integer> dim) {
this.dim = dim;
}
public Dimension<Integer> getDimension() {
return dim;
}
@Override
public SelectionType getType() {
return SelectionType.NONE;
}
public void unfocus() {
}
public boolean matchesSearch(String query) {
return true;
}
@Override
public void appendNarrations(NarrationMessageBuilder builder) {
}
protected void drawButtonRect(MatrixStack matrices, int x1, int y1, int x2, int y2, boolean hovered, boolean enabled) {
if (x1 > x2) {
int xx1 = x1;
x1 = x2;
x2 = xx1;
}
if (y1 > y2) {
int yy1 = y1;
y1 = y2;
y2 = yy1;
}
int width = x2 - x1;
int height = y2 - y1;
RenderSystem.setShader(GameRenderer::getPositionTexProgram);
RenderSystem.setShaderTexture(0, ClickableWidget.WIDGETS_TEXTURE);
RenderSystem.setShaderColor(1.0F, 1.0F, 1.0F, 1.0F);
int i = !enabled ? 0 : hovered ? 2 : 1;
RenderSystem.enableBlend();
RenderSystem.defaultBlendFunc();
RenderSystem.enableDepthTest();
DrawableHelper.drawTexture(matrices, x1, y1, 0, 0, 46 + i * 20, width / 2, height, 256, 256);
DrawableHelper.drawTexture(matrices, x1 + width / 2, y1, 0, 200 - width / 2f, 46 + i * 20, width / 2, height, 256, 256);
}
protected int multiplyColor(int hex, float amount) {
Color color = new Color(hex, true);
return new Color(Math.max((int)(color.getRed() *amount), 0),
Math.max((int)(color.getGreen()*amount), 0),
Math.max((int)(color.getBlue() *amount), 0),
color.getAlpha()).getRGB();
}
public void playDownSound() {
MinecraftClient.getInstance().getSoundManager().play(PositionedSoundInstance.master(SoundEvents.UI_BUTTON_CLICK, 1.0F));
}
}
|