Skip to content
Snippets Groups Projects
Commit 1bfff537 authored by Tran Peter's avatar Tran Peter
Browse files

refactor(controller): change some method names

parent 3d38933c
No related branches found
No related tags found
5 merge requests!74V1,!73Initial commit,!71Merge DataBase into Development,!10Mergin ui into development,!9Merging ui into development
Showing
with 18 additions and 22 deletions
...@@ -48,7 +48,7 @@ public class CommunityMapController implements Initializable { ...@@ -48,7 +48,7 @@ public class CommunityMapController implements Initializable {
// TODO: create map preview // TODO: create map preview
@FXML @FXML
private void back() { private void backButton() { // for some reason compiler doesn't recognize method usage when 'back' is used as method name. Any other method name works however
parent.getChildren().clear(); parent.getChildren().clear();
parent.getChildren().add(new SceneLoader().loadScene("MapForge")); parent.getChildren().add(new SceneLoader().loadScene("MapForge"));
} }
......
...@@ -29,7 +29,7 @@ public class LocalCreateController implements Initializable { ...@@ -29,7 +29,7 @@ public class LocalCreateController implements Initializable {
}); });
} }
@FXML @FXML
private void playScene() { private void backButton() {
parent.getChildren().clear(); parent.getChildren().clear();
parent.getChildren().add(sceneLoader.loadScene("Play")); parent.getChildren().add(sceneLoader.loadScene("Play"));
} }
......
...@@ -38,7 +38,7 @@ public class MapForgeController { ...@@ -38,7 +38,7 @@ public class MapForgeController {
} }
@FXML @FXML
private void back() { private void backButton() {
switchScene("MainMenu"); switchScene("MainMenu");
} }
......
...@@ -19,7 +19,7 @@ public class MultiplayerController { ...@@ -19,7 +19,7 @@ public class MultiplayerController {
} }
@FXML @FXML
private void playScene() { private void backButton() {
switchScene("Play"); switchScene("Play");
} }
......
...@@ -9,7 +9,7 @@ public class MultiplayerCreateController { ...@@ -9,7 +9,7 @@ public class MultiplayerCreateController {
private final SceneLoader sceneLoader = new SceneLoader(); private final SceneLoader sceneLoader = new SceneLoader();
@FXML @FXML
private void multiplayerScene() { private void backButton() {
parent.getChildren().clear(); parent.getChildren().clear();
parent.getChildren().add(sceneLoader.loadScene("Multiplayer")); parent.getChildren().add(sceneLoader.loadScene("Multiplayer"));
} }
......
...@@ -9,7 +9,7 @@ public class MultiplayerJoinController { ...@@ -9,7 +9,7 @@ public class MultiplayerJoinController {
private final SceneLoader sceneLoader = new SceneLoader(); private final SceneLoader sceneLoader = new SceneLoader();
@FXML @FXML
private void multiplayerScene() { private void backButton() {
parent.getChildren().clear(); parent.getChildren().clear();
parent.getChildren().add(sceneLoader.loadScene("Multiplayer")); parent.getChildren().add(sceneLoader.loadScene("Multiplayer"));
} }
......
...@@ -9,7 +9,7 @@ public class PlayController { ...@@ -9,7 +9,7 @@ public class PlayController {
private final SceneLoader sceneLoader = new SceneLoader(); private final SceneLoader sceneLoader = new SceneLoader();
@FXML @FXML
private void mainMenuScene() { private void backButton() {
switchScene("MainMenu"); switchScene("MainMenu");
} }
......
...@@ -32,7 +32,7 @@ public class SettingsController implements Initializable { ...@@ -32,7 +32,7 @@ public class SettingsController implements Initializable {
} }
@FXML @FXML
private void mainMenuScene() { private void backButton() {
parent.getChildren().clear(); parent.getChildren().clear();
parent.getChildren().add(sceneLoader.loadScene("MainMenu")); parent.getChildren().add(sceneLoader.loadScene("MainMenu"));
} }
......
...@@ -45,7 +45,7 @@ public class SkinSelectionController implements Initializable { ...@@ -45,7 +45,7 @@ public class SkinSelectionController implements Initializable {
} }
@FXML @FXML
private void back() { private void backButton() {
parent.getChildren().clear(); parent.getChildren().clear();
parent.getChildren().add(new SceneLoader().loadScene("LocalCreate")); parent.getChildren().add(new SceneLoader().loadScene("LocalCreate"));
} }
......
...@@ -6,7 +6,6 @@ ...@@ -6,7 +6,6 @@
<?import javafx.scene.layout.HBox?> <?import javafx.scene.layout.HBox?>
<?import javafx.scene.layout.VBox?> <?import javafx.scene.layout.VBox?>
<VBox fx:id="parent" alignment="CENTER" prefHeight="400.0" prefWidth="600.0" stylesheets="@../styles/style.css" xmlns="http://javafx.com/javafx/21" xmlns:fx="http://javafx.com/fxml/1" fx:controller="de.hdm_stuttgart.battlearena.Controller.CommunityMapController"> <VBox fx:id="parent" alignment="CENTER" prefHeight="400.0" prefWidth="600.0" stylesheets="@../styles/style.css" xmlns="http://javafx.com/javafx/21" xmlns:fx="http://javafx.com/fxml/1" fx:controller="de.hdm_stuttgart.battlearena.Controller.CommunityMapController">
<children> <children>
<TableView fx:id="tableView" editable="true" maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" minHeight="-Infinity" minWidth="-Infinity" VBox.vgrow="ALWAYS"> <TableView fx:id="tableView" editable="true" maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" minHeight="-Infinity" minWidth="-Infinity" VBox.vgrow="ALWAYS">
...@@ -23,7 +22,7 @@ ...@@ -23,7 +22,7 @@
</TableView> </TableView>
<HBox alignment="CENTER" prefHeight="100.0" prefWidth="200.0" spacing="20.0" VBox.vgrow="ALWAYS"> <HBox alignment="CENTER" prefHeight="100.0" prefWidth="200.0" spacing="20.0" VBox.vgrow="ALWAYS">
<children> <children>
<Button mnemonicParsing="false" onAction="#back" text="Back" /> <Button mnemonicParsing="false" onAction="#backButton" text="Back" />
<Button mnemonicParsing="false" text="Load" /> <Button mnemonicParsing="false" text="Load" />
</children> </children>
</HBox> </HBox>
......
...@@ -111,7 +111,7 @@ ...@@ -111,7 +111,7 @@
</children> </children>
</HBox> </HBox>
<Button mnemonicParsing="false" onAction="#skinSelectionScene" text="Start" /> <Button mnemonicParsing="false" onAction="#skinSelectionScene" text="Start" />
<Button mnemonicParsing="false" onAction="#playScene" text="Back"> <Button mnemonicParsing="false" onAction="#backButton" text="Back">
<VBox.margin> <VBox.margin>
<Insets bottom="50.0" /> <Insets bottom="50.0" />
</VBox.margin> </VBox.margin>
......
...@@ -10,7 +10,7 @@ ...@@ -10,7 +10,7 @@
<Button mnemonicParsing="false" onAction="#mapEditorScene" text="Map Editor" /> <Button mnemonicParsing="false" onAction="#mapEditorScene" text="Map Editor" />
<Button mnemonicParsing="false" onAction="#communityMapScene" text="Community Maps" /> <Button mnemonicParsing="false" onAction="#communityMapScene" text="Community Maps" />
<Button mnemonicParsing="false" onAction="#updateMapScene" text="Update Core Maps" /> <Button mnemonicParsing="false" onAction="#updateMapScene" text="Update Core Maps" />
<Button mnemonicParsing="false" onAction="#back" text="Back" /> <Button mnemonicParsing="false" onAction="#backButton" text="Back" />
<Pane VBox.vgrow="ALWAYS" /> <Pane VBox.vgrow="ALWAYS" />
<Pane VBox.vgrow="ALWAYS" /> <Pane VBox.vgrow="ALWAYS" />
</children> </children>
......
...@@ -18,7 +18,7 @@ ...@@ -18,7 +18,7 @@
<Insets /> <Insets />
</VBox.margin> </VBox.margin>
</Button> </Button>
<Button alignment="CENTER" mnemonicParsing="false" onAction="#playScene" text="Back"> <Button alignment="CENTER" mnemonicParsing="false" onAction="#backButton" text="Back">
<VBox.margin> <VBox.margin>
<Insets /> <Insets />
</VBox.margin> </VBox.margin>
......
...@@ -10,7 +10,6 @@ ...@@ -10,7 +10,6 @@
<?import javafx.scene.layout.VBox?> <?import javafx.scene.layout.VBox?>
<?import javafx.scene.text.Text?> <?import javafx.scene.text.Text?>
<VBox fx:id="parent" alignment="CENTER" prefHeight="400.0" prefWidth="600.0" spacing="20.0" xmlns="http://javafx.com/javafx/21" xmlns:fx="http://javafx.com/fxml/1" fx:controller="de.hdm_stuttgart.battlearena.Controller.MultiplayerCreateController"> <VBox fx:id="parent" alignment="CENTER" prefHeight="400.0" prefWidth="600.0" spacing="20.0" xmlns="http://javafx.com/javafx/21" xmlns:fx="http://javafx.com/fxml/1" fx:controller="de.hdm_stuttgart.battlearena.Controller.MultiplayerCreateController">
<children> <children>
<Pane VBox.vgrow="ALWAYS" /> <Pane VBox.vgrow="ALWAYS" />
...@@ -49,7 +48,7 @@ ...@@ -49,7 +48,7 @@
</VBox.margin> </VBox.margin>
</AnchorPane> </AnchorPane>
<Button mnemonicParsing="false" text="Start" /> <Button mnemonicParsing="false" text="Start" />
<Button mnemonicParsing="false" onAction="#multiplayerScene" text="Back" /> <Button mnemonicParsing="false" onAction="#backButton" text="Back" />
<Pane VBox.vgrow="ALWAYS" /> <Pane VBox.vgrow="ALWAYS" />
<Pane VBox.vgrow="ALWAYS" /> <Pane VBox.vgrow="ALWAYS" />
</children> </children>
......
...@@ -6,7 +6,6 @@ ...@@ -6,7 +6,6 @@
<?import javafx.scene.layout.VBox?> <?import javafx.scene.layout.VBox?>
<?import javafx.scene.text.Text?> <?import javafx.scene.text.Text?>
<VBox fx:id="parent" alignment="CENTER" prefHeight="400.0" prefWidth="600.0" spacing="50.0" xmlns="http://javafx.com/javafx/21" xmlns:fx="http://javafx.com/fxml/1" fx:controller="de.hdm_stuttgart.battlearena.Controller.MultiplayerJoinController"> <VBox fx:id="parent" alignment="CENTER" prefHeight="400.0" prefWidth="600.0" spacing="50.0" xmlns="http://javafx.com/javafx/21" xmlns:fx="http://javafx.com/fxml/1" fx:controller="de.hdm_stuttgart.battlearena.Controller.MultiplayerJoinController">
<children> <children>
<Pane maxHeight="1.7976931348623157E308" prefHeight="200.0" prefWidth="200.0" /> <Pane maxHeight="1.7976931348623157E308" prefHeight="200.0" prefWidth="200.0" />
...@@ -15,7 +14,7 @@ ...@@ -15,7 +14,7 @@
<Button mnemonicParsing="false" text="Connect" VBox.vgrow="ALWAYS" /> <Button mnemonicParsing="false" text="Connect" VBox.vgrow="ALWAYS" />
<Text strokeType="OUTSIDE" strokeWidth="0.0" text="[Error Message]" /> <Text strokeType="OUTSIDE" strokeWidth="0.0" text="[Error Message]" />
<Pane maxHeight="1.7976931348623157E308" prefHeight="200.0" prefWidth="200.0" VBox.vgrow="ALWAYS" /> <Pane maxHeight="1.7976931348623157E308" prefHeight="200.0" prefWidth="200.0" VBox.vgrow="ALWAYS" />
<Button alignment="CENTER" mnemonicParsing="false" onAction="#multiplayerScene" text="Back" /> <Button alignment="CENTER" mnemonicParsing="false" onAction="#backButton" text="Back" />
<Pane maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" prefHeight="20.0" VBox.vgrow="ALWAYS" /> <Pane maxHeight="1.7976931348623157E308" maxWidth="1.7976931348623157E308" prefHeight="20.0" VBox.vgrow="ALWAYS" />
</children> </children>
</VBox> </VBox>
...@@ -4,13 +4,12 @@ ...@@ -4,13 +4,12 @@
<?import javafx.scene.layout.Pane?> <?import javafx.scene.layout.Pane?>
<?import javafx.scene.layout.VBox?> <?import javafx.scene.layout.VBox?>
<VBox fx:id="parent" alignment="CENTER" prefHeight="400.0" prefWidth="600.0" spacing="20.0" xmlns="http://javafx.com/javafx/21" xmlns:fx="http://javafx.com/fxml/1" fx:controller="de.hdm_stuttgart.battlearena.Controller.PlayController"> <VBox fx:id="parent" alignment="CENTER" prefHeight="400.0" prefWidth="600.0" spacing="20.0" xmlns="http://javafx.com/javafx/21" xmlns:fx="http://javafx.com/fxml/1" fx:controller="de.hdm_stuttgart.battlearena.Controller.PlayController">
<children> <children>
<Pane VBox.vgrow="ALWAYS" /> <Pane VBox.vgrow="ALWAYS" />
<Button mnemonicParsing="false" onAction="#localScene" text="Local" /> <Button mnemonicParsing="false" onAction="#localScene" text="Local" />
<Button mnemonicParsing="false" onAction="#multiplayerScene" text="Multiplayer" /> <Button mnemonicParsing="false" onAction="#multiplayerScene" text="Multiplayer" />
<Button alignment="CENTER" mnemonicParsing="false" onAction="#mainMenuScene" text="Back" /> <Button alignment="CENTER" mnemonicParsing="false" onAction="#backButton" text="Back" />
<Pane VBox.vgrow="ALWAYS" /> <Pane VBox.vgrow="ALWAYS" />
<Pane VBox.vgrow="ALWAYS" /> <Pane VBox.vgrow="ALWAYS" />
</children> </children>
......
...@@ -29,6 +29,6 @@ ...@@ -29,6 +29,6 @@
</children> </children>
</HBox> </HBox>
<Button mnemonicParsing="false" onAction="#creditScene" text="Credits" /> <Button mnemonicParsing="false" onAction="#creditScene" text="Credits" />
<Button mnemonicParsing="false" onAction="#mainMenuScene" text="Back" /> <Button mnemonicParsing="false" onAction="#backButton" text="Back" />
</children> </children>
</VBox> </VBox>
...@@ -45,6 +45,6 @@ ...@@ -45,6 +45,6 @@
</children> </children>
</HBox> </HBox>
<Button mnemonicParsing="false" onAction="#gameScene" text="Start" /> <Button mnemonicParsing="false" onAction="#gameScene" text="Start" />
<Button mnemonicParsing="false" onAction="#back" text="Back" /> <Button mnemonicParsing="false" onAction="#backButton" text="Back" />
</children> </children>
</VBox> </VBox>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment