use of mekanism.client.gui.element.button.FilterButton in project Mekanism by mekanism.
the class GuiOredictionificator method addGuiElements.
@Override
protected void addGuiElements() {
super.addGuiElements();
// Filter holder
addButton(new GuiElementHolder(this, 9, 17, 144, 68));
// new filter button border
addButton(new GuiElementHolder(this, 9, 85, 144, 22));
scrollBar = addButton(new GuiScrollBar(this, 153, 17, 90, () -> tile.getFilters().size(), () -> FILTER_COUNT));
addButton(new GuiProgress(() -> tile.didProcess, ProgressType.LARGE_RIGHT, this, 64, 119));
addButton(new TranslationButton(this, 10, 86, 142, 20, MekanismLang.BUTTON_NEW_FILTER, () -> addWindow(GuiOredictionificatorFilter.create(this, tile))));
// Add each of the buttons and then just change visibility state to match filter info
for (int i = 0; i < FILTER_COUNT; i++) {
addButton(new FilterButton(this, 10, 18 + i * 22, 142, 22, i, scrollBar::getCurrentSelection, tile::getFilters, this::onClick, filter -> {
if (filter instanceof OredictionificatorItemFilter) {
return Collections.singletonList(((OredictionificatorItemFilter) filter).getResult());
}
return Collections.emptyList();
})).warning(WarningType.INVALID_OREDICTIONIFICATOR_FILTER, filter -> filter != null && !filter.hasFilter());
}
// While we track and show warnings on the slots themselves we also need to track the warning
// for if any of the set filters have it even if one of them is not visible
// Note: We add this after all the buttons have their warnings added so that it is further down the tracker
// so the tracker can short circuit on this type of warning and not have to check all the filters if one of
// the ones that are currently being shown has the warning
trackWarning(WarningType.INVALID_OREDICTIONIFICATOR_FILTER, () -> tile.getFilters().stream().anyMatch(filter -> !filter.hasFilter()));
}
Aggregations