Search in sources :

Example 1 with ColorButton

use of mekanism.client.gui.element.button.ColorButton in project Mekanism by mekanism.

the class GuiLogisticalSorter method addGuiElements.

@Override
protected void addGuiElements() {
    super.addGuiElements();
    addButton(new GuiSlot(SlotType.NORMAL, this, 12, 136).setRenderAboveSlots());
    addButton(new TranslationButton(this, 56, 136, 96, 20, MekanismLang.BUTTON_NEW_FILTER, () -> addWindow(new GuiSorterFilerSelect(this, tile))));
    addButton(new MekanismImageButton(this, 12, 58, 14, getButtonLocation("single"), () -> Mekanism.packetHandler.sendToServer(new PacketGuiInteract(GuiInteraction.SINGLE_ITEM_BUTTON, tile)), getOnHover(MekanismLang.SORTER_SINGLE_ITEM_DESCRIPTION)));
    addButton(new MekanismImageButton(this, 12, 84, 14, getButtonLocation("round_robin"), () -> Mekanism.packetHandler.sendToServer(new PacketGuiInteract(GuiInteraction.ROUND_ROBIN_BUTTON, tile)), getOnHover(MekanismLang.SORTER_ROUND_ROBIN_DESCRIPTION)));
    addButton(new MekanismImageButton(this, 12, 110, 14, getButtonLocation("auto_eject"), () -> Mekanism.packetHandler.sendToServer(new PacketGuiInteract(GuiInteraction.AUTO_EJECT_BUTTON, tile)), getOnHover(MekanismLang.SORTER_AUTO_EJECT_DESCRIPTION)));
    addButton(new ColorButton(this, 13, 137, 16, 16, () -> tile.color, () -> Mekanism.packetHandler.sendToServer(new PacketGuiInteract(GuiInteraction.CHANGE_COLOR, tile, hasShiftDown() ? -1 : TransporterUtils.getColorIndex(TransporterUtils.increment(tile.color)))), () -> Mekanism.packetHandler.sendToServer(new PacketGuiInteract(GuiInteraction.CHANGE_COLOR, tile, TransporterUtils.getColorIndex(TransporterUtils.decrement(tile.color))))));
}
Also used : ColorButton(mekanism.client.gui.element.button.ColorButton) TranslationButton(mekanism.client.gui.element.button.TranslationButton) GuiSlot(mekanism.client.gui.element.slot.GuiSlot) MekanismImageButton(mekanism.client.gui.element.button.MekanismImageButton) PacketGuiInteract(mekanism.common.network.to_server.PacketGuiInteract) GuiSorterFilerSelect(mekanism.client.gui.element.window.filter.transporter.GuiSorterFilerSelect)

Example 2 with ColorButton

use of mekanism.client.gui.element.button.ColorButton in project Mekanism by mekanism.

the class GuiSorterFilterHelper method addSorterDefaults.

