blob: 903a1fa3bf3c70372370c61613916919e5201911 (
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
|
package de.hysky.skyblocker.skyblock.tabhud.widget.component;
import de.hysky.skyblocker.skyblock.tabhud.util.Ico;
import net.minecraft.client.gui.DrawContext;
import net.minecraft.item.ItemStack;
import net.minecraft.text.Text;
import net.minecraft.util.Formatting;
/**
* Component that consists of an icon and a line of text.
*/
public class IcoTextComponent extends Component {
private ItemStack ico;
private Text text;
public IcoTextComponent(ItemStack ico, Text txt) {
this.ico = (ico == null) ? Ico.BARRIER : ico;
this.text = txt;
if (txt == null) {
this.ico = Ico.BARRIER;
this.text = Text.literal("No data").formatted(Formatting.GRAY);
}
this.width = ICO_DIM + PAD_L + txtRend.getWidth(this.text);
this.height = ICO_DIM;
}
public IcoTextComponent() {
this(null, null);
}
@Override
public void render(DrawContext context, int x, int y) {
context.drawItem(ico, x, y);
context.drawText(txtRend, text, x + ICO_DIM + PAD_L, y + 5, 0xffffffff, false);
}
}
|