aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuuxel <6596629+Juuxel@users.noreply.github.com>2020-05-21 00:07:22 +0300
committerJuuxel <6596629+Juuxel@users.noreply.github.com>2020-05-21 00:07:22 +0300
commit6bbe55ce7c6dab51e801399177152e228a391b37 (patch)
tree5a6e0fff996d927d088cfdd087d403d66069eb5e
parent3a9ba08af978d0cfde78713f46bf5622e1028038 (diff)
downloadLibGui-6bbe55ce7c6dab51e801399177152e228a391b37.tar.gz
LibGui-6bbe55ce7c6dab51e801399177152e228a391b37.tar.bz2
LibGui-6bbe55ce7c6dab51e801399177152e228a391b37.zip
Revert "Make WScrollBar extend WAbstractSlider for better dragging"
Reverts commit bedf10d4.
-rw-r--r--src/main/java/io/github/cottonmc/cotton/gui/widget/WScrollBar.java145
1 files changed, 109 insertions, 36 deletions
diff --git a/src/main/java/io/github/cottonmc/cotton/gui/widget/WScrollBar.java b/src/main/java/io/github/cottonmc/cotton/gui/widget/WScrollBar.java
index 0ddf01a..ee17b48 100644
--- a/src/main/java/io/github/cottonmc/cotton/gui/widget/WScrollBar.java
+++ b/src/main/java/io/github/cottonmc/cotton/gui/widget/WScrollBar.java
@@ -1,27 +1,26 @@
package io.github.cottonmc.cotton.gui.widget;
-import net.minecraft.client.util.math.MatrixStack;
-
import io.github.cottonmc.cotton.gui.client.LibGuiClient;
import io.github.cottonmc.cotton.gui.client.ScreenDrawing;
import io.github.cottonmc.cotton.gui.widget.data.Axis;
+import net.fabricmc.api.EnvType;
+import net.fabricmc.api.Environment;
+import net.minecraft.client.util.math.MatrixStack;
-/**
- * A scroll bar.
- *
- * <p>Since LibGui 2.0.0, this widget is also a {@link WAbstractSlider}.
- */
-public class WScrollBar extends WAbstractSlider {
- /**
- * The range of values that is shown at a time.
- */
+public class WScrollBar extends WWidget {
+ protected Axis axis = Axis.HORIZONTAL;
+ protected int value;
+ protected int maxValue = 100;
protected int window = 16;
+ protected int anchor = -1;
+ protected int anchorValue = -1;
+ protected boolean sliding = false;
+
/**
* Constructs a horizontal scroll bar.
*/
public WScrollBar() {
- super(0, 100, Axis.HORIZONTAL);
}
/**
@@ -30,23 +29,7 @@ public class WScrollBar extends WAbstractSlider {
* @param axis the axis
*/
public WScrollBar(Axis axis) {
- super(0, 100, axis);
-
- if (axis == Axis.VERTICAL) {
- setDirection(Direction.DOWN);
- }
- }
-
- @Override
- protected int getThumbWidth() {
- return Math.round(window * coordToValueRatio);
- }
-
- @Override
- protected boolean isMouseInsideBounds(int x, int y) {
- return axis == Axis.HORIZONTAL
- ? (x >= getHandlePosition() + 1 && x <= getHandlePosition() + getHandleSize())
- : (y >= getHandlePosition() + 1 && y <= getHandlePosition() + getHandleSize());
+ this.axis = axis;
}
@Override
@@ -56,12 +39,12 @@ public class WScrollBar extends WAbstractSlider {
} else {
ScreenDrawing.drawBeveledPanel(x, y, width, height, 0xFF_373737, 0xFF_8B8B8B, 0xFF_FFFFFF);
}
- if (getMaxValue()<=0) return;
+ if (maxValue<=0) return;
// Handle colors
int top, middle, bottom;
- if (dragging) {
+ if (sliding) {
if (LibGuiClient.config.darkMode) {
top = 0xFF_6C6C6C;
middle = 0xFF_2F2F2F;
@@ -114,12 +97,12 @@ public class WScrollBar extends WAbstractSlider {
ScreenDrawing.coloredRect(x + width - 1, y + 1, 1, height - 1, bottomright); //Right hilight
ScreenDrawing.coloredRect(x + 1, y + height - 1, width - 1, 1, bottomright); //Bottom hilight
}
-
+
/**
* Gets the on-axis size of the scrollbar handle in gui pixels
*/
public int getHandleSize() {
- float percentage = (window>=getMaxValue()) ? 1f : window / (float)getMaxValue();
+ float percentage = (window>=maxValue) ? 1f : window / (float)maxValue;
int bar = (axis==Axis.HORIZONTAL) ? width-2 : height-2;
int result = (int)(percentage*bar);
if (result<6) result = 6;
@@ -134,13 +117,92 @@ public class WScrollBar extends WAbstractSlider {
return bar-getHandleSize();
}
+ public int pixelsToValues(int pixels) {
+ int bar = (axis==Axis.HORIZONTAL) ? width-2 : height-2;
+ //int bar = getMovableDistance();
+ float percent = pixels / (float)bar;
+ return (int)(percent*(maxValue-window));
+ }
+
public int getHandlePosition() {
- float percent = value / (float)Math.max(getMaxValue(), 1);
+ float percent = value / (float)Math.max(maxValue-window, 1);
return (int)(percent * getMovableDistance());
}
+
+ /**
+ * Gets the maximum scroll value achievable; this will typically be the maximum value minus the
+ * window size
+ */
+ public int getMaxScrollValue() {
+ return maxValue - window;
+ }
- public void setMaxValue(int max) {
- super.setMaxValue(Math.max(max - window, window));
+ protected void adjustSlider(int x, int y) {
+
+ int delta = 0;
+ if (axis==Axis.HORIZONTAL) {
+ delta = x-anchor;
+ } else {
+ delta = y-anchor;
+ }
+
+ int valueDelta = pixelsToValues(delta);
+ int valueNew = anchorValue + valueDelta;
+
+ if (valueNew>getMaxScrollValue()) valueNew = getMaxScrollValue();
+ if (valueNew<0) valueNew = 0;
+ this.value = valueNew;
+ }
+
+ @Override
+ public WWidget onMouseDown(int x, int y, int button) {
+ //TODO: Clicking before or after the handle should jump instead of scrolling
+
+ if (axis==Axis.HORIZONTAL) {
+ anchor = x;
+ anchorValue = value;
+ } else {
+ anchor = y;
+ anchorValue = value;
+ }
+ sliding = true;
+ return this;
+ }
+
+ @Environment(EnvType.CLIENT)
+ @Override
+ public void onMouseDrag(int x, int y, int button) {
+ adjustSlider(x, y);
+ }
+
+ @Environment(EnvType.CLIENT)
+ @Override
+ public WWidget onMouseUp(int x, int y, int button) {
+ //TODO: Clicking before or after the handle should jump instead of scrolling
+ anchor = -1;
+ anchorValue = -1;
+ sliding = false;
+ return this;
+ }
+
+ public int getValue() {
+ return value;
+ }
+
+ public WScrollBar setValue(int value) {
+ this.value = value;
+ checkValue();
+ return this;
+ }
+
+ public int getMaxValue() {
+ return maxValue;
+ }
+
+ public WScrollBar setMaxValue(int max) {
+ this.maxValue = max;
+ checkValue();
+ return this;
}
public int getWindow() {
@@ -151,4 +213,15 @@ public class WScrollBar extends WAbstractSlider {
this.window = window;
return this;
}
+
+ /**
+ * Checks that the current value is in the correct range
+ * and adjusts it if needed.
+ */
+ protected void checkValue() {
+ if (this.value>maxValue-window) {
+ this.value = maxValue-window;
+ }
+ if (this.value<0) this.value = 0;
+ }
}