package dev.isxander.yacl3.gui.controllers.cycling; import dev.isxander.yacl3.api.Controller; import dev.isxander.yacl3.api.utils.Dimension; import dev.isxander.yacl3.gui.AbstractWidget; import dev.isxander.yacl3.gui.YACLScreen; /** * This interface simply generifies setting and getting of * the pending value, using an ordinal so elements can cycle through * without knowing the content. */ public interface ICyclingController extends Controller { /** * Sets the pending value to whatever corresponds to the ordinal * @param ordinal index of element to set */ void setPendingValue(int ordinal); /** * Gets the pending ordinal that corresponds to the actual value * @return ordinal */ int getPendingValue(); /** * Allows the element when it should wrap-around back to zeroth ordinal */ int getCycleLength(); /** * {@inheritDoc} */ @Override default AbstractWidget provideWidget(YACLScreen screen, Dimension widgetDimension) { return new CyclingControllerElement(this, screen, widgetDimension); } }