mirror of
https://athene2.informatik.unibw-muenchen.de/progproj/gruppen-ht24/Gruppe-02.git
synced 2025-04-17 12:40:59 +02:00
Compare commits
5 Commits
b2d2a79b00
...
fed8a3fd2d
Author | SHA1 | Date | |
---|---|---|---|
|
fed8a3fd2d | ||
|
bc6e7174ec | ||
|
075f98883a | ||
|
c9df3a6176 | ||
|
227a7a027f |
@ -77,7 +77,7 @@ public class BuildingAdminMenu extends Dialog {
|
|||||||
Container overviewColumn = new Container(new SpringGridLayout(Axis.Y, Axis.X));
|
Container overviewColumn = new Container(new SpringGridLayout(Axis.Y, Axis.X));
|
||||||
overviewColumn.addChild(new Label("Übersicht:")).setFontSize(30);
|
overviewColumn.addChild(new Label("Übersicht:")).setFontSize(30);
|
||||||
|
|
||||||
|
//Building Overview Button
|
||||||
overviewButton.setPreferredSize(new Vector3f(200, 50, 0));
|
overviewButton.setPreferredSize(new Vector3f(200, 50, 0));
|
||||||
overviewButton.addClickCommands(s -> ifTopDialog(() -> {
|
overviewButton.addClickCommands(s -> ifTopDialog(() -> {
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
app.getGameLogic().playSound(Sound.BUTTON);
|
||||||
@ -99,12 +99,14 @@ public class BuildingAdminMenu extends Dialog {
|
|||||||
Container buildColumn = new Container(new SpringGridLayout(Axis.Y, Axis.X));
|
Container buildColumn = new Container(new SpringGridLayout(Axis.Y, Axis.X));
|
||||||
buildColumn.addChild(new Label("Bauen:")).setFontSize(30);
|
buildColumn.addChild(new Label("Bauen:")).setFontSize(30);
|
||||||
|
|
||||||
|
// Build Houses Button
|
||||||
buildButton.setPreferredSize(new Vector3f(200, 50, 0));
|
buildButton.setPreferredSize(new Vector3f(200, 50, 0));
|
||||||
buildButton.addClickCommands(s -> ifTopDialog(() -> {
|
buildButton.addClickCommands(s -> ifTopDialog(() -> {
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
app.getGameLogic().playSound(Sound.BUTTON);
|
||||||
}));
|
}));
|
||||||
buildColumn.addChild(buildButton);
|
buildColumn.addChild(buildButton);
|
||||||
|
|
||||||
|
//Demolish Houses Button
|
||||||
demolishButton.setPreferredSize(new Vector3f(200, 50, 0));
|
demolishButton.setPreferredSize(new Vector3f(200, 50, 0));
|
||||||
demolishButton.addClickCommands(s -> ifTopDialog(() -> {
|
demolishButton.addClickCommands(s -> ifTopDialog(() -> {
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
app.getGameLogic().playSound(Sound.BUTTON);
|
||||||
@ -118,12 +120,14 @@ public class BuildingAdminMenu extends Dialog {
|
|||||||
Container mortgageColumn = new Container(new SpringGridLayout(Axis.Y, Axis.X));
|
Container mortgageColumn = new Container(new SpringGridLayout(Axis.Y, Axis.X));
|
||||||
mortgageColumn.addChild(new Label("Hypotheken:")).setFontSize(30);
|
mortgageColumn.addChild(new Label("Hypotheken:")).setFontSize(30);
|
||||||
|
|
||||||
|
// Lend Mortgage Button
|
||||||
takeMortgageButton.setPreferredSize(new Vector3f(200, 50, 0));
|
takeMortgageButton.setPreferredSize(new Vector3f(200, 50, 0));
|
||||||
takeMortgageButton.addClickCommands(s -> ifTopDialog(() -> {
|
takeMortgageButton.addClickCommands(s -> ifTopDialog(() -> {
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
app.getGameLogic().playSound(Sound.BUTTON);
|
||||||
}));
|
}));
|
||||||
mortgageColumn.addChild(takeMortgageButton);
|
mortgageColumn.addChild(takeMortgageButton);
|
||||||
|
|
||||||
|
//Repay Mortgage Button
|
||||||
payMortgageButton.setPreferredSize(new Vector3f(200, 50, 0));
|
payMortgageButton.setPreferredSize(new Vector3f(200, 50, 0));
|
||||||
payMortgageButton.addClickCommands(s -> ifTopDialog(() -> {
|
payMortgageButton.addClickCommands(s -> ifTopDialog(() -> {
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
app.getGameLogic().playSound(Sound.BUTTON);
|
||||||
|
@ -115,6 +115,7 @@ public class Toolbar extends Dialog implements GameEventListener {
|
|||||||
private Button addPropertyMenuButton() {
|
private Button addPropertyMenuButton() {
|
||||||
Button propertyMenuButton = new Button("Grundstücke");
|
Button propertyMenuButton = new Button("Grundstücke");
|
||||||
propertyMenuButton.setPreferredSize(new Vector3f(150, 50, 0));
|
propertyMenuButton.setPreferredSize(new Vector3f(150, 50, 0));
|
||||||
|
propertyMenuButton.setFontSize(30);
|
||||||
propertyMenuButton.addClickCommands(s -> ifTopDialog(() -> {
|
propertyMenuButton.addClickCommands(s -> ifTopDialog(() -> {
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
app.getGameLogic().playSound(Sound.BUTTON);
|
||||||
new BuildingAdminMenu(app).open();
|
new BuildingAdminMenu(app).open();
|
||||||
|
Loading…
Reference in New Issue
Block a user