aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuuxel <6596629+Juuxel@users.noreply.github.com>2020-03-10 19:04:27 +0200
committerJuuxel <6596629+Juuxel@users.noreply.github.com>2020-03-10 19:04:27 +0200
commit3e98462c5b86b488ff73ccf25874a464d31e61f4 (patch)
treec697d7e038676bf497cdc32ddcc5a8afccaec161
parentd654f037614438aaa198c1c3da49be989ae7bea7 (diff)
downloadLibGui-3e98462c5b86b488ff73ccf25874a464d31e61f4.tar.gz
LibGui-3e98462c5b86b488ff73ccf25874a464d31e61f4.tar.bz2
LibGui-3e98462c5b86b488ff73ccf25874a464d31e61f4.zip
Add an item display widget (WItem)
-rw-r--r--src/main/java/io/github/cottonmc/cotton/gui/ValidatedSlot.java3
-rw-r--r--src/main/java/io/github/cottonmc/cotton/gui/widget/WItem.java118
-rw-r--r--src/main/java/io/github/cottonmc/cotton/gui/widget/WItemSlot.java3
3 files changed, 124 insertions, 0 deletions
diff --git a/src/main/java/io/github/cottonmc/cotton/gui/ValidatedSlot.java b/src/main/java/io/github/cottonmc/cotton/gui/ValidatedSlot.java
index 8846e17..7e116d2 100644
--- a/src/main/java/io/github/cottonmc/cotton/gui/ValidatedSlot.java
+++ b/src/main/java/io/github/cottonmc/cotton/gui/ValidatedSlot.java
@@ -43,6 +43,9 @@ public class ValidatedSlot extends Slot {
/**
* Returns true if the item in this slot can be modified by players.
+ *
+ * @return true if this slot is modifiable
+ * @since 1.8.0
*/
public boolean isModifiable() {
return modifiable;
diff --git a/src/main/java/io/github/cottonmc/cotton/gui/widget/WItem.java b/src/main/java/io/github/cottonmc/cotton/gui/widget/WItem.java
new file mode 100644
index 0000000..be516c7
--- /dev/null
+++ b/src/main/java/io/github/cottonmc/cotton/gui/widget/WItem.java
@@ -0,0 +1,118 @@
+package io.github.cottonmc.cotton.gui.widget;
+
+import com.google.common.collect.ImmutableList;
+import com.mojang.blaze3d.systems.RenderSystem;
+import net.fabricmc.api.EnvType;
+import net.fabricmc.api.Environment;
+import net.minecraft.client.MinecraftClient;
+import net.minecraft.client.render.item.ItemRenderer;
+import net.minecraft.item.Item;
+import net.minecraft.item.ItemConvertible;
+import net.minecraft.item.ItemStack;
+import net.minecraft.tag.Tag;
+
+import java.util.*;
+
+/**
+ * A widget that displays an item or a list of items.
+ *
+ * @since 1.8.0
+ */
+public class WItem extends WWidget {
+ private List<ItemStack> items;
+ private int duration = 25;
+ private int ticks = 0;
+ private int current = 0;
+
+ public WItem(List<ItemStack> items) {
+ setItems(items);
+ }
+
+ public WItem(Tag<? extends ItemConvertible> tag) {
+ this(getRenderStacks(tag));
+ }
+
+ public WItem(ItemStack stack) {
+ this(Collections.singletonList(stack));
+ }
+
+ @Override
+ public boolean canResize() {
+ return true;
+ }
+
+ @Override
+ public void tick() {
+ if (ticks++ >= duration) {
+ ticks = 0;
+ current = (current + 1) % items.size();
+ }
+ }
+
+ @Environment(EnvType.CLIENT)
+ @Override
+ public void paintBackground(int x, int y, int mouseX, int mouseY) {
+ RenderSystem.pushMatrix();
+ RenderSystem.enableDepthTest();
+ RenderSystem.translatef(x, y, 0);
+ RenderSystem.scalef(1.2f, 1.2f, 1.0f);
+
+ MinecraftClient mc = MinecraftClient.getInstance();
+ ItemRenderer renderer = mc.getItemRenderer();
+ renderer.zOffset = 100f;
+ renderer.renderGuiItem(mc.player, items.get(current), getWidth() / 2 - 9, getHeight() / 2 - 9);
+ renderer.zOffset = 0f;
+
+ RenderSystem.popMatrix();
+ }
+
+ /**
+ * Returns the animation duration of this {@code WItem}.
+ *
+ * <p>Defaults to 25 screen ticks.
+ */
+ public int getDuration() {
+ return duration;
+ }
+
+ public WItem setDuration(int duration) {
+ this.duration = duration;
+ return this;
+ }
+
+ public List<ItemStack> getItems() {
+ return items;
+ }
+
+ /**
+ * Sets the item list of this {@code WItem} and resets the animation state.
+ *
+ * @param items the new item list
+ * @return this instance
+ */
+ public WItem setItems(List<ItemStack> items) {
+ Objects.requireNonNull(items, "stacks == null!");
+ if (items.isEmpty()) throw new IllegalArgumentException("The stack list is empty!");
+
+ this.items = items;
+
+ // Reset the state
+ current = 0;
+ ticks = 0;
+
+ return this;
+ }
+
+ /**
+ * Gets the render stacks ({@link Item#getStackForRender()}) of each item in a tag.
+ */
+ private static List<ItemStack> getRenderStacks(Tag<? extends ItemConvertible> tag) {
+ ImmutableList.Builder<ItemStack> builder = ImmutableList.builder();
+
+ for (ItemConvertible item : tag.values()) {
+ builder.add(item.asItem().getStackForRender());
+ }
+
+ return builder.build();
+ }
+}
diff --git a/src/main/java/io/github/cottonmc/cotton/gui/widget/WItemSlot.java b/src/main/java/io/github/cottonmc/cotton/gui/widget/WItemSlot.java
index 3fa0427..7af7b29 100644
--- a/src/main/java/io/github/cottonmc/cotton/gui/widget/WItemSlot.java
+++ b/src/main/java/io/github/cottonmc/cotton/gui/widget/WItemSlot.java
@@ -87,6 +87,9 @@ public class WItemSlot extends WWidget {
/**
* Returns true if the contents of this {@code WItemSlot} can be modified by players.
+ *
+ * @return true if this slot is modifiable
+ * @since 1.8.0
*/
public boolean isModifiable() {
return modifiable;