Search in sources :

Example 1 with TableCellTitle

use of ivorius.reccomplex.gui.table.cell.TableCellTitle in project RecurrentComplex by Ivorforce.

the class TableDataSourceExpression method cellForIndex.

@Override
public TableCell cellForIndex(GuiTable table, int index) {
    if (index == 0) {
        expressionCell = new TableCellString("expression", e.getExpression());
        expressionCell.setTooltip(expressionTooltip);
        expressionCell.setEnabled(canEdit());
        expressionCell.setShowsValidityState(true);
        expressionCell.setValidityState(getValidityState(e, u));
        expressionCell.addPropertyConsumer(val -> {
            e.setExpression(val);
            expressionCell.setValidityState(getValidityState(e, u));
        });
        expressionCell.setChangeListener(() -> {
            if (parsed != null)
                parsed.setDisplayString(parsedString());
        });
        return new TitledCell(title, expressionCell).withTitleTooltip(tooltip);
    } else if (index == 1) {
        parsed = new TableCellTitle("parsedExpression", parsedString());
        parsed.setPositioning(TableCellTitle.Positioning.TOP);
        return new TitledCell(parsed);
    }
    return null;
}
Also used : TitledCell(ivorius.reccomplex.gui.table.cell.TitledCell) TableCellTitle(ivorius.reccomplex.gui.table.cell.TableCellTitle) TableCellString(ivorius.reccomplex.gui.table.cell.TableCellString)

Example 2 with TableCellTitle

use of ivorius.reccomplex.gui.table.cell.TableCellTitle in project RecurrentComplex by Ivorforce.

the class TableDataSourceMazeRuleConnectAll method cellForIndexInSegment.

@Override
public TableCell cellForIndexInSegment(GuiTable table, int index, int segment) {
    if (segment == 0) {
        TableCellBoolean preventCell = new TableCellBoolean("prevent", rule.preventConnection, TextFormatting.GOLD + IvTranslations.get("reccomplex.mazerule.connect.prevent"), TextFormatting.GREEN + IvTranslations.get("reccomplex.mazerule.connect.prevent"));
        preventCell.addPropertyConsumer(val -> rule.preventConnection = val);
        return new TitledCell(preventCell);
    } else if (segment == 2) {
        TableCellBoolean cell = new TableCellBoolean("additive", rule.additive, TextFormatting.GREEN + IvTranslations.get("reccomplex.mazerule.connectall.additive"), TextFormatting.GOLD + IvTranslations.get("reccomplex.mazerule.connectall.subtractive"));
        cell.addPropertyConsumer(val -> {
            rule.additive = val;
            tableDelegate.reloadData();
        });
        return new TitledCell(cell);
    } else if (segment == 4) {
        return new TitledCell(new TableCellTitle("", IvTranslations.get("reccomplex.mazerule.connectall.preview")));
    } else if (segment == 5) {
        ConnectorFactory factory = new ConnectorFactory();
        Set<Connector> blockedConnections = Collections.singleton(factory.get(ConnectorStrategy.DEFAULT_WALL));
        List<SavedMazePath> exitPaths = MazeRuleConnectAll.getPaths(rule.exits, expected, blockedConnections, factory).collect(Collectors.toList());
        return new TitledCell(new TableCellTitle("", exitPaths.get(index).toString()));
    }
    return super.cellForIndexInSegment(table, index, segment);
}
Also used : TitledCell(ivorius.reccomplex.gui.table.cell.TitledCell) IvTranslations(ivorius.ivtoolkit.tools.IvTranslations) TableDataSourceMazePathList(ivorius.reccomplex.gui.worldscripts.mazegenerator.TableDataSourceMazePathList) TableCellTitle(ivorius.reccomplex.gui.table.cell.TableCellTitle) TableCell(ivorius.reccomplex.gui.table.cell.TableCell) ivorius.reccomplex.world.gen.feature.structure.generic.maze(ivorius.reccomplex.world.gen.feature.structure.generic.maze) GuiTable(ivorius.reccomplex.gui.table.GuiTable) TableCellBoolean(ivorius.reccomplex.gui.table.cell.TableCellBoolean) TableDataSourceSegmented(ivorius.reccomplex.gui.table.datasource.TableDataSourceSegmented) TextFormatting(net.minecraft.util.text.TextFormatting) Set(java.util.Set) TableDataSourcePreloaded(ivorius.reccomplex.gui.table.datasource.TableDataSourcePreloaded) Selection(ivorius.reccomplex.world.gen.feature.structure.generic.Selection) Collectors(java.util.stream.Collectors) TableNavigator(ivorius.reccomplex.gui.table.TableNavigator) TitledCell(ivorius.reccomplex.gui.table.cell.TitledCell) List(java.util.List) TableDelegate(ivorius.reccomplex.gui.table.TableDelegate) MazeRuleConnectAll(ivorius.reccomplex.world.gen.feature.structure.generic.maze.rules.saved.MazeRuleConnectAll) Nonnull(javax.annotation.Nonnull) Collections(java.util.Collections) TableCellBoolean(ivorius.reccomplex.gui.table.cell.TableCellBoolean) Set(java.util.Set) TableCellTitle(ivorius.reccomplex.gui.table.cell.TableCellTitle) TableDataSourceMazePathList(ivorius.reccomplex.gui.worldscripts.mazegenerator.TableDataSourceMazePathList) List(java.util.List)

Aggregations

TableCellTitle (ivorius.reccomplex.gui.table.cell.TableCellTitle)2 TitledCell (ivorius.reccomplex.gui.table.cell.TitledCell)2 IvTranslations (ivorius.ivtoolkit.tools.IvTranslations)1 GuiTable (ivorius.reccomplex.gui.table.GuiTable)1 TableDelegate (ivorius.reccomplex.gui.table.TableDelegate)1 TableNavigator (ivorius.reccomplex.gui.table.TableNavigator)1 TableCell (ivorius.reccomplex.gui.table.cell.TableCell)1 TableCellBoolean (ivorius.reccomplex.gui.table.cell.TableCellBoolean)1 TableCellString (ivorius.reccomplex.gui.table.cell.TableCellString)1 TableDataSourcePreloaded (ivorius.reccomplex.gui.table.datasource.TableDataSourcePreloaded)1 TableDataSourceSegmented (ivorius.reccomplex.gui.table.datasource.TableDataSourceSegmented)1 TableDataSourceMazePathList (ivorius.reccomplex.gui.worldscripts.mazegenerator.TableDataSourceMazePathList)1 Selection (ivorius.reccomplex.world.gen.feature.structure.generic.Selection)1 ivorius.reccomplex.world.gen.feature.structure.generic.maze (ivorius.reccomplex.world.gen.feature.structure.generic.maze)1 MazeRuleConnectAll (ivorius.reccomplex.world.gen.feature.structure.generic.maze.rules.saved.MazeRuleConnectAll)1 Collections (java.util.Collections)1 List (java.util.List)1 Set (java.util.Set)1 Collectors (java.util.stream.Collectors)1 Nonnull (javax.annotation.Nonnull)1