mirror of
https://github.com/DanilaFe/abacus
synced 2025-03-13 21:48:51 -07:00
138 lines
5.1 KiB
Java
138 lines
5.1 KiB
Java
package org.nwapw.abacus.fx;
|
|
|
|
import javafx.collections.FXCollections;
|
|
import javafx.collections.ObservableList;
|
|
import javafx.fxml.FXML;
|
|
import javafx.scene.control.*;
|
|
import javafx.scene.control.cell.CheckBoxListCell;
|
|
import javafx.scene.text.Text;
|
|
import javafx.util.Callback;
|
|
import javafx.util.StringConverter;
|
|
import org.nwapw.abacus.Abacus;
|
|
import org.nwapw.abacus.number.NumberInterface;
|
|
import org.nwapw.abacus.tree.TreeNode;
|
|
|
|
|
|
/**
|
|
* The controller for the abacus FX UI, responsible
|
|
* for all the user interaction.
|
|
*/
|
|
public class AbacusController {
|
|
|
|
/**
|
|
* Constant string that is displayed if the text could not be lexed or parsed.
|
|
*/
|
|
private static final String ERR_SYNTAX = "Syntax Error";
|
|
/**
|
|
* Constant string that is displayed if the tree could not be reduced.
|
|
*/
|
|
private static final String ERR_EVAL = "Evaluation Error";
|
|
|
|
@FXML
|
|
private TableView<HistoryModel> historyTable;
|
|
@FXML
|
|
private TableColumn<HistoryModel, String> inputColumn;
|
|
@FXML
|
|
private TableColumn<HistoryModel, String> parsedColumn;
|
|
@FXML
|
|
private TableColumn<HistoryModel, String> outputColumn;
|
|
@FXML
|
|
private Text outputText;
|
|
@FXML
|
|
private TextField inputField;
|
|
@FXML
|
|
private Button inputButton;
|
|
@FXML
|
|
private ComboBox<String> numberImplementationBox;
|
|
@FXML
|
|
private ListView<ToggleablePlugin> enabledPluginView;
|
|
@FXML
|
|
private Button reloadButton;
|
|
|
|
/**
|
|
* The list of history entries, created by the users.
|
|
*/
|
|
private ObservableList<HistoryModel> historyData;
|
|
|
|
/**
|
|
* The abacus instance used for calculations and all
|
|
* other main processing code.
|
|
*/
|
|
private ObservableList<String> numberImplementationOptions;
|
|
|
|
/**
|
|
* The list of plugin objects that can be toggled on and off,
|
|
* and, when reloaded, get added to the plugin manager's black list.
|
|
*/
|
|
private ObservableList<ToggleablePlugin> enabledPlugins;
|
|
|
|
private Abacus abacus;
|
|
|
|
@FXML
|
|
public void initialize(){
|
|
Callback<TableColumn<HistoryModel, String>, TableCell<HistoryModel, String>> cellFactory =
|
|
param -> new CopyableCell<>();
|
|
Callback<ListView<ToggleablePlugin>, ListCell<ToggleablePlugin>> pluginCellFactory =
|
|
param -> new CheckBoxListCell<>(ToggleablePlugin::enabledProperty, new StringConverter<ToggleablePlugin>() {
|
|
@Override
|
|
public String toString(ToggleablePlugin object) {
|
|
return object.getClassName().substring(object.getClassName().lastIndexOf('.') + 1);
|
|
}
|
|
|
|
@Override
|
|
public ToggleablePlugin fromString(String string) {
|
|
return new ToggleablePlugin(true, string);
|
|
}
|
|
});
|
|
|
|
historyData = FXCollections.observableArrayList();
|
|
historyTable.setItems(historyData);
|
|
numberImplementationOptions = FXCollections.observableArrayList();
|
|
numberImplementationBox.setItems(numberImplementationOptions);
|
|
numberImplementationBox.valueProperty().addListener((observable, oldValue, newValue)
|
|
-> {
|
|
abacus.getConfiguration().setNumberImplementation(newValue);
|
|
abacus.getConfiguration().saveTo(Abacus.CONFIG_FILE);
|
|
});
|
|
historyTable.getSelectionModel().setCellSelectionEnabled(true);
|
|
enabledPlugins = FXCollections.observableArrayList();
|
|
enabledPluginView.setItems(enabledPlugins);
|
|
enabledPluginView.setCellFactory(pluginCellFactory);
|
|
inputColumn.setCellFactory(cellFactory);
|
|
inputColumn.setCellValueFactory(cell -> cell.getValue().inputProperty());
|
|
parsedColumn.setCellFactory(cellFactory);
|
|
parsedColumn.setCellValueFactory(cell -> cell.getValue().parsedProperty());
|
|
outputColumn.setCellFactory(cellFactory);
|
|
outputColumn.setCellValueFactory(cell -> cell.getValue().outputProperty());
|
|
|
|
abacus = new Abacus();
|
|
numberImplementationOptions.addAll(abacus.getPluginManager().getAllNumbers());
|
|
String actualImplementation = abacus.getConfiguration().getNumberImplementation();
|
|
String toSelect = (numberImplementationOptions.contains(actualImplementation)) ? actualImplementation : "naive";
|
|
numberImplementationBox.getSelectionModel().select(toSelect);
|
|
}
|
|
|
|
@FXML
|
|
private void performCalculation(){
|
|
inputButton.setDisable(true);
|
|
TreeNode constructedTree = abacus.parseString(inputField.getText());
|
|
if(constructedTree == null){
|
|
outputText.setText(ERR_SYNTAX);
|
|
inputButton.setDisable(false);
|
|
return;
|
|
}
|
|
NumberInterface evaluatedNumber = abacus.evaluateTree(constructedTree);
|
|
if(evaluatedNumber == null){
|
|
outputText.setText(ERR_EVAL);
|
|
inputButton.setDisable(false);
|
|
return;
|
|
}
|
|
outputText.setText(evaluatedNumber.toString());
|
|
historyData.add(new HistoryModel(inputField.getText(), constructedTree.toString(), evaluatedNumber.toString()));
|
|
|
|
inputButton.setDisable(false);
|
|
inputField.setText("");
|
|
}
|
|
|
|
}
|