aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/xyz/brysonsteck/serverfordummies/PrimaryController.kt
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/kotlin/xyz/brysonsteck/serverfordummies/PrimaryController.kt')
-rw-r--r--app/src/main/kotlin/xyz/brysonsteck/serverfordummies/PrimaryController.kt88
1 files changed, 74 insertions, 14 deletions
diff --git a/app/src/main/kotlin/xyz/brysonsteck/serverfordummies/PrimaryController.kt b/app/src/main/kotlin/xyz/brysonsteck/serverfordummies/PrimaryController.kt
index ac45e2a..0932a3d 100644
--- a/app/src/main/kotlin/xyz/brysonsteck/serverfordummies/PrimaryController.kt
+++ b/app/src/main/kotlin/xyz/brysonsteck/serverfordummies/PrimaryController.kt
@@ -35,6 +35,8 @@ import javafx.scene.text.TextAlignment
import javafx.scene.text.Text
import javafx.scene.Scene
import javafx.scene.input.MouseEvent
+import javafx.scene.image.Image
+import javafx.scene.image.ImageView
import javafx.stage.FileChooser
import javafx.stage.FileChooser.ExtensionFilter
import javafx.stage.DirectoryChooser
@@ -63,6 +65,8 @@ class PrimaryController {
@FXML
lateinit private var parentPane: Pane
@FXML
+ lateinit private var directoryPane: Pane
+ @FXML
lateinit private var buttonBar: ButtonBar
@FXML
lateinit private var flightCheckbox: CheckBox
@@ -96,6 +100,12 @@ class PrimaryController {
lateinit private var statusBar: Label
@FXML
lateinit private var progressBar: ProgressBar
+ @FXML
+ lateinit private var startButton: Button
+ @FXML
+ lateinit private var buildButton: Button
+
+ private var building = false
@FXML
private fun onDirectoryButtonClick() {
@@ -139,22 +149,49 @@ class PrimaryController {
@FXML
private fun onBuild() {
+ if (building) {
+ building = false
+ return;
+ }
+ building = true
+ worldSettingsPane.isDisable = true
+ directoryPane.isDisable = true
+ parentPane.isDisable = true
+ startButton.isDisable = true
+ buildButton.text = "Cancel Build"
+
+ @Suppress("OPT_IN_USAGE")
GlobalScope.launch(Dispatchers.Default) {
- withContext(Dispatchers.JavaFx){statusBar.text = "Downloading a file..."}
progressBar.isVisible = true
- val download = Download(URL("https://brysonsteck.xyz/pub/a-really-big-file"))
- download.start()
- while (download.status() == Download.Status.DOWNLOADING) {
- var prog = (download.downloaded.toDouble() / download.contentLength.toDouble())
- // for whatever reason I need to print something to the screen in order for it to work
- print("")
- if (prog >= 0.01) {
- withContext(Dispatchers.JavaFx) {progressBar.progress = prog}
+ var downloads = mapOf(
+ "Java 20" to "https://download.java.net/java/GA/jdk20.0.1/b4887098932d415489976708ad6d1a4b/9/GPL/openjdk-20.0.1_linux-x64_bin.tar.gz",
+ "BuildTools" to "https://hub.spigotmc.org/jenkins/job/BuildTools/lastSuccessfulBuild/artifact/target/BuildTools.jar",
+ )
+ downloads.forEach {
+ withContext(Dispatchers.JavaFx){statusBar.text = "Downloading ${it.key}..."}
+ val download = Download(URL(it.value))
+ download.start()
+ while (download.status == Download.Status.DOWNLOADING) {
+ var prog = (download.downloaded.toDouble() / download.contentLength.toDouble())
+ // for whatever reason I need to print something to the screen in order for it to update the progress bar
+ print("")
+ if (prog >= 0.01) {
+ withContext(Dispatchers.JavaFx) {progressBar.progress = prog}
+ }
+ if (!building) download.status = Download.Status.CANCELLED
+ Thread.sleep(300)
}
- Thread.sleep(300)
}
progressBar.isVisible = false
- withContext(Dispatchers.JavaFx){statusBar.text = "Ready."}
+ withContext(Dispatchers.JavaFx){
+ worldSettingsPane.isDisable = false
+ directoryPane.isDisable = false
+ parentPane.isDisable = false
+ startButton.isDisable = false
+ buildButton.text = "Build Server"
+ statusBar.text = if (building) {"Ready."} else {"Server build cancelled."}
+ building = false;
+ }
}
}
@@ -163,16 +200,39 @@ class PrimaryController {
}
- private fun createDialog() {
+ private fun createDialog(type: String, msg: String, yes: String, no: String) {
+ val resources = this.javaClass.getResource("icons/$type.png")
val dialog = Stage();
dialog.initModality(Modality.APPLICATION_MODAL);
- val dialogScene = Scene(App().loadFXML("dialog"), 300.0, 200.0);
+ val scenePane = Pane()
+ val dialogScene = Scene(scenePane, 400.0, 150.0);
+ val imagePane = Pane()
+ val icon = Image("$resources")
+ imagePane.layoutX = 14.0
+ imagePane.layoutY = 14.0
+ imagePane.scaleX = 0.7
+ imagePane.scaleY = 0.7
+ imagePane.children.add(ImageView(icon))
+ val label = Label(msg)
+ label.layoutX = 115.0
+ label.layoutY = 40.0
+ val buttonBar = ButtonBar()
+ buttonBar.padding = Insets(10.0, 10.0, 10.0, 10.0)
+ buttonBar.layoutX = 0.0
+ buttonBar.layoutY = 107.0
+ buttonBar.prefWidth = 400.0
+ val noButton = Button(no)
+ val yesButton = Button(yes)
+ yesButton.isDefaultButton = true
+ buttonBar.buttons.add(noButton)
+ buttonBar.buttons.add(yesButton)
+ scenePane.children.addAll(imagePane, label, buttonBar)
dialog.setScene(dialogScene);
dialog.show();
}
private fun loadServerDir(dir: String): Boolean {
- createDialog()
+ createDialog("info", "There is no server in this directory.\nCreate one?", "Yes", "No")
var directory = dir
var hasServer = false
if (!File(directory).isDirectory) {