diff options
Diffstat (limited to 'app/src/main/kotlin/xyz')
-rw-r--r-- | app/src/main/kotlin/xyz/brysonsteck/servercraft/App.kt (renamed from app/src/main/kotlin/xyz/brysonsteck/serverfordummies/App.kt) | 4 | ||||
-rw-r--r-- | app/src/main/kotlin/xyz/brysonsteck/servercraft/Main.kt | 5 | ||||
-rw-r--r-- | app/src/main/kotlin/xyz/brysonsteck/servercraft/controllers/InfoController.kt (renamed from app/src/main/kotlin/xyz/brysonsteck/serverfordummies/controllers/InfoController.kt) | 2 | ||||
-rw-r--r-- | app/src/main/kotlin/xyz/brysonsteck/servercraft/controllers/PrimaryController.kt (renamed from app/src/main/kotlin/xyz/brysonsteck/serverfordummies/controllers/PrimaryController.kt) | 26 | ||||
-rw-r--r-- | app/src/main/kotlin/xyz/brysonsteck/servercraft/server/Download.kt (renamed from app/src/main/kotlin/xyz/brysonsteck/serverfordummies/server/Download.kt) | 2 | ||||
-rw-r--r-- | app/src/main/kotlin/xyz/brysonsteck/servercraft/server/Server.kt (renamed from app/src/main/kotlin/xyz/brysonsteck/serverfordummies/server/Server.kt) | 2 | ||||
-rw-r--r-- | app/src/main/kotlin/xyz/brysonsteck/serverfordummies/Main.kt | 5 |
7 files changed, 23 insertions, 23 deletions
diff --git a/app/src/main/kotlin/xyz/brysonsteck/serverfordummies/App.kt b/app/src/main/kotlin/xyz/brysonsteck/servercraft/App.kt index 3ff7c46..7aa5639 100644 --- a/app/src/main/kotlin/xyz/brysonsteck/serverfordummies/App.kt +++ b/app/src/main/kotlin/xyz/brysonsteck/servercraft/App.kt @@ -1,7 +1,7 @@ /* * This Kotlin source file was generated by the Gradle 'init' task. */ -package xyz.brysonsteck.serverfordummies +package xyz.brysonsteck.servercraft import javafx.application.Application; import javafx.fxml.FXMLLoader; @@ -17,7 +17,7 @@ class App : Application() { var scene = Scene(loadFXML("primary"), 963.0, 713.0) stage.icons.add(Image(this.javaClass.getResourceAsStream("app.png"))) stage.setResizable(false) - stage.title = "Server For Dummies" + stage.title = "ServerCraft" stage.scene = scene stage.show() } diff --git a/app/src/main/kotlin/xyz/brysonsteck/servercraft/Main.kt b/app/src/main/kotlin/xyz/brysonsteck/servercraft/Main.kt new file mode 100644 index 0000000..e914e99 --- /dev/null +++ b/app/src/main/kotlin/xyz/brysonsteck/servercraft/Main.kt @@ -0,0 +1,5 @@ +package xyz.brysonsteck.servercraft + +fun main() { + App().run() +}
\ No newline at end of file diff --git a/app/src/main/kotlin/xyz/brysonsteck/serverfordummies/controllers/InfoController.kt b/app/src/main/kotlin/xyz/brysonsteck/servercraft/controllers/InfoController.kt index a0b7915..a4bdb18 100644 --- a/app/src/main/kotlin/xyz/brysonsteck/serverfordummies/controllers/InfoController.kt +++ b/app/src/main/kotlin/xyz/brysonsteck/servercraft/controllers/InfoController.kt @@ -1,4 +1,4 @@ -package xyz.brysonsteck.serverfordummies.controllers +package xyz.brysonsteck.servercraft.controllers import javafx.fxml.FXML import javafx.application.Platform diff --git a/app/src/main/kotlin/xyz/brysonsteck/serverfordummies/controllers/PrimaryController.kt b/app/src/main/kotlin/xyz/brysonsteck/servercraft/controllers/PrimaryController.kt index 81a860e..dd795e2 100644 --- a/app/src/main/kotlin/xyz/brysonsteck/serverfordummies/controllers/PrimaryController.kt +++ b/app/src/main/kotlin/xyz/brysonsteck/servercraft/controllers/PrimaryController.kt @@ -1,4 +1,4 @@ -package xyz.brysonsteck.serverfordummies.controllers +package xyz.brysonsteck.servercraft.controllers import kotlinx.coroutines.* import kotlinx.coroutines.javafx.JavaFx @@ -52,9 +52,9 @@ import javafx.stage.Stage import javafx.event.EventHandler import org.rauschig.jarchivelib.* -import xyz.brysonsteck.serverfordummies.server.Server -import xyz.brysonsteck.serverfordummies.server.Download -import xyz.brysonsteck.serverfordummies.App +import xyz.brysonsteck.servercraft.server.Server +import xyz.brysonsteck.servercraft.server.Download +import xyz.brysonsteck.servercraft.App class PrimaryController { @FXML @@ -265,8 +265,8 @@ class PrimaryController { "BuildTools" to "https://hub.spigotmc.org/jenkins/job/BuildTools/lastSuccessfulBuild/artifact/target/BuildTools.jar", ) val destinations = mapOf ( - "Java 20" to directory + "ServerForDummies" + File.separator + "Java" + File.separator, - "BuildTools" to directory + "ServerForDummies" + File.separator + "Spigot" + File.separator + "Java 20" to directory + "ServerCraft" + File.separator + "Java" + File.separator, + "BuildTools" to directory + "ServerCraft" + File.separator + "Spigot" + File.separator ) val spigotBuilt = File(destinations["BuildTools"]).exists() val javaExtracted = File(destinations["Java 20"] + "jdk-20.0.1").exists() @@ -301,13 +301,13 @@ class PrimaryController { progressBar.progress = ProgressBar.INDETERMINATE_PROGRESS statusBar.text = "Extracting Java archive..." } - var stream = archiver.stream(File(directory + "ServerForDummies" + File.separator + "Java" + File.separator + javaFile)) - val dest = File(directory + "ServerForDummies" + File.separator + "Java") + var stream = archiver.stream(File(directory + "ServerCraft" + File.separator + "Java" + File.separator + javaFile)) + val dest = File(directory + "ServerCraft" + File.separator + "Java") var entries = 0.0 while(stream.getNextEntry() != null && building) { entries++ } - stream = archiver.stream(File(directory + "ServerForDummies" + File.separator + "Java" + File.separator + javaFile)) + stream = archiver.stream(File(directory + "ServerCraft" + File.separator + "Java" + File.separator + javaFile)) var entry = stream.getNextEntry() var currentEntry = 0.0 do { @@ -324,7 +324,7 @@ class PrimaryController { statusBar.text = "Building Minecraft Server..." } val builder = ProcessBuilder("java", "-jar", "BuildTools.jar", "--rev", "latest", "-o", ".." + File.separator + ".." + File.separator) - builder.directory(File(directory + "ServerForDummies" + File.separator + "Spigot")) + builder.directory(File(directory + "ServerCraft" + File.separator + "Spigot")) val proc = builder.start() val reader = InputStreamReader(proc.inputStream) val br = BufferedReader(reader) @@ -566,7 +566,7 @@ class PrimaryController { if (directory[directory.length-1] != File.separatorChar) directory += File.separatorChar - val hasDummy = File(directory + "ServerForDummies").isDirectory + val hasDummy = File(directory + "ServerCraft").isDirectory val hasProperties = File(directory + File.separator + "server.properties").isFile val hasServer = findServerJar() @@ -581,7 +581,7 @@ class PrimaryController { statusBar.text = "Server needs to be built before starting." } else if (!hasDummy && hasServer) { // server created externally - val result = createDialog("warning", "This server directory was not created by \nServerForDummies. Errors may occur; copying\nthe world directories to a new folder may be\nsafer. Proceed anyway?", "Yes", "No", true) + val result = createDialog("warning", "This server directory was not created by \nServerCraft. Errors may occur; copying\nthe world directories to a new folder may be\nsafer. Proceed anyway?", "Yes", "No", true) statusBar.text = "Ready." if (result) { startButton.isDisable = false @@ -591,7 +591,7 @@ class PrimaryController { // assume clean directory val result = createDialog("info", "There is no server in this directory.\nCreate one?", "Yes", "No", true) if (result) { - File(directory + "ServerForDummies").mkdir() + File(directory + "ServerCraft").mkdir() startButton.isDisable = true buildButton.text = "Build Server" } diff --git a/app/src/main/kotlin/xyz/brysonsteck/serverfordummies/server/Download.kt b/app/src/main/kotlin/xyz/brysonsteck/servercraft/server/Download.kt index d7e5aed..a10ff69 100644 --- a/app/src/main/kotlin/xyz/brysonsteck/serverfordummies/server/Download.kt +++ b/app/src/main/kotlin/xyz/brysonsteck/servercraft/server/Download.kt @@ -1,4 +1,4 @@ -package xyz.brysonsteck.serverfordummies.server +package xyz.brysonsteck.servercraft.server import java.io.*; import java.net.*; diff --git a/app/src/main/kotlin/xyz/brysonsteck/serverfordummies/server/Server.kt b/app/src/main/kotlin/xyz/brysonsteck/servercraft/server/Server.kt index 3aae89a..38e79a1 100644 --- a/app/src/main/kotlin/xyz/brysonsteck/serverfordummies/server/Server.kt +++ b/app/src/main/kotlin/xyz/brysonsteck/servercraft/server/Server.kt @@ -1,4 +1,4 @@ -package xyz.brysonsteck.serverfordummies.server +package xyz.brysonsteck.servercraft.server import java.io.File import java.util.Properties diff --git a/app/src/main/kotlin/xyz/brysonsteck/serverfordummies/Main.kt b/app/src/main/kotlin/xyz/brysonsteck/serverfordummies/Main.kt deleted file mode 100644 index 604825f..0000000 --- a/app/src/main/kotlin/xyz/brysonsteck/serverfordummies/Main.kt +++ /dev/null @@ -1,5 +0,0 @@ -package xyz.brysonsteck.serverfordummies - -fun main() { - App().run() -}
\ No newline at end of file |