default void addSorterDefaults(IGuiWrapper gui, SorterFilter<?> filter, int slotOffset, UnaryOperator<GuiElement> childAdder, BooleanSupplier singleItem, BiConsumer<GuiTextField, GuiTextField> rangeSetter) {
    int relativeX = getRelativeX();
    int relativeY = getRelativeY();
    int slotX = relativeX + 7;
    int colorSlotY = relativeY + slotOffset + 25;
    childAdder.apply(new GuiSlot(SlotType.NORMAL, gui, slotX, colorSlotY));
    childAdder.apply(new ColorButton(gui, slotX + 1, colorSlotY + 1, 16, 16, () -> filter.color, () -> filter.color = Screen.hasShiftDown() ? null : TransporterUtils.increment(filter.color), () -> filter.color = TransporterUtils.decrement(filter.color)));
    childAdder.apply(new MekanismImageButton(gui, relativeX + 148, relativeY + 18, 11, MekanismUtils.getResource(ResourceType.GUI_BUTTON, "default.png"), () -> filter.allowDefault = !filter.allowDefault, (onHover, matrix, xAxis, yAxis) -> gui.displayTooltip(matrix, MekanismLang.FILTER_ALLOW_DEFAULT.translate(), xAxis, yAxis)));
    GuiTextField minField = new GuiTextField(gui, relativeX + 169, relativeY + 31, 20, 11);
    minField.setMaxStringLength(2);
    minField.setInputValidator(InputValidator.DIGIT);
    minField.setText("" + filter.min);
    childAdder.apply(minField);
    GuiTextField maxField = new GuiTextField(gui, relativeX + 169, relativeY + 43, 20, 11);
    maxField.setMaxStringLength(2);
    maxField.setInputValidator(InputValidator.DIGIT);
    maxField.setText("" + filter.max);
    childAdder.apply(maxField);
    rangeSetter.accept(minField, maxField);
    childAdder.apply(new MekanismImageButton(gui, relativeX + 148, relativeY + 56, 11, 14, MekanismUtils.getResource(ResourceType.GUI_BUTTON, "silk_touch.png"), () -> filter.sizeMode = !filter.sizeMode, (onHover, matrix, xAxis, yAxis) -> {
        if (singleItem.getAsBoolean() && filter.sizeMode) {
            gui.displayTooltip(matrix, MekanismLang.SORTER_SIZE_MODE_CONFLICT.translate(), xAxis, yAxis);
        } else {
            gui.displayTooltip(matrix, MekanismLang.SORTER_SIZE_MODE.translate(), xAxis, yAxis);
        }
    }));
}
Also used : GuiTextField(mekanism.client.gui.element.text.GuiTextField) SorterFilter(mekanism.common.content.transporter.SorterFilter) EnumColor(mekanism.api.text.EnumColor) GuiElement(mekanism.client.gui.element.GuiElement) OnOff(mekanism.common.util.text.BooleanStateDisplay.OnOff) SlotType(mekanism.client.gui.element.slot.SlotType) ResourceType(mekanism.common.util.MekanismUtils.ResourceType) UnaryOperator(java.util.function.UnaryOperator) BooleanSupplier(java.util.function.BooleanSupplier) MekanismUtils(mekanism.common.util.MekanismUtils) TransporterUtils(mekanism.common.util.TransporterUtils) IFancyFontRenderer(mekanism.client.render.IFancyFontRenderer) InputValidator(mekanism.common.util.text.InputValidator) TileEntityLogisticalSorter(mekanism.common.tile.TileEntityLogisticalSorter) Screen(net.minecraft.client.gui.screen.Screen) MekanismImageButton(mekanism.client.gui.element.button.MekanismImageButton) IGuiWrapper(mekanism.client.gui.IGuiWrapper) BiConsumer(java.util.function.BiConsumer) GuiFilterHelper(mekanism.client.gui.element.window.filter.GuiFilterHelper) MekanismLang(mekanism.common.MekanismLang) ColorButton(mekanism.client.gui.element.button.ColorButton) MatrixStack(com.mojang.blaze3d.matrix.MatrixStack) GuiSlot(mekanism.client.gui.element.slot.GuiSlot) ColorButton(mekanism.client.gui.element.button.ColorButton) GuiSlot(mekanism.client.gui.element.slot.GuiSlot) MekanismImageButton(mekanism.client.gui.element.button.MekanismImageButton) GuiTextField(mekanism.client.gui.element.text.GuiTextField)

Aggregations

ColorButton (mekanism.client.gui.element.button.ColorButton)2 MekanismImageButton (mekanism.client.gui.element.button.MekanismImageButton)2 GuiSlot (mekanism.client.gui.element.slot.GuiSlot)2 MatrixStack (com.mojang.blaze3d.matrix.MatrixStack)1 BiConsumer (java.util.function.BiConsumer)1 BooleanSupplier (java.util.function.BooleanSupplier)1 UnaryOperator (java.util.function.UnaryOperator)1 EnumColor (mekanism.api.text.EnumColor)1 IGuiWrapper (mekanism.client.gui.IGuiWrapper)1 GuiElement (mekanism.client.gui.element.GuiElement)1 TranslationButton (mekanism.client.gui.element.button.TranslationButton)1 SlotType (mekanism.client.gui.element.slot.SlotType)1 GuiTextField (mekanism.client.gui.element.text.GuiTextField)1 GuiFilterHelper (mekanism.client.gui.element.window.filter.GuiFilterHelper)1 GuiSorterFilerSelect (mekanism.client.gui.element.window.filter.transporter.GuiSorterFilerSelect)1 IFancyFontRenderer (mekanism.client.render.IFancyFontRenderer)1 MekanismLang (mekanism.common.MekanismLang)1 SorterFilter (mekanism.common.content.transporter.SorterFilter)1 PacketGuiInteract (mekanism.common.network.to_server.PacketGuiInteract)1 TileEntityLogisticalSorter (mekanism.common.tile.TileEntityLogisticalSorter)1