use of com.github.mob41.osums.OsumsNewParser in project osumer by mob41.
the class PreferencesController method initialize.
@Override
public void initialize(URL location, ResourceBundle resources) {
saveBtn.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
save();
Stage stage = (Stage) saveBtn.getScene().getWindow();
stage.close();
}
});
applyBtn.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
save();
}
});
cancelBtn.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
Stage stage = (Stage) cancelBtn.getScene().getWindow();
stage.close();
}
});
startOsuWithOverlayBtn.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
try {
d.startOsuWithOverlay();
if (autoCloseOsumerAfterOverlayCheckbox.isSelected()) {
Platform.exit();
System.exit(0);
}
} catch (RemoteException e) {
e.printStackTrace();
Alert alert = new Alert(AlertType.ERROR, "Could not call daemon to start osu!:\n" + e.getMessage(), ButtonType.OK);
alert.showAndWait();
}
}
});
toneBeforeDwnSelectBtn.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
Stage stage = (Stage) toneBeforeDwnSelectBtn.getScene().getWindow();
FileChooser fileChooser = new FileChooser();
File sf = fileChooser.showOpenDialog(stage);
if (sf != null) {
if (sf.exists() && sf.isFile()) {
toneBeforeDwnText.setText(sf.getAbsolutePath());
} else {
Alert alert = new Alert(AlertType.ERROR, "You must select a file that exists.", ButtonType.OK);
alert.showAndWait();
}
}
}
});
toneAfterDwnSelectBtn.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
Stage stage = (Stage) toneAfterDwnSelectBtn.getScene().getWindow();
FileChooser fileChooser = new FileChooser();
File sf = fileChooser.showOpenDialog(stage);
if (sf != null) {
if (sf.exists() && sf.isFile()) {
toneAfterDwnText.setText(sf.getAbsolutePath());
} else {
Alert alert = new Alert(AlertType.ERROR, "You must select a file that exists.", ButtonType.OK);
alert.showAndWait();
}
}
}
});
dwnFolderSelectBtn.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
Stage stage = (Stage) dwnFolderSelectBtn.getScene().getWindow();
DirectoryChooser chooser = new DirectoryChooser();
File file = new File(importFolderText.getText());
if (file.exists() && file.isDirectory()) {
chooser.setInitialDirectory(file);
}
File sf = chooser.showDialog(stage);
if (sf != null) {
if (sf.exists() && sf.isDirectory()) {
importFolderText.setText(sf.getAbsolutePath());
} else {
Alert alert = new Alert(AlertType.ERROR, "You must select a folder that exists.", ButtonType.OK);
alert.showAndWait();
}
}
}
});
addCredentialsBtn.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
FXMLLoader loader0 = new FXMLLoader();
loader0.setLocation(AppMain.class.getResource("/view/LoginDialogLayout.fxml"));
DialogPane loginPane = null;
try {
loginPane = (DialogPane) loader0.load();
} catch (IOException e1) {
e1.printStackTrace();
}
LoginDialogController loginController = loader0.getController();
Alert loginDialog = new Alert(AlertType.NONE);
loginDialog.initStyle(StageStyle.UTILITY);
loginDialog.initModality(Modality.APPLICATION_MODAL);
loginDialog.setTitle("");
loginDialog.setDialogPane(loginPane);
loginDialog.getButtonTypes().add(ButtonType.OK);
loginDialog.getButtonTypes().add(ButtonType.CANCEL);
FXMLLoader loader1 = new FXMLLoader();
loader1.setLocation(AppMain.class.getResource("/view/ProgressDialogLayout.fxml"));
DialogPane progressPane = null;
try {
progressPane = (DialogPane) loader1.load();
} catch (IOException e1) {
e1.printStackTrace();
}
ProgressDialogController progressController = loader1.getController();
progressController.getHeaderText().setText("Login");
progressController.getStatusText().setText("Status: Logging in...");
progressController.getProgressBar().setProgress(-1);
Alert progressDialog = new Alert(AlertType.NONE);
progressDialog.initStyle(StageStyle.UTILITY);
progressDialog.initModality(Modality.APPLICATION_MODAL);
progressDialog.setTitle("");
progressDialog.setDialogPane(progressPane);
progressDialog.getButtonTypes().add(ButtonType.CANCEL);
loginDialog.showAndWait();
if (loginDialog.getResult() == ButtonType.OK) {
final String usr = loginController.getUser();
final String pwd = loginController.getPwd();
if (usr == null || pwd == null || usr.isEmpty() || pwd.isEmpty()) {
Alert alert = new Alert(AlertType.WARNING, "Username or password must not be empty.", ButtonType.OK);
alert.showAndWait();
return;
}
Thread thread = new Thread() {
public void run() {
// TODO Allow the use of new parser
Osums osums = new OsumsOldParser();
// Osums osums = config.isUseOldParser() ? new OsumsOldParser() : new OsumsNewParser();
boolean err = false;
try {
osums.login(usr, pwd);
} catch (WithDumpException e1) {
err = true;
}
Platform.runLater(new Runnable() {
@Override
public void run() {
progressDialog.close();
}
});
if (err) {
Platform.runLater(new Runnable() {
@Override
public void run() {
Alert alert = new Alert(AlertType.WARNING, "", ButtonType.YES);
alert.setTitle("Attempting to login");
alert.setHeaderText("Login Failed");
alert.setContentText("Cannot login into this osu! account.\nDo you still want to save it?");
alert.getButtonTypes().add(ButtonType.NO);
alert.showAndWait();
if (alert.getResult() == ButtonType.YES) {
updateLoginUi(config, loginController);
}
}
});
} else {
Platform.runLater(new Runnable() {
@Override
public void run() {
updateLoginUi(config, loginController);
}
});
}
}
};
progressDialog.show();
thread.start();
}
}
});
removeCredentialsBtn.setOnAction(new EventHandler<ActionEvent>() {
@Override
public void handle(ActionEvent event) {
Alert alert = new Alert(AlertType.WARNING, "Are you sure to remove your credentials?", ButtonType.YES);
alert.getButtonTypes().add(ButtonType.NO);
alert.setHeaderText("Removing Credentials");
alert.showAndWait();
if (alert.getResult() == ButtonType.YES) {
config.setUser("");
config.setPass("");
credentialsStatus.setText(CRED_STATUS_NOT_EXIST);
}
}
});
NumberFormat format = NumberFormat.getIntegerInstance();
UnaryOperator<TextFormatter.Change> filter = c -> {
if (c.isContentChange()) {
ParsePosition parsePosition = new ParsePosition(0);
// NumberFormat evaluates the beginning of the text
format.parse(c.getControlNewText(), parsePosition);
if (parsePosition.getIndex() == 0 || parsePosition.getIndex() < c.getControlNewText().length()) {
// reject parsing the complete text failed
return null;
}
}
return c;
};
TextFormatter<Integer> numFormatter0 = new TextFormatter<Integer>(new IntegerStringConverter(), 0, filter);
TextFormatter<Integer> numFormatter1 = new TextFormatter<Integer>(new IntegerStringConverter(), 0, filter);
SpinnerValueFactory<Integer> valueFactory0 = new SpinnerValueFactory.IntegerSpinnerValueFactory(1, 16, 0);
SpinnerValueFactory<Integer> valueFactory1 = new SpinnerValueFactory.IntegerSpinnerValueFactory(50, 30000, 0);
simRunningQueues.setValueFactory(valueFactory0);
nextQueueCheckDelay.setValueFactory(valueFactory1);
simRunningQueues.getEditor().setTextFormatter(numFormatter0);
nextQueueCheckDelay.getEditor().setTextFormatter(numFormatter1);
}
use of com.github.mob41.osums.OsumsNewParser in project osumer by mob41.
the class AppMain method start.
@Override
public void start(Stage primaryStage) {
this.primaryStage = primaryStage;
try {
DumpManager.init(Osumer.getVersionString(), Osumer.getVersionString());
} catch (IOException e) {
e.printStackTrace();
System.err.println("DumpManager: Error initializing dump manager");
Alert alert = new Alert(AlertType.ERROR, e.getMessage(), ButtonType.OK);
alert.setHeaderText("Error initializing dump manager");
alert.showAndWait();
Platform.exit();
System.exit(-1);
return;
}
// Arg is handled by osumer-launcher
String configPath = Osumer.isWindows() ? System.getenv("localappdata") + "\\osumerExpress" : "";
config = new Configuration(configPath, Configuration.DEFAULT_DATA_FILE_NAME);
try {
config.load();
} catch (IOException e) {
e.printStackTrace();
System.err.println("Unable to load configuration");
DumpManager.addDump(new DebugDump(null, "Initialize Configuration", "Load configuration from file", "Set uiSuffix", "Unable to load configuration", false, e));
Alert alert = new Alert(AlertType.ERROR, e.getMessage(), ButtonType.OK);
alert.setHeaderText("Could not load configuration");
alert.showAndWait();
DumpManager.forceMetricsReport();
Platform.exit();
System.exit(-1);
return;
}
String uiSuffix = RMI_UI_PORT + "/" + RMI_UI_PATH;
String daemonSuffix = RMI_DAEMON_PORT + "/" + RMI_DAEMON_PATH;
ui = null;
try {
// Find any running UI
ui = (IUI) Naming.lookup("rmi://localhost:" + uiSuffix);
} catch (Exception ignore) {
}
if (ui != null) {
try {
ui.wake();
} catch (RemoteException e) {
e.printStackTrace();
String msg = "Unable to wake up the UI:\n" + e.getMessage();
System.err.println(msg);
DumpManager.addDump(new DebugDump(null, "Check if ui is not null", "Call ui to wake", "Stop this UI", msg, false, e));
Alert alert = new Alert(AlertType.ERROR, msg, ButtonType.OK);
alert.setHeaderText("osumer RMI Connection Error");
alert.showAndWait();
DumpManager.forceMetricsReport();
Platform.exit();
System.exit(-1);
return;
}
try {
stop();
} catch (Exception e) {
e.printStackTrace();
}
return;
}
d = null;
try {
// Contact the daemon via RMI
d = (IDaemon) Naming.lookup("rmi://localhost:" + daemonSuffix);
} catch (Exception e) {
e.printStackTrace();
String msg = "Could not connect to daemon! Please ensure osumer-daemon is running properly.\n" + "Instead of starting directly with \"osumer-ui.exe\", please use \"osumer.exe\" to launch osumer.";
System.err.println(msg);
DumpManager.addDump(new DebugDump(null, "Set d as null", "Look for running daemon", "Create RMI Registry for UI", msg, false, e));
Alert alert = new Alert(AlertType.ERROR, msg, ButtonType.OK);
alert.setHeaderText("osumer RMI Connection Error");
alert.showAndWait();
DumpManager.forceMetricsReport();
Platform.exit();
System.exit(-1);
return;
}
try {
LocateRegistry.createRegistry(RMI_UI_PORT);
ui = new UI(this);
Naming.bind("rmi://localhost:" + uiSuffix, ui);
} catch (Exception e) {
e.printStackTrace();
String msg = "Could not register UI RMI registry on port " + RMI_UI_PORT + ":\n" + e.getMessage();
System.err.println(msg);
DumpManager.addDump(new DebugDump(null, "Look for running daemon", "Create RMI Registry for UI", "Register UI to daemon", msg, false, e));
Alert alert = new Alert(AlertType.ERROR, msg, ButtonType.OK);
alert.setHeaderText("osumer RMI Initialization Error");
alert.showAndWait();
DumpManager.forceMetricsReport();
Platform.exit();
System.exit(-1);
return;
}
try {
d.registerUi(ui);
} catch (RemoteException e) {
e.printStackTrace();
String msg = "Could not register UI to daemon\n" + e.getMessage();
System.err.println(msg);
DumpManager.addDump(new DebugDump(null, "Create RMI Registry for UI", "Register UI to daemon", "Set stage title", msg, false, e));
Alert alert = new Alert(AlertType.ERROR, msg, ButtonType.OK);
alert.setHeaderText("osumer RMI Initialization Error");
alert.showAndWait();
DumpManager.forceMetricsReport();
Platform.exit();
System.exit(-1);
return;
}
primaryStage.setTitle("osumer2");
primaryStage.getIcons().add(new Image(AppMain.class.getResourceAsStream("/image/osumerIcon_64px.png")));
// TODO Use new parser
osums = new OsumsOldParser();
// osums = config.isUseOldParser() ? new OsumsOldParser() : new OsumsNewParser();
initRootLayout();
DumpManager.reportEvent("active", "ui");
}
Aggregations