use of ivorius.ivtoolkit.gui.FloatRange in project RecurrentComplex by Ivorforce.
the class TableDataSourceVanillaStructureGeneration method cellForIndexInSegment.
@Override
public TableCell cellForIndexInSegment(GuiTable table, int index, int segment) {
switch(segment) {
case 1:
{
TableCellEnum<String> cell = new TableCellEnum<>("type", "village", new TableCellEnum.Option<String>("village", IvTranslations.get("reccomplex.generationInfo.vanilla.type.village")));
return new TitledCell(IvTranslations.get("reccomplex.generationInfo.vanilla.type"), cell);
}
case 2:
{
switch(index) {
case 0:
return RCGuiTables.defaultWeightElement(val -> generationInfo.generationWeight = TableCells.toDouble(val), generationInfo.generationWeight);
case 1:
{
TableCellEnum<EnumFacing> cell = new TableCellEnum<>("front", generationInfo.front, TableDirections.getDirectionOptions(Directions.HORIZONTAL));
cell.addPropertyConsumer(val -> generationInfo.front = val);
return new TitledCell(IvTranslations.get("reccomplex.generationInfo.vanilla.front"), cell);
}
}
}
case 3:
switch(index) {
case 0:
{
TableCellFloatRange cell = new TableCellFloatRange("baseLimit", new FloatRange((float) generationInfo.minBaseLimit, (float) generationInfo.maxBaseLimit), 0, 1000, "%.2f");
cell.setScale(Scales.pow(5));
cell.addPropertyConsumer(val -> {
generationInfo.minBaseLimit = val.getMin();
generationInfo.maxBaseLimit = val.getMax();
});
return new TitledCell(IvTranslations.get("reccomplex.generationInfo.vanilla.amount.pervillage"), cell).withTitleTooltip(IvTranslations.getLines("reccomplex.generationInfo.vanilla.amount.pervillage.tooltip"));
}
case 1:
{
TableCellFloatRange cell = new TableCellFloatRange("scaledLimit", new FloatRange((float) generationInfo.minScaledLimit, (float) generationInfo.maxScaledLimit), 0, 1000, "%.2f");
cell.setScale(Scales.pow(5));
cell.addPropertyConsumer(val -> {
generationInfo.minScaledLimit = val.getMin();
generationInfo.maxScaledLimit = val.getMax();
});
return new TitledCell(IvTranslations.get("reccomplex.generationInfo.vanilla.amount.scaled"), cell).withTitleTooltip(IvTranslations.getLines("reccomplex.generationInfo.vanilla.amount.scaled.tooltip"));
}
}
break;
}
return super.cellForIndexInSegment(table, index, segment);
}
Aggregations