From dea3f7fc9f6cda2bd543897fd98d4eb48ad593f2 Mon Sep 17 00:00:00 2001 From: johni0702 Date: Fri, 10 Jul 2015 12:59:07 +0200 Subject: [PATCH] Add GuiToggleButton --- .../gui/element/AbstractGuiToggleButton.java | 77 +++++++++++++++++++ .../gui/element/GuiToggleButton.java | 39 ++++++++++ .../gui/element/IGuiToggleButton.java | 35 +++++++++ 3 files changed, 151 insertions(+) create mode 100644 src/main/java/de/johni0702/minecraft/gui/element/AbstractGuiToggleButton.java create mode 100644 src/main/java/de/johni0702/minecraft/gui/element/GuiToggleButton.java create mode 100644 src/main/java/de/johni0702/minecraft/gui/element/IGuiToggleButton.java diff --git a/src/main/java/de/johni0702/minecraft/gui/element/AbstractGuiToggleButton.java b/src/main/java/de/johni0702/minecraft/gui/element/AbstractGuiToggleButton.java new file mode 100644 index 00000000..bcbcbbf8 --- /dev/null +++ b/src/main/java/de/johni0702/minecraft/gui/element/AbstractGuiToggleButton.java @@ -0,0 +1,77 @@ +/* + * Copyright (c) 2015 johni0702 + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ + +package de.johni0702.minecraft.gui.element; + +import de.johni0702.minecraft.gui.GuiRenderer; +import de.johni0702.minecraft.gui.RenderInfo; +import de.johni0702.minecraft.gui.container.GuiContainer; +import lombok.Getter; +import org.lwjgl.util.ReadableDimension; + +public abstract class AbstractGuiToggleButton> + extends AbstractGuiButton implements IGuiToggleButton { + + @Getter + private int selected; + + @Getter + private V[] values; + + public AbstractGuiToggleButton() { + } + + public AbstractGuiToggleButton(GuiContainer container) { + super(container); + } + + @Override + public void draw(GuiRenderer renderer, ReadableDimension size, RenderInfo renderInfo) { + String orgLabel = getLabel(); + setLabel(orgLabel + values[selected]); + super.draw(renderer, size, renderInfo); + setLabel(orgLabel); + } + + @Override + public void onClick() { + selected = (selected + 1) % values.length; + super.onClick(); + } + + @Override + public T setValues(V... values) { + this.values = values; + return getThis(); + } + + @Override + public T setSelected(int selected) { + this.selected = selected; + return getThis(); + } + + @Override + public V getSelectedValue() { + return values[selected]; + } +} diff --git a/src/main/java/de/johni0702/minecraft/gui/element/GuiToggleButton.java b/src/main/java/de/johni0702/minecraft/gui/element/GuiToggleButton.java new file mode 100644 index 00000000..431f16a0 --- /dev/null +++ b/src/main/java/de/johni0702/minecraft/gui/element/GuiToggleButton.java @@ -0,0 +1,39 @@ +/* + * Copyright (c) 2015 johni0702 + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ + +package de.johni0702.minecraft.gui.element; + +import de.johni0702.minecraft.gui.container.GuiContainer; + +public class GuiToggleButton extends AbstractGuiToggleButton> { + public GuiToggleButton() { + } + + public GuiToggleButton(GuiContainer container) { + super(container); + } + + @Override + protected GuiToggleButton getThis() { + return this; + } +} diff --git a/src/main/java/de/johni0702/minecraft/gui/element/IGuiToggleButton.java b/src/main/java/de/johni0702/minecraft/gui/element/IGuiToggleButton.java new file mode 100644 index 00000000..11aa289f --- /dev/null +++ b/src/main/java/de/johni0702/minecraft/gui/element/IGuiToggleButton.java @@ -0,0 +1,35 @@ +/* + * Copyright (c) 2015 johni0702 + * + * Permission is hereby granted, free of charge, to any person obtaining a copy + * of this software and associated documentation files (the "Software"), to deal + * in the Software without restriction, including without limitation the rights + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell + * copies of the Software, and to permit persons to whom the Software is + * furnished to do so, subject to the following conditions: + * + * The above copyright notice and this permission notice shall be included in + * all copies or substantial portions of the Software. + * + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE + * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN + * THE SOFTWARE. + */ + +package de.johni0702.minecraft.gui.element; + +public interface IGuiToggleButton> extends IGuiButton { + T setValues(V[] values); + + T setSelected(int selected); + + V getSelectedValue(); + + int getSelected(); + + V[] getValues(); +}