Compare commits
11 Commits
e000dcfc51
...
Testhandbu
Author | SHA1 | Date | |
---|---|---|---|
|
a9e4afec08 | ||
|
6e5d9452b3 | ||
|
f1d52c445b | ||
|
30e4298f88 | ||
|
7a9e84f49c | ||
|
7fce07ac19 | ||
|
2496ad812a | ||
|
f4fb04d17e | ||
|
1b4fee2853 | ||
|
b65f458302 | ||
|
c792a8b3fb |
@@ -1,18 +0,0 @@
|
|||||||
<component name="ProjectRunConfigurationManager">
|
|
||||||
<configuration default="false" name="MonopolyApp (Mac)" type="Application" factoryName="Application"
|
|
||||||
singleton="false">
|
|
||||||
<option name="MAIN_CLASS_NAME" value="pp.monopoly.client.MonopolyApp"/>
|
|
||||||
<module name="Projekte.monopoly.client.main"/>
|
|
||||||
<option name="VM_PARAMETERS" value="-XstartOnFirstThread"/>
|
|
||||||
<option name="WORKING_DIRECTORY" value="$MODULE_WORKING_DIR$"/>
|
|
||||||
<extension name="coverage">
|
|
||||||
<pattern>
|
|
||||||
<option name="PATTERN" value="pp.monopoly.client.*"/>
|
|
||||||
<option name="ENABLED" value="true"/>
|
|
||||||
</pattern>
|
|
||||||
</extension>
|
|
||||||
<method v="2">
|
|
||||||
<option name="Make" enabled="true"/>
|
|
||||||
</method>
|
|
||||||
</configuration>
|
|
||||||
</component>
|
|
@@ -1,18 +0,0 @@
|
|||||||
<component name="ProjectRunConfigurationManager">
|
|
||||||
<configuration default="false" name="MonopolyApp" type="Application" factoryName="Application" singleton="false"
|
|
||||||
nameIsGenerated="true">
|
|
||||||
<option name="MAIN_CLASS_NAME" value="pp.monopoly.client.MonopolyApp"/>
|
|
||||||
<module name="Projekte.monopoly.client.main"/>
|
|
||||||
<option name="VM_PARAMETERS" value="-Djava.util.logging.config.file=logging.properties"/>
|
|
||||||
<option name="WORKING_DIRECTORY" value="$MODULE_WORKING_DIR$"/>
|
|
||||||
<extension name="coverage">
|
|
||||||
<pattern>
|
|
||||||
<option name="PATTERN" value="pp.monopoly.client.*"/>
|
|
||||||
<option name="ENABLED" value="true"/>
|
|
||||||
</pattern>
|
|
||||||
</extension>
|
|
||||||
<method v="2">
|
|
||||||
<option name="Make" enabled="true"/>
|
|
||||||
</method>
|
|
||||||
</configuration>
|
|
||||||
</component>
|
|
@@ -1,17 +0,0 @@
|
|||||||
<component name="ProjectRunConfigurationManager">
|
|
||||||
<configuration default="false" name="MonopolyServer" type="Application" factoryName="Application"
|
|
||||||
nameIsGenerated="true">
|
|
||||||
<option name="MAIN_CLASS_NAME" value="pp.monopoly.server.MonopolyServer"/>
|
|
||||||
<module name="Projekte.monopoly.server.main"/>
|
|
||||||
<option name="WORKING_DIRECTORY" value="$MODULE_WORKING_DIR$"/>
|
|
||||||
<extension name="coverage">
|
|
||||||
<pattern>
|
|
||||||
<option name="PATTERN" value="pp.monopoly.server.*"/>
|
|
||||||
<option name="ENABLED" value="true"/>
|
|
||||||
</pattern>
|
|
||||||
</extension>
|
|
||||||
<method v="2">
|
|
||||||
<option name="Make" enabled="true"/>
|
|
||||||
</method>
|
|
||||||
</configuration>
|
|
||||||
</component>
|
|
@@ -18,11 +18,10 @@ import com.simsilica.lemur.style.ElementId;
|
|||||||
|
|
||||||
import static pp.battleship.Resources.lookup;
|
import static pp.battleship.Resources.lookup;
|
||||||
import pp.battleship.client.gui.GameMusic;
|
import pp.battleship.client.gui.GameMusic;
|
||||||
|
import pp.battleship.client.gui.VolumeSlider;
|
||||||
import pp.dialog.Dialog;
|
import pp.dialog.Dialog;
|
||||||
import pp.dialog.StateCheckboxModel;
|
import pp.dialog.StateCheckboxModel;
|
||||||
import pp.dialog.TextInputDialog;
|
import pp.dialog.TextInputDialog;
|
||||||
import pp.battleship.client.gui.VolumeSlider;
|
|
||||||
|
|
||||||
import static pp.util.PreferencesUtils.getPreferences;
|
import static pp.util.PreferencesUtils.getPreferences;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@@ -7,23 +7,24 @@
|
|||||||
|
|
||||||
package pp.battleship.client;
|
package pp.battleship.client;
|
||||||
|
|
||||||
import java.lang.System.Logger;
|
|
||||||
import java.lang.System.Logger.Level;
|
|
||||||
import java.util.concurrent.ExecutionException;
|
|
||||||
import java.util.concurrent.Future;
|
|
||||||
|
|
||||||
import com.simsilica.lemur.Button;
|
import com.simsilica.lemur.Button;
|
||||||
import com.simsilica.lemur.Container;
|
import com.simsilica.lemur.Container;
|
||||||
import com.simsilica.lemur.Label;
|
import com.simsilica.lemur.Label;
|
||||||
import com.simsilica.lemur.TextField;
|
import com.simsilica.lemur.TextField;
|
||||||
import com.simsilica.lemur.component.SpringGridLayout;
|
import com.simsilica.lemur.component.SpringGridLayout;
|
||||||
|
|
||||||
import static pp.battleship.Resources.lookup;
|
|
||||||
import pp.battleship.server.BattleshipServer;
|
import pp.battleship.server.BattleshipServer;
|
||||||
import pp.dialog.Dialog;
|
import pp.dialog.Dialog;
|
||||||
import pp.dialog.DialogBuilder;
|
import pp.dialog.DialogBuilder;
|
||||||
import pp.dialog.SimpleDialog;
|
import pp.dialog.SimpleDialog;
|
||||||
|
|
||||||
|
import java.lang.System.Logger;
|
||||||
|
import java.lang.System.Logger.Level;
|
||||||
|
import java.util.concurrent.ExecutionException;
|
||||||
|
import java.util.concurrent.Future;
|
||||||
|
|
||||||
|
import static pp.battleship.Resources.lookup;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Represents a dialog for setting up a network connection in the Battleship game.
|
* Represents a dialog for setting up a network connection in the Battleship game.
|
||||||
* Allows users to specify the host and port for connecting to a game server.
|
* Allows users to specify the host and port for connecting to a game server.
|
||||||
@@ -31,7 +32,7 @@ import pp.dialog.SimpleDialog;
|
|||||||
class NetworkDialog extends SimpleDialog {
|
class NetworkDialog extends SimpleDialog {
|
||||||
private static final Logger LOGGER = System.getLogger(NetworkDialog.class.getName());
|
private static final Logger LOGGER = System.getLogger(NetworkDialog.class.getName());
|
||||||
private static final String LOCALHOST = "localhost"; //NON-NLS
|
private static final String LOCALHOST = "localhost"; //NON-NLS
|
||||||
private static final String DEFAULT_PORT = "42069"; //NON-NLS
|
private static final String DEFAULT_PORT = "1234"; //NON-NLS
|
||||||
private final NetworkSupport network;
|
private final NetworkSupport network;
|
||||||
private final TextField host = new TextField(LOCALHOST);
|
private final TextField host = new TextField(LOCALHOST);
|
||||||
private final TextField port = new TextField(DEFAULT_PORT);
|
private final TextField port = new TextField(DEFAULT_PORT);
|
||||||
|
@@ -1,7 +1,6 @@
|
|||||||
package pp.battleship.client.gui;
|
package pp.battleship.client.gui;
|
||||||
|
|
||||||
import com.simsilica.lemur.Slider;
|
import com.simsilica.lemur.Slider;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The VolumeSlider class represents the Volume Slider in the Menu.
|
* The VolumeSlider class represents the Volume Slider in the Menu.
|
||||||
* It extends the Slider class and provides functionalities for setting the music volume,
|
* It extends the Slider class and provides functionalities for setting the music volume,
|
||||||
|
@@ -7,11 +7,12 @@
|
|||||||
|
|
||||||
package pp.battleship;
|
package pp.battleship;
|
||||||
|
|
||||||
import static java.lang.Math.max;
|
import pp.util.config.Config;
|
||||||
|
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
import java.util.TreeMap;
|
import java.util.TreeMap;
|
||||||
|
|
||||||
import pp.util.config.Config;
|
import static java.lang.Math.max;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Provides access to the configuration settings for the Battleship game.
|
* Provides access to the configuration settings for the Battleship game.
|
||||||
@@ -30,7 +31,7 @@ public class BattleshipConfig extends Config {
|
|||||||
* The default port number for the Battleship server.
|
* The default port number for the Battleship server.
|
||||||
*/
|
*/
|
||||||
@Property("port")
|
@Property("port")
|
||||||
private int port = 12234;
|
private int port = 1234;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The width of the game map in terms of grid units.
|
* The width of the game map in terms of grid units.
|
||||||
|
@@ -10,7 +10,7 @@
|
|||||||
# This file defines the configuration settings for the Battleship server.
|
# This file defines the configuration settings for the Battleship server.
|
||||||
#
|
#
|
||||||
# The port number on which the server will listen for incoming connections.
|
# The port number on which the server will listen for incoming connections.
|
||||||
port=42069
|
port=1234
|
||||||
#
|
#
|
||||||
# The dimensions of the game map.
|
# The dimensions of the game map.
|
||||||
# 'map.width' defines the number of columns, and 'map.height' defines the number of rows.
|
# 'map.width' defines the number of columns, and 'map.height' defines the number of rows.
|
||||||
|
@@ -1,8 +1,6 @@
|
|||||||
// Styling of Lemur components
|
// Styling of Lemur components
|
||||||
// For documentation, see:
|
// For documentation, see:
|
||||||
// https://github.com/jMonkeyEngine-Contributions/Lemur/wiki/Styling
|
// https://github.com/jMonkeyEngine-Contributions/Lemur/wiki/Styling
|
||||||
|
|
||||||
import com.jme3.math.ColorRGBA
|
|
||||||
import com.simsilica.lemur.*
|
import com.simsilica.lemur.*
|
||||||
import com.simsilica.lemur.component.QuadBackgroundComponent
|
import com.simsilica.lemur.component.QuadBackgroundComponent
|
||||||
import com.simsilica.lemur.Button
|
import com.simsilica.lemur.Button
|
||||||
@@ -21,11 +19,7 @@ def sliderColor = color(0.6, 0.8, 0.8, 1)
|
|||||||
def sliderBgColor = color(0.5, 0.75, 0.75, 1)
|
def sliderBgColor = color(0.5, 0.75, 0.75, 1)
|
||||||
def gradientColor = color(0.5, 0.75, 0.85, 0.5)
|
def gradientColor = color(0.5, 0.75, 0.85, 0.5)
|
||||||
def tabbuttonEnabledColor = color(0.4, 0.45, 0.5, 1)
|
def tabbuttonEnabledColor = color(0.4, 0.45, 0.5, 1)
|
||||||
def solidWhiteBackground = new QuadBackgroundComponent(new ColorRGBA(1, 1, 1, 1))
|
def solidWhiteBackground = new QuadBackgroundComponent(color(1, 1, 1, 1)) // Solid white
|
||||||
def greyBackground = new QuadBackgroundComponent(new ColorRGBA(0.1f, 0.1f, 0.1f, 1.0f));
|
|
||||||
def lightGreyBackground = new QuadBackgroundComponent(new ColorRGBA(0.4f, 0.4f, 0.4f, 1.0f));
|
|
||||||
def lightGrey = color(0.6, 0.6, 0.6, 1.0)
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@@ -38,10 +32,9 @@ def gradient = TbtQuadBackgroundComponent.create(
|
|||||||
def doubleGradient = new QuadBackgroundComponent(gradientColor)
|
def doubleGradient = new QuadBackgroundComponent(gradientColor)
|
||||||
doubleGradient.texture = texture(name: "/com/simsilica/lemur/icons/double-gradient-128.png",
|
doubleGradient.texture = texture(name: "/com/simsilica/lemur/icons/double-gradient-128.png",
|
||||||
generateMips: false)
|
generateMips: false)
|
||||||
//doubleGradient.color = color(0, 0, 0, 1)
|
|
||||||
|
|
||||||
def orangeBorder = TbtQuadBackgroundComponent.create(
|
def orangeBorder = TbtQuadBackgroundComponent.create(
|
||||||
texture(name: "/com/simsilica/lemur/icons/border.png", // Replace with an appropriate texture if needed
|
texture(name: "/com/simsilica/lemur/icons/bordered-gradient.png", // Replace with an appropriate texture if needed
|
||||||
generateMips: false),
|
generateMips: false),
|
||||||
1, 1, 1, 126, 126,
|
1, 1, 1, 126, 126,
|
||||||
1f, false)
|
1f, false)
|
||||||
@@ -56,32 +49,11 @@ selector("label", "pp") {
|
|||||||
color = buttonEnabledColor
|
color = buttonEnabledColor
|
||||||
}
|
}
|
||||||
|
|
||||||
selector("label-Bold", "pp") {
|
|
||||||
insets = new Insets3f(2, 2, 2, 2)
|
|
||||||
font = font("Interface/Fonts/Metropolis/Metropolis-Bold-32.fnt")
|
|
||||||
fontSize = 30
|
|
||||||
color = buttonEnabledColor
|
|
||||||
textHAlignment = HAlignment.Center
|
|
||||||
textVAlignment = VAlignment.Center
|
|
||||||
|
|
||||||
}
|
|
||||||
selector("label-Text", "pp") {
|
|
||||||
insets = new Insets3f(2, 2, 2, 2)
|
|
||||||
fontSize = 25
|
|
||||||
color = buttonEnabledColor
|
|
||||||
}
|
|
||||||
|
|
||||||
selector("card-label", "pp") {
|
|
||||||
insets = new Insets3f(2, 2, 2, 2)
|
|
||||||
color = ColorRGBA.Black
|
|
||||||
}
|
|
||||||
|
|
||||||
selector("header", "pp") {
|
selector("header", "pp") {
|
||||||
font = font("Interface/Fonts/Metropolis/Metropolis-Bold-42.fnt")
|
font = font("Interface/Fonts/Metropolis/Metropolis-Bold-42.fnt")
|
||||||
insets = new Insets3f(2, 2, 2, 2)
|
insets = new Insets3f(2, 2, 2, 2)
|
||||||
color = color(1, 0.5, 0, 1)
|
color = color(1, 0.5, 0, 1)
|
||||||
textHAlignment = HAlignment.Center
|
textHAlignment = HAlignment.Center
|
||||||
textVAlignment = VAlignment.Center
|
|
||||||
}
|
}
|
||||||
|
|
||||||
selector("container", "pp") {
|
selector("container", "pp") {
|
||||||
@@ -90,10 +62,20 @@ selector("container", "pp") {
|
|||||||
}
|
}
|
||||||
|
|
||||||
selector("toolbar") {
|
selector("toolbar") {
|
||||||
background = gradient.clone()
|
// Set the grey background
|
||||||
background.setColor(bgColor)
|
background = new QuadBackgroundComponent(greyBackground)
|
||||||
//color = (new ColorRGBA(0.4157f, 0.4235f, 0.4392f, 1.0f))
|
|
||||||
|
|
||||||
|
// Add a red border using a TbtQuadBackgroundComponent
|
||||||
|
def redBorder = TbtQuadBackgroundComponent.create(
|
||||||
|
texture(name: "/com/simsilica/lemur/icons/bordered-gradient.png",
|
||||||
|
generateMips: false),
|
||||||
|
1, 1, 1, 1, 1,
|
||||||
|
1f, false)
|
||||||
|
redBorder.color = redBorderColor
|
||||||
|
background = greyBackground
|
||||||
|
|
||||||
|
// Optional: Set padding inside the toolbar
|
||||||
|
insets = new Insets3f(10, 10, 10, 10)
|
||||||
}
|
}
|
||||||
selector("slider", "pp") {
|
selector("slider", "pp") {
|
||||||
background = gradient.clone()
|
background = gradient.clone()
|
||||||
@@ -162,8 +144,6 @@ selector("title", "pp") {
|
|||||||
background.texture = texture(name: "/com/simsilica/lemur/icons/double-gradient-128.png",
|
background.texture = texture(name: "/com/simsilica/lemur/icons/double-gradient-128.png",
|
||||||
generateMips: false)
|
generateMips: false)
|
||||||
insets = new Insets3f(2, 2, 2, 2)
|
insets = new Insets3f(2, 2, 2, 2)
|
||||||
textHAlignment = HAlignment.Center
|
|
||||||
textVAlignment = VAlignment.Center
|
|
||||||
|
|
||||||
buttonCommands = stdButtonCommands
|
buttonCommands = stdButtonCommands
|
||||||
}
|
}
|
||||||
@@ -178,8 +158,6 @@ selector("button", "pp") {
|
|||||||
|
|
||||||
// Use insets to create a margin/padding effect for the inner background
|
// Use insets to create a margin/padding effect for the inner background
|
||||||
insets = new Insets3f(3, 3, 3, 3) // Adjust the border thickness
|
insets = new Insets3f(3, 3, 3, 3) // Adjust the border thickness
|
||||||
textHAlignment = HAlignment.Center
|
|
||||||
textVAlignment = VAlignment.Center
|
|
||||||
buttonCommands = stdButtonCommands
|
buttonCommands = stdButtonCommands
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -253,81 +231,6 @@ selector("tab.button", "pp") {
|
|||||||
buttonCommands = stdButtonCommands
|
buttonCommands = stdButtonCommands
|
||||||
}
|
}
|
||||||
selector("settings-title", "pp") {
|
selector("settings-title", "pp") {
|
||||||
def outerBackground = new QuadBackgroundComponent(color(1, 0.5, 0, 1)) // Grey inner border
|
fontSize = 48 // Set font size
|
||||||
def innerBackground = new QuadBackgroundComponent(buttonBgColor) // White outer border background
|
background = new QuadBackgroundComponent(color(0.4157f, 0.4235f, 0.4392f, 1.0f)) // Grey background
|
||||||
|
|
||||||
background = outerBackground
|
|
||||||
fontSize = 40
|
|
||||||
insets = new Insets3f(3, 3, 3, 3)
|
|
||||||
textHAlignment = HAlignment.Center
|
|
||||||
textVAlignment = VAlignment.Center
|
|
||||||
}
|
}
|
||||||
|
|
||||||
selector("menu-button", "pp") {
|
|
||||||
fontSize = 40 // Set font size
|
|
||||||
textHAlignment = HAlignment.Center
|
|
||||||
textVAlignment = VAlignment.Center
|
|
||||||
buttonCommands = stdButtonCommands
|
|
||||||
}
|
|
||||||
|
|
||||||
// Style for Selector text
|
|
||||||
selector("selector.item.label") {
|
|
||||||
color = color(0, 0, 0, 1) // Black text
|
|
||||||
fontSize = 16 // Optional: Adjust the text size if needed
|
|
||||||
textHAlignment = HAlignment.Left // Optional: Align text to the left
|
|
||||||
insets = new Insets3f(2, 2, 2, 2) // Optional: Add padding around text
|
|
||||||
}
|
|
||||||
// Style the popup container background
|
|
||||||
selector("selector.popup") {
|
|
||||||
background = new QuadBackgroundComponent(new ColorRGBA(1, 1, 1, 0.8f)) // Translucent white background
|
|
||||||
insets = new Insets3f(5, 5, 5, 5) // Padding inside the popup container
|
|
||||||
}
|
|
||||||
|
|
||||||
// Style the text of dropdown options
|
|
||||||
selector("selector.item.label") {
|
|
||||||
color = color(0, 0, 0, 1) // Black text
|
|
||||||
fontSize = 16 // Optional: Adjust font size
|
|
||||||
textHAlignment = HAlignment.Left // Align text to the left
|
|
||||||
insets = new Insets3f(2, 5, 2, 5) // Add padding for each option
|
|
||||||
}
|
|
||||||
|
|
||||||
// Style the hover state of dropdown options
|
|
||||||
selector("selector.item.label", "hover") {
|
|
||||||
color = color(1, 1, 1, 1) // White text when hovered
|
|
||||||
background = new QuadBackgroundComponent(new ColorRGBA(0.2f, 0.6f, 1.0f, 0.9f)) // Highlighted background
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
def enabledCommandToolbar = new Command<Button>() {
|
|
||||||
void execute(Button source) {
|
|
||||||
if (source.isEnabled())
|
|
||||||
source.setColor(ColorRGBA.White)
|
|
||||||
else
|
|
||||||
source.setColor(ColorRGBA.Gray)
|
|
||||||
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
def stdButtonCommandsToolbar = [
|
|
||||||
(ButtonAction.Down) : [pressedCommand],
|
|
||||||
(ButtonAction.Up) : [pressedCommand],
|
|
||||||
(ButtonAction.Enabled) : [enabledCommandToolbar],
|
|
||||||
(ButtonAction.Disabled): [enabledCommandToolbar]
|
|
||||||
]
|
|
||||||
|
|
||||||
selector("button-toolbar", "pp") {
|
|
||||||
def outerBackground = new QuadBackgroundComponent(color(1, 0.5, 0, 1)) // Orange border
|
|
||||||
def innerBackground = new QuadBackgroundComponent(buttonBgColor) // Inner button background
|
|
||||||
|
|
||||||
// Apply the outer border as the main background
|
|
||||||
background = outerBackground
|
|
||||||
|
|
||||||
// Use insets to create a margin/padding effect for the inner background
|
|
||||||
insets = new Insets3f(3, 3, 3, 3) // Adjust the border thickness
|
|
||||||
textHAlignment = HAlignment.Center
|
|
||||||
textVAlignment = VAlignment.Center
|
|
||||||
buttonCommands = stdButtonCommandsToolbar
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
@@ -9,12 +9,7 @@ dependencies {
|
|||||||
implementation project(":monopoly:model")
|
implementation project(":monopoly:model")
|
||||||
implementation project(":monopoly:server")
|
implementation project(":monopoly:server")
|
||||||
|
|
||||||
implementation 'com.simsilica:lemur-proto:1.13.0'
|
|
||||||
implementation libs.jme3.desktop
|
implementation libs.jme3.desktop
|
||||||
implementation libs.lemur
|
|
||||||
implementation libs.lemurproto
|
|
||||||
|
|
||||||
implementation libs.selenium
|
|
||||||
|
|
||||||
runtimeOnly libs.jme3.awt.dialogs
|
runtimeOnly libs.jme3.awt.dialogs
|
||||||
runtimeOnly libs.jme3.plugins
|
runtimeOnly libs.jme3.plugins
|
||||||
|
@@ -5,13 +5,47 @@
|
|||||||
## (c) Mark Minas (mark.minas@unibw.de)
|
## (c) Mark Minas (mark.minas@unibw.de)
|
||||||
########################################
|
########################################
|
||||||
#
|
#
|
||||||
# Monopoly client configuration
|
# Battleship client configuration
|
||||||
|
#
|
||||||
|
# Specifies the map used by the opponent in single mode.
|
||||||
|
# Single mode is activated if this property is set.
|
||||||
|
#map.opponent=maps/map2.json
|
||||||
|
#
|
||||||
|
# Specifies the map used by the player in single mode.
|
||||||
|
# The player must define their own map if this property is not set.
|
||||||
|
map.own=maps/map1.json
|
||||||
|
#
|
||||||
|
# Coordinates of the shots fired by the RobotClient in the order listed.
|
||||||
|
# Example:
|
||||||
|
# 2, 0,\
|
||||||
|
# 2, 1,\
|
||||||
|
# 2, 2,\
|
||||||
|
# 2, 3
|
||||||
|
# defines four shots, namely at the coordinates
|
||||||
|
# (x=2, y=0), (x=2, y=1), (x=2, y=2), and (x=2, y=3)
|
||||||
|
robot.targets=2, 0,\
|
||||||
|
2, 1,\
|
||||||
|
2, 2,\
|
||||||
|
2, 3
|
||||||
|
#
|
||||||
|
# Delay in milliseconds between each shot fired by the RobotClient.
|
||||||
|
robot.delay=500
|
||||||
#
|
#
|
||||||
# The dimensions of the game map used in single mode.
|
# The dimensions of the game map used in single mode.
|
||||||
# 'map.width' defines the number of columns, and 'map.height' defines the number of rows.
|
# 'map.width' defines the number of columns, and 'map.height' defines the number of rows.
|
||||||
map.width=10
|
map.width=10
|
||||||
map.height=10
|
map.height=10
|
||||||
#
|
#
|
||||||
|
# The number of ships of each length available in single mode.
|
||||||
|
# The value is a comma-separated list where each element corresponds to the number of ships
|
||||||
|
# with a specific length. For example:
|
||||||
|
# ship.nums=4, 3, 2, 1
|
||||||
|
# This configuration means:
|
||||||
|
# - 4 ships of length 1
|
||||||
|
# - 3 ships of length 2
|
||||||
|
# - 2 ships of length 3
|
||||||
|
# - 1 ship of length 4
|
||||||
|
ship.nums=4, 3, 2, 1
|
||||||
#
|
#
|
||||||
# Screen settings
|
# Screen settings
|
||||||
#
|
#
|
||||||
|
@@ -1,110 +0,0 @@
|
|||||||
////////////////////////////////////////
|
|
||||||
// Programming project code
|
|
||||||
// UniBw M, 2022, 2023, 2024
|
|
||||||
// www.unibw.de/inf2
|
|
||||||
// (c) Mark Minas (mark.minas@unibw.de)
|
|
||||||
////////////////////////////////////////
|
|
||||||
|
|
||||||
package pp.monopoly.client;
|
|
||||||
|
|
||||||
import com.jme3.input.controls.ActionListener;
|
|
||||||
import com.jme3.scene.Node;
|
|
||||||
import com.jme3.system.AppSettings;
|
|
||||||
import pp.monopoly.client.MonopolyAppState;
|
|
||||||
import pp.monopoly.client.gui.TestWorld;
|
|
||||||
import pp.monopoly.model.IntPoint;
|
|
||||||
|
|
||||||
import java.lang.System.Logger;
|
|
||||||
import java.lang.System.Logger.Level;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Represents the state responsible for managing the battle interface within the Battleship game.
|
|
||||||
* This state handles the display and interaction of the battle map, including the opponent's map.
|
|
||||||
* It manages GUI components, input events, and the layout of the interface when this state is enabled.
|
|
||||||
*/
|
|
||||||
public class GameAppState extends MonopolyAppState {
|
|
||||||
private static final Logger LOGGER = System.getLogger(MonopolyAppState.class.getName());
|
|
||||||
private static final float DEPTH = 0f;
|
|
||||||
private static final float GAP = 20f;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A listener for handling click events in the battle interface.
|
|
||||||
* When a click is detected, it triggers the corresponding actions on the opponent's map.
|
|
||||||
*/
|
|
||||||
private final ActionListener clickListener = (name, isPressed, tpf) -> click(isPressed);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The root node for all GUI components in the battle state.
|
|
||||||
*/
|
|
||||||
private final Node battleNode = new Node("Game"); //NON-NLS
|
|
||||||
|
|
||||||
/**
|
|
||||||
* A view representing the opponent's map in the GUI.
|
|
||||||
*/
|
|
||||||
private TestWorld testWorld;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Enables the battle state by initializing, laying out, and adding GUI components.
|
|
||||||
* Attaches the components to the GUI node and registers input listeners.
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
protected void enableState() {
|
|
||||||
battleNode.detachAllChildren();
|
|
||||||
initializeGuiComponents();
|
|
||||||
layoutGuiComponents();
|
|
||||||
addGuiComponents();
|
|
||||||
getApp().getGuiNode().attachChild(battleNode);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Disables the battle state by removing GUI components and unregistering input listeners.
|
|
||||||
* Also handles cleanup of resources, such as the opponent's map view.
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
protected void disableState() {
|
|
||||||
getApp().getGuiNode().detachChild(battleNode);
|
|
||||||
getApp().getInputManager().removeListener(clickListener);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Initializes the GUI components used in the battle state.
|
|
||||||
* Creates the opponent's map view and adds a grid overlay to it.
|
|
||||||
*/
|
|
||||||
private void initializeGuiComponents() {
|
|
||||||
testWorld = new TestWorld(getApp());
|
|
||||||
testWorld.initializeScene();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Adds the initialized GUI components to the battle node.
|
|
||||||
* Currently, it attaches the opponent's map view to the node.
|
|
||||||
*/
|
|
||||||
private void addGuiComponents() {
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Lays out the GUI components within the window, positioning them appropriately.
|
|
||||||
* The opponent's map view is positioned based on the window's dimensions and a specified gap.
|
|
||||||
*/
|
|
||||||
private void layoutGuiComponents() {
|
|
||||||
final AppSettings s = getApp().getContext().getSettings();
|
|
||||||
final float windowWidth = s.getWidth();
|
|
||||||
final float windowHeight = s.getHeight();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Handles click events in the battle interface. If the event indicates a click (not a release),
|
|
||||||
* it translates the cursor position to the model's coordinate system and triggers the game logic
|
|
||||||
* for interacting with the opponent's map.
|
|
||||||
*
|
|
||||||
* @param isPressed whether the mouse button is currently pressed (true) or released (false)
|
|
||||||
*/
|
|
||||||
private void click(boolean isPressed) {
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void update(float tpf) {
|
|
||||||
testWorld.update(tpf);
|
|
||||||
super.update(tpf);
|
|
||||||
}
|
|
||||||
}
|
|
@@ -1,122 +0,0 @@
|
|||||||
package pp.monopoly.client;
|
|
||||||
|
|
||||||
import static pp.util.PreferencesUtils.getPreferences;
|
|
||||||
|
|
||||||
import java.lang.System.Logger;
|
|
||||||
import java.lang.System.Logger.Level;
|
|
||||||
import java.util.prefs.Preferences;
|
|
||||||
|
|
||||||
import com.jme3.app.Application;
|
|
||||||
import com.jme3.app.state.AbstractAppState;
|
|
||||||
import com.jme3.app.state.AppStateManager;
|
|
||||||
import com.jme3.asset.AssetLoadException;
|
|
||||||
import com.jme3.asset.AssetNotFoundException;
|
|
||||||
import com.jme3.audio.AudioData;
|
|
||||||
import com.jme3.audio.AudioNode;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Handles the background music beeing played. Is able to start and stop the music. Set the Volume of the Audio.
|
|
||||||
*/
|
|
||||||
public class GameMusic extends AbstractAppState{
|
|
||||||
private static final Logger LOGGER = System.getLogger(GameMusic.class.getName());
|
|
||||||
private static final Preferences PREFERENCES = getPreferences(GameMusic.class);
|
|
||||||
private static final String ENABLED_PREF = "enabled"; //NON-NLS
|
|
||||||
private static final String VOLUME_PREF = "volume"; //NON-NLS
|
|
||||||
|
|
||||||
private AudioNode music;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Checks if sound is enabled in the preferences.
|
|
||||||
*
|
|
||||||
* @return {@code true} if sound is enabled, {@code false} otherwise.
|
|
||||||
*/
|
|
||||||
public static boolean enabledInPreferences() {
|
|
||||||
return PREFERENCES.getBoolean(ENABLED_PREF, true);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Checks if sound is enabled in the preferences.
|
|
||||||
*
|
|
||||||
* @return float to which the volume is set
|
|
||||||
*/
|
|
||||||
public static float volumeInPreferences() {
|
|
||||||
return PREFERENCES.getFloat(VOLUME_PREF, 0.5f);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Initializes the sound effects for the game.
|
|
||||||
* Overrides {@link AbstractAppState#initialize(AppStateManager, Application)}
|
|
||||||
*
|
|
||||||
* @param stateManager The state manager
|
|
||||||
* @param app The application
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public void initialize(AppStateManager stateManager, Application app) {
|
|
||||||
super.initialize(stateManager, app);
|
|
||||||
music = loadSound(app, "Sound/background.ogg");
|
|
||||||
setVolume(volumeInPreferences());
|
|
||||||
music.setLooping(true);
|
|
||||||
if (isEnabled() && music != null) {
|
|
||||||
music.play();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Loads a sound from the specified file.
|
|
||||||
*
|
|
||||||
* @param app The application
|
|
||||||
* @param name The name of the sound file.
|
|
||||||
* @return The loaded AudioNode.
|
|
||||||
*/
|
|
||||||
private AudioNode loadSound(Application app, String name) {
|
|
||||||
try {
|
|
||||||
final AudioNode sound = new AudioNode(app.getAssetManager(), name, AudioData.DataType.Buffer);
|
|
||||||
sound.setLooping(false);
|
|
||||||
sound.setPositional(false);
|
|
||||||
return sound;
|
|
||||||
}
|
|
||||||
catch (AssetLoadException | AssetNotFoundException ex) {
|
|
||||||
LOGGER.log(Level.ERROR, ex.getMessage(), ex);
|
|
||||||
}
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the enabled state of this AppState.
|
|
||||||
* Overrides {@link com.jme3.app.state.AbstractAppState#setEnabled(boolean)}
|
|
||||||
*
|
|
||||||
* @param enabled {@code true} to enable the AppState, {@code false} to disable it.
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public void setEnabled(boolean enabled) {
|
|
||||||
if (isEnabled() == enabled) return;
|
|
||||||
|
|
||||||
if (music != null) {
|
|
||||||
if (enabled) {
|
|
||||||
music.play();
|
|
||||||
} else {
|
|
||||||
music.stop();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
super.setEnabled(enabled);
|
|
||||||
LOGGER.log(Level.INFO, "Sound enabled: {0}", enabled); //NON-NLS
|
|
||||||
PREFERENCES.putBoolean(ENABLED_PREF, enabled);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Toggles the game sound on or off.
|
|
||||||
*/
|
|
||||||
public void toggleSound() {
|
|
||||||
setEnabled(!isEnabled());
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the volume of music
|
|
||||||
* @param vol the volume to which the music should be set
|
|
||||||
*/
|
|
||||||
public void setVolume(float vol){
|
|
||||||
music.setVolume(vol);
|
|
||||||
PREFERENCES.putFloat(VOLUME_PREF, vol);
|
|
||||||
}
|
|
||||||
}
|
|
@@ -30,19 +30,10 @@ public class GameSound extends AbstractAppState implements GameEventListener {
|
|||||||
private static final Logger LOGGER = System.getLogger(GameSound.class.getName());
|
private static final Logger LOGGER = System.getLogger(GameSound.class.getName());
|
||||||
private static final Preferences PREFERENCES = getPreferences(GameSound.class);
|
private static final Preferences PREFERENCES = getPreferences(GameSound.class);
|
||||||
private static final String ENABLED_PREF = "enabled"; //NON-NLS
|
private static final String ENABLED_PREF = "enabled"; //NON-NLS
|
||||||
private static final String VOLUME_PREF = "volume"; //NON-NLS
|
|
||||||
|
|
||||||
private AudioNode passStartSound;
|
private AudioNode splashSound;
|
||||||
private AudioNode eventCardSound;
|
private AudioNode shipDestroyedSound;
|
||||||
private AudioNode gulagSound;
|
private AudioNode explosionSound;
|
||||||
private AudioNode diceRollSound;
|
|
||||||
private AudioNode moneyCollectSound;
|
|
||||||
private AudioNode moneyLostSound;
|
|
||||||
private AudioNode tradeAcceptedSound;
|
|
||||||
private AudioNode tradeRejectedSound;
|
|
||||||
private AudioNode winnerSound;
|
|
||||||
private AudioNode looserSound;
|
|
||||||
private AudioNode buttonSound;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Checks if sound is enabled in the preferences.
|
* Checks if sound is enabled in the preferences.
|
||||||
@@ -60,15 +51,6 @@ public class GameSound extends AbstractAppState implements GameEventListener {
|
|||||||
setEnabled(!isEnabled());
|
setEnabled(!isEnabled());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Checks if sound is enabled in the preferences.
|
|
||||||
*
|
|
||||||
* @return float to which the volume is set
|
|
||||||
*/
|
|
||||||
public static float volumeInPreferences() {
|
|
||||||
return PREFERENCES.getFloat(VOLUME_PREF, 0.5f);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sets the enabled state of this AppState.
|
* Sets the enabled state of this AppState.
|
||||||
* Overrides {@link com.jme3.app.state.AbstractAppState#setEnabled(boolean)}
|
* Overrides {@link com.jme3.app.state.AbstractAppState#setEnabled(boolean)}
|
||||||
@@ -93,17 +75,6 @@ public class GameSound extends AbstractAppState implements GameEventListener {
|
|||||||
@Override
|
@Override
|
||||||
public void initialize(AppStateManager stateManager, Application app) {
|
public void initialize(AppStateManager stateManager, Application app) {
|
||||||
super.initialize(stateManager, app);
|
super.initialize(stateManager, app);
|
||||||
passStartSound = loadSound(app, "Sound/Effects/passStart.ogg");
|
|
||||||
eventCardSound = loadSound(app, "Sound/Effects/eventCard.ogg");
|
|
||||||
gulagSound = loadSound(app, "Sound/Effects/gulag.ogg");
|
|
||||||
diceRollSound = loadSound(app, "Sound/Effects/diceRoll.ogg");
|
|
||||||
moneyCollectSound = loadSound(app, "Sound/Effects/moneyCollect.ogg");
|
|
||||||
moneyLostSound = loadSound(app, "Sound/Effects/moneyLost.ogg");
|
|
||||||
tradeAcceptedSound = loadSound(app, "Sound/Effects/tradeAccepted.ogg");
|
|
||||||
tradeRejectedSound = loadSound(app, "Sound/Effects/tradeRejected.ogg");
|
|
||||||
winnerSound = loadSound(app, "Sound/Effects/winner.ogg");
|
|
||||||
looserSound = loadSound(app, "Sound/Effects/loser.ogg");
|
|
||||||
buttonSound = loadSound(app, "Sound/Effects/button.ogg");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -127,116 +98,32 @@ public class GameSound extends AbstractAppState implements GameEventListener {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Plays the passStart sound effect.
|
* Plays the splash sound effect.
|
||||||
*/
|
*/
|
||||||
public void passStart() {
|
public void splash() {
|
||||||
if (isEnabled() && passStartSound != null)
|
if (isEnabled() && splashSound != null)
|
||||||
passStartSound.playInstance();
|
splashSound.playInstance();
|
||||||
}
|
}
|
||||||
/**
|
|
||||||
* Plays the eventCard sound effect.
|
|
||||||
*/
|
|
||||||
public void eventCard() {
|
|
||||||
if (isEnabled() && eventCardSound != null)
|
|
||||||
eventCardSound.playInstance();
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Plays the gulag sound effect.
|
|
||||||
*/
|
|
||||||
public void gulag() {
|
|
||||||
if (isEnabled() && gulagSound != null)
|
|
||||||
gulagSound.playInstance();
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Plays the diceRoll sound effect.
|
|
||||||
*/
|
|
||||||
public void diceRoll() {
|
|
||||||
if (isEnabled() && diceRollSound != null)
|
|
||||||
diceRollSound.playInstance();
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Plays the moneyCollect sound effect.
|
|
||||||
*/
|
|
||||||
public void moneyCollect() {
|
|
||||||
if (isEnabled() && moneyCollectSound != null)
|
|
||||||
moneyCollectSound.playInstance();
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Plays the moneyLost sound effect.
|
|
||||||
*/
|
|
||||||
public void moneyLost() {
|
|
||||||
if (isEnabled() && moneyLostSound != null)
|
|
||||||
moneyLostSound.playInstance();
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Plays the tradeAccepted sound effect.
|
|
||||||
*/
|
|
||||||
public void tradeAccepted() {
|
|
||||||
if (isEnabled() && tradeAcceptedSound != null)
|
|
||||||
tradeAcceptedSound.playInstance();
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Plays the tradeRejected sound effect.
|
|
||||||
*/
|
|
||||||
public void tradeRejected() {
|
|
||||||
if (isEnabled() && tradeRejectedSound != null)
|
|
||||||
tradeRejectedSound.playInstance();
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Plays the winner sound effect.
|
|
||||||
*/
|
|
||||||
public void winner() {
|
|
||||||
if (isEnabled() && winnerSound != null)
|
|
||||||
winnerSound.playInstance();
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Plays the looser sound effect.
|
|
||||||
*/
|
|
||||||
public void looser() {
|
|
||||||
if (isEnabled() && looserSound != null)
|
|
||||||
looserSound.playInstance();
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Plays the button sound effect.
|
|
||||||
*/
|
|
||||||
public void button() {
|
|
||||||
if (isEnabled() && buttonSound != null)
|
|
||||||
buttonSound.playInstance();
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Sets the volume of the sounds
|
|
||||||
* @param vol the volume to which the sounds should be set
|
|
||||||
*/
|
|
||||||
public void setVolume(float vol){
|
|
||||||
passStartSound.setVolume(vol);
|
|
||||||
eventCardSound.setVolume(vol);
|
|
||||||
gulagSound.setVolume(vol);
|
|
||||||
diceRollSound.setVolume(vol);
|
|
||||||
moneyCollectSound.setVolume(vol);
|
|
||||||
moneyLostSound.setVolume(vol);
|
|
||||||
tradeAcceptedSound.setVolume(vol);
|
|
||||||
tradeRejectedSound.setVolume(vol);
|
|
||||||
winnerSound.setVolume(vol);
|
|
||||||
looserSound.setVolume(vol);
|
|
||||||
buttonSound.setVolume(vol);
|
|
||||||
|
|
||||||
PREFERENCES.putFloat(VOLUME_PREF, vol);
|
/**
|
||||||
|
* Plays the explosion sound effect.
|
||||||
|
*/
|
||||||
|
public void explosion() {
|
||||||
|
if (isEnabled() && explosionSound != null)
|
||||||
|
explosionSound.playInstance();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Plays sound effect when a ship has been destroyed.
|
||||||
|
*/
|
||||||
|
public void shipDestroyed() {
|
||||||
|
if (isEnabled() && shipDestroyedSound != null)
|
||||||
|
shipDestroyedSound.playInstance();
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void receivedEvent(SoundEvent event) {
|
public void receivedEvent(SoundEvent event) {
|
||||||
switch (event.sound()) {
|
switch (event.sound()) {
|
||||||
case PASS_START -> passStart();
|
|
||||||
case EVENT_CARD -> eventCard();
|
|
||||||
case GULAG -> gulag();
|
|
||||||
case DICE_ROLL -> diceRoll();
|
|
||||||
case MONEY_COLLECTED -> moneyCollect();
|
|
||||||
case MONEY_LOST -> moneyLost();
|
|
||||||
case TRADE_ACCEPTED -> tradeAccepted();
|
|
||||||
case TRADE_REJECTED -> tradeRejected();
|
|
||||||
case WINNER -> winner();
|
|
||||||
case LOSER -> looser();
|
|
||||||
case BUTTON -> button();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -0,0 +1,51 @@
|
|||||||
|
////////////////////////////////////////
|
||||||
|
// Programming project code
|
||||||
|
// UniBw M, 2022, 2023, 2024
|
||||||
|
// www.unibw.de/inf2
|
||||||
|
// (c) Mark Minas (mark.minas@unibw.de)
|
||||||
|
////////////////////////////////////////
|
||||||
|
|
||||||
|
package pp.monopoly.client;
|
||||||
|
|
||||||
|
import java.util.prefs.Preferences;
|
||||||
|
|
||||||
|
import pp.dialog.Dialog;
|
||||||
|
import static pp.util.PreferencesUtils.getPreferences;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The Menu class represents the main menu in the Battleship game application.
|
||||||
|
* It extends the Dialog class and provides functionalities for loading, saving,
|
||||||
|
* returning to the game, and quitting the application.
|
||||||
|
*/
|
||||||
|
class Menu extends Dialog {
|
||||||
|
private static final Preferences PREFERENCES = getPreferences(Menu.class);
|
||||||
|
private static final String LAST_PATH = "last.file.path";
|
||||||
|
private final MonopolyApp app;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructs the Menu dialog for the Battleship application.
|
||||||
|
*
|
||||||
|
* @param app the BattleshipApp instance
|
||||||
|
*/
|
||||||
|
public Menu(MonopolyApp app) {
|
||||||
|
super(app.getDialogManager());
|
||||||
|
this.app = app;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Updates the state of the load and save buttons based on the game logic.
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public void update() {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* As an escape action, this method closes the menu if it is the top dialog.
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public void escape() {
|
||||||
|
close();
|
||||||
|
}
|
||||||
|
}
|
@@ -1,498 +1,210 @@
|
|||||||
////////////////////////////////////////
|
|
||||||
// Programming project code
|
|
||||||
// UniBw M, 2022, 2023, 2024
|
|
||||||
// www.unibw.de/inf2
|
|
||||||
// (c) Mark Minas (mark.minas@unibw.de)
|
|
||||||
////////////////////////////////////////
|
|
||||||
|
|
||||||
package pp.monopoly.client;
|
package pp.monopoly.client;
|
||||||
|
|
||||||
import com.jme3.app.DebugKeysAppState;
|
import java.util.concurrent.ExecutorService;
|
||||||
|
import java.util.concurrent.Executors;
|
||||||
|
|
||||||
import com.jme3.app.SimpleApplication;
|
import com.jme3.app.SimpleApplication;
|
||||||
import com.jme3.app.StatsAppState;
|
|
||||||
import com.jme3.font.BitmapFont;
|
import com.jme3.font.BitmapFont;
|
||||||
import com.jme3.font.BitmapText;
|
import com.jme3.font.BitmapText;
|
||||||
import com.jme3.input.KeyInput;
|
import com.jme3.input.KeyInput;
|
||||||
import com.jme3.input.MouseInput;
|
|
||||||
import com.jme3.input.controls.ActionListener;
|
import com.jme3.input.controls.ActionListener;
|
||||||
import com.jme3.input.controls.KeyTrigger;
|
import com.jme3.input.controls.KeyTrigger;
|
||||||
import com.jme3.input.controls.MouseButtonTrigger;
|
|
||||||
import com.jme3.system.AppSettings;
|
import com.jme3.system.AppSettings;
|
||||||
import com.simsilica.lemur.GuiGlobals;
|
import com.simsilica.lemur.GuiGlobals;
|
||||||
import com.simsilica.lemur.Label;
|
import com.simsilica.lemur.Label;
|
||||||
import com.simsilica.lemur.style.BaseStyles;
|
import com.simsilica.lemur.style.BaseStyles;
|
||||||
import pp.monopoly.client.gui.popups.*;
|
|
||||||
import pp.monopoly.game.client.MonopolyClient;
|
|
||||||
import pp.monopoly.client.gui.SettingsMenu;
|
|
||||||
import pp.monopoly.client.gui.StartMenu;
|
|
||||||
import pp.monopoly.client.gui.TestWorld;
|
|
||||||
import pp.monopoly.game.client.ClientGameLogic;
|
|
||||||
import pp.monopoly.game.client.ServerConnection;
|
|
||||||
import pp.monopoly.notification.ClientStateEvent;
|
|
||||||
import pp.monopoly.notification.GameEventListener;
|
|
||||||
import pp.monopoly.notification.InfoTextEvent;
|
|
||||||
import pp.monopoly.notification.Sound;
|
|
||||||
import pp.dialog.Dialog;
|
|
||||||
import pp.dialog.DialogBuilder;
|
import pp.dialog.DialogBuilder;
|
||||||
import pp.dialog.DialogManager;
|
import pp.dialog.DialogManager;
|
||||||
import pp.graphics.Draw;
|
import pp.graphics.Draw;
|
||||||
|
import pp.monopoly.client.gui.SettingsMenu;
|
||||||
|
import pp.monopoly.client.gui.TestWorld;
|
||||||
|
import pp.monopoly.game.client.ClientGameLogic;
|
||||||
|
import pp.monopoly.game.client.MonopolyClient;
|
||||||
|
import pp.monopoly.game.client.ServerConnection;
|
||||||
|
import pp.monopoly.notification.GameEventListener;
|
||||||
|
import pp.monopoly.notification.InfoTextEvent;
|
||||||
|
|
||||||
import java.io.File;
|
|
||||||
import java.io.FileInputStream;
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.lang.System.Logger;
|
|
||||||
import java.lang.System.Logger.Level;
|
|
||||||
import java.util.concurrent.ExecutorService;
|
|
||||||
import java.util.concurrent.Executors;
|
|
||||||
import java.util.logging.LogManager;
|
|
||||||
|
|
||||||
import static pp.monopoly.Resources.lookup;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The main class for the Battleship client application.
|
|
||||||
* It manages the initialization, input setup, GUI setup, and game states for the client.
|
|
||||||
*/
|
|
||||||
public class MonopolyApp extends SimpleApplication implements MonopolyClient, GameEventListener {
|
public class MonopolyApp extends SimpleApplication implements MonopolyClient, GameEventListener {
|
||||||
|
private BitmapText topText;
|
||||||
/**
|
private final ServerConnection serverConnection;
|
||||||
* Logger for logging messages within the application.
|
private final ClientGameLogic logic;
|
||||||
*/
|
private final MonopolyAppConfig config;
|
||||||
private static final Logger LOGGER = System.getLogger(MonopolyApp.class.getName());
|
private final ActionListener escapeListener = (name, isPressed, tpf) -> handleEscape(isPressed);
|
||||||
|
private final DialogManager dialogManager = new DialogManager(this);
|
||||||
|
private final ExecutorService executor = Executors.newCachedThreadPool();
|
||||||
|
private final Draw draw;
|
||||||
|
private SettingsMenu settingsMenu;
|
||||||
|
private TestWorld testWorld;
|
||||||
|
private boolean isSettingsMenuOpen = false;
|
||||||
|
private boolean inputBlocked = false;
|
||||||
/**
|
/**
|
||||||
* Path to the styles script for GUI elements.
|
* Path to the styles script for GUI elements.
|
||||||
*/
|
*/
|
||||||
private static final String STYLES_SCRIPT = "Interface/Lemur/pp-styles.groovy"; //NON-NLS
|
private static final String STYLES_SCRIPT = "Interface/Lemur/pp-styles.groovy"; //NON-NLS
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Path to the font resource used in the GUI.
|
* Path to the font resource used in the GUI.
|
||||||
*/
|
*/
|
||||||
private static final String FONT = "Interface/Fonts/Default.fnt"; //NON-NLS
|
private static final String FONT = "Interface/Fonts/Default.fnt"; //NON-NLS
|
||||||
|
|
||||||
/**
|
|
||||||
* Path to the client configuration file, if one exists.
|
|
||||||
*/
|
|
||||||
private static final File CONFIG_FILE = new File("client.properties");
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Input mapping name for mouse clicks.
|
|
||||||
*/
|
|
||||||
public static final String CLICK = "CLICK";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Input mapping name for the Escape key.
|
|
||||||
*/
|
|
||||||
private static final String ESC = "ESC";
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Manager for handling dialogs within the application.
|
|
||||||
*/
|
|
||||||
private final DialogManager dialogManager = new DialogManager(this);
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The server connection instance, used for communicating with the game server.
|
|
||||||
*/
|
|
||||||
private final ServerConnection serverConnection;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Instance of the {@link Draw} class for rendering graphics.
|
|
||||||
*/
|
|
||||||
private Draw draw;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Text display at the top of the GUI for showing information to the user.
|
|
||||||
*/
|
|
||||||
private BitmapText topText;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Executor service for handling asynchronous tasks within the application.
|
|
||||||
*/
|
|
||||||
private ExecutorService executor;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Handler for managing the client's game logic.
|
|
||||||
*/
|
|
||||||
private final ClientGameLogic logic;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Configuration settings for the Battleship client application.
|
|
||||||
*/
|
|
||||||
private final MonopolyAppConfig config;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Listener for handling actions triggered by the Escape key.
|
|
||||||
*/
|
|
||||||
private final ActionListener escapeListener = (name, isPressed, tpf) -> escape(isPressed);
|
|
||||||
|
|
||||||
//TODO temp for testing
|
|
||||||
private EventCard eventCard;
|
|
||||||
private BuildingPropertyCard buildingProperty;
|
|
||||||
private FoodFieldCard foodField;
|
|
||||||
private GateFieldCard gateField;
|
|
||||||
private BuyCard buyCard;
|
|
||||||
private LooserPopUp looserpopup;
|
|
||||||
private boolean isBuyCardPopupOpen = false;
|
|
||||||
private final ActionListener BListener = (name, isPressed, tpf) -> handleB(isPressed);
|
|
||||||
private final ActionListener TListener = (name, isPressed, tpf) -> handleT(isPressed);
|
|
||||||
private TestWorld testWorld;
|
|
||||||
|
|
||||||
static {
|
|
||||||
// Configure logging
|
|
||||||
LogManager manager = LogManager.getLogManager();
|
|
||||||
try {
|
|
||||||
manager.readConfiguration(new FileInputStream("logging.properties"));
|
|
||||||
LOGGER.log(Level.INFO, "Successfully read logging properties"); //NON-NLS
|
|
||||||
}
|
|
||||||
catch (IOException e) {
|
|
||||||
LOGGER.log(Level.INFO, e.getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Starts the Battleship application.
|
|
||||||
*
|
|
||||||
* @param args Command-line arguments for launching the application.
|
|
||||||
*/
|
|
||||||
public static void main(String[] args) {
|
public static void main(String[] args) {
|
||||||
new MonopolyApp().start();
|
new MonopolyApp().start();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
public MonopolyApp() {
|
||||||
* Constructs a new {@code MonopolyApp} instance.
|
this.draw = new Draw(assetManager);
|
||||||
* Initializes the configuration, server connection, and game logic listeners.
|
|
||||||
*/
|
|
||||||
private MonopolyApp() {
|
|
||||||
config = new MonopolyAppConfig();
|
config = new MonopolyAppConfig();
|
||||||
config.readFromIfExists(CONFIG_FILE);
|
serverConnection = new NetworkSupport(this);
|
||||||
serverConnection = makeServerConnection();
|
|
||||||
logic = new ClientGameLogic(serverConnection);
|
logic = new ClientGameLogic(serverConnection);
|
||||||
logic.addListener(this);
|
logic.addListener(this);
|
||||||
setShowSettings(config.getShowSettings());
|
setShowSettings(config.getShowSettings());
|
||||||
setSettings(makeSettings());
|
setSettings(makeSettings());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates and configures application settings from the client configuration.
|
|
||||||
*
|
|
||||||
* @return A configured {@link AppSettings} object.
|
|
||||||
*/
|
|
||||||
private AppSettings makeSettings() {
|
|
||||||
final AppSettings settings = new AppSettings(true);
|
|
||||||
settings.setTitle(lookup("monopoly.name"));
|
|
||||||
settings.setResolution(config.getResolutionWidth(), config.getResolutionHeight());
|
|
||||||
settings.setFullscreen(config.fullScreen());
|
|
||||||
settings.setUseRetinaFrameBuffer(config.useRetinaFrameBuffer());
|
|
||||||
settings.setGammaCorrection(config.useGammaCorrection());
|
|
||||||
return settings;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Factory method for creating a server connection based on the current
|
|
||||||
* client configuration.
|
|
||||||
*
|
|
||||||
* @return A {@link ServerConnection} instance, which could be a real or mock server.
|
|
||||||
*/
|
|
||||||
private ServerConnection makeServerConnection() {
|
|
||||||
return new NetworkSupport(this);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the dialog manager responsible for managing in-game dialogs.
|
|
||||||
*
|
|
||||||
* @return The {@link DialogManager} instance.
|
|
||||||
*/
|
|
||||||
public DialogManager getDialogManager() {
|
|
||||||
return dialogManager;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the game logic handler for the client.
|
|
||||||
*
|
|
||||||
* @return The {@link ClientGameLogic} instance.
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public ClientGameLogic getGameLogic() {
|
|
||||||
return logic;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the current configuration settings for the Battleship client.
|
|
||||||
*
|
|
||||||
* @return The {@link BattleshipClientConfig} instance. //TODO Fehler im Kommentar
|
|
||||||
*/
|
|
||||||
@Override
|
@Override
|
||||||
public MonopolyAppConfig getConfig() {
|
public MonopolyAppConfig getConfig() {
|
||||||
return config;
|
return config;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Initializes the application.
|
|
||||||
* Sets up input mappings, GUI, game states, and connects to the server.
|
|
||||||
*/
|
|
||||||
@Override
|
@Override
|
||||||
public void simpleInitApp() {
|
public ClientGameLogic getGameLogic() {
|
||||||
setPauseOnLostFocus(false);
|
return logic;
|
||||||
draw = new Draw(assetManager);
|
|
||||||
setupInput();
|
|
||||||
setupStates();
|
|
||||||
setupGui();
|
|
||||||
new StartMenu(this).open();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
private AppSettings makeSettings() {
|
||||||
* Sets up the graphical user interface (GUI) for the application.
|
final AppSettings settings = new AppSettings(true);
|
||||||
*/
|
settings.setTitle("Monopoly Game");
|
||||||
private void setupGui() {
|
settings.setResolution(config.getResolutionWidth(), config.getResolutionHeight());
|
||||||
|
settings.setFullscreen(config.fullScreen());
|
||||||
|
return settings;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void simpleInitApp() {
|
||||||
GuiGlobals.initialize(this);
|
GuiGlobals.initialize(this);
|
||||||
BaseStyles.loadStyleResources(STYLES_SCRIPT);
|
BaseStyles.loadStyleResources(STYLES_SCRIPT);
|
||||||
BaseStyles.loadGlassStyle();
|
|
||||||
GuiGlobals.getInstance().getStyles().setDefaultStyle("pp"); //NON-NLS
|
GuiGlobals.getInstance().getStyles().setDefaultStyle("pp"); //NON-NLS
|
||||||
final BitmapFont normalFont = assetManager.loadFont(FONT); //NON-NLS
|
final BitmapFont normalFont = assetManager.loadFont(FONT); //NON-NLS
|
||||||
|
|
||||||
|
setupInput();
|
||||||
|
setupGui();
|
||||||
|
|
||||||
|
// Zeige das Startmenü
|
||||||
|
StartMenu.createStartMenu(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void setupGui() {
|
||||||
|
BitmapFont normalFont = assetManager.loadFont("Interface/Fonts/Default.fnt");
|
||||||
topText = new BitmapText(normalFont);
|
topText = new BitmapText(normalFont);
|
||||||
final int height = context.getSettings().getHeight();
|
topText.setLocalTranslation(10, settings.getHeight() - 10, 0);
|
||||||
topText.setLocalTranslation(10f, height - 10f, 0f);
|
|
||||||
topText.setColor(config.getTopColor());
|
|
||||||
guiNode.attachChild(topText);
|
guiNode.attachChild(topText);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Configures input mappings and sets up listeners for user interactions.
|
|
||||||
*/
|
|
||||||
private void setupInput() {
|
private void setupInput() {
|
||||||
inputManager.deleteMapping(INPUT_MAPPING_EXIT);
|
inputManager.deleteMapping(INPUT_MAPPING_EXIT);
|
||||||
inputManager.setCursorVisible(false);
|
inputManager.setCursorVisible(true);
|
||||||
inputManager.addMapping(ESC, new KeyTrigger(KeyInput.KEY_ESCAPE));
|
inputManager.addMapping("ESC", new KeyTrigger(KeyInput.KEY_ESCAPE));
|
||||||
inputManager.addMapping(CLICK, new MouseButtonTrigger(MouseInput.BUTTON_LEFT));
|
inputManager.addListener(escapeListener, "ESC");
|
||||||
inputManager.addListener(escapeListener, ESC);
|
|
||||||
|
|
||||||
//TODO tmp for testing
|
|
||||||
inputManager.addMapping("B", new KeyTrigger(KeyInput.KEY_B));
|
|
||||||
inputManager.addListener(BListener, "B");
|
|
||||||
inputManager.addMapping("T", new KeyTrigger(KeyInput.KEY_T));
|
|
||||||
inputManager.addListener(TListener, "T");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//logik zum wechselnden erscheinen und verschwinden beim drücken von B //TODO süäter entfernen
|
private void handleEscape(boolean isPressed) {
|
||||||
private void handleB(boolean isPressed) {
|
|
||||||
if (isPressed) {
|
if (isPressed) {
|
||||||
Dialog tmp = new SellHouse(this);
|
if (settingsMenu != null && isSettingsMenuOpen) {
|
||||||
tmp.open();
|
// Schließe das SettingsMenu
|
||||||
}
|
System.out.println("Schließe SettingsMenu...");
|
||||||
}
|
settingsMenu.close();
|
||||||
|
settingsMenu = null;
|
||||||
//logik zum wechselnden erscheinen und verschwinden beim drücken von B //TODO süäter entfernen
|
setSettingsMenuOpen(false);
|
||||||
private void handleT(boolean isPressed) {
|
} else {
|
||||||
if (isPressed) {
|
// Öffne das SettingsMenu
|
||||||
testWorld = new TestWorld(this);
|
System.out.println("Öffne SettingsMenu...");
|
||||||
testWorld.initializeScene();
|
settingsMenu = new SettingsMenu(this);
|
||||||
|
settingsMenu.open();
|
||||||
|
setSettingsMenuOpen(true);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
private void blockInputs() {
|
||||||
* Initializes and attaches the necessary application states for the game.
|
if (!inputBlocked) {
|
||||||
*/
|
System.out.println("Blockiere Eingaben...");
|
||||||
private void setupStates() {
|
inputManager.setCursorVisible(true); // Cursor sichtbar machen
|
||||||
if (config.getShowStatistics()) {
|
inputManager.clearMappings(); // Alle Mappings entfernen
|
||||||
final BitmapFont normalFont = assetManager.loadFont(FONT); //NON-NLS
|
inputBlocked = true;
|
||||||
final StatsAppState stats = new StatsAppState(guiNode, normalFont);
|
|
||||||
stateManager.attach(stats);
|
|
||||||
}
|
}
|
||||||
flyCam.setEnabled(false);
|
|
||||||
stateManager.detach(stateManager.getState(StatsAppState.class));
|
|
||||||
stateManager.detach(stateManager.getState(DebugKeysAppState.class));
|
|
||||||
|
|
||||||
attachGameSound();
|
|
||||||
attachGameMusic();
|
|
||||||
stateManager.attach(new GameAppState());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
public void unblockInputs() {
|
||||||
* Attaches the game sound state and sets its initial enabled state.
|
if (inputBlocked) {
|
||||||
*/
|
System.out.println("Aktiviere Eingaben...");
|
||||||
private void attachGameSound() {
|
setupInput(); // Standard-Eingaben neu registrieren
|
||||||
final GameSound gameSound = new GameSound();
|
inputBlocked = false;
|
||||||
logic.addListener(gameSound);
|
}
|
||||||
gameSound.setEnabled(GameSound.enabledInPreferences());
|
|
||||||
stateManager.attach(gameSound);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
public void setInfoText(String text) {
|
||||||
* Attaches the background music state and sets its initial enabled state.
|
topText.setText(text);
|
||||||
*/
|
|
||||||
private void attachGameMusic() {
|
|
||||||
final GameMusic gameSound = new GameMusic();
|
|
||||||
gameSound.setEnabled(GameMusic.enabledInPreferences());
|
|
||||||
stateManager.attach(gameSound);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Updates the application state every frame.
|
|
||||||
* This method is called once per frame during the game loop.
|
|
||||||
*
|
|
||||||
* @param tpf Time per frame in seconds.
|
|
||||||
*/
|
|
||||||
@Override
|
@Override
|
||||||
public void simpleUpdate(float tpf) {
|
public void receivedEvent(InfoTextEvent event) {
|
||||||
super.simpleUpdate(tpf);
|
setInfoText(event.key());
|
||||||
dialogManager.update(tpf);
|
|
||||||
logic.update(tpf);
|
|
||||||
|
|
||||||
//TODO testing replace later
|
|
||||||
if (testWorld != null) {
|
|
||||||
testWorld.update(tpf);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
@Override
|
||||||
* Handles the Escape key action to either close the top dialog or show the main menu.
|
public void stop(boolean waitFor) {
|
||||||
*
|
if (executor != null) executor.shutdownNow();
|
||||||
* @param isPressed Indicates whether the Escape key is pressed.
|
serverConnection.disconnect();
|
||||||
*/
|
super.stop(waitFor);
|
||||||
public void escape(boolean isPressed) {
|
}
|
||||||
if (!isPressed) return;
|
|
||||||
if (dialogManager.showsDialog())
|
public DialogManager getDialogManager() {
|
||||||
dialogManager.escape();
|
return dialogManager;
|
||||||
else
|
|
||||||
new SettingsMenu(this).open();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the {@link Draw} instance used for rendering graphical elements in the game.
|
|
||||||
*
|
|
||||||
* @return The {@link Draw} instance.
|
|
||||||
*/
|
|
||||||
public Draw getDraw() {
|
public Draw getDraw() {
|
||||||
return draw;
|
return draw;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Tries to connect
|
|
||||||
*/
|
|
||||||
public void connect() {
|
|
||||||
serverConnection.connect();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Handles a request to close the application.
|
|
||||||
* If the request is initiated by pressing ESC, this parameter is true.
|
|
||||||
*
|
|
||||||
* @param esc If true, the request is due to the ESC key being pressed.
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public void requestClose(boolean esc) { /* do nothing */ }
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Closes the application, displaying a confirmation dialog if the client is connected to a server.
|
|
||||||
*/
|
|
||||||
public void closeApp() {
|
|
||||||
if (serverConnection.isConnected())
|
|
||||||
confirmDialog(lookup("confirm.leaving"), this::close);
|
|
||||||
else
|
|
||||||
close();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Closes the application, disconnecting from the server and stopping the application.
|
|
||||||
*/
|
|
||||||
private void close() {
|
|
||||||
serverConnection.disconnect();
|
|
||||||
stop();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Updates the informational text displayed in the GUI.
|
|
||||||
*
|
|
||||||
* @param text The information text to display.
|
|
||||||
*/
|
|
||||||
public void setInfoText(String text) {
|
|
||||||
LOGGER.log(Level.DEBUG, "setInfoText {0}", text); //NON-NLS
|
|
||||||
topText.setText(text);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Updates the informational text in the GUI based on the key received in an {@link InfoTextEvent}.
|
|
||||||
*
|
|
||||||
* @param event The {@link InfoTextEvent} containing the key for the text to display.
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public void receivedEvent(InfoTextEvent event) {
|
|
||||||
LOGGER.log(Level.DEBUG, "received info text {0}", event.key()); //NON-NLS
|
|
||||||
setInfoText(lookup(event.key()));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Handles client state events to update the game states accordingly.
|
|
||||||
*
|
|
||||||
* @param event The {@link ClientStateEvent} representing the state change.
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public void receivedEvent(ClientStateEvent event) {
|
|
||||||
stateManager.getState(GameAppState.class).setEnabled(true);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the executor service used for handling multithreaded tasks.
|
|
||||||
*
|
|
||||||
* @return The {@link ExecutorService} instance.
|
|
||||||
*/
|
|
||||||
public ExecutorService getExecutor() {
|
public ExecutorService getExecutor() {
|
||||||
if (executor == null)
|
|
||||||
executor = Executors.newCachedThreadPool();
|
|
||||||
return executor;
|
return executor;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
public void closeApp() {
|
||||||
* Stops the application, shutting down the executor service and halting execution.
|
stop();
|
||||||
*
|
|
||||||
* @param waitFor If true, waits for the application to stop before returning.
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public void stop(boolean waitFor) {
|
|
||||||
if (executor != null) executor.shutdownNow();
|
|
||||||
super.stop(waitFor);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Displays a confirmation dialog with a specified question and action for the "Yes" button.
|
|
||||||
*
|
|
||||||
* @param question The question to display in the dialog.
|
|
||||||
* @param yesAction The action to perform if "Yes" is selected.
|
|
||||||
*/
|
|
||||||
public void confirmDialog(String question, Runnable yesAction) {
|
|
||||||
DialogBuilder.simple(dialogManager)
|
|
||||||
.setTitle(lookup("dialog.question"))
|
|
||||||
.setText(question)
|
|
||||||
.setOkButton(lookup("button.yes"), d -> {
|
|
||||||
getGameLogic().playSound(Sound.BUTTON); // Play sound
|
|
||||||
yesAction.run(); // Execute the original yesAction
|
|
||||||
})
|
|
||||||
.setNoButton(lookup("button.no"), d -> getGameLogic().playSound(Sound.BUTTON))
|
|
||||||
.build()
|
|
||||||
.open();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Displays an error dialog with the specified error message.
|
|
||||||
*
|
|
||||||
* @param errorMessage The error message to display in the dialog.
|
|
||||||
*/
|
|
||||||
public void errorDialog(String errorMessage) {
|
public void errorDialog(String errorMessage) {
|
||||||
DialogBuilder.simple(dialogManager)
|
DialogBuilder.simple(dialogManager)
|
||||||
.setTitle(lookup("dialog.error"))
|
.setTitle("Fehler")
|
||||||
.setText(errorMessage)
|
.setText(errorMessage)
|
||||||
.setOkButton(lookup("button.ok"), d -> getGameLogic().playSound(Sound.BUTTON))
|
.setOkButton("OK")
|
||||||
.build()
|
.build()
|
||||||
.open();
|
.open();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void disconnect() {
|
public void setSettingsMenuOpen(boolean isOpen) {
|
||||||
serverConnection.disconnect();
|
this.isSettingsMenuOpen = isOpen;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getId() {
|
@Override
|
||||||
if (serverConnection != null && serverConnection instanceof NetworkSupport) return ((NetworkSupport) serverConnection).getId();
|
public void simpleUpdate(float tpf) {
|
||||||
return 0;
|
if (testWorld != null) {
|
||||||
|
testWorld.update(tpf); // Aktualisiere die Kamera in der TestWorld
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void startTestWorld() {
|
||||||
|
guiNode.detachAllChildren(); // Entferne GUI
|
||||||
|
testWorld = new TestWorld(this); // Erstelle eine Instanz von TestWorld
|
||||||
|
testWorld.initializeScene(); // Initialisiere die Szene
|
||||||
|
}
|
||||||
|
|
||||||
|
public void returnToMenu() {
|
||||||
|
guiNode.detachAllChildren(); // Entferne die GUI
|
||||||
|
StartMenu.createStartMenu(this); // Zeige das Startmenü erneut
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -0,0 +1,146 @@
|
|||||||
|
package pp.monopoly.client;
|
||||||
|
|
||||||
|
import java.lang.System.Logger;
|
||||||
|
import java.lang.System.Logger.Level;
|
||||||
|
import java.util.concurrent.ExecutionException;
|
||||||
|
import java.util.concurrent.Future;
|
||||||
|
|
||||||
|
import com.simsilica.lemur.Button;
|
||||||
|
import com.simsilica.lemur.Container;
|
||||||
|
import com.simsilica.lemur.Label;
|
||||||
|
import com.simsilica.lemur.TextField;
|
||||||
|
|
||||||
|
import pp.dialog.Dialog;
|
||||||
|
import pp.dialog.DialogBuilder;
|
||||||
|
import pp.dialog.SimpleDialog;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Represents a dialog for setting up a network connection in the Monopoly game.
|
||||||
|
* Allows users to specify the host and port for connecting to a game server.
|
||||||
|
*/
|
||||||
|
class NetworkDialog extends SimpleDialog {
|
||||||
|
private static final Logger LOGGER = System.getLogger(NetworkDialog.class.getName());
|
||||||
|
private static final String LOCALHOST = "localhost";
|
||||||
|
private static final String DEFAULT_PORT = "1234";
|
||||||
|
private final NetworkSupport network;
|
||||||
|
private final TextField host = new TextField(LOCALHOST);
|
||||||
|
private final TextField port = new TextField(DEFAULT_PORT);
|
||||||
|
private String hostname;
|
||||||
|
private int portNumber;
|
||||||
|
private Future<Object> connectionFuture;
|
||||||
|
private Dialog progressDialog;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructs a new NetworkDialog.
|
||||||
|
*
|
||||||
|
* @param network The NetworkSupport instance to be used for network operations.
|
||||||
|
*/
|
||||||
|
NetworkDialog(NetworkSupport network) {
|
||||||
|
super(network.getApp().getDialogManager());
|
||||||
|
this.network = network;
|
||||||
|
initializeDialog();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initializes the dialog with input fields and connection buttons.
|
||||||
|
*/
|
||||||
|
private void initializeDialog() {
|
||||||
|
final MonopolyApp app = network.getApp();
|
||||||
|
Container inputContainer = new Container();
|
||||||
|
|
||||||
|
// Titel und Eingabefelder für Host und Port
|
||||||
|
inputContainer.addChild(new Label("Server-Adresse"));
|
||||||
|
inputContainer.addChild(host);
|
||||||
|
|
||||||
|
inputContainer.addChild(new Label("Port"));
|
||||||
|
inputContainer.addChild(port);
|
||||||
|
|
||||||
|
Button connectButton = inputContainer.addChild(new Button("Verbinden"));
|
||||||
|
connectButton.addClickCommands(source -> connect());
|
||||||
|
|
||||||
|
Button cancelButton = inputContainer.addChild(new Button("Abbrechen"));
|
||||||
|
cancelButton.addClickCommands(source -> app.closeApp());
|
||||||
|
|
||||||
|
app.getGuiNode().attachChild(inputContainer);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initiates the connection attempt based on the entered host and port.
|
||||||
|
*/
|
||||||
|
private void connect() {
|
||||||
|
LOGGER.log(Level.INFO, "Connecting to host={0}, port={1}", host, port);
|
||||||
|
try {
|
||||||
|
hostname = host.getText().trim().isEmpty() ? LOCALHOST : host.getText();
|
||||||
|
portNumber = Integer.parseInt(port.getText());
|
||||||
|
openProgressDialog();
|
||||||
|
connectionFuture = network.getApp().getExecutor().submit(this::initNetwork);
|
||||||
|
} catch (NumberFormatException e) {
|
||||||
|
network.getApp().errorDialog("Port muss eine Zahl sein.");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Opens a progress dialog while connecting.
|
||||||
|
*/
|
||||||
|
private void openProgressDialog() {
|
||||||
|
progressDialog = DialogBuilder.simple(network.getApp().getDialogManager())
|
||||||
|
.setText("Verbinde zum Server...")
|
||||||
|
.build();
|
||||||
|
progressDialog.open();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Attempts to initialize the network connection.
|
||||||
|
*
|
||||||
|
* @throws RuntimeException If an error occurs when creating the client.
|
||||||
|
*/
|
||||||
|
private Object initNetwork() {
|
||||||
|
try {
|
||||||
|
network.initNetwork(hostname, portNumber);
|
||||||
|
return null;
|
||||||
|
} catch (Exception e) {
|
||||||
|
throw new RuntimeException(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Updates the connection status and handles completion or failure.
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public void update(float delta) {
|
||||||
|
if (connectionFuture != null && connectionFuture.isDone()) {
|
||||||
|
try {
|
||||||
|
connectionFuture.get();
|
||||||
|
onSuccess();
|
||||||
|
} catch (ExecutionException e) {
|
||||||
|
onFailure(e.getCause());
|
||||||
|
} catch (InterruptedException e) {
|
||||||
|
LOGGER.log(Level.WARNING, "Connection interrupted.", e);
|
||||||
|
Thread.currentThread().interrupt();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handles a successful connection to the game server.
|
||||||
|
*/
|
||||||
|
private void onSuccess() {
|
||||||
|
connectionFuture = null;
|
||||||
|
progressDialog.close();
|
||||||
|
this.close();
|
||||||
|
network.getApp().setInfoText("Warte auf einen Gegner...");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handles a failed connection attempt.
|
||||||
|
*
|
||||||
|
* @param e The cause of the failure.
|
||||||
|
*/
|
||||||
|
private void onFailure(Throwable e) {
|
||||||
|
connectionFuture = null;
|
||||||
|
progressDialog.close();
|
||||||
|
network.getApp().errorDialog("Verbindung zum Server fehlgeschlagen.");
|
||||||
|
network.getApp().setInfoText(e.getLocalizedMessage());
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@@ -1,62 +1,43 @@
|
|||||||
////////////////////////////////////////
|
|
||||||
// Programming project code
|
|
||||||
// UniBw M, 2022, 2023, 2024
|
|
||||||
// www.unibw.de/inf2
|
|
||||||
// (c) Mark Minas (mark.minas@unibw.de)
|
|
||||||
////////////////////////////////////////
|
|
||||||
|
|
||||||
package pp.monopoly.client;
|
package pp.monopoly.client;
|
||||||
|
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.lang.System.Logger;
|
||||||
|
import java.lang.System.Logger.Level;
|
||||||
|
|
||||||
import com.jme3.network.Client;
|
import com.jme3.network.Client;
|
||||||
import com.jme3.network.ClientStateListener;
|
import com.jme3.network.ClientStateListener;
|
||||||
import com.jme3.network.Message;
|
import com.jme3.network.Message;
|
||||||
import com.jme3.network.MessageListener;
|
import com.jme3.network.MessageListener;
|
||||||
import com.jme3.network.Network;
|
import com.jme3.network.Network;
|
||||||
|
|
||||||
import pp.monopoly.client.gui.CreateGameMenu;
|
|
||||||
import pp.monopoly.game.client.ServerConnection;
|
import pp.monopoly.game.client.ServerConnection;
|
||||||
import pp.monopoly.message.client.ClientMessage;
|
import pp.monopoly.message.client.ClientMessage;
|
||||||
import pp.monopoly.message.server.ServerMessage;
|
import pp.monopoly.message.server.ServerMessage;
|
||||||
|
|
||||||
import java.io.IOException;
|
|
||||||
import java.lang.System.Logger;
|
|
||||||
import java.lang.System.Logger.Level;
|
|
||||||
|
|
||||||
import static pp.monopoly.Resources.lookup;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Manages the network connection for the Battleship application.
|
* Manages the network connection for the Monopoly application.
|
||||||
* Handles connecting to and disconnecting from the server, and sending messages.
|
* Handles connecting to and disconnecting from the server, and sending messages.
|
||||||
*/
|
*/
|
||||||
public class NetworkSupport implements MessageListener<Client>, ClientStateListener, ServerConnection {
|
class NetworkSupport implements MessageListener<Client>, ClientStateListener, ServerConnection {
|
||||||
private static final Logger LOGGER = System.getLogger(NetworkSupport.class.getName());
|
private static final Logger LOGGER = System.getLogger(NetworkSupport.class.getName());
|
||||||
private final MonopolyApp app;
|
private final MonopolyApp app;
|
||||||
private Client client;
|
private Client client;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructs a NetworkSupport instance for the given Battleship application.
|
* Constructs a NetworkSupport instance for the Monopoly application.
|
||||||
*
|
*
|
||||||
* @param app The Battleship application instance.
|
* @param app The Monopoly application instance.
|
||||||
*/
|
*/
|
||||||
public NetworkSupport(MonopolyApp app) {
|
public NetworkSupport(MonopolyApp app) {
|
||||||
this.app = app;
|
this.app = app;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Return the client connections Id
|
* Returns the Monopoly application instance.
|
||||||
* @return the client id
|
|
||||||
*/
|
|
||||||
public int getId() {
|
|
||||||
if (client == null) return 0;
|
|
||||||
return client.getId();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Returns the Battleship application instance.
|
|
||||||
*
|
*
|
||||||
* @return Battleship application instance
|
* @return Monopoly application instance
|
||||||
*/
|
*/
|
||||||
public MonopolyApp getApp() {
|
MonopolyApp getApp() {
|
||||||
return app;
|
return app;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -76,8 +57,9 @@ public class NetworkSupport implements MessageListener<Client>, ClientStateListe
|
|||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void connect() {
|
public void connect() {
|
||||||
if (client == null)
|
if (client == null) {
|
||||||
new CreateGameMenu(this).open();
|
new NetworkDialog(this).open();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -88,7 +70,7 @@ public class NetworkSupport implements MessageListener<Client>, ClientStateListe
|
|||||||
if (client == null) return;
|
if (client == null) return;
|
||||||
client.close();
|
client.close();
|
||||||
client = null;
|
client = null;
|
||||||
LOGGER.log(Level.INFO, "client closed"); //NON-NLS
|
LOGGER.log(Level.INFO, "Client connection closed.");
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -98,9 +80,10 @@ public class NetworkSupport implements MessageListener<Client>, ClientStateListe
|
|||||||
* @param port The server's port.
|
* @param port The server's port.
|
||||||
* @throws IOException If an I/O error occurs when creating the client.
|
* @throws IOException If an I/O error occurs when creating the client.
|
||||||
*/
|
*/
|
||||||
public void initNetwork(String host, int port) throws IOException {
|
void initNetwork(String host, int port) throws IOException {
|
||||||
if (client != null)
|
if (client != null) {
|
||||||
throw new IllegalStateException("trying to join a game again");
|
throw new IllegalStateException("Already connected to the game server.");
|
||||||
|
}
|
||||||
client = Network.connectToServer(host, port);
|
client = Network.connectToServer(host, port);
|
||||||
client.start();
|
client.start();
|
||||||
client.addMessageListener(this);
|
client.addMessageListener(this);
|
||||||
@@ -115,9 +98,10 @@ public class NetworkSupport implements MessageListener<Client>, ClientStateListe
|
|||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void messageReceived(Client client, Message message) {
|
public void messageReceived(Client client, Message message) {
|
||||||
LOGGER.log(Level.INFO, "message received from server: {0}", message); //NON-NLS
|
LOGGER.log(Level.INFO, "Message received from server: {0}", message);
|
||||||
if (message instanceof ServerMessage serverMessage)
|
if (message instanceof ServerMessage serverMessage) {
|
||||||
app.enqueue(() -> serverMessage.accept(app.getGameLogic()));
|
app.enqueue(() -> serverMessage.accept(app.getGameLogic()));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -127,7 +111,7 @@ public class NetworkSupport implements MessageListener<Client>, ClientStateListe
|
|||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void clientConnected(Client client) {
|
public void clientConnected(Client client) {
|
||||||
LOGGER.log(Level.INFO, "Client connected: {0}", client); //NON-NLS
|
LOGGER.log(Level.INFO, "Successfully connected to server: {0}", client);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -138,13 +122,9 @@ public class NetworkSupport implements MessageListener<Client>, ClientStateListe
|
|||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void clientDisconnected(Client client, DisconnectInfo disconnectInfo) {
|
public void clientDisconnected(Client client, DisconnectInfo disconnectInfo) {
|
||||||
LOGGER.log(Level.INFO, "Client {0} disconnected: {1}", client, disconnectInfo); //NON-NLS
|
LOGGER.log(Level.INFO, "Disconnected from server: {0}", disconnectInfo);
|
||||||
if (this.client != client)
|
|
||||||
throw new IllegalArgumentException("parameter value must be client");
|
|
||||||
LOGGER.log(Level.INFO, "client still connected: {0}", client.isConnected()); //NON-NLS
|
|
||||||
this.client = null;
|
this.client = null;
|
||||||
disconnect();
|
app.enqueue(() -> app.setInfoText("Verbindung zum Server verloren."));
|
||||||
app.enqueue(() -> app.setInfoText(lookup("lost.connection.to.server")));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -154,10 +134,11 @@ public class NetworkSupport implements MessageListener<Client>, ClientStateListe
|
|||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void send(ClientMessage message) {
|
public void send(ClientMessage message) {
|
||||||
LOGGER.log(Level.INFO, "sending {0}", message); //NON-NLS
|
LOGGER.log(Level.INFO, "Sending message to server: {0}", message);
|
||||||
if (client == null)
|
if (client == null) {
|
||||||
app.errorDialog(lookup("lost.connection.to.server"));
|
app.errorDialog("Verbindung zum Server verloren.");
|
||||||
else
|
} else {
|
||||||
client.send(message);
|
client.send(message);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -1,6 +1,7 @@
|
|||||||
package pp.monopoly.client.gui;
|
package pp.monopoly.client;
|
||||||
|
|
||||||
import com.jme3.material.Material;
|
import com.jme3.material.Material;
|
||||||
|
import com.jme3.math.ColorRGBA;
|
||||||
import com.jme3.math.Vector3f;
|
import com.jme3.math.Vector3f;
|
||||||
import com.jme3.scene.Geometry;
|
import com.jme3.scene.Geometry;
|
||||||
import com.jme3.scene.shape.Quad;
|
import com.jme3.scene.shape.Quad;
|
||||||
@@ -13,8 +14,8 @@ import com.simsilica.lemur.component.QuadBackgroundComponent;
|
|||||||
import com.simsilica.lemur.component.SpringGridLayout;
|
import com.simsilica.lemur.component.SpringGridLayout;
|
||||||
|
|
||||||
import pp.dialog.Dialog;
|
import pp.dialog.Dialog;
|
||||||
import pp.monopoly.client.MonopolyApp;
|
import pp.monopoly.client.gui.CreateGameMenu;
|
||||||
import pp.monopoly.notification.Sound;
|
import pp.monopoly.client.gui.SettingsMenu;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructs the startup menu dialog for the Monopoly application.
|
* Constructs the startup menu dialog for the Monopoly application.
|
||||||
@@ -22,6 +23,8 @@ import pp.monopoly.client.gui.GameMenu;
|
|||||||
*/
|
*/
|
||||||
public class StartMenu extends Dialog {
|
public class StartMenu extends Dialog {
|
||||||
private final MonopolyApp app;
|
private final MonopolyApp app;
|
||||||
|
private Container logoContainer;
|
||||||
|
private Container unibwLogoContainer;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructs the Startup Menu dialog for the Monopoly application.
|
* Constructs the Startup Menu dialog for the Monopoly application.
|
||||||
@@ -31,7 +34,13 @@ public class StartMenu extends Dialog {
|
|||||||
public StartMenu(MonopolyApp app) {
|
public StartMenu(MonopolyApp app) {
|
||||||
super(app.getDialogManager());
|
super(app.getDialogManager());
|
||||||
this.app = app;
|
this.app = app;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates and displays the Start Menu with buttons for starting the game,
|
||||||
|
* opening settings, and quitting the application.
|
||||||
|
*/
|
||||||
|
public static void createStartMenu(MonopolyApp app) {
|
||||||
int screenWidth = app.getContext().getSettings().getWidth();
|
int screenWidth = app.getContext().getSettings().getWidth();
|
||||||
int screenHeight = app.getContext().getSettings().getHeight();
|
int screenHeight = app.getContext().getSettings().getHeight();
|
||||||
|
|
||||||
@@ -45,6 +54,9 @@ public class StartMenu extends Dialog {
|
|||||||
background.setLocalTranslation(0, 0, -1); // Ensure it is behind other GUI elements
|
background.setLocalTranslation(0, 0, -1); // Ensure it is behind other GUI elements
|
||||||
app.getGuiNode().attachChild(background);
|
app.getGuiNode().attachChild(background);
|
||||||
|
|
||||||
|
createMonopolyLogo(app);
|
||||||
|
createUnibwLogo(app);
|
||||||
|
|
||||||
// Center container for title and play button
|
// Center container for title and play button
|
||||||
Container centerMenu = new Container(new SpringGridLayout(Axis.Y, Axis.X));
|
Container centerMenu = new Container(new SpringGridLayout(Axis.Y, Axis.X));
|
||||||
|
|
||||||
@@ -53,11 +65,7 @@ public class StartMenu extends Dialog {
|
|||||||
startButton.setFontSize(40); // Set the font size for the button text
|
startButton.setFontSize(40); // Set the font size for the button text
|
||||||
startButton.setTextHAlignment(HAlignment.Center); // Center the text horizontally
|
startButton.setTextHAlignment(HAlignment.Center); // Center the text horizontally
|
||||||
|
|
||||||
startButton.addClickCommands(s -> ifTopDialog(() -> {
|
startButton.addClickCommands(source -> startGame(app));
|
||||||
this.close(); // Close the StartMenu dialog
|
|
||||||
app.connect(); // Perform the connection logic
|
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
|
||||||
}));
|
|
||||||
centerMenu.addChild(startButton);
|
centerMenu.addChild(startButton);
|
||||||
|
|
||||||
// Position the center container in the middle of the screen
|
// Position the center container in the middle of the screen
|
||||||
@@ -66,6 +74,34 @@ public class StartMenu extends Dialog {
|
|||||||
0));
|
0));
|
||||||
app.getGuiNode().attachChild(centerMenu);
|
app.getGuiNode().attachChild(centerMenu);
|
||||||
|
|
||||||
|
// Lower-left container for "Spiel beenden" button
|
||||||
|
Container lowerLeftMenu = new Container();
|
||||||
|
lowerLeftMenu.setLocalTranslation(new Vector3f(100, 90, 0));
|
||||||
|
Button quitButton = new Button("Spiel beenden");
|
||||||
|
quitButton.setPreferredSize(new Vector3f(130, 40, 0)); // Increase button size slightly (width, height)
|
||||||
|
quitButton.setFontSize(18);
|
||||||
|
quitButton.addClickCommands(source -> quitGame());
|
||||||
|
lowerLeftMenu.addChild(quitButton);
|
||||||
|
app.getGuiNode().attachChild(lowerLeftMenu);
|
||||||
|
|
||||||
|
// Lower-right container for "Einstellungen" button
|
||||||
|
Container lowerRightMenu = new Container();
|
||||||
|
lowerRightMenu.setLocalTranslation(new Vector3f(screenWidth - 200, 90, 0));
|
||||||
|
Button settingsButton = new Button("Einstellungen");
|
||||||
|
settingsButton.setPreferredSize(new Vector3f(130, 40, 0)); // Increase button size slightly (width, height)
|
||||||
|
settingsButton.setFontSize(18); // Increase the font size for the text
|
||||||
|
settingsButton.addClickCommands(source -> openSettings(app));
|
||||||
|
lowerRightMenu.addChild(settingsButton);
|
||||||
|
app.getGuiNode().attachChild(lowerRightMenu);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates and positions the Monopoly logo container in the center of the screen.
|
||||||
|
*/
|
||||||
|
private static void createMonopolyLogo(MonopolyApp app) {
|
||||||
|
int screenWidth = app.getContext().getSettings().getWidth();
|
||||||
|
int screenHeight = app.getContext().getSettings().getHeight();
|
||||||
|
|
||||||
// Load the Monopoly logo as a texture
|
// Load the Monopoly logo as a texture
|
||||||
Texture logoTexture = app.getAssetManager().loadTexture("Pictures/logo-monopoly.png");
|
Texture logoTexture = app.getAssetManager().loadTexture("Pictures/logo-monopoly.png");
|
||||||
|
|
||||||
@@ -88,6 +124,14 @@ public class StartMenu extends Dialog {
|
|||||||
|
|
||||||
// Attach the container to the GUI node
|
// Attach the container to the GUI node
|
||||||
app.getGuiNode().attachChild(logoContainer);
|
app.getGuiNode().attachChild(logoContainer);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates and positions the Unibw logo container in the center of the screen.
|
||||||
|
*/
|
||||||
|
private static void createUnibwLogo(MonopolyApp app) {
|
||||||
|
int screenWidth = app.getContext().getSettings().getWidth();
|
||||||
|
int screenHeight = app.getContext().getSettings().getHeight();
|
||||||
|
|
||||||
// Load the Unibw logo as a texture
|
// Load the Unibw logo as a texture
|
||||||
Texture unibwTexture = app.getAssetManager().loadTexture("Pictures/logo-unibw.png");
|
Texture unibwTexture = app.getAssetManager().loadTexture("Pictures/logo-unibw.png");
|
||||||
@@ -113,14 +157,26 @@ public class StartMenu extends Dialog {
|
|||||||
app.getGuiNode().attachChild(unibwContainer);
|
app.getGuiNode().attachChild(unibwContainer);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
/**
|
||||||
public void escape() {
|
* Starts the game by transitioning to the CreateGameMenu.
|
||||||
new SettingsMenu(app).open();
|
*/
|
||||||
|
private static void startGame(MonopolyApp app) {
|
||||||
|
app.getGuiNode().detachAllChildren();
|
||||||
|
new CreateGameMenu(app);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
/**
|
||||||
public void close() {
|
* Opens the settings menu.
|
||||||
|
*/
|
||||||
|
private static void openSettings(MonopolyApp app) {
|
||||||
app.getGuiNode().detachAllChildren();
|
app.getGuiNode().detachAllChildren();
|
||||||
super.close();
|
new SettingsMenu(app);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Quits the game application.
|
||||||
|
*/
|
||||||
|
private static void quitGame() {
|
||||||
|
System.exit(0);
|
||||||
}
|
}
|
||||||
}
|
}
|
@@ -1,173 +0,0 @@
|
|||||||
package pp.monopoly.client.gui;
|
|
||||||
|
|
||||||
import com.jme3.material.Material;
|
|
||||||
import com.jme3.math.ColorRGBA;
|
|
||||||
import com.jme3.math.Vector3f;
|
|
||||||
import com.jme3.scene.Geometry;
|
|
||||||
import com.jme3.scene.shape.Quad;
|
|
||||||
import com.jme3.texture.Texture;
|
|
||||||
import com.simsilica.lemur.*;
|
|
||||||
import com.simsilica.lemur.component.QuadBackgroundComponent;
|
|
||||||
import com.simsilica.lemur.component.SpringGridLayout;
|
|
||||||
import com.simsilica.lemur.style.ElementId;
|
|
||||||
import pp.dialog.Dialog;
|
|
||||||
import pp.monopoly.client.MonopolyApp;
|
|
||||||
import pp.monopoly.notification.Sound;
|
|
||||||
|
|
||||||
public class BuildingAdminMenu extends Dialog {
|
|
||||||
private final MonopolyApp app;
|
|
||||||
|
|
||||||
private final Container mainContainer;
|
|
||||||
private final Button backButton = new Button("Zurück");
|
|
||||||
private final Button buildButton = new Button("Bauen");
|
|
||||||
private final Button demolishButton = new Button("Abriss");
|
|
||||||
private final Button takeMortgageButton = new Button("Hypothek aufnehmen");
|
|
||||||
private final Button payMortgageButton = new Button("Hypothek bezahlen");
|
|
||||||
private final Button overviewButton = new Button("Übersicht");
|
|
||||||
|
|
||||||
public BuildingAdminMenu(MonopolyApp app) {
|
|
||||||
super(app.getDialogManager());
|
|
||||||
this.app = app;
|
|
||||||
|
|
||||||
// Background Image
|
|
||||||
addBackgroundImage();
|
|
||||||
|
|
||||||
// Main container for the UI components
|
|
||||||
mainContainer = new Container(new SpringGridLayout(Axis.Y, Axis.X));
|
|
||||||
mainContainer.setPreferredSize(new Vector3f(800, 600, 0));
|
|
||||||
mainContainer.setBackground(new QuadBackgroundComponent(new ColorRGBA(1, 1, 1, 0.7f))); // Translucent white background
|
|
||||||
|
|
||||||
// Add header
|
|
||||||
mainContainer.addChild(createHeaderContainer());
|
|
||||||
// Add content
|
|
||||||
mainContainer.addChild(createContent());
|
|
||||||
// Attach main container to GUI node
|
|
||||||
app.getGuiNode().attachChild(mainContainer);
|
|
||||||
mainContainer.setLocalTranslation(
|
|
||||||
(app.getCamera().getWidth() - mainContainer.getPreferredSize().x) / 2,
|
|
||||||
(app.getCamera().getHeight() + mainContainer.getPreferredSize().y) / 2,
|
|
||||||
7
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates the header container.
|
|
||||||
*
|
|
||||||
* @return The header container.
|
|
||||||
*/
|
|
||||||
private Container createHeaderContainer() {
|
|
||||||
Container headerContainer = new Container(new SpringGridLayout(Axis.X, Axis.Y));
|
|
||||||
headerContainer.setPreferredSize(new Vector3f(800, 100, 0));
|
|
||||||
Label headerLabel = headerContainer.addChild(new Label("Grundstücke Verwalten", new ElementId("header")));
|
|
||||||
headerLabel.setFontSize(45);
|
|
||||||
headerLabel.setInsets(new Insets3f(10, 10, 10, 10));
|
|
||||||
return headerContainer;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates the main content container with columns for Overview, Build, and Mortgage.
|
|
||||||
*
|
|
||||||
* @return The content container.
|
|
||||||
*/
|
|
||||||
private Container createContent() {
|
|
||||||
Container contentContainer = new Container(new SpringGridLayout(Axis.X, Axis.Y));
|
|
||||||
contentContainer.setPreferredSize(new Vector3f(800, 500, 0));
|
|
||||||
|
|
||||||
// Overview Column
|
|
||||||
Container overviewColumn = new Container(new SpringGridLayout(Axis.Y, Axis.X));
|
|
||||||
overviewColumn.addChild(new Label("Übersicht:")).setFontSize(30);
|
|
||||||
|
|
||||||
//Building Overview Button
|
|
||||||
overviewButton.setPreferredSize(new Vector3f(200, 50, 0));
|
|
||||||
overviewButton.addClickCommands(s -> ifTopDialog(() -> {
|
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
|
||||||
}));
|
|
||||||
overviewColumn.addChild(overviewButton);
|
|
||||||
|
|
||||||
// Back Button
|
|
||||||
backButton.setPreferredSize(new Vector3f(200, 50, 0));
|
|
||||||
backButton.addClickCommands(s -> ifTopDialog(() -> {
|
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
|
||||||
this.close();
|
|
||||||
}));
|
|
||||||
overviewColumn.addChild(backButton);
|
|
||||||
|
|
||||||
contentContainer.addChild(overviewColumn);
|
|
||||||
|
|
||||||
|
|
||||||
// Build Column
|
|
||||||
Container buildColumn = new Container(new SpringGridLayout(Axis.Y, Axis.X));
|
|
||||||
buildColumn.addChild(new Label("Bauen:")).setFontSize(30);
|
|
||||||
|
|
||||||
// Build Houses Button
|
|
||||||
buildButton.setPreferredSize(new Vector3f(200, 50, 0));
|
|
||||||
buildButton.addClickCommands(s -> ifTopDialog(() -> {
|
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
|
||||||
}));
|
|
||||||
buildColumn.addChild(buildButton);
|
|
||||||
|
|
||||||
//Demolish Houses Button
|
|
||||||
demolishButton.setPreferredSize(new Vector3f(200, 50, 0));
|
|
||||||
demolishButton.addClickCommands(s -> ifTopDialog(() -> {
|
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
|
||||||
}));
|
|
||||||
buildColumn.addChild(demolishButton);
|
|
||||||
|
|
||||||
contentContainer.addChild(buildColumn);
|
|
||||||
|
|
||||||
|
|
||||||
// Mortgage Column
|
|
||||||
Container mortgageColumn = new Container(new SpringGridLayout(Axis.Y, Axis.X));
|
|
||||||
mortgageColumn.addChild(new Label("Hypotheken:")).setFontSize(30);
|
|
||||||
|
|
||||||
// Lend Mortgage Button
|
|
||||||
takeMortgageButton.setPreferredSize(new Vector3f(200, 50, 0));
|
|
||||||
takeMortgageButton.addClickCommands(s -> ifTopDialog(() -> {
|
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
|
||||||
}));
|
|
||||||
mortgageColumn.addChild(takeMortgageButton);
|
|
||||||
|
|
||||||
//Repay Mortgage Button
|
|
||||||
payMortgageButton.setPreferredSize(new Vector3f(200, 50, 0));
|
|
||||||
payMortgageButton.addClickCommands(s -> ifTopDialog(() -> {
|
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
|
||||||
}));
|
|
||||||
mortgageColumn.addChild(payMortgageButton);
|
|
||||||
|
|
||||||
contentContainer.addChild(mortgageColumn);
|
|
||||||
|
|
||||||
return contentContainer;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Adds a background image to the dialog.
|
|
||||||
*/
|
|
||||||
private void addBackgroundImage() {
|
|
||||||
Texture backgroundImage = app.getAssetManager().loadTexture("Pictures/unibw-Bib2.png");
|
|
||||||
Quad quad = new Quad(app.getCamera().getWidth(), app.getCamera().getHeight());
|
|
||||||
Geometry background = new Geometry("Background", quad);
|
|
||||||
Material backgroundMaterial = new Material(app.getAssetManager(), "Common/MatDefs/Misc/Unshaded.j3md");
|
|
||||||
backgroundMaterial.setTexture("ColorMap", backgroundImage);
|
|
||||||
background.setMaterial(backgroundMaterial);
|
|
||||||
background.setLocalTranslation(0, 0, 6); // Position behind other GUI elements
|
|
||||||
app.getGuiNode().attachChild(background);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Handles the "Zurück" action.
|
|
||||||
*/
|
|
||||||
private void handleBack() {
|
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
|
||||||
close();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void escape() {
|
|
||||||
handleBack();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void update(float delta) {
|
|
||||||
// Periodic updates if necessary
|
|
||||||
}
|
|
||||||
}
|
|
@@ -39,22 +39,21 @@ public class CameraController {
|
|||||||
* @param tpf Zeit pro Frame
|
* @param tpf Zeit pro Frame
|
||||||
*/
|
*/
|
||||||
public void update(float tpf) {
|
public void update(float tpf) {
|
||||||
|
// Aktualisiere den Winkel basierend auf der Geschwindigkeit
|
||||||
|
angle += speed * tpf;
|
||||||
|
if (angle >= FastMath.TWO_PI) {
|
||||||
|
angle -= FastMath.TWO_PI; // Winkel zurücksetzen, um Überläufe zu vermeiden
|
||||||
|
}
|
||||||
|
|
||||||
|
// Berechne die neue Position der Kamera
|
||||||
|
float x = center.x + radius * FastMath.cos(angle);
|
||||||
|
float z = center.z + radius * FastMath.sin(angle);
|
||||||
|
float y = center.y + height;
|
||||||
|
|
||||||
|
// Setze die Kameraposition
|
||||||
|
camera.setLocation(new Vector3f(x, y, z));
|
||||||
|
|
||||||
|
// Lasse die Kamera auf den Fokuspunkt blicken
|
||||||
camera.lookAt(center, Vector3f.UNIT_Y);
|
camera.lookAt(center, Vector3f.UNIT_Y);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setPosition(int fieldID) {
|
|
||||||
camera.setLocation(fieldIdToVector(fieldID));
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setPosition(float x, float y) {
|
|
||||||
camera.setLocation(new Vector3f(x,height,y));
|
|
||||||
}
|
|
||||||
|
|
||||||
private Vector3f fieldIdToVector(int fieldID) {
|
|
||||||
if (fieldID <= 10) return new Vector3f(30,height,0);
|
|
||||||
if (fieldID <= 20) return new Vector3f(0, height, 30);
|
|
||||||
if (fieldID <= 30) return new Vector3f(-30, height, 0);
|
|
||||||
if (fieldID <= 40) return new Vector3f(0, height, -30);
|
|
||||||
else throw new IllegalArgumentException();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@@ -1,261 +0,0 @@
|
|||||||
package pp.monopoly.client.gui;
|
|
||||||
|
|
||||||
import java.util.Set;
|
|
||||||
|
|
||||||
import com.jme3.app.Application;
|
|
||||||
import com.jme3.app.state.BaseAppState;
|
|
||||||
import com.jme3.material.Material;
|
|
||||||
import com.jme3.math.ColorRGBA;
|
|
||||||
import com.jme3.math.Vector3f;
|
|
||||||
import com.jme3.scene.Geometry;
|
|
||||||
import com.jme3.scene.shape.Quad;
|
|
||||||
import com.jme3.texture.Texture;
|
|
||||||
import com.simsilica.lemur.Axis;
|
|
||||||
import com.simsilica.lemur.Button;
|
|
||||||
import com.simsilica.lemur.Container;
|
|
||||||
import com.simsilica.lemur.Label;
|
|
||||||
import com.simsilica.lemur.Selector;
|
|
||||||
import com.simsilica.lemur.component.QuadBackgroundComponent;
|
|
||||||
import com.simsilica.lemur.component.SpringGridLayout;
|
|
||||||
import com.simsilica.lemur.core.VersionedList;
|
|
||||||
import com.simsilica.lemur.core.VersionedReference;
|
|
||||||
import com.simsilica.lemur.style.ElementId;
|
|
||||||
import pp.dialog.Dialog;
|
|
||||||
import pp.monopoly.client.MonopolyApp;
|
|
||||||
import pp.monopoly.game.server.Player;
|
|
||||||
import pp.monopoly.model.TradeHandler;
|
|
||||||
import pp.monopoly.notification.Sound;
|
|
||||||
|
|
||||||
public class ChoosePartner extends Dialog {
|
|
||||||
private final MonopolyApp app;
|
|
||||||
private Selector<String> playerSelector;
|
|
||||||
private final Button cancelButton = new Button("Abbrechen");
|
|
||||||
private final Button confirmButton = new Button("Bestätigen");
|
|
||||||
private final Container mainContainer;
|
|
||||||
private Container lowerLeftMenu;
|
|
||||||
private Container lowerRightMenu;
|
|
||||||
private Geometry background;
|
|
||||||
private TradeHandler tradeHandler;
|
|
||||||
QuadBackgroundComponent translucentWhiteBackground =
|
|
||||||
new QuadBackgroundComponent(new ColorRGBA(1.0f, 1.0f, 1.0f, 0.5f));
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructs the ChoosePartner dialog.
|
|
||||||
*
|
|
||||||
* @param app The Monopoly application instance.
|
|
||||||
*/
|
|
||||||
public ChoosePartner(MonopolyApp app) {
|
|
||||||
super(app.getDialogManager());
|
|
||||||
this.app = app;
|
|
||||||
tradeHandler = new TradeHandler(app.getGameLogic().getPlayerHandler().getPlayerById(app.getId()));
|
|
||||||
|
|
||||||
// Background Image
|
|
||||||
addBackgroundImage();
|
|
||||||
|
|
||||||
// Main container for the UI components
|
|
||||||
mainContainer = new Container(new SpringGridLayout(Axis.Y, Axis.X));
|
|
||||||
mainContainer.setPreferredSize(new Vector3f(1000, 600, 0));
|
|
||||||
mainContainer.setBackground(translucentWhiteBackground);
|
|
||||||
|
|
||||||
// Add title with background
|
|
||||||
Label headerLabel = mainContainer.addChild(new Label("Wähle deinen Handelspartner:", new ElementId("label-Bold")));
|
|
||||||
headerLabel.setFontSize(40);
|
|
||||||
headerLabel.setBackground(new QuadBackgroundComponent(new ColorRGBA(1.0f, 1.0f, 1.0f, 0.5f)));
|
|
||||||
|
|
||||||
// Dropdown for player selection
|
|
||||||
mainContainer.addChild(createDropdown());
|
|
||||||
|
|
||||||
// Add buttons
|
|
||||||
mainContainer.addChild(createButtonContainer());
|
|
||||||
|
|
||||||
addSelectionActionListener(playerSelector, this::onDropdownSelectionChanged);
|
|
||||||
|
|
||||||
// Attach main container to GUI node
|
|
||||||
app.getGuiNode().attachChild(mainContainer);
|
|
||||||
mainContainer.setLocalTranslation(
|
|
||||||
(app.getCamera().getWidth() - mainContainer.getPreferredSize().x) / 2,
|
|
||||||
(app.getCamera().getHeight() + mainContainer.getPreferredSize().y) / 2,
|
|
||||||
4
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates the dropdown menu for selecting a partner.
|
|
||||||
*
|
|
||||||
* @return The dropdown container.
|
|
||||||
*/
|
|
||||||
private Container createDropdown() {
|
|
||||||
Container dropdownContainer = new Container(new SpringGridLayout(Axis.Y, Axis.X));
|
|
||||||
dropdownContainer.setPreferredSize(new Vector3f(100, 80, 0));
|
|
||||||
dropdownContainer.setBackground(new QuadBackgroundComponent(new ColorRGBA(ColorRGBA.Black)));
|
|
||||||
|
|
||||||
VersionedList<String> playerOptions = new VersionedList<>();
|
|
||||||
|
|
||||||
for (Player player : app.getGameLogic().getPlayerHandler().getPlayers()) {
|
|
||||||
if (player.getId() != app.getId()) {
|
|
||||||
playerOptions.add(player.getName() + " (ID: "+player.getId()+")");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
playerSelector = new Selector<>(playerOptions, "glass");
|
|
||||||
dropdownContainer.addChild(playerSelector);
|
|
||||||
Vector3f dimens = dropdownContainer.getPreferredSize();
|
|
||||||
Vector3f dimens2 = playerSelector.getPopupContainer().getPreferredSize();
|
|
||||||
dimens2.setX( dimens.getX() );
|
|
||||||
playerSelector.getPopupContainer().setPreferredSize(new Vector3f(200,200,3));
|
|
||||||
playerSelector.setLocalTranslation(0,0,5);
|
|
||||||
onDropdownSelectionChanged(playerOptions.get(0));
|
|
||||||
|
|
||||||
return dropdownContainer;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates the button container with cancel and confirm buttons.
|
|
||||||
*
|
|
||||||
* @return The button container.
|
|
||||||
*/
|
|
||||||
private Container createButtonContainer() {
|
|
||||||
Container buttonContainer = new Container(new SpringGridLayout(Axis.X, Axis.Y));
|
|
||||||
buttonContainer.setBackground(translucentWhiteBackground);
|
|
||||||
|
|
||||||
// "Abbrechen" button
|
|
||||||
lowerLeftMenu = new Container();
|
|
||||||
cancelButton.setPreferredSize(new Vector3f(200, 60, 0));
|
|
||||||
cancelButton.setFontSize(30);
|
|
||||||
cancelButton.addClickCommands(s -> ifTopDialog(() -> {
|
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
|
||||||
close();
|
|
||||||
}));
|
|
||||||
lowerLeftMenu.addChild(cancelButton);
|
|
||||||
|
|
||||||
// Position the container near the bottom-left corner
|
|
||||||
lowerLeftMenu.setLocalTranslation(new Vector3f(120, 170, 5)); // Adjust X and Y to align with the bottom-left corner
|
|
||||||
app.getGuiNode().attachChild(lowerLeftMenu);
|
|
||||||
|
|
||||||
|
|
||||||
// "Bestätigen" button
|
|
||||||
lowerRightMenu = new Container();
|
|
||||||
confirmButton.setPreferredSize(new Vector3f(200, 60, 0));
|
|
||||||
confirmButton.setFontSize(30);
|
|
||||||
confirmButton.addClickCommands(s -> ifTopDialog(() -> {
|
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
|
||||||
close();
|
|
||||||
new TradeMenu(app).open();
|
|
||||||
}));
|
|
||||||
lowerRightMenu.addChild(confirmButton);
|
|
||||||
|
|
||||||
// Position the container near the bottom-right corner
|
|
||||||
lowerRightMenu.setLocalTranslation(new Vector3f(app.getCamera().getWidth() - 320, 170, 5)); // X: 220px from the right, Y: 50px above the bottom
|
|
||||||
app.getGuiNode().attachChild(lowerRightMenu);
|
|
||||||
|
|
||||||
|
|
||||||
return buttonContainer;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Adds a background image to the dialog.
|
|
||||||
*/
|
|
||||||
private void addBackgroundImage() {
|
|
||||||
Texture backgroundImage = app.getAssetManager().loadTexture("Pictures/unibw-Bib2.png");
|
|
||||||
Quad quad = new Quad(app.getCamera().getWidth(), app.getCamera().getHeight());
|
|
||||||
background = new Geometry("Background", quad);
|
|
||||||
Material backgroundMaterial = new Material(app.getAssetManager(), "Common/MatDefs/Misc/Unshaded.j3md");
|
|
||||||
backgroundMaterial.setTexture("ColorMap", backgroundImage);
|
|
||||||
background.setMaterial(backgroundMaterial);
|
|
||||||
background.setLocalTranslation(0, 0, 3); // Position behind other GUI elements
|
|
||||||
app.getGuiNode().attachChild(background);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Handles the escape action for the dialog.
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public void escape() {
|
|
||||||
new SettingsMenu(app).open();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Updates the dialog periodically, called by the dialog manager.
|
|
||||||
*
|
|
||||||
* @param delta The time elapsed since the last update.
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public void update(float delta) {
|
|
||||||
// Periodic updates (if needed) can be implemented here
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void close() {
|
|
||||||
app.getGuiNode().detachChild(playerSelector);
|
|
||||||
app.getGuiNode().detachChild(lowerLeftMenu);
|
|
||||||
app.getGuiNode().detachChild(lowerRightMenu);
|
|
||||||
app.getGuiNode().detachChild(mainContainer);
|
|
||||||
app.getGuiNode().detachChild(background);
|
|
||||||
super.close();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Adds a custom action listener to the Selector.
|
|
||||||
*/
|
|
||||||
private void addSelectionActionListener(Selector<String> selector, SelectionActionListener<String> listener) {
|
|
||||||
VersionedReference<Set<Integer>> selectionRef = selector.getSelectionModel().createReference();
|
|
||||||
|
|
||||||
app.getStateManager().attach(new BaseAppState() {
|
|
||||||
@Override
|
|
||||||
public void update(float tpf) {
|
|
||||||
if (selectionRef.update()) {
|
|
||||||
String selected = selectionRef.get().toString();
|
|
||||||
listener.onSelectionChanged(selected);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void initialize(Application app) {
|
|
||||||
update(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void cleanup(Application app) {
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void onEnable() {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void onDisable() {
|
|
||||||
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Callback for when the dropdown selection changes.
|
|
||||||
*/
|
|
||||||
private void onDropdownSelectionChanged(String selected) {
|
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
|
||||||
int idStart = selected.indexOf("(ID: ") + 5; // Find start of the ID
|
|
||||||
int idEnd = selected.indexOf(")", idStart); // Find end of the ID
|
|
||||||
String idStr = selected.substring(idStart, idEnd); // Extract the ID as a string
|
|
||||||
int playerId = Integer.parseInt(idStr); // Convert the ID to an integer
|
|
||||||
|
|
||||||
// Find the player by ID
|
|
||||||
Player selectedPlayer = app.getGameLogic().getPlayerHandler().getPlayerById(playerId);
|
|
||||||
|
|
||||||
if (selectedPlayer != null) {
|
|
||||||
tradeHandler.setReceiver(selectedPlayer); // Set the receiver in TradeHandler
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Functional interface for a selection action listener.
|
|
||||||
*/
|
|
||||||
@FunctionalInterface
|
|
||||||
private interface SelectionActionListener<T> {
|
|
||||||
void onSelectionChanged(T selection);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@@ -1,226 +1,121 @@
|
|||||||
////////////////////////////////////////
|
|
||||||
// Programming project code
|
|
||||||
// UniBw M, 2022, 2023, 2024
|
|
||||||
// www.unibw.de/inf2
|
|
||||||
// (c) Mark Minas (mark.minas@unibw.de)
|
|
||||||
////////////////////////////////////////
|
|
||||||
|
|
||||||
package pp.monopoly.client.gui;
|
package pp.monopoly.client.gui;
|
||||||
|
|
||||||
import java.lang.System.Logger;
|
|
||||||
import java.lang.System.Logger.Level;
|
|
||||||
import java.util.concurrent.ExecutionException;
|
|
||||||
import java.util.concurrent.Future;
|
|
||||||
|
|
||||||
import com.jme3.material.Material;
|
import com.jme3.material.Material;
|
||||||
import com.jme3.math.Vector3f;
|
import com.jme3.math.Vector3f;
|
||||||
import com.jme3.scene.Geometry;
|
import com.jme3.scene.Geometry;
|
||||||
import com.jme3.scene.shape.Quad;
|
import com.jme3.scene.shape.Quad;
|
||||||
import com.jme3.texture.Texture;
|
import com.jme3.texture.Texture;
|
||||||
|
import com.simsilica.lemur.Axis;
|
||||||
import com.simsilica.lemur.Button;
|
import com.simsilica.lemur.Button;
|
||||||
import com.simsilica.lemur.Container;
|
import com.simsilica.lemur.Container;
|
||||||
import com.simsilica.lemur.Label;
|
import com.simsilica.lemur.Label;
|
||||||
import com.simsilica.lemur.TextField;
|
import com.simsilica.lemur.TextField;
|
||||||
import com.simsilica.lemur.component.SpringGridLayout;
|
import com.simsilica.lemur.component.SpringGridLayout;
|
||||||
|
|
||||||
import static pp.monopoly.Resources.lookup;
|
|
||||||
|
|
||||||
import com.simsilica.lemur.style.ElementId;
|
|
||||||
import pp.monopoly.client.MonopolyApp;
|
import pp.monopoly.client.MonopolyApp;
|
||||||
import pp.monopoly.client.NetworkSupport;
|
import pp.monopoly.client.StartMenu;
|
||||||
import pp.monopoly.notification.Sound;
|
|
||||||
import pp.monopoly.server.MonopolyServer;
|
|
||||||
import pp.dialog.Dialog;
|
|
||||||
import pp.dialog.DialogBuilder;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Represents a dialog for setting up a network connection in the Battleship game.
|
* CreateGameMenu class represents the menu for creating a new game.
|
||||||
* Allows users to specify the host and port for connecting to a game server.
|
|
||||||
*/
|
*/
|
||||||
public class CreateGameMenu extends Dialog {
|
public class CreateGameMenu {
|
||||||
private static final Logger LOGGER = System.getLogger(CreateGameMenu.class.getName());
|
private final MonopolyApp app;
|
||||||
private static final String LOCALHOST = "localhost"; //NON-NLS
|
private final Container menuContainer;
|
||||||
private static final String DEFAULT_PORT = "42069"; //NON-NLS
|
private Geometry background;
|
||||||
private final NetworkSupport network;
|
|
||||||
private final TextField host = new TextField(LOCALHOST);
|
|
||||||
private final TextField port = new TextField(DEFAULT_PORT);
|
|
||||||
private final Button serverButton = new Button("Selber hosten");
|
|
||||||
private final Button cancelButton = new Button("Abbrechen");
|
|
||||||
private final Button joinButton = new Button("Beitreten");
|
|
||||||
private String hostname;
|
|
||||||
private int portNumber;
|
|
||||||
private Future<Object> connectionFuture;
|
|
||||||
private Dialog progressDialog;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructs a new CreateGameMenu.
|
* Konstruktor für das CreateGameMenu.
|
||||||
*
|
*
|
||||||
* @param network The NetworkSupport instance to be used for network operations.
|
* @param app Die Hauptanwendung (MonopolyApp)
|
||||||
*/
|
*/
|
||||||
public CreateGameMenu(NetworkSupport network) {
|
public CreateGameMenu(MonopolyApp app) {
|
||||||
super(network.getApp().getDialogManager());
|
this.app = app;
|
||||||
this.network = network;
|
|
||||||
host.setSingleLine(true);
|
|
||||||
host.setPreferredWidth(400f);
|
|
||||||
port.setSingleLine(true);
|
|
||||||
|
|
||||||
final MonopolyApp app = network.getApp();
|
// Hintergrundbild laden und hinzufügen
|
||||||
|
addBackgroundImage();
|
||||||
|
|
||||||
int screenWidth = app.getContext().getSettings().getWidth();
|
// Hauptcontainer für das Menü
|
||||||
int screenHeight = app.getContext().getSettings().getHeight();
|
menuContainer = new Container(new SpringGridLayout(Axis.Y, Axis.X));
|
||||||
|
menuContainer.setPreferredSize(new Vector3f(600, 400, 0)); // Feste Größe des Containers
|
||||||
|
|
||||||
// Set up the background image
|
// Titel
|
||||||
|
Label title = menuContainer.addChild(new Label("Neues Spiel"));
|
||||||
|
title.setFontSize(48);
|
||||||
|
|
||||||
|
// Eingabefelder-Container
|
||||||
|
Container inputContainer = menuContainer.addChild(new Container(new SpringGridLayout(Axis.Y, Axis.X)));
|
||||||
|
inputContainer.setPreferredSize(new Vector3f(200, 150, 0)); // Eingabefelder nicht ganz so breit
|
||||||
|
inputContainer.setLocalTranslation(20, 0, 0); // Abstand vom Rand
|
||||||
|
|
||||||
|
inputContainer.addChild(new Label("Server-Adresse:"));
|
||||||
|
TextField serverAddressField = inputContainer.addChild(new TextField("localhost"));
|
||||||
|
serverAddressField.setPreferredWidth(400); // Breite des Textfelds
|
||||||
|
|
||||||
|
inputContainer.addChild(new Label("Port:"));
|
||||||
|
TextField portField = inputContainer.addChild(new TextField("42069"));
|
||||||
|
portField.setPreferredWidth(400); // Breite des Textfelds
|
||||||
|
|
||||||
|
// Button-Container
|
||||||
|
Container buttonContainer = menuContainer.addChild(new Container(new SpringGridLayout(Axis.X, Axis.Y)));
|
||||||
|
buttonContainer.setPreferredSize(new Vector3f(400, 50, 0));
|
||||||
|
buttonContainer.setLocalTranslation(20, 0, 0); // Abstand vom Rand
|
||||||
|
|
||||||
|
// "Abbrechen"-Button
|
||||||
|
Button cancelButton = buttonContainer.addChild(new Button("Abbrechen"));
|
||||||
|
cancelButton.setPreferredSize(new Vector3f(120, 40, 0));
|
||||||
|
cancelButton.addClickCommands(source -> goBackToStartMenu());
|
||||||
|
|
||||||
|
// "Spiel hosten"-Button
|
||||||
|
Button hostButton = buttonContainer.addChild(new Button("Spiel hosten"));
|
||||||
|
hostButton.setPreferredSize(new Vector3f(120, 40, 0));
|
||||||
|
hostButton.addClickCommands(source -> {
|
||||||
|
closeCreateGameMenu(); // Schließt das Menü
|
||||||
|
app.startTestWorld(); // Starte die TestWorld im selben Fenster
|
||||||
|
});
|
||||||
|
|
||||||
|
// "Beitreten"-Button
|
||||||
|
Button joinButton = buttonContainer.addChild(new Button("Beitreten"));
|
||||||
|
joinButton.setPreferredSize(new Vector3f(120, 40, 0));
|
||||||
|
// Placeholder für die Beitrittslogik
|
||||||
|
|
||||||
|
// Zentrierung des Containers
|
||||||
|
menuContainer.setLocalTranslation(
|
||||||
|
(app.getCamera().getWidth() - menuContainer.getPreferredSize().x) / 2,
|
||||||
|
(app.getCamera().getHeight() + menuContainer.getPreferredSize().y) / 2,
|
||||||
|
1 // Höhere Z-Ebene für den Vordergrund
|
||||||
|
);
|
||||||
|
|
||||||
|
app.getGuiNode().attachChild(menuContainer);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Lädt das Hintergrundbild und fügt es als geometrische Ebene hinzu.
|
||||||
|
*/
|
||||||
|
private void addBackgroundImage() {
|
||||||
Texture backgroundImage = app.getAssetManager().loadTexture("Pictures/unibw-Bib2.png");
|
Texture backgroundImage = app.getAssetManager().loadTexture("Pictures/unibw-Bib2.png");
|
||||||
Quad quad = new Quad(screenWidth, screenHeight);
|
Quad quad = new Quad(app.getCamera().getWidth(), app.getCamera().getHeight());
|
||||||
Geometry background = new Geometry("Background", quad);
|
background = new Geometry("Background", quad);
|
||||||
Material backgroundMaterial = new Material(app.getAssetManager(), "Common/MatDefs/Misc/Unshaded.j3md");
|
Material backgroundMaterial = new Material(app.getAssetManager(), "Common/MatDefs/Misc/Unshaded.j3md");
|
||||||
backgroundMaterial.setTexture("ColorMap", backgroundImage);
|
backgroundMaterial.setTexture("ColorMap", backgroundImage);
|
||||||
background.setMaterial(backgroundMaterial);
|
background.setMaterial(backgroundMaterial);
|
||||||
background.setLocalTranslation(0, 0, -1); // Ensure it is behind other GUI elements
|
background.setLocalTranslation(0, 0, -1); // Hintergrundebene
|
||||||
|
|
||||||
app.getGuiNode().attachChild(background);
|
app.getGuiNode().attachChild(background);
|
||||||
|
|
||||||
addChild(new Label("Spiel erstellen", new ElementId("header"))); //NON-NLS
|
|
||||||
final Container input = new Container(new SpringGridLayout());
|
|
||||||
input.addChild(new Label(lookup("host.name") + ": "));
|
|
||||||
input.addChild(host, 1);
|
|
||||||
input.addChild(new Label(lookup("port.number") + ": "));
|
|
||||||
input.addChild(port, 1);
|
|
||||||
|
|
||||||
addChild(input);
|
|
||||||
// "Abbrechen"-Button
|
|
||||||
cancelButton.setPreferredSize(new Vector3f(120, 40, 0));
|
|
||||||
cancelButton.addClickCommands(s -> ifTopDialog(() -> {
|
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
|
||||||
this.close();
|
|
||||||
new StartMenu(network.getApp()).open();
|
|
||||||
}));
|
|
||||||
addChild(cancelButton);
|
|
||||||
|
|
||||||
// "Selber hosten"-Button
|
|
||||||
serverButton.addClickCommands(s -> ifTopDialog( () -> {
|
|
||||||
network.getApp().getGameLogic().playSound(Sound.BUTTON);
|
|
||||||
startServerInThread();
|
|
||||||
} ));
|
|
||||||
addChild(serverButton);
|
|
||||||
|
|
||||||
// "Beitreten"-Button
|
|
||||||
joinButton.setPreferredSize(new Vector3f(120, 40, 0));
|
|
||||||
joinButton.addClickCommands(s -> ifTopDialog( () -> {
|
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
|
||||||
connect();
|
|
||||||
}));
|
|
||||||
addChild(joinButton);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Handles the action for the connect button in the connection dialog.
|
* Geht zum Startmenü zurück, wenn "Abbrechen" angeklickt wird.
|
||||||
* Tries to parse the port number and initiate connection to the server.
|
|
||||||
*/
|
*/
|
||||||
private void connect() {
|
private void goBackToStartMenu() {
|
||||||
LOGGER.log(Level.INFO, "connect to host={0}, port={1}", host, port); //NON-NLS
|
closeCreateGameMenu(); // Schließt das Menü
|
||||||
try {
|
StartMenu.createStartMenu(app); // Zeige das Startmenü
|
||||||
hostname = host.getText().trim().isEmpty() ? LOCALHOST : host.getText();
|
|
||||||
portNumber = Integer.parseInt(port.getText());
|
|
||||||
openProgressDialog();
|
|
||||||
connectionFuture = network.getApp().getExecutor().submit(this::initNetwork);
|
|
||||||
}
|
|
||||||
catch (NumberFormatException e) {
|
|
||||||
network.getApp().errorDialog(lookup("port.must.be.integer"));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Creates a dialog indicating that the connection is in progress.
|
* Entfernt das CreateGameMenu und dessen Hintergrund.
|
||||||
*/
|
*/
|
||||||
private void openProgressDialog() {
|
private void closeCreateGameMenu() {
|
||||||
progressDialog = DialogBuilder.simple(network.getApp().getDialogManager())
|
app.getGuiNode().detachChild(menuContainer); // Entfernt den Menü-Container
|
||||||
.setText(lookup("label.connecting"))
|
app.getGuiNode().detachChild(background); // Entfernt das Hintergrundbild
|
||||||
.build();
|
|
||||||
progressDialog.open();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Tries to initialize the network connection.
|
|
||||||
*
|
|
||||||
* @throws RuntimeException If an error occurs when creating the client.
|
|
||||||
*/
|
|
||||||
private Object initNetwork() {
|
|
||||||
try {
|
|
||||||
network.initNetwork(hostname, portNumber);
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
catch (Exception e) {
|
|
||||||
throw new RuntimeException(e);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void escape() {
|
|
||||||
new SettingsMenu(network.getApp()).open();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* This method is called by {@linkplain pp.dialog.DialogManager#update(float)} for periodically
|
|
||||||
* updating this dialog. T
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public void update(float delta) {
|
|
||||||
if (connectionFuture != null && connectionFuture.isDone())
|
|
||||||
try {
|
|
||||||
connectionFuture.get();
|
|
||||||
success();
|
|
||||||
}
|
|
||||||
catch (ExecutionException e) {
|
|
||||||
failure(e.getCause());
|
|
||||||
}
|
|
||||||
catch (InterruptedException e) {
|
|
||||||
LOGGER.log(Level.WARNING, "Interrupted!", e); //NON-NLS
|
|
||||||
Thread.currentThread().interrupt();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Handles a successful connection to the game server.
|
|
||||||
*/
|
|
||||||
private void success() {
|
|
||||||
connectionFuture = null;
|
|
||||||
progressDialog.close();
|
|
||||||
this.close();
|
|
||||||
new LobbyMenu(network.getApp()).open();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Handles a failed connection attempt.
|
|
||||||
*
|
|
||||||
* @param e The cause of the failure.
|
|
||||||
*/
|
|
||||||
private void failure(Throwable e) {
|
|
||||||
connectionFuture = null;
|
|
||||||
progressDialog.close();
|
|
||||||
network.getApp().errorDialog(lookup("server.connection.failed"));
|
|
||||||
network.getApp().setInfoText(e.getLocalizedMessage());
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Starts the server in a separate thread.
|
|
||||||
*/
|
|
||||||
private void startServerInThread() {
|
|
||||||
serverButton.setEnabled(false);
|
|
||||||
Thread serverThread = new Thread(() -> {
|
|
||||||
try {
|
|
||||||
MonopolyServer.main(null);
|
|
||||||
} catch (Exception e) {
|
|
||||||
serverButton.setEnabled(true);
|
|
||||||
LOGGER.log(Level.ERROR, "Server could not be started", e);
|
|
||||||
network.getApp().errorDialog("Could not start server: " + e.getMessage());
|
|
||||||
}
|
|
||||||
});
|
|
||||||
serverThread.start();
|
|
||||||
try {
|
|
||||||
Thread.sleep(2000);
|
|
||||||
} catch (InterruptedException e) {
|
|
||||||
e.printStackTrace();
|
|
||||||
}
|
|
||||||
connect();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -0,0 +1,51 @@
|
|||||||
|
package pp.monopoly.client.gui;
|
||||||
|
|
||||||
|
|
||||||
|
import com.jme3.math.ColorRGBA;
|
||||||
|
import com.simsilica.lemur.Button;
|
||||||
|
import com.simsilica.lemur.Label;
|
||||||
|
import com.simsilica.lemur.style.ElementId;
|
||||||
|
|
||||||
|
import pp.dialog.Dialog;
|
||||||
|
import pp.monopoly.client.MonopolyApp;
|
||||||
|
|
||||||
|
public class GameMenu extends Dialog {
|
||||||
|
private final MonopolyApp app;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructs the SettingsMenu dialog for the Monopoly application.
|
||||||
|
*
|
||||||
|
* @param app the MonopolyApp instance
|
||||||
|
*/
|
||||||
|
public GameMenu(MonopolyApp app) {
|
||||||
|
super(app.getDialogManager());
|
||||||
|
this.app = app;
|
||||||
|
|
||||||
|
// Add a title label for Settings
|
||||||
|
Label settingsTitle = new Label("Einstellungen", new ElementId("settings-title"));
|
||||||
|
settingsTitle.setFontSize(48); // Set font size for the title
|
||||||
|
settingsTitle.setColor(ColorRGBA.White);
|
||||||
|
|
||||||
|
// Add any settings-related components here, such as volume control, toggles, etc.
|
||||||
|
|
||||||
|
// Add a back button to return to StartMenu
|
||||||
|
Button backButton = new Button("Zurück", new ElementId("menu-button"));
|
||||||
|
backButton.setColor(ColorRGBA.White);
|
||||||
|
backButton.setFontSize(24);
|
||||||
|
backButton.addClickCommands(source -> returnToStartMenu());
|
||||||
|
|
||||||
|
// Add components to this dialog
|
||||||
|
addChild(settingsTitle);
|
||||||
|
addChild(backButton);
|
||||||
|
|
||||||
|
// You can add more settings components here, like checkboxes or sliders.
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns to the StartMenu when the back button is clicked.
|
||||||
|
*/
|
||||||
|
private void returnToStartMenu() {
|
||||||
|
app.getDialogManager().close(this); // Close the current settings dialog
|
||||||
|
//TODO return zum Ausgangsmenü
|
||||||
|
}
|
||||||
|
}
|
@@ -1,320 +0,0 @@
|
|||||||
package pp.monopoly.client.gui;
|
|
||||||
|
|
||||||
import com.jme3.app.Application;
|
|
||||||
import com.jme3.app.state.BaseAppState;
|
|
||||||
import com.jme3.material.Material;
|
|
||||||
import com.jme3.math.ColorRGBA;
|
|
||||||
import com.jme3.math.Vector3f;
|
|
||||||
import com.jme3.scene.Geometry;
|
|
||||||
import com.jme3.scene.shape.Quad;
|
|
||||||
import com.jme3.scene.shape.Sphere;
|
|
||||||
import com.jme3.texture.Texture;
|
|
||||||
import com.simsilica.lemur.Axis;
|
|
||||||
import com.simsilica.lemur.Button;
|
|
||||||
import com.simsilica.lemur.Container;
|
|
||||||
import com.simsilica.lemur.Insets3f;
|
|
||||||
import com.simsilica.lemur.Label;
|
|
||||||
import com.simsilica.lemur.Selector;
|
|
||||||
import com.simsilica.lemur.TextField;
|
|
||||||
import com.simsilica.lemur.component.QuadBackgroundComponent;
|
|
||||||
import com.simsilica.lemur.component.SpringGridLayout;
|
|
||||||
|
|
||||||
import com.simsilica.lemur.core.VersionedList;
|
|
||||||
import com.simsilica.lemur.core.VersionedReference;
|
|
||||||
import com.simsilica.lemur.style.ElementId;
|
|
||||||
|
|
||||||
import pp.dialog.Dialog;
|
|
||||||
import pp.monopoly.client.MonopolyApp;
|
|
||||||
import pp.monopoly.game.server.PlayerColor;
|
|
||||||
import pp.monopoly.message.client.PlayerReady;
|
|
||||||
import pp.monopoly.notification.Sound;
|
|
||||||
|
|
||||||
import java.util.Set;
|
|
||||||
|
|
||||||
public class LobbyMenu extends Dialog {
|
|
||||||
|
|
||||||
private final MonopolyApp app;
|
|
||||||
private final Container menuContainer;
|
|
||||||
private Geometry background;
|
|
||||||
private Geometry circle;
|
|
||||||
private Container lowerLeftMenu;
|
|
||||||
private Container lowerRightMenu;
|
|
||||||
|
|
||||||
private TextField playerInputField;
|
|
||||||
private TextField startingCapital = new TextField("15000");
|
|
||||||
private String figure;
|
|
||||||
|
|
||||||
public LobbyMenu(MonopolyApp app) {
|
|
||||||
super(app.getDialogManager());
|
|
||||||
this.app = app;
|
|
||||||
|
|
||||||
playerInputField = new TextField("Spieler "+(app.getId()+1));
|
|
||||||
// Hintergrundbild laden und hinzufügen
|
|
||||||
addBackgroundImage();
|
|
||||||
|
|
||||||
QuadBackgroundComponent translucentWhiteBackground =
|
|
||||||
new QuadBackgroundComponent(new ColorRGBA(1.0f, 1.0f, 1.0f, 0.5f));
|
|
||||||
|
|
||||||
menuContainer = new Container(new SpringGridLayout(Axis.Y, Axis.X));
|
|
||||||
menuContainer.setPreferredSize(new Vector3f(1000, 600, 0)); // Fixed size of the container
|
|
||||||
menuContainer.setBackground(translucentWhiteBackground);
|
|
||||||
|
|
||||||
// Create a smaller horizontal container for the label, input field, and spacers
|
|
||||||
Container horizontalContainer = menuContainer.addChild(new Container(new SpringGridLayout(Axis.X, Axis.Y)));
|
|
||||||
horizontalContainer.setPreferredSize(new Vector3f(600, 40, 0)); // Adjust container size
|
|
||||||
horizontalContainer.setBackground(null);
|
|
||||||
|
|
||||||
Label title = horizontalContainer.addChild(new Label("Startkapital:", new ElementId("label-Bold")));
|
|
||||||
title.setFontSize(40);
|
|
||||||
|
|
||||||
// Add a spacer between the title and the input field
|
|
||||||
Label spacerBeforeInput = horizontalContainer.addChild(new Label("")); // Invisible spacer
|
|
||||||
spacerBeforeInput.setPreferredSize(new Vector3f(20, 1, 0)); // Width of the spacer
|
|
||||||
|
|
||||||
// Add an input field (TextField)
|
|
||||||
horizontalContainer.addChild(startingCapital);
|
|
||||||
startingCapital.setPreferredWidth(100); // Set the width of the input field
|
|
||||||
startingCapital.setPreferredSize(new Vector3f(150, 50, 0));
|
|
||||||
startingCapital.setInsets(new Insets3f(5, 10, 5, 10)); // Add padding around the text inside the field
|
|
||||||
|
|
||||||
// Add a spacer after the input field
|
|
||||||
Label spacerAfterInput = horizontalContainer.addChild(new Label("")); // Invisible spacer
|
|
||||||
spacerAfterInput.setPreferredSize(new Vector3f(20, 1, 0)); // Width of the spacer
|
|
||||||
|
|
||||||
menuContainer.setLocalTranslation(
|
|
||||||
(app.getCamera().getWidth() - menuContainer.getPreferredSize().x) / 2,
|
|
||||||
(app.getCamera().getHeight() + menuContainer.getPreferredSize().y) / 2,
|
|
||||||
1
|
|
||||||
);
|
|
||||||
app.getGuiNode().attachChild(menuContainer);
|
|
||||||
|
|
||||||
// Dropdowns and Labels
|
|
||||||
Container dropdownContainer = menuContainer.addChild(new Container(new SpringGridLayout(Axis.X, Axis.Y)));
|
|
||||||
dropdownContainer.setBackground(new QuadBackgroundComponent(new ColorRGBA(ColorRGBA.Black)));
|
|
||||||
dropdownContainer.setPreferredSize(new Vector3f(800, 200, 0));
|
|
||||||
dropdownContainer.setBackground(null);
|
|
||||||
dropdownContainer.setInsets(new Insets3f(10, 0, 0, 0));
|
|
||||||
// Player Input Field
|
|
||||||
Container playerInputContainer = dropdownContainer.addChild(new Container(new SpringGridLayout(Axis.Y, Axis.X)));
|
|
||||||
playerInputContainer.addChild(new Label("Spieler:"));
|
|
||||||
playerInputContainer.setBackground(null);
|
|
||||||
|
|
||||||
|
|
||||||
playerInputField.setPreferredSize(new Vector3f(100, 20, 0));
|
|
||||||
playerInputField.setInsets(new Insets3f(5, 10, 5, 10)); // Add padding for the text inside the field
|
|
||||||
playerInputField.setBackground(new QuadBackgroundComponent(ColorRGBA.Black));
|
|
||||||
playerInputContainer.addChild(playerInputField);
|
|
||||||
// Spacer (Center Circle Area)
|
|
||||||
Label spacer = dropdownContainer.addChild(new Label(""));
|
|
||||||
spacer.setPreferredSize(new Vector3f(200, 200, 0)); // Adjust this to fit the center graphic
|
|
||||||
|
|
||||||
// Figur Dropdown
|
|
||||||
Container figureDropdownContainer = dropdownContainer.addChild(new Container(new SpringGridLayout(Axis.Y, Axis.X)));
|
|
||||||
figureDropdownContainer.addChild(new Label("Figur:"));
|
|
||||||
figureDropdownContainer.setBackground(null);
|
|
||||||
|
|
||||||
VersionedList<String> figures = new VersionedList<>();
|
|
||||||
figures.add("Laptop");
|
|
||||||
figures.add("Flugzeug");
|
|
||||||
figures.add("Jägermeister");
|
|
||||||
figures.add("Katze");
|
|
||||||
figures.add("OOP");
|
|
||||||
figures.add("Handyholster");
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Selector<String> figureDropdown = new Selector<>(figures, "glass");
|
|
||||||
figureDropdown.setBackground(new QuadBackgroundComponent(ColorRGBA.DarkGray));
|
|
||||||
figureDropdown.setPreferredSize(new Vector3f(100, 20, 0));
|
|
||||||
figureDropdownContainer.addChild(figureDropdown);
|
|
||||||
Vector3f dimens = dropdownContainer.getPreferredSize();
|
|
||||||
Vector3f dimens2 = figureDropdown.getPopupContainer().getPreferredSize();
|
|
||||||
dimens2.setX( dimens.getX() );
|
|
||||||
figureDropdown.getPopupContainer().setPreferredSize(new Vector3f(200,200,5));
|
|
||||||
figureDropdown.getSelectionModel().setSelection(0);
|
|
||||||
figure = "Laptop";
|
|
||||||
|
|
||||||
addSelectionActionListener(figureDropdown, this::onDropdownSelectionChanged);
|
|
||||||
|
|
||||||
Container buttonContainer = menuContainer.addChild(new Container(new SpringGridLayout(Axis.X, Axis.Y)));
|
|
||||||
buttonContainer.setPreferredSize(new Vector3f(100, 40, 0));
|
|
||||||
buttonContainer.setInsets(new Insets3f(20, 0, 10, 0)); // Add spacing above the buttons
|
|
||||||
buttonContainer.setBackground(null);
|
|
||||||
// Lower-left container for "Abbrechen" button
|
|
||||||
lowerLeftMenu = new Container();
|
|
||||||
Button cancelButton = new Button("Beenden");
|
|
||||||
cancelButton.setPreferredSize(new Vector3f(200, 60, 0)); // Set size to match the appearance in the image
|
|
||||||
cancelButton.setFontSize(18); // Adjust font size
|
|
||||||
cancelButton.addClickCommands(s -> ifTopDialog(() -> {
|
|
||||||
app.closeApp();
|
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
|
||||||
}));
|
|
||||||
lowerLeftMenu.addChild(cancelButton);
|
|
||||||
|
|
||||||
// Position the container near the bottom-left corner
|
|
||||||
lowerLeftMenu.setLocalTranslation(new Vector3f(120, 170, 3)); // Adjust X and Y to align with the bottom-left corner
|
|
||||||
app.getGuiNode().attachChild(lowerLeftMenu);
|
|
||||||
|
|
||||||
// Lower-right container for "Bereit" button
|
|
||||||
lowerRightMenu = new Container();
|
|
||||||
Button readyButton = new Button("Bereit");
|
|
||||||
readyButton.setPreferredSize(new Vector3f(200, 60, 0)); // Set size to match the appearance in the image
|
|
||||||
readyButton.setFontSize(18); // Adjust font size
|
|
||||||
readyButton.setBackground(new QuadBackgroundComponent(ColorRGBA.Green)); // Add color to match the style
|
|
||||||
readyButton.addClickCommands(s -> ifTopDialog(() -> {
|
|
||||||
toggleReady();
|
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
|
||||||
readyButton.setBackground(new QuadBackgroundComponent(ColorRGBA.DarkGray));
|
|
||||||
}));
|
|
||||||
lowerRightMenu.addChild(readyButton);
|
|
||||||
|
|
||||||
// Position the container near the bottom-right corner
|
|
||||||
lowerRightMenu.setLocalTranslation(new Vector3f(app.getCamera().getWidth() - 320, 170, 3)); // X: 220px from the right, Y: 50px above the bottom
|
|
||||||
app.getGuiNode().attachChild(lowerRightMenu);
|
|
||||||
|
|
||||||
// Add a colored circle between the input field and the dropdown menu
|
|
||||||
circle = createCircle(); // 50 is the diameter, Red is the color
|
|
||||||
circle.setLocalTranslation(new Vector3f(
|
|
||||||
(app.getCamera().getWidth()) / 2, // Center horizontally
|
|
||||||
(app.getCamera().getHeight() / 2) - 90, // Adjust Y position
|
|
||||||
2 // Ensure it's in front of the background but behind the dropdown
|
|
||||||
));
|
|
||||||
app.getGuiNode().attachChild(circle); // Attach to the GUI node
|
|
||||||
|
|
||||||
// Zentrierung des Containers
|
|
||||||
menuContainer.setLocalTranslation(
|
|
||||||
(app.getCamera().getWidth() - menuContainer.getPreferredSize().x) / 2,
|
|
||||||
(app.getCamera().getHeight() + menuContainer.getPreferredSize().y) / 2,
|
|
||||||
1 // Höhere Z-Ebene für den Vordergrund
|
|
||||||
);
|
|
||||||
|
|
||||||
app.getGuiNode().attachChild(menuContainer);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Lädt das Hintergrundbild und fügt es als geometrische Ebene hinzu.
|
|
||||||
*/
|
|
||||||
private void addBackgroundImage() {
|
|
||||||
Texture backgroundImage = app.getAssetManager().loadTexture("Pictures/lobby.png");
|
|
||||||
Quad quad = new Quad(app.getCamera().getWidth(), app.getCamera().getHeight());
|
|
||||||
background = new Geometry("Background", quad);
|
|
||||||
Material backgroundMaterial = new Material(app.getAssetManager(), "Common/MatDefs/Misc/Unshaded.j3md");
|
|
||||||
backgroundMaterial.setTexture("ColorMap", backgroundImage);
|
|
||||||
background.setMaterial(backgroundMaterial);
|
|
||||||
background.setLocalTranslation(0, 0, -1); // Hintergrundebene
|
|
||||||
|
|
||||||
app.getGuiNode().attachChild(background);
|
|
||||||
}
|
|
||||||
|
|
||||||
private Geometry createCircle() {
|
|
||||||
|
|
||||||
Sphere sphere = new Sphere(90,90,60.0f);
|
|
||||||
Geometry circleGeometry = new Geometry("Circle", sphere);
|
|
||||||
|
|
||||||
// Create a material with a solid color
|
|
||||||
Material material = new Material(app.getAssetManager(), "Common/MatDefs/Misc/Unshaded.j3md");
|
|
||||||
material.setColor("Color", idToColor()); // Set the desired color
|
|
||||||
circleGeometry.setMaterial(material);
|
|
||||||
|
|
||||||
return circleGeometry;
|
|
||||||
}
|
|
||||||
|
|
||||||
private ColorRGBA idToColor() {
|
|
||||||
switch (app.getId()+1) {
|
|
||||||
case 1: return PlayerColor.CYAN.getColor();
|
|
||||||
case 2: return PlayerColor.YELLOW.getColor();
|
|
||||||
case 3: return PlayerColor.RED.getColor();
|
|
||||||
case 4: return PlayerColor.PINK.getColor();
|
|
||||||
case 5: return PlayerColor.GREEN.getColor();
|
|
||||||
case 6: return PlayerColor.PURPLE.getColor();
|
|
||||||
|
|
||||||
default:
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Schaltet den "Bereit"-Status um.
|
|
||||||
*/
|
|
||||||
private void toggleReady() {
|
|
||||||
app.getGameLogic().send(new PlayerReady(true, playerInputField.getText(), figure, Integer.parseInt(startingCapital.getText())));
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void escape() {
|
|
||||||
new SettingsMenu(app).open();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Adds a custom action listener to the Selector.
|
|
||||||
*/
|
|
||||||
private void addSelectionActionListener(Selector<String> selector, SelectionActionListener<String> listener) {
|
|
||||||
VersionedReference<Set<Integer>> selectionRef = selector.getSelectionModel().createReference();
|
|
||||||
|
|
||||||
app.getStateManager().attach(new BaseAppState() {
|
|
||||||
@Override
|
|
||||||
public void update(float tpf) {
|
|
||||||
if (selectionRef.update()) {
|
|
||||||
String selected = selectionRef.get().toString();
|
|
||||||
listener.onSelectionChanged(selected);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void initialize(Application app) {
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void cleanup(Application app) {
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void onEnable() {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void onDisable() {
|
|
||||||
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Callback for when the dropdown selection changes.
|
|
||||||
*/
|
|
||||||
private void onDropdownSelectionChanged(String selected) {
|
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
|
||||||
switch (selected) {
|
|
||||||
case "[0]":
|
|
||||||
figure = "Laptop";
|
|
||||||
break;
|
|
||||||
case "[1]":
|
|
||||||
figure = "Flugzeug";
|
|
||||||
break;
|
|
||||||
case "[2]":
|
|
||||||
figure = "Jägermeister";
|
|
||||||
break;
|
|
||||||
case "[3]":
|
|
||||||
figure = "Katze";
|
|
||||||
break;
|
|
||||||
case "[4]":
|
|
||||||
figure = "OOP";
|
|
||||||
break;
|
|
||||||
case "[5]":
|
|
||||||
figure = "Handyholster";
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Functional interface for a selection action listener.
|
|
||||||
*/
|
|
||||||
@FunctionalInterface
|
|
||||||
private interface SelectionActionListener<T> {
|
|
||||||
void onSelectionChanged(T selection);
|
|
||||||
}
|
|
||||||
}
|
|
@@ -0,0 +1,75 @@
|
|||||||
|
package pp.monopoly.client.gui;
|
||||||
|
|
||||||
|
import com.jme3.material.Material;
|
||||||
|
import com.jme3.material.RenderState.BlendMode;
|
||||||
|
import com.jme3.math.ColorRGBA;
|
||||||
|
import com.jme3.scene.Geometry;
|
||||||
|
import com.jme3.scene.Node;
|
||||||
|
import com.jme3.scene.Spatial.CullHint;
|
||||||
|
import com.jme3.scene.shape.Quad;
|
||||||
|
|
||||||
|
import pp.monopoly.client.MonopolyApp;
|
||||||
|
import pp.monopoly.model.Board;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Represents the visual view of a {@link Board}, used to display the map structure and elements.
|
||||||
|
* This class handles the graphical representation of the board, including background setup and grid lines.
|
||||||
|
*/
|
||||||
|
class MapView {
|
||||||
|
private static final float FIELD_SIZE = 40f;
|
||||||
|
private static final float BACKGROUND_DEPTH = -4f;
|
||||||
|
private static final ColorRGBA BACKGROUND_COLOR = new ColorRGBA(0, 0.05f, 0.05f, 0.5f);
|
||||||
|
|
||||||
|
private final MonopolyApp app;
|
||||||
|
private final Node mapNode = new Node("map");
|
||||||
|
private final Board board;
|
||||||
|
private final MapViewSynchronizer synchronizer;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructs a new MapView for a given {@link Board} and {@link MonopolyApp}.
|
||||||
|
*
|
||||||
|
* @param board the board to visualize
|
||||||
|
* @param app the main application instance
|
||||||
|
*/
|
||||||
|
MapView(Board board, MonopolyApp app) {
|
||||||
|
this.board = board;
|
||||||
|
this.app = app;
|
||||||
|
this.synchronizer = new MapViewSynchronizer(this);
|
||||||
|
setupBackground();
|
||||||
|
app.getGameLogic().addListener(synchronizer);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Unregisters the {@link MapViewSynchronizer} from listening to board changes.
|
||||||
|
*/
|
||||||
|
void unregister() {
|
||||||
|
app.getGameLogic().removeListener(synchronizer);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets up the background of the map view using a quad geometry.
|
||||||
|
*/
|
||||||
|
private void setupBackground() {
|
||||||
|
Material mat = new Material(app.getAssetManager(), "Common/MatDefs/Misc/Unshaded.j3md");
|
||||||
|
mat.setColor("Color", BACKGROUND_COLOR);
|
||||||
|
mat.getAdditionalRenderState().setBlendMode(BlendMode.Alpha);
|
||||||
|
Geometry background = new Geometry("MapBackground", new Quad(board.getWidth() * FIELD_SIZE, board.getHeight() * FIELD_SIZE));
|
||||||
|
background.setMaterial(mat);
|
||||||
|
background.setLocalTranslation(0f, 1f, BACKGROUND_DEPTH);
|
||||||
|
background.setCullHint(CullHint.Never);
|
||||||
|
mapNode.attachChild(background);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the root node containing all visual elements in this map view.
|
||||||
|
*
|
||||||
|
* @return the root node for the map view
|
||||||
|
*/
|
||||||
|
public Node getNode() {
|
||||||
|
return mapNode;
|
||||||
|
}
|
||||||
|
|
||||||
|
public Board getBoard() {
|
||||||
|
return board;
|
||||||
|
}
|
||||||
|
}
|
@@ -0,0 +1,45 @@
|
|||||||
|
package pp.monopoly.client.gui;
|
||||||
|
|
||||||
|
import com.jme3.scene.Spatial;
|
||||||
|
|
||||||
|
import pp.monopoly.model.Figure;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Synchronizes the visual representation of the board with the game model.
|
||||||
|
* Handles updates for items on the board.
|
||||||
|
*/
|
||||||
|
class MapViewSynchronizer extends BoardSynchronizer {
|
||||||
|
private final MapView view;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructs a new MapViewSynchronizer for the given MapView.
|
||||||
|
*
|
||||||
|
* @param view the MapView to synchronize with the game model
|
||||||
|
*/
|
||||||
|
public MapViewSynchronizer(MapView view) {
|
||||||
|
super(view.getBoard(), view.getNode());
|
||||||
|
this.view = view;
|
||||||
|
addExisting();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Enables the state by performing initial setup, such as adding any items to the view.
|
||||||
|
*/
|
||||||
|
|
||||||
|
protected void enableState() {
|
||||||
|
// Platz für zusätzliche Initialisierungen
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Disables the state by clearing the view.
|
||||||
|
*/
|
||||||
|
|
||||||
|
protected void disableState() {
|
||||||
|
view.getNode().detachAllChildren(); // Entfernt alle visuellen Elemente vom Knoten
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
public Spatial visit(Figure figure) {
|
||||||
|
return figure.accept(this);
|
||||||
|
}
|
||||||
|
}
|
@@ -1,148 +0,0 @@
|
|||||||
package pp.monopoly.client.gui;
|
|
||||||
|
|
||||||
import com.jme3.math.ColorRGBA;
|
|
||||||
import com.jme3.math.Vector3f;
|
|
||||||
import com.jme3.renderer.RenderManager;
|
|
||||||
import com.jme3.renderer.ViewPort;
|
|
||||||
import com.jme3.scene.control.AbstractControl;
|
|
||||||
import com.simsilica.lemur.*;
|
|
||||||
import com.simsilica.lemur.component.QuadBackgroundComponent;
|
|
||||||
import com.simsilica.lemur.component.SpringGridLayout;
|
|
||||||
import com.simsilica.lemur.style.ElementId;
|
|
||||||
|
|
||||||
import pp.dialog.Dialog;
|
|
||||||
import pp.monopoly.client.MonopolyApp;
|
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* PropertyOverviewMenu is a dialog for displaying the player's properties in the game.
|
|
||||||
*/
|
|
||||||
public class PropertyOverviewMenu extends Dialog {
|
|
||||||
private final MonopolyApp app;
|
|
||||||
private final Container mainContainer;
|
|
||||||
private final Container displayContainer;
|
|
||||||
private final Slider horizontalSlider;
|
|
||||||
private final List<Container> cards;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructs the PropertyOverviewMenu dialog.
|
|
||||||
*
|
|
||||||
* @param app The Monopoly application instance.
|
|
||||||
*/
|
|
||||||
public PropertyOverviewMenu(MonopolyApp app) {
|
|
||||||
super(app.getDialogManager());
|
|
||||||
this.app = app;
|
|
||||||
|
|
||||||
// Make the menu fullscreen
|
|
||||||
Vector3f screenSize = new Vector3f(app.getCamera().getWidth(), app.getCamera().getHeight(), 0);
|
|
||||||
|
|
||||||
// Main container for the menu layout
|
|
||||||
mainContainer = new Container();
|
|
||||||
mainContainer.setPreferredSize(screenSize); // Make fullscreen
|
|
||||||
mainContainer.setBackground(new QuadBackgroundComponent(new ColorRGBA(1.0f, 1.0f, 1.0f, 0.8f))); // Semi-transparent background
|
|
||||||
|
|
||||||
// Header label
|
|
||||||
Label headerLabel = mainContainer.addChild(new Label("Meine Grundstücke", new ElementId("header")));
|
|
||||||
headerLabel.setFontSize(40);
|
|
||||||
|
|
||||||
// Central display container (to hold the "Gebäude" cards)
|
|
||||||
displayContainer = mainContainer.addChild(new Container(new SpringGridLayout(Axis.X, Axis.Y, FillMode.Even, FillMode.None))); // Horizontal layout
|
|
||||||
displayContainer.setPreferredSize(new Vector3f(screenSize.x - 300, 550, 0)); // Take up the remaining width
|
|
||||||
displayContainer.setBackground(new QuadBackgroundComponent(ColorRGBA.Gray));
|
|
||||||
displayContainer.setLocalTranslation(0, 0, 11);
|
|
||||||
|
|
||||||
// Add some placeholder "Gebäude" cards to the display container
|
|
||||||
cards = new ArrayList<>();
|
|
||||||
for (int i = 0; i < 10; i++) {
|
|
||||||
Container card = createGebäudeCard("Gebäude " + (i + 1), 320, 28);
|
|
||||||
cards.add(card); // Keep track of cards for scrolling
|
|
||||||
}
|
|
||||||
|
|
||||||
// Initially add only visible cards to the displayContainer
|
|
||||||
refreshVisibleCards(0);
|
|
||||||
|
|
||||||
// Horizontal slider for scrolling through cards
|
|
||||||
horizontalSlider = mainContainer.addChild(new Slider(Axis.X));
|
|
||||||
horizontalSlider.setPreferredSize(new Vector3f(screenSize.x - 300, 20, 5));
|
|
||||||
horizontalSlider.setModel(new DefaultRangedValueModel(0, Math.max(0, cards.size() - 5), 0));
|
|
||||||
horizontalSlider.addControl(new SliderValueChangeListener());
|
|
||||||
|
|
||||||
// Add the "Zurück" button at the bottom
|
|
||||||
Button backButton = mainContainer.addChild(new Button("Zurück", new ElementId("button")));
|
|
||||||
backButton.setPreferredSize(new Vector3f(200, 60, 0));
|
|
||||||
backButton.addClickCommands(source -> this.close());
|
|
||||||
|
|
||||||
// Attach the main container to the GUI node
|
|
||||||
app.getGuiNode().attachChild(mainContainer);
|
|
||||||
mainContainer.setLocalTranslation(
|
|
||||||
0,
|
|
||||||
app.getCamera().getHeight(), // Align to the top
|
|
||||||
10
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a "Gebäude" card container with the given information.
|
|
||||||
*
|
|
||||||
* @param title The title of the card (e.g., "Gebäude 1").
|
|
||||||
* @param propertyValue The property value.
|
|
||||||
* @param rent The rent amount.
|
|
||||||
* @return A styled container representing a "Gebäude" card.
|
|
||||||
*/
|
|
||||||
private Container createGebäudeCard(String title, int propertyValue, int rent) {
|
|
||||||
Container card = new Container();
|
|
||||||
card.setPreferredSize(new Vector3f(150, 200, 2)); // Increase width and height for better visibility
|
|
||||||
card.setBackground(new QuadBackgroundComponent(ColorRGBA.Gray));
|
|
||||||
|
|
||||||
card.addChild(new Label(title, new ElementId("card-label"))).setFontSize(14);
|
|
||||||
card.addChild(new Label("Grundstückswert: €" + propertyValue, new ElementId("card-label"))).setFontSize(12);
|
|
||||||
card.addChild(new Label("Miete allein: €" + rent, new ElementId("card-label"))).setFontSize(12);
|
|
||||||
card.addChild(new Label("1 Haus: €50", new ElementId("card-label"))).setFontSize(12);
|
|
||||||
card.addChild(new Label("Hypothekenwert: €160", new ElementId("card-label"))).setFontSize(12);
|
|
||||||
|
|
||||||
return card;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Updates the visible cards in the displayContainer based on the slider value.
|
|
||||||
*
|
|
||||||
* @param startIndex The starting index of the visible cards.
|
|
||||||
*/
|
|
||||||
private void refreshVisibleCards(int startIndex) {
|
|
||||||
displayContainer.clearChildren(); // Remove all current children
|
|
||||||
int maxVisible = 5; // Number of cards to display at once
|
|
||||||
for (int i = startIndex; i < startIndex + maxVisible && i < cards.size(); i++) {
|
|
||||||
displayContainer.addChild(cards.get(i));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Custom listener for slider value changes.
|
|
||||||
*/
|
|
||||||
private class SliderValueChangeListener extends AbstractControl {
|
|
||||||
@Override
|
|
||||||
protected void controlUpdate(float tpf) {
|
|
||||||
// Get the slider's current value and refresh visible cards
|
|
||||||
int sliderValue = (int) ((Slider) getSpatial()).getModel().getValue();
|
|
||||||
refreshVisibleCards(sliderValue);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void controlRender(RenderManager renderManager, ViewPort viewPort) {
|
|
||||||
// No rendering logic needed
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Closes the dialog and detaches it from the GUI node.
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public void close() {
|
|
||||||
app.getGuiNode().detachChild(mainContainer);
|
|
||||||
super.close();
|
|
||||||
}
|
|
||||||
}
|
|
@@ -1,92 +1,100 @@
|
|||||||
////////////////////////////////////////
|
|
||||||
// Programming project code
|
|
||||||
// UniBw M, 2022, 2023, 2024
|
|
||||||
// www.unibw.de/inf2
|
|
||||||
// (c) Mark Minas (mark.minas@unibw.de)
|
|
||||||
////////////////////////////////////////
|
|
||||||
|
|
||||||
package pp.monopoly.client.gui;
|
package pp.monopoly.client.gui;
|
||||||
|
|
||||||
import java.util.prefs.Preferences;
|
import com.jme3.material.Material;
|
||||||
|
import com.jme3.material.RenderState.BlendMode;
|
||||||
|
import com.jme3.math.ColorRGBA;
|
||||||
|
import com.jme3.scene.Geometry;
|
||||||
|
import com.jme3.scene.shape.Quad;
|
||||||
import com.simsilica.lemur.Button;
|
import com.simsilica.lemur.Button;
|
||||||
import com.simsilica.lemur.Checkbox;
|
import com.simsilica.lemur.Checkbox;
|
||||||
|
import com.simsilica.lemur.Container;
|
||||||
import com.simsilica.lemur.Label;
|
import com.simsilica.lemur.Label;
|
||||||
|
import com.simsilica.lemur.Slider;
|
||||||
|
import com.simsilica.lemur.component.QuadBackgroundComponent;
|
||||||
import com.simsilica.lemur.style.ElementId;
|
import com.simsilica.lemur.style.ElementId;
|
||||||
|
|
||||||
import static pp.monopoly.Resources.lookup;
|
|
||||||
import pp.monopoly.client.GameMusic;
|
|
||||||
import pp.monopoly.client.GameSound;
|
|
||||||
import pp.monopoly.client.MonopolyApp;
|
|
||||||
import pp.dialog.Dialog;
|
import pp.dialog.Dialog;
|
||||||
import pp.dialog.StateCheckboxModel;
|
import pp.monopoly.client.MonopolyApp;
|
||||||
import pp.monopoly.notification.Sound;
|
|
||||||
|
|
||||||
import static pp.util.PreferencesUtils.getPreferences;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The Menu class represents the main menu in the Battleship game application.
|
* SettingsMenu ist ein Overlay-Menü, das durch ESC aufgerufen werden kann.
|
||||||
* It extends the Dialog class and provides functionalities for loading, saving,
|
|
||||||
* returning to the game, and quitting the application.
|
|
||||||
*/
|
*/
|
||||||
public class SettingsMenu extends Dialog {
|
public class SettingsMenu extends Dialog {
|
||||||
private static final Preferences PREFERENCES = getPreferences(SettingsMenu.class);
|
|
||||||
private static final String LAST_PATH = "last.file.path";
|
|
||||||
private final MonopolyApp app;
|
private final MonopolyApp app;
|
||||||
private final VolumeSlider musicSlider;
|
private final Geometry overlayBackground;
|
||||||
private final SoundSlider soundSlider;
|
private final Container settingsContainer;
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructs the Menu dialog for the Battleship application.
|
|
||||||
*
|
|
||||||
* @param app the MonopolyApp instance
|
|
||||||
*/
|
|
||||||
public SettingsMenu(MonopolyApp app) {
|
public SettingsMenu(MonopolyApp app) {
|
||||||
super(app.getDialogManager());
|
super(app.getDialogManager());
|
||||||
this.app = app;
|
this.app = app;
|
||||||
musicSlider = new VolumeSlider(app.getStateManager().getState(GameMusic.class));
|
|
||||||
soundSlider = new SoundSlider(app.getStateManager().getState(GameSound.class));
|
|
||||||
addChild(new Label("Einstellungen", new ElementId("settings-title"))); //NON-NLS
|
|
||||||
addChild(new Label("Sound Effekte", new ElementId("label"))); //NON-NLS
|
|
||||||
|
|
||||||
addChild(soundSlider);
|
// Halbtransparentes Overlay hinzufügen
|
||||||
|
overlayBackground = createOverlayBackground();
|
||||||
|
app.getGuiNode().attachChild(overlayBackground);
|
||||||
|
|
||||||
addChild(new Checkbox("Soundeffekte an / aus", new StateCheckboxModel(app, GameSound.class)));
|
// Hauptcontainer für das Menü
|
||||||
|
settingsContainer = new Container();
|
||||||
|
settingsContainer.setBackground(new QuadBackgroundComponent(new ColorRGBA(0.1f, 0.1f, 0.1f, 0.9f)));
|
||||||
|
|
||||||
addChild(new Label("Hintergrund Musik", new ElementId("label"))); //NON-NLS
|
// Titel
|
||||||
addChild(new Checkbox("Musik an / aus", new StateCheckboxModel(app, GameMusic.class)));
|
Label settingsTitle = settingsContainer.addChild(new Label("Einstellungen", new ElementId("settings-title")));
|
||||||
|
settingsTitle.setFontSize(48);
|
||||||
|
|
||||||
addChild(musicSlider);
|
// Effekt-Sound: Slider und Checkbox
|
||||||
|
Container effectSoundContainer = settingsContainer.addChild(new Container());
|
||||||
|
effectSoundContainer.addChild(new Label("Effekt Sound", new ElementId("label")));
|
||||||
|
effectSoundContainer.addChild(new Slider());
|
||||||
|
effectSoundContainer.addChild(new Checkbox("Aktivieren")).setChecked(true);
|
||||||
|
|
||||||
addChild(new Button("Zurück zum Spiel", new ElementId("button"))).addClickCommands(s -> ifTopDialog(() -> {
|
// Hintergrundmusik: Slider und Checkbox
|
||||||
this.close(); // Close the StartMenu dialog
|
Container backgroundMusicContainer = settingsContainer.addChild(new Container());
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
backgroundMusicContainer.addChild(new Label("Hintergrund Musik", new ElementId("label")));
|
||||||
}));
|
backgroundMusicContainer.addChild(new Slider());
|
||||||
addChild(new Button("Beenden", new ElementId("button"))).addClickCommands(s -> ifTopDialog(() -> {
|
backgroundMusicContainer.addChild(new Checkbox("Aktivieren")).setChecked(true);
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
|
||||||
app.closeApp();
|
// Beenden-Button
|
||||||
}));
|
Button quitButton = settingsContainer.addChild(new Button("Beenden", new ElementId("menu-button")));
|
||||||
update();
|
quitButton.setFontSize(32);
|
||||||
|
quitButton.addClickCommands(source -> app.stop());
|
||||||
|
|
||||||
|
// Zentriere das Menü
|
||||||
|
settingsContainer.setLocalTranslation(
|
||||||
|
(app.getCamera().getWidth() - settingsContainer.getPreferredSize().x) / 2,
|
||||||
|
(app.getCamera().getHeight() + settingsContainer.getPreferredSize().y) / 2,
|
||||||
|
1
|
||||||
|
);
|
||||||
|
|
||||||
|
app.getGuiNode().attachChild(settingsContainer);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Updates the state of the load and save buttons based on the game logic.
|
* Erstellt einen halbtransparenten Hintergrund für das Menü.
|
||||||
|
*
|
||||||
|
* @return Geometrie des Overlays
|
||||||
*/
|
*/
|
||||||
@Override
|
private Geometry createOverlayBackground() {
|
||||||
public void update() {
|
Quad quad = new Quad(app.getCamera().getWidth(), app.getCamera().getHeight());
|
||||||
}
|
Geometry overlay = new Geometry("Overlay", quad);
|
||||||
|
Material material = new Material(app.getAssetManager(), "Common/MatDefs/Misc/Unshaded.j3md");
|
||||||
@Override
|
material.setColor("Color", new ColorRGBA(0, 0, 0, 0.5f)); // Halbtransparent
|
||||||
public void update(float delta) {
|
material.getAdditionalRenderState().setBlendMode(BlendMode.Alpha);
|
||||||
musicSlider.update();
|
overlay.setMaterial(material);
|
||||||
soundSlider.update();
|
overlay.setLocalTranslation(0, 0, 0);
|
||||||
|
return overlay;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* As an escape action, this method closes the menu if it is the top dialog.
|
* Schließt das Menü und entfernt die GUI-Elemente.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void escape() {
|
public void close() {
|
||||||
close();
|
System.out.println("Schließe SettingsMenu..."); // Debugging-Ausgabe
|
||||||
|
app.getGuiNode().detachChild(settingsContainer); // Entferne das Menü
|
||||||
|
app.getGuiNode().detachChild(overlayBackground); // Entferne das Overlay
|
||||||
|
app.setSettingsMenuOpen(false); // Menü als geschlossen markieren
|
||||||
|
app.unblockInputs(); // Eingaben wieder aktivieren
|
||||||
|
System.out.println("SettingsMenu geschlossen."); // Debugging-Ausgabe
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -1,31 +0,0 @@
|
|||||||
package pp.monopoly.client.gui;
|
|
||||||
|
|
||||||
import com.simsilica.lemur.Slider;
|
|
||||||
import pp.monopoly.client.GameSound;
|
|
||||||
|
|
||||||
public class SoundSlider extends Slider {
|
|
||||||
|
|
||||||
private final pp.monopoly.client.GameSound sound;
|
|
||||||
private double vol;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructs the Volume Slider for the Menu dialog
|
|
||||||
* @param sound the Effects sound instance
|
|
||||||
*/
|
|
||||||
public SoundSlider(GameSound sound) {
|
|
||||||
super();
|
|
||||||
this.sound = sound;
|
|
||||||
vol = GameSound.volumeInPreferences();
|
|
||||||
getModel().setPercent(vol);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* when triggered it updates the volume to the value set with the slider
|
|
||||||
*/
|
|
||||||
public void update() {
|
|
||||||
if (vol != getModel().getPercent()) {
|
|
||||||
vol = getModel().getPercent();
|
|
||||||
sound.setVolume( (float) vol);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
@@ -1,7 +1,5 @@
|
|||||||
package pp.monopoly.client.gui;
|
package pp.monopoly.client.gui;
|
||||||
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
import com.jme3.material.Material;
|
import com.jme3.material.Material;
|
||||||
import com.jme3.math.ColorRGBA;
|
import com.jme3.math.ColorRGBA;
|
||||||
import com.jme3.math.Vector3f;
|
import com.jme3.math.Vector3f;
|
||||||
@@ -10,20 +8,16 @@ import com.jme3.scene.shape.Box;
|
|||||||
import com.jme3.texture.Texture;
|
import com.jme3.texture.Texture;
|
||||||
|
|
||||||
import pp.monopoly.client.MonopolyApp;
|
import pp.monopoly.client.MonopolyApp;
|
||||||
import pp.monopoly.client.gui.popups.EventCard;
|
|
||||||
import pp.monopoly.notification.DiceRollEvent;
|
|
||||||
import pp.monopoly.notification.EventCardEvent;
|
|
||||||
import pp.monopoly.notification.GameEventListener;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* TestWorld zeigt eine einfache Szene mit einem texturierten Quadrat.
|
* TestWorld zeigt eine einfache Szene mit einem texturierten Quadrat.
|
||||||
* Die Kamera wird durch den CameraController gesteuert.
|
* Die Kamera wird durch den CameraController gesteuert.
|
||||||
*/
|
*/
|
||||||
public class TestWorld implements GameEventListener{
|
public class TestWorld {
|
||||||
|
|
||||||
private final MonopolyApp app;
|
private final MonopolyApp app;
|
||||||
private CameraController cameraController; // Steuert die Kamera
|
private CameraController cameraController; // Steuert die Kamera
|
||||||
private Toolbar toolbar;
|
private Geometry cube; // Spielfigur
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Konstruktor für TestWorld.
|
* Konstruktor für TestWorld.
|
||||||
@@ -32,7 +26,6 @@ public class TestWorld implements GameEventListener{
|
|||||||
*/
|
*/
|
||||||
public TestWorld(MonopolyApp app) {
|
public TestWorld(MonopolyApp app) {
|
||||||
this.app = app;
|
this.app = app;
|
||||||
app.getGameLogic().addListener(this);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -44,24 +37,21 @@ public class TestWorld implements GameEventListener{
|
|||||||
|
|
||||||
setSkyColor(); // Setze den Himmel auf hellblau
|
setSkyColor(); // Setze den Himmel auf hellblau
|
||||||
createBoard(); // Erstelle das Spielfeld
|
createBoard(); // Erstelle das Spielfeld
|
||||||
|
createCube(); // Füge den Würfel hinzu
|
||||||
|
|
||||||
// Erstelle den CameraController
|
// Erstelle den CameraController
|
||||||
cameraController = new CameraController(
|
cameraController = new CameraController(
|
||||||
app.getCamera(), // Die Kamera der App
|
app.getCamera(), // Die Kamera der App
|
||||||
Vector3f.ZERO, // Fokus auf die Mitte des Spielfelds
|
Vector3f.ZERO, // Fokus auf die Mitte des Spielfelds
|
||||||
4, // Radius des Kreises
|
5, // Radius des Kreises
|
||||||
15, // Höhe der Kamera
|
3, // Höhe der Kamera
|
||||||
0 // Geschwindigkeit der Bewegung
|
0.5f // Geschwindigkeit der Bewegung
|
||||||
);
|
);
|
||||||
|
|
||||||
// Füge die Toolbar hinzu
|
// Füge die Toolbar hinzu
|
||||||
toolbar = new Toolbar(app);
|
new Toolbar(app, cube);
|
||||||
toolbar.open();
|
|
||||||
|
|
||||||
cameraController.setPosition(0);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Aktualisiert die Kameraposition.
|
* Aktualisiert die Kameraposition.
|
||||||
*
|
*
|
||||||
@@ -85,20 +75,33 @@ public class TestWorld implements GameEventListener{
|
|||||||
*/
|
*/
|
||||||
private void createBoard() {
|
private void createBoard() {
|
||||||
// Erstelle ein Quadrat
|
// Erstelle ein Quadrat
|
||||||
Box box = new Box(10, 0.1f, 10); // Dünnes Quadrat für die Textur
|
Box box = new Box(1, 0.01f, 1); // Dünnes Quadrat für die Textur
|
||||||
Geometry geom = new Geometry("Board", box);
|
Geometry geom = new Geometry("Board", box);
|
||||||
|
|
||||||
// Setze das Material mit Textur
|
// Setze das Material mit Textur
|
||||||
Material mat = new Material(app.getAssetManager(), "Common/MatDefs/Misc/Unshaded.j3md");
|
Material mat = new Material(app.getAssetManager(), "Common/MatDefs/Misc/Unshaded.j3md");
|
||||||
Texture texture = app.getAssetManager().loadTexture("Pictures/board2.png");
|
Texture texture = app.getAssetManager().loadTexture("Pictures/board.png");
|
||||||
mat.setTexture("ColorMap", texture);
|
mat.setTexture("ColorMap", texture);
|
||||||
geom.setMaterial(mat);
|
geom.setMaterial(mat);
|
||||||
|
|
||||||
app.getRootNode().attachChild(geom);
|
app.getRootNode().attachChild(geom);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
/**
|
||||||
public void receivedEvent(EventCardEvent event) {
|
* Erstellt den Würfel (Spielfigur) in der Szene.
|
||||||
new EventCard(app, event.description()).open();
|
*/
|
||||||
|
private void createCube() {
|
||||||
|
Box box = new Box(0.05f, 0.05f, 0.05f); // Kleinere Größe für Spielfigur
|
||||||
|
cube = new Geometry("Cube", box);
|
||||||
|
|
||||||
|
// Setze das Material für den Würfel
|
||||||
|
Material mat = new Material(app.getAssetManager(), "Common/MatDefs/Misc/Unshaded.j3md");
|
||||||
|
mat.setColor("Color", ColorRGBA.Blue); // Blau gefärbter Würfel
|
||||||
|
cube.setMaterial(mat);
|
||||||
|
|
||||||
|
// Setze den Startpunkt des Würfels
|
||||||
|
cube.setLocalTranslation(0.8999999f, 0.1f, -0.9f);
|
||||||
|
|
||||||
|
app.getRootNode().attachChild(cube);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,269 +1,168 @@
|
|||||||
package pp.monopoly.client.gui;
|
package pp.monopoly.client.gui;
|
||||||
|
|
||||||
import com.jme3.math.ColorRGBA;
|
import java.util.Random;
|
||||||
import com.jme3.math.Vector2f;
|
|
||||||
|
import com.jme3.font.BitmapText;
|
||||||
import com.jme3.math.Vector3f;
|
import com.jme3.math.Vector3f;
|
||||||
|
import com.jme3.scene.Geometry;
|
||||||
import com.simsilica.lemur.Axis;
|
import com.simsilica.lemur.Axis;
|
||||||
import com.simsilica.lemur.Button;
|
import com.simsilica.lemur.Button;
|
||||||
import com.simsilica.lemur.Container;
|
import com.simsilica.lemur.Container;
|
||||||
import com.simsilica.lemur.Label;
|
|
||||||
import com.simsilica.lemur.component.IconComponent;
|
|
||||||
import com.simsilica.lemur.component.QuadBackgroundComponent;
|
|
||||||
import com.simsilica.lemur.component.SpringGridLayout;
|
import com.simsilica.lemur.component.SpringGridLayout;
|
||||||
import com.simsilica.lemur.style.ElementId;
|
|
||||||
|
|
||||||
import pp.dialog.Dialog;
|
|
||||||
import pp.monopoly.client.MonopolyApp;
|
import pp.monopoly.client.MonopolyApp;
|
||||||
import pp.monopoly.game.server.Player;
|
|
||||||
import pp.monopoly.game.server.PlayerHandler;
|
|
||||||
import pp.monopoly.message.client.EndTurn;
|
|
||||||
import pp.monopoly.message.client.RollDice;
|
|
||||||
import pp.monopoly.notification.*;
|
|
||||||
|
|
||||||
public class Toolbar extends Dialog implements GameEventListener {
|
/**
|
||||||
|
* Toolbar Klasse, die am unteren Rand der Szene angezeigt wird.
|
||||||
|
* Die Buttons bewegen den Würfel auf dem Spielfeld.
|
||||||
|
*/
|
||||||
|
public class Toolbar {
|
||||||
|
|
||||||
private final MonopolyApp app;
|
private final MonopolyApp app;
|
||||||
private final Container toolbarContainer;
|
private final Container toolbarContainer;
|
||||||
private Container overviewContainer;
|
private final Geometry cube; // Referenz auf den Würfel
|
||||||
private Container accountContainer;
|
private final BitmapText positionText; // Anzeige für die aktuelle Position
|
||||||
private PlayerHandler playerHandler;
|
private final float boardLimit = 0.95f; // Grenzen des Bretts
|
||||||
private Label imageLabel;
|
private final float stepSize = 0.18f; // Schrittgröße pro Bewegung
|
||||||
private Label imageLabel2;
|
private int currentPosition = 0; // Aktuelle Position auf dem Spielfeld
|
||||||
private Button diceButton;
|
private final int positionsPerSide = 10; // Anzahl der Positionen pro Seite
|
||||||
private Button tradeButton;
|
private final Random random = new Random(); // Zufallsgenerator für den Würfelwurf
|
||||||
private Button propertyMenuButton;
|
|
||||||
private Button endTurnButton;
|
|
||||||
|
|
||||||
private volatile boolean animatingDice = false;
|
/**
|
||||||
private volatile DiceRollEvent latestDiceRollEvent = null;
|
* Konstruktor für die Toolbar.
|
||||||
|
*
|
||||||
public Toolbar(MonopolyApp app) {
|
* @param app Die Hauptanwendung (MonopolyApp)
|
||||||
super(app.getDialogManager());
|
* @param cube Der Würfel, der bewegt werden soll
|
||||||
|
*/
|
||||||
|
public Toolbar(MonopolyApp app, Geometry cube) {
|
||||||
this.app = app;
|
this.app = app;
|
||||||
|
this.cube = cube;
|
||||||
|
|
||||||
app.getGameLogic().addListener(this);
|
// Erstelle die Toolbar
|
||||||
this.playerHandler = app.getGameLogic().getPlayerHandler();
|
toolbarContainer = new Container(new SpringGridLayout(Axis.X, Axis.Y));
|
||||||
|
|
||||||
toolbarContainer = createToolbarContainer();
|
// Setze die Position am unteren Rand und die Breite
|
||||||
|
toolbarContainer.setLocalTranslation(
|
||||||
|
0, // Links bündig
|
||||||
|
100, // Höhe über dem unteren Rand
|
||||||
|
0 // Z-Ebene
|
||||||
|
);
|
||||||
|
toolbarContainer.setPreferredSize(new Vector3f(app.getCamera().getWidth(), 100, 0)); // Volle Breite
|
||||||
|
|
||||||
|
// Füge Buttons zur Toolbar hinzu
|
||||||
|
initializeButtons();
|
||||||
|
|
||||||
|
// Füge die Toolbar zur GUI hinzu
|
||||||
app.getGuiNode().attachChild(toolbarContainer);
|
app.getGuiNode().attachChild(toolbarContainer);
|
||||||
|
|
||||||
|
// Erstelle die Position-Anzeige
|
||||||
|
positionText = createPositionDisplay();
|
||||||
|
updatePositionDisplay(); // Initialisiere die Anzeige mit der Startposition
|
||||||
}
|
}
|
||||||
|
|
||||||
private Container createToolbarContainer() {
|
/**
|
||||||
Container container = new Container(new SpringGridLayout(Axis.X, Axis.Y), "toolbar");
|
* Initialisiert die Buttons in der Toolbar.
|
||||||
container.setLocalTranslation(0, 200, 0);
|
*/
|
||||||
container.setPreferredSize(new Vector3f(app.getCamera().getWidth(), 200, 0));
|
private void initializeButtons() {
|
||||||
|
addButton("Vorwärts", 1); // Bewegung nach vorne
|
||||||
// Create account and overview containers
|
addButton("Rückwärts", -1); // Bewegung nach hinten
|
||||||
accountContainer = container.addChild(new Container());
|
addDiceRollButton(); // Würfel-Button
|
||||||
overviewContainer = container.addChild(new Container());
|
|
||||||
receivedEvent(new UpdatePlayerView());
|
|
||||||
|
|
||||||
// Dice section
|
|
||||||
container.addChild(createDiceSection());
|
|
||||||
|
|
||||||
// Action menu
|
|
||||||
Container menuContainer = container.addChild(new Container());
|
|
||||||
menuContainer.addChild(createTradeButton());
|
|
||||||
menuContainer.addChild(createPropertyMenuButton());
|
|
||||||
menuContainer.addChild(createEndTurnButton());
|
|
||||||
menuContainer.setBackground(createBackground());
|
|
||||||
|
|
||||||
return container;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private Container createDiceSection() {
|
/**
|
||||||
Container diceContainer = new Container(new SpringGridLayout(Axis.X, Axis.Y));
|
* Fügt einen Button mit einer Bewegung hinzu.
|
||||||
diceContainer.addChild(createDiceDisplay());
|
*
|
||||||
|
* @param label Der Text des Buttons
|
||||||
diceButton = new Button("Würfeln", new ElementId("button-toolbar"));
|
* @param step Schrittweite (+1 für vorwärts, -1 für rückwärts)
|
||||||
diceButton.setPreferredSize(new Vector3f(200, 50, 0));
|
*/
|
||||||
diceButton.addClickCommands(s -> ifTopDialog(() -> {
|
private void addButton(String label, int step) {
|
||||||
diceButton.setEnabled(false);
|
Button button = new Button(label);
|
||||||
startDiceAnimation();
|
button.setPreferredSize(new Vector3f(150, 50, 0)); // Größe der Buttons
|
||||||
app.getGameLogic().send(new RollDice());
|
button.addClickCommands(source -> moveCube(step));
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
toolbarContainer.addChild(button);
|
||||||
}));
|
|
||||||
diceContainer.addChild(diceButton);
|
|
||||||
|
|
||||||
return diceContainer;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private Container createDiceDisplay() {
|
/**
|
||||||
Container horizontalContainer = new Container(new SpringGridLayout(Axis.X, Axis.Y));
|
* Fügt den Würfel-Button hinzu, der die Figur entsprechend der gewürfelten Zahl bewegt.
|
||||||
horizontalContainer.setPreferredSize(new Vector3f(200, 150, 0));
|
*/
|
||||||
|
private void addDiceRollButton() {
|
||||||
imageLabel = createDiceLabel("Pictures/dice/one.png");
|
Button diceButton = new Button("Würfeln");
|
||||||
imageLabel2 = createDiceLabel("Pictures/dice/two.png");
|
diceButton.setPreferredSize(new Vector3f(150, 50, 0)); // Größe des Buttons
|
||||||
|
diceButton.addClickCommands(source -> rollDice());
|
||||||
horizontalContainer.addChild(createDiceContainer(imageLabel));
|
toolbarContainer.addChild(diceButton);
|
||||||
horizontalContainer.addChild(createDiceContainer(imageLabel2));
|
|
||||||
|
|
||||||
return horizontalContainer;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private Label createDiceLabel(String iconPath) {
|
/**
|
||||||
Label label = new Label("");
|
* Simuliert einen Würfelwurf und bewegt die Figur entsprechend.
|
||||||
IconComponent icon = new IconComponent(iconPath);
|
*/
|
||||||
icon.setIconSize(new Vector2f(100, 100));
|
private void rollDice() {
|
||||||
label.setIcon(icon);
|
int diceRoll = random.nextInt(6) + 1; // Zahl zwischen 1 und 6
|
||||||
return label;
|
System.out.println("Gewürfelt: " + diceRoll);
|
||||||
|
moveCube(diceRoll); // Bewege die Figur um die gewürfelte Zahl
|
||||||
}
|
}
|
||||||
|
|
||||||
private Container createDiceContainer(Label label) {
|
/**
|
||||||
Container container = new Container();
|
* Bewegt den Würfel basierend auf der aktuellen Position auf dem Brett.
|
||||||
container.setPreferredSize(new Vector3f(100, 150, 0));
|
*
|
||||||
container.addChild(label);
|
* @param step Schrittweite (+1 für vorwärts, -1 für rückwärts oder andere Werte)
|
||||||
return container;
|
*/
|
||||||
|
private void moveCube(int step) {
|
||||||
|
currentPosition = (currentPosition + step + 4 * positionsPerSide) % (4 * positionsPerSide);
|
||||||
|
Vector3f newPosition = calculatePosition(currentPosition);
|
||||||
|
cube.setLocalTranslation(newPosition);
|
||||||
|
updatePositionDisplay(); // Aktualisiere die Positionsanzeige
|
||||||
|
System.out.println("Würfelposition: " + newPosition + " (Feld-ID: " + currentPosition + ")");
|
||||||
}
|
}
|
||||||
|
|
||||||
private Button createTradeButton() {
|
/**
|
||||||
tradeButton = new Button("Handeln", new ElementId("button-toolbar"));
|
* Berechnet die neue Position des Würfels basierend auf der aktuellen Brettseite und Position.
|
||||||
tradeButton.setPreferredSize(new Vector3f(150, 50, 0));
|
*
|
||||||
tradeButton.addClickCommands(s -> ifTopDialog(() -> {
|
* @param position Aktuelle Position auf dem Spielfeld
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
* @return Die berechnete Position als Vector3f
|
||||||
new ChoosePartner(app).open();
|
*/
|
||||||
}));
|
private Vector3f calculatePosition(int position) {
|
||||||
return tradeButton;
|
int side = position / positionsPerSide; // Seite des Bretts (0 = unten, 1 = rechts, 2 = oben, 3 = links)
|
||||||
}
|
int offset = position % positionsPerSide; // Position auf der aktuellen Seite
|
||||||
|
|
||||||
private Button createPropertyMenuButton() {
|
switch (side) {
|
||||||
propertyMenuButton = new Button("Grundstücke", new ElementId("button-toolbar"));
|
case 0: // Unten (positive x-Achse)
|
||||||
propertyMenuButton.setPreferredSize(new Vector3f(150, 50, 0));
|
return new Vector3f(-boardLimit + offset * stepSize, 0.1f, -boardLimit + 0.05f);
|
||||||
propertyMenuButton.setFontSize(30);
|
case 1: // Rechts (positive z-Achse)
|
||||||
propertyMenuButton.addClickCommands(s -> ifTopDialog(() -> {
|
return new Vector3f(boardLimit - 0.05f, 0.1f, -boardLimit + offset * stepSize);
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
case 2: // Oben (negative x-Achse)
|
||||||
new PropertyOverviewMenu(app).open();
|
return new Vector3f(boardLimit - offset * stepSize, 0.1f, boardLimit - 0.05f);
|
||||||
}));
|
case 3: // Links (negative z-Achse)
|
||||||
return propertyMenuButton;
|
return new Vector3f(-boardLimit + 0.05f, 0.1f, boardLimit - offset * stepSize);
|
||||||
}
|
default:
|
||||||
|
throw new IllegalArgumentException("Ungültige Position: " + position);
|
||||||
private Button createEndTurnButton() {
|
|
||||||
endTurnButton = new Button("Zug beenden", new ElementId("button-toolbar"));
|
|
||||||
endTurnButton.setPreferredSize(new Vector3f(150, 50, 0));
|
|
||||||
endTurnButton.addClickCommands(s -> ifTopDialog(() -> {
|
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
|
||||||
app.getGameLogic().send(new EndTurn());
|
|
||||||
receivedEvent(new ButtonStatusEvent(false));
|
|
||||||
}));
|
|
||||||
return endTurnButton;
|
|
||||||
}
|
|
||||||
|
|
||||||
private QuadBackgroundComponent createBackground() {
|
|
||||||
return new QuadBackgroundComponent(new ColorRGBA(0.4657f, 0.4735f, 0.4892f, 1.0f));
|
|
||||||
}
|
|
||||||
|
|
||||||
private void startDiceAnimation() {
|
|
||||||
animatingDice = true;
|
|
||||||
long startTime = System.currentTimeMillis();
|
|
||||||
|
|
||||||
new Thread(() -> {
|
|
||||||
try {
|
|
||||||
animateDice(startTime);
|
|
||||||
animatingDice = false;
|
|
||||||
if (latestDiceRollEvent != null) {
|
|
||||||
showFinalDiceResult(latestDiceRollEvent);
|
|
||||||
}
|
|
||||||
} catch (InterruptedException e) {
|
|
||||||
System.err.println("Dice animation interrupted: " + e.getMessage());
|
|
||||||
}
|
|
||||||
}).start();
|
|
||||||
}
|
|
||||||
|
|
||||||
private void animateDice(long startTime) throws InterruptedException {
|
|
||||||
int[] currentFace = {1};
|
|
||||||
while (System.currentTimeMillis() - startTime < 2500) { // Animation duration
|
|
||||||
currentFace[0] = (currentFace[0] % 6) + 1;
|
|
||||||
|
|
||||||
String rotatingImage1 = diceToString(currentFace[0]);
|
|
||||||
String rotatingImage2 = diceToString((currentFace[0] % 6) + 1);
|
|
||||||
|
|
||||||
app.enqueue(() -> {
|
|
||||||
setDiceIcon(imageLabel, rotatingImage1);
|
|
||||||
setDiceIcon(imageLabel2, rotatingImage2);
|
|
||||||
});
|
|
||||||
|
|
||||||
Thread.sleep(100); // Time between frame updates
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
private void showFinalDiceResult(DiceRollEvent event) {
|
/**
|
||||||
app.enqueue(() -> {
|
* Erstellt die Anzeige für die aktuelle Position.
|
||||||
setDiceIcon(imageLabel, diceToString(event.a()));
|
*
|
||||||
setDiceIcon(imageLabel2, diceToString(event.b()));
|
* @return Das BitmapText-Objekt für die Anzeige
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
*/
|
||||||
});
|
private BitmapText createPositionDisplay() {
|
||||||
|
BitmapText text = new BitmapText(app.getAssetManager().loadFont("Interface/Fonts/Default.fnt"), false);
|
||||||
|
text.setSize(20); // Schriftgröße
|
||||||
|
text.setLocalTranslation(10, app.getCamera().getHeight() - 10, 0); // Oben links
|
||||||
|
app.getGuiNode().attachChild(text);
|
||||||
|
return text;
|
||||||
}
|
}
|
||||||
|
|
||||||
private void setDiceIcon(Label label, String imagePath) {
|
/**
|
||||||
IconComponent icon = new IconComponent(imagePath);
|
* Aktualisiert die Anzeige für die aktuelle Position.
|
||||||
icon.setIconSize(new Vector2f(80, 80)); // Set consistent dice size
|
*/
|
||||||
label.setIcon(icon);
|
private void updatePositionDisplay() {
|
||||||
|
positionText.setText("Feld-ID: " + currentPosition);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
private String diceToString(int i) {
|
* Entfernt die Toolbar.
|
||||||
switch (i) {
|
*/
|
||||||
case 1: return "Pictures/dice/one.png";
|
public void remove() {
|
||||||
case 2: return "Pictures/dice/two.png";
|
|
||||||
case 3: return "Pictures/dice/three.png";
|
|
||||||
case 4: return "Pictures/dice/four.png";
|
|
||||||
case 5: return "Pictures/dice/five.png";
|
|
||||||
case 6: return "Pictures/dice/six.png";
|
|
||||||
default: throw new IllegalArgumentException("Invalid dice number: " + i);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void receivedEvent(DiceRollEvent event) {
|
|
||||||
latestDiceRollEvent = event;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void receivedEvent(UpdatePlayerView event) {
|
|
||||||
accountContainer.clearChildren();
|
|
||||||
overviewContainer.clearChildren();
|
|
||||||
|
|
||||||
accountContainer.addChild(new Label("Kontostand", new ElementId("label-Bold")));
|
|
||||||
accountContainer.addChild(new Label(
|
|
||||||
playerHandler.getPlayerById(app.getId()).getAccountBalance() + " EUR",
|
|
||||||
new ElementId("label-Text")
|
|
||||||
));
|
|
||||||
accountContainer.addChild(new Label("Gulag Karten", new ElementId("label-Bold")));
|
|
||||||
accountContainer.addChild(new Label(
|
|
||||||
playerHandler.getPlayerById(app.getId()).getNumJailCard() + "",
|
|
||||||
new ElementId("label-Text")
|
|
||||||
));
|
|
||||||
accountContainer.setBackground(createBackground());
|
|
||||||
|
|
||||||
overviewContainer.addChild(new Label("Übersicht", new ElementId("label-Bold")));
|
|
||||||
for (Player player : playerHandler.getPlayers()) {
|
|
||||||
if (player.getId() != app.getId()) {
|
|
||||||
overviewContainer.addChild(new Label(
|
|
||||||
player.getName() + ": " + player.getAccountBalance() + " EUR",
|
|
||||||
new ElementId("label-Text")
|
|
||||||
));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
overviewContainer.setBackground(createBackground());
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void receivedEvent(ButtonStatusEvent event) {
|
|
||||||
boolean enabled = event.buttonsEnabled();
|
|
||||||
diceButton.setEnabled(enabled);
|
|
||||||
tradeButton.setEnabled(enabled);
|
|
||||||
propertyMenuButton.setEnabled(enabled);
|
|
||||||
endTurnButton.setEnabled(enabled);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void close() {
|
|
||||||
app.getGuiNode().detachChild(toolbarContainer);
|
app.getGuiNode().detachChild(toolbarContainer);
|
||||||
super.close();
|
app.getGuiNode().detachChild(positionText);
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void escape() {
|
|
||||||
new SettingsMenu(app).open();
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -1,168 +0,0 @@
|
|||||||
package pp.monopoly.client.gui;
|
|
||||||
|
|
||||||
import java.util.Random;
|
|
||||||
|
|
||||||
import com.jme3.font.BitmapText;
|
|
||||||
import com.jme3.math.Vector3f;
|
|
||||||
import com.jme3.scene.Geometry;
|
|
||||||
import com.simsilica.lemur.Axis;
|
|
||||||
import com.simsilica.lemur.Button;
|
|
||||||
import com.simsilica.lemur.Container;
|
|
||||||
import com.simsilica.lemur.component.SpringGridLayout;
|
|
||||||
|
|
||||||
import pp.monopoly.client.MonopolyApp;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Toolbar Klasse, die am unteren Rand der Szene angezeigt wird.
|
|
||||||
* Die Buttons bewegen den Würfel auf dem Spielfeld.
|
|
||||||
*/
|
|
||||||
public class Toolbar2 {
|
|
||||||
|
|
||||||
private final MonopolyApp app;
|
|
||||||
private final Container toolbarContainer;
|
|
||||||
private final Geometry cube; // Referenz auf den Würfel
|
|
||||||
private final BitmapText positionText; // Anzeige für die aktuelle Position
|
|
||||||
private final float boardLimit = 0.95f; // Grenzen des Bretts
|
|
||||||
private final float stepSize = 0.18f; // Schrittgröße pro Bewegung
|
|
||||||
private int currentPosition = 0; // Aktuelle Position auf dem Spielfeld
|
|
||||||
private final int positionsPerSide = 10; // Anzahl der Positionen pro Seite
|
|
||||||
private final Random random = new Random(); // Zufallsgenerator für den Würfelwurf
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Konstruktor für die Toolbar.
|
|
||||||
*
|
|
||||||
* @param app Die Hauptanwendung (MonopolyApp)
|
|
||||||
* @param cube Der Würfel, der bewegt werden soll
|
|
||||||
*/
|
|
||||||
public Toolbar2(MonopolyApp app, Geometry cube) {
|
|
||||||
this.app = app;
|
|
||||||
this.cube = cube;
|
|
||||||
|
|
||||||
// Erstelle die Toolbar
|
|
||||||
toolbarContainer = new Container(new SpringGridLayout(Axis.X, Axis.Y));
|
|
||||||
|
|
||||||
// Setze die Position am unteren Rand und die Breite
|
|
||||||
toolbarContainer.setLocalTranslation(
|
|
||||||
0, // Links bündig
|
|
||||||
100, // Höhe über dem unteren Rand
|
|
||||||
0 // Z-Ebene
|
|
||||||
);
|
|
||||||
toolbarContainer.setPreferredSize(new Vector3f(app.getCamera().getWidth(), 100, 0)); // Volle Breite
|
|
||||||
|
|
||||||
// Füge Buttons zur Toolbar hinzu
|
|
||||||
initializeButtons();
|
|
||||||
|
|
||||||
// Füge die Toolbar zur GUI hinzu
|
|
||||||
app.getGuiNode().attachChild(toolbarContainer);
|
|
||||||
|
|
||||||
// Erstelle die Position-Anzeige
|
|
||||||
positionText = createPositionDisplay();
|
|
||||||
updatePositionDisplay(); // Initialisiere die Anzeige mit der Startposition
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Initialisiert die Buttons in der Toolbar.
|
|
||||||
*/
|
|
||||||
private void initializeButtons() {
|
|
||||||
addButton("Vorwärts", 1); // Bewegung nach vorne
|
|
||||||
addButton("Rückwärts", -1); // Bewegung nach hinten
|
|
||||||
addDiceRollButton(); // Würfel-Button
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Fügt einen Button mit einer Bewegung hinzu.
|
|
||||||
*
|
|
||||||
* @param label Der Text des Buttons
|
|
||||||
* @param step Schrittweite (+1 für vorwärts, -1 für rückwärts)
|
|
||||||
*/
|
|
||||||
private void addButton(String label, int step) {
|
|
||||||
Button button = new Button(label);
|
|
||||||
button.setPreferredSize(new Vector3f(150, 50, 0)); // Größe der Buttons
|
|
||||||
button.addClickCommands(source -> moveCube(step));
|
|
||||||
toolbarContainer.addChild(button);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Fügt den Würfel-Button hinzu, der die Figur entsprechend der gewürfelten Zahl bewegt.
|
|
||||||
*/
|
|
||||||
private void addDiceRollButton() {
|
|
||||||
Button diceButton = new Button("Würfeln");
|
|
||||||
diceButton.setPreferredSize(new Vector3f(150, 50, 0)); // Größe des Buttons
|
|
||||||
diceButton.addClickCommands(source -> rollDice());
|
|
||||||
toolbarContainer.addChild(diceButton);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Simuliert einen Würfelwurf und bewegt die Figur entsprechend.
|
|
||||||
*/
|
|
||||||
private void rollDice() {
|
|
||||||
int diceRoll = random.nextInt(6) + 1; // Zahl zwischen 1 und 6
|
|
||||||
System.out.println("Gewürfelt: " + diceRoll);
|
|
||||||
moveCube(diceRoll); // Bewege die Figur um die gewürfelte Zahl
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Bewegt den Würfel basierend auf der aktuellen Position auf dem Brett.
|
|
||||||
*
|
|
||||||
* @param step Schrittweite (+1 für vorwärts, -1 für rückwärts oder andere Werte)
|
|
||||||
*/
|
|
||||||
private void moveCube(int step) {
|
|
||||||
currentPosition = (currentPosition + step + 4 * positionsPerSide) % (4 * positionsPerSide);
|
|
||||||
Vector3f newPosition = calculatePosition(currentPosition);
|
|
||||||
cube.setLocalTranslation(newPosition);
|
|
||||||
updatePositionDisplay(); // Aktualisiere die Positionsanzeige
|
|
||||||
System.out.println("Würfelposition: " + newPosition + " (Feld-ID: " + currentPosition + ")");
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Berechnet die neue Position des Würfels basierend auf der aktuellen Brettseite und Position.
|
|
||||||
*
|
|
||||||
* @param position Aktuelle Position auf dem Spielfeld
|
|
||||||
* @return Die berechnete Position als Vector3f
|
|
||||||
*/
|
|
||||||
private Vector3f calculatePosition(int position) {
|
|
||||||
int side = position / positionsPerSide; // Seite des Bretts (0 = unten, 1 = rechts, 2 = oben, 3 = links)
|
|
||||||
int offset = position % positionsPerSide; // Position auf der aktuellen Seite
|
|
||||||
|
|
||||||
switch (side) {
|
|
||||||
case 0: // Unten (positive x-Achse)
|
|
||||||
return new Vector3f(-boardLimit + offset * stepSize, 0.1f, -boardLimit + 0.05f);
|
|
||||||
case 1: // Rechts (positive z-Achse)
|
|
||||||
return new Vector3f(boardLimit - 0.05f, 0.1f, -boardLimit + offset * stepSize);
|
|
||||||
case 2: // Oben (negative x-Achse)
|
|
||||||
return new Vector3f(boardLimit - offset * stepSize, 0.1f, boardLimit - 0.05f);
|
|
||||||
case 3: // Links (negative z-Achse)
|
|
||||||
return new Vector3f(-boardLimit + 0.05f, 0.1f, boardLimit - offset * stepSize);
|
|
||||||
default:
|
|
||||||
throw new IllegalArgumentException("Ungültige Position: " + position);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Erstellt die Anzeige für die aktuelle Position.
|
|
||||||
*
|
|
||||||
* @return Das BitmapText-Objekt für die Anzeige
|
|
||||||
*/
|
|
||||||
private BitmapText createPositionDisplay() {
|
|
||||||
BitmapText text = new BitmapText(app.getAssetManager().loadFont("Interface/Fonts/Default.fnt"), false);
|
|
||||||
text.setSize(20); // Schriftgröße
|
|
||||||
text.setLocalTranslation(10, app.getCamera().getHeight() - 10, 0); // Oben links
|
|
||||||
app.getGuiNode().attachChild(text);
|
|
||||||
return text;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Aktualisiert die Anzeige für die aktuelle Position.
|
|
||||||
*/
|
|
||||||
private void updatePositionDisplay() {
|
|
||||||
positionText.setText("Feld-ID: " + currentPosition);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Entfernt die Toolbar.
|
|
||||||
*/
|
|
||||||
public void remove() {
|
|
||||||
app.getGuiNode().detachChild(toolbarContainer);
|
|
||||||
app.getGuiNode().detachChild(positionText);
|
|
||||||
}
|
|
||||||
}
|
|
@@ -1,382 +0,0 @@
|
|||||||
package pp.monopoly.client.gui;
|
|
||||||
|
|
||||||
import com.jme3.app.Application;
|
|
||||||
import com.jme3.app.state.BaseAppState;
|
|
||||||
import com.jme3.material.Material;
|
|
||||||
import com.jme3.math.ColorRGBA;
|
|
||||||
import com.jme3.math.Vector3f;
|
|
||||||
import com.jme3.scene.Geometry;
|
|
||||||
import com.jme3.scene.shape.Quad;
|
|
||||||
import com.jme3.texture.Texture;
|
|
||||||
import com.simsilica.lemur.*;
|
|
||||||
import com.simsilica.lemur.component.QuadBackgroundComponent;
|
|
||||||
import com.simsilica.lemur.component.SpringGridLayout;
|
|
||||||
import com.simsilica.lemur.core.VersionedList;
|
|
||||||
import com.simsilica.lemur.core.VersionedReference;
|
|
||||||
import com.simsilica.lemur.style.ElementId;
|
|
||||||
import com.simsilica.lemur.text.DocumentModel;
|
|
||||||
import pp.dialog.Dialog;
|
|
||||||
import pp.monopoly.client.MonopolyApp;
|
|
||||||
import pp.monopoly.notification.Sound;
|
|
||||||
|
|
||||||
import java.util.Set;
|
|
||||||
|
|
||||||
public class TradeMenu extends Dialog {
|
|
||||||
private final MonopolyApp app;
|
|
||||||
private final Container mainContainer;
|
|
||||||
private Selector<String> leftBuildingSelector, leftCurrencySelector, leftSpecialCardSelector;
|
|
||||||
private Selector<String> rightBuildingSelector, rightCurrencySelector, rightSpecialCardSelector;
|
|
||||||
private final Button cancelButton = new Button("Abbrechen");
|
|
||||||
private final Button tradeButton = new Button("Handeln");
|
|
||||||
private Container lowerLeftMenu, lowerRightMenu;
|
|
||||||
private TextField leftSelectionsField;
|
|
||||||
private TextField rightSelectionsField;
|
|
||||||
private TextField leftCurrencyInput;
|
|
||||||
private TextField rightCurrencyInput;
|
|
||||||
|
|
||||||
QuadBackgroundComponent translucentWhiteBackground =
|
|
||||||
new QuadBackgroundComponent(new ColorRGBA(ColorRGBA.White));
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructs the TradeMenu dialog.
|
|
||||||
*
|
|
||||||
* @param app The Monopoly application instance.
|
|
||||||
*/
|
|
||||||
public TradeMenu(MonopolyApp app) {
|
|
||||||
super(app.getDialogManager());
|
|
||||||
this.app = app;
|
|
||||||
|
|
||||||
// Background Image
|
|
||||||
addBackgroundImage();
|
|
||||||
|
|
||||||
// Main container for the UI components
|
|
||||||
mainContainer = new Container(new SpringGridLayout(Axis.Y, Axis.X));
|
|
||||||
mainContainer.setPreferredSize(new Vector3f(1200, 800, 0));
|
|
||||||
mainContainer.setBackground(translucentWhiteBackground);
|
|
||||||
|
|
||||||
// Add header container
|
|
||||||
mainContainer.addChild(createHeaderContainer());
|
|
||||||
// Add main content (three columns: left, middle, right)
|
|
||||||
mainContainer.addChild(createMainContent());
|
|
||||||
|
|
||||||
// Attach main container to GUI node
|
|
||||||
app.getGuiNode().attachChild(mainContainer);
|
|
||||||
mainContainer.setLocalTranslation(
|
|
||||||
(app.getCamera().getWidth() - mainContainer.getPreferredSize().x) / 2,
|
|
||||||
(app.getCamera().getHeight() + mainContainer.getPreferredSize().y) / 2,
|
|
||||||
7
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a container for the header with a fixed size.
|
|
||||||
*
|
|
||||||
* @return The header container.
|
|
||||||
*/
|
|
||||||
private Container createHeaderContainer() {
|
|
||||||
// Create a container for the header
|
|
||||||
Container headerContainer = new Container(new SpringGridLayout(Axis.X, Axis.Y));
|
|
||||||
headerContainer.setPreferredSize(new Vector3f(200, 100, 0)); // Set fixed width and height
|
|
||||||
|
|
||||||
// Add the header label
|
|
||||||
Label headerLabel = headerContainer.addChild(new Label("Handelsmenü", new ElementId("label-Bold")));
|
|
||||||
headerLabel.setFontSize(50); // Adjust font size as needed
|
|
||||||
headerLabel.setInsets(new Insets3f(10, 10, 10, 10)); // Add padding around the label
|
|
||||||
headerLabel.setBackground(new QuadBackgroundComponent(new ColorRGBA(1.0f, 1.0f, 1.0f, 0.5f))); // Optional background
|
|
||||||
|
|
||||||
return headerContainer;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates the main content layout (left, middle, right columns).
|
|
||||||
*
|
|
||||||
* @return The main content container.
|
|
||||||
*/
|
|
||||||
private Container createMainContent() {
|
|
||||||
Container mainContent = new Container(new SpringGridLayout(Axis.X, Axis.Y));
|
|
||||||
mainContent.setPreferredSize(new Vector3f(1200, 700, 0));
|
|
||||||
|
|
||||||
// Left Column
|
|
||||||
mainContent.addChild(createTradeColumn("Wähle Handelsobjekt:", true));
|
|
||||||
|
|
||||||
// Middle Section
|
|
||||||
Container middleSection = mainContent.addChild(new Container(new SpringGridLayout(Axis.Y, Axis.X)));
|
|
||||||
middleSection.setBackground(new QuadBackgroundComponent(new ColorRGBA(0.8f, 0.8f, 0.8f, 1.0f)));
|
|
||||||
|
|
||||||
// Add combined label
|
|
||||||
Label middleLabel = middleSection.addChild(new Label("Gebäude: Währung: Sonderkarten:"));
|
|
||||||
middleLabel.setFontSize(24); // Adjust font size as needed
|
|
||||||
middleLabel.setInsets(new Insets3f(5, 5, 5, 5)); // Add padding around the label
|
|
||||||
|
|
||||||
// Add the Quellobjekte TextField
|
|
||||||
leftSelectionsField = middleSection.addChild(new TextField(""));
|
|
||||||
leftSelectionsField.setPreferredSize(new Vector3f(600, 50, 0)); // Larger width to fit the split sections
|
|
||||||
|
|
||||||
addCustomSelectionListener(leftBuildingSelector, newSelection -> updateSelectionsField(leftSelectionsField, leftBuildingSelector, leftCurrencyInput, leftSpecialCardSelector));
|
|
||||||
addCustomSelectionListener(leftSpecialCardSelector, newSelection -> updateSelectionsField(leftSelectionsField, leftBuildingSelector, leftCurrencyInput, leftSpecialCardSelector));
|
|
||||||
// Add change listener for the currency input
|
|
||||||
monitorTextFieldChanges(leftCurrencyInput, () -> updateSelectionsField(leftSelectionsField, leftBuildingSelector, leftCurrencyInput, leftSpecialCardSelector));
|
|
||||||
|
|
||||||
Label arrows = middleSection.addChild(new Label("⇅"));
|
|
||||||
arrows.setFontSize(40);
|
|
||||||
|
|
||||||
// Right Column
|
|
||||||
mainContent.addChild(createTradeColumn("Wähle Zielobjekt:", false));
|
|
||||||
|
|
||||||
|
|
||||||
// Add combined label
|
|
||||||
middleLabel = middleSection.addChild(new Label("Gebäude: Währung: Sonderkarten:"));
|
|
||||||
middleLabel.setFontSize(24); // Adjust font size as needed
|
|
||||||
middleLabel.setInsets(new Insets3f(5, 5, 5, 5)); // Add padding around the label
|
|
||||||
|
|
||||||
// Add the Zielobjekte TextField
|
|
||||||
rightSelectionsField = middleSection.addChild(new TextField(""));
|
|
||||||
rightSelectionsField.setPreferredSize(new Vector3f(600, 50, 0));
|
|
||||||
|
|
||||||
addCustomSelectionListener(rightBuildingSelector, newSelection -> updateSelectionsField(rightSelectionsField, rightBuildingSelector, rightCurrencyInput, rightSpecialCardSelector));
|
|
||||||
addCustomSelectionListener(rightSpecialCardSelector, newSelection -> updateSelectionsField(rightSelectionsField, rightBuildingSelector, rightCurrencyInput, rightSpecialCardSelector));
|
|
||||||
|
|
||||||
// Add change listener for the currency input
|
|
||||||
monitorTextFieldChanges(rightCurrencyInput, () -> updateSelectionsField(rightSelectionsField, rightBuildingSelector, rightCurrencyInput, rightSpecialCardSelector));
|
|
||||||
|
|
||||||
|
|
||||||
// "Bestätigen" button
|
|
||||||
lowerRightMenu = new Container();
|
|
||||||
tradeButton.setPreferredSize(new Vector3f(200, 60, 0));
|
|
||||||
tradeButton.setFontSize(30);
|
|
||||||
tradeButton.addClickCommands(s -> ifTopDialog(() -> {
|
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
|
||||||
close();
|
|
||||||
new TradeMenu(app).open();
|
|
||||||
}));
|
|
||||||
lowerRightMenu.addChild(tradeButton);
|
|
||||||
|
|
||||||
// Position the container near the bottom-right corner
|
|
||||||
lowerRightMenu.setLocalTranslation(new Vector3f(app.getCamera().getWidth() - 680, 100, 8)); // X: 220px from the right, Y: 50px above the bottom
|
|
||||||
app.getGuiNode().attachChild(lowerRightMenu);
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
Label spacer = middleSection.addChild(new Label("")); // Spacer
|
|
||||||
spacer.setPreferredSize(new Vector3f(1, 50, 0));
|
|
||||||
|
|
||||||
return mainContent;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Creates a column for trade objects (left or right side).
|
|
||||||
*
|
|
||||||
* @param label The label for the column.
|
|
||||||
* @param isLeft Whether this column is the left side.
|
|
||||||
* @return The column container.
|
|
||||||
*/
|
|
||||||
private Container createTradeColumn(String label, boolean isLeft) {
|
|
||||||
Container column = new Container(new SpringGridLayout(Axis.Y, Axis.X));
|
|
||||||
column.setBackground(new QuadBackgroundComponent(new ColorRGBA(ColorRGBA.White)));
|
|
||||||
|
|
||||||
Label columnLabel = column.addChild(new Label(label));
|
|
||||||
columnLabel.setFontSize(24);
|
|
||||||
columnLabel.setBackground(translucentWhiteBackground);
|
|
||||||
|
|
||||||
// Add dropdowns
|
|
||||||
column.addChild(new Label("Gebäude:"));
|
|
||||||
Selector<String> buildingSelector = column.addChild(new Selector<>(getSampleItems(),"glass"));
|
|
||||||
buildingSelector.setInsets(new Insets3f(5, 10, 5, 10));
|
|
||||||
buildingSelector.setBackground(new QuadBackgroundComponent(new ColorRGBA(ColorRGBA.Black)));
|
|
||||||
|
|
||||||
column.addChild(new Label("Währung:"));
|
|
||||||
TextField currencyInput = column.addChild(new TextField(""));
|
|
||||||
currencyInput.setInsets(new Insets3f(5, 10, 5, 10));
|
|
||||||
currencyInput.setBackground(new QuadBackgroundComponent(new ColorRGBA(ColorRGBA.Black)));
|
|
||||||
|
|
||||||
column.addChild(new Label("Sonderkarten:"));
|
|
||||||
Selector<String> specialCardSelector = column.addChild(new Selector<>(getSampleItems(),"glass"));
|
|
||||||
specialCardSelector.setInsets(new Insets3f(5, 10, 5, 10));
|
|
||||||
specialCardSelector.setBackground(new QuadBackgroundComponent(new ColorRGBA(ColorRGBA.Black)));
|
|
||||||
|
|
||||||
|
|
||||||
// Assign selectors to corresponding fields
|
|
||||||
if (isLeft) {
|
|
||||||
leftBuildingSelector = buildingSelector;
|
|
||||||
leftSpecialCardSelector = specialCardSelector;
|
|
||||||
leftCurrencyInput = currencyInput;
|
|
||||||
|
|
||||||
// "Abbrechen" button
|
|
||||||
lowerLeftMenu = new Container();
|
|
||||||
cancelButton.setPreferredSize(new Vector3f(200, 60, 0));
|
|
||||||
cancelButton.setFontSize(30);
|
|
||||||
cancelButton.addClickCommands(s -> ifTopDialog(() -> {
|
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
|
||||||
this.close();
|
|
||||||
}));
|
|
||||||
lowerLeftMenu.addChild(cancelButton);
|
|
||||||
|
|
||||||
// Position the container near the bottom-left corner
|
|
||||||
lowerLeftMenu.setLocalTranslation(new Vector3f(50, 100, 8)); // Adjust X and Y to align with the bottom-left corner
|
|
||||||
app.getGuiNode().attachChild(lowerLeftMenu);
|
|
||||||
|
|
||||||
Label spacer = column.addChild(new Label("")); // Spacer
|
|
||||||
spacer.setPreferredSize(new Vector3f(1, 130, 0));
|
|
||||||
|
|
||||||
} else {
|
|
||||||
rightBuildingSelector = buildingSelector;
|
|
||||||
rightSpecialCardSelector = specialCardSelector;
|
|
||||||
rightCurrencyInput = currencyInput;
|
|
||||||
|
|
||||||
Label spacer = column.addChild(new Label("")); // Spacer
|
|
||||||
spacer.setPreferredSize(new Vector3f(1, 130, 0));
|
|
||||||
}
|
|
||||||
|
|
||||||
return column;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Provides sample dropdown items.
|
|
||||||
*/
|
|
||||||
private VersionedList<String> getSampleItems() {
|
|
||||||
VersionedList<String> items = new VersionedList<>();
|
|
||||||
items.add("Option 1");
|
|
||||||
items.add("Option 2");
|
|
||||||
items.add("Option 3");
|
|
||||||
return items;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Adds a background image to the dialog.
|
|
||||||
*/
|
|
||||||
private void addBackgroundImage() {
|
|
||||||
Texture backgroundImage = app.getAssetManager().loadTexture("Pictures/unibw-Bib2.png");
|
|
||||||
Quad quad = new Quad(app.getCamera().getWidth(), app.getCamera().getHeight());
|
|
||||||
Geometry background = new Geometry("Background", quad);
|
|
||||||
Material backgroundMaterial = new Material(app.getAssetManager(), "Common/MatDefs/Misc/Unshaded.j3md");
|
|
||||||
backgroundMaterial.setTexture("ColorMap", backgroundImage);
|
|
||||||
background.setMaterial(backgroundMaterial);
|
|
||||||
background.setLocalTranslation(0, 0, 6); // Position behind other GUI elements
|
|
||||||
app.getGuiNode().attachChild(background);
|
|
||||||
}
|
|
||||||
|
|
||||||
private String truncateText(String text, int maxLength) {
|
|
||||||
return text.length() > maxLength ? text.substring(0, maxLength) + "..." : text;
|
|
||||||
}
|
|
||||||
|
|
||||||
private void updateSelectionsField(TextField selectionsField, Selector<String> buildingSelector, TextField currencyInput, Selector<String> specialCardSelector) {
|
|
||||||
// Get selections from the building selector
|
|
||||||
String buildingSelections = buildingSelector != null && buildingSelector.getSelectedItem() != null
|
|
||||||
? buildingSelector.getSelectedItem().trim()
|
|
||||||
: "";
|
|
||||||
|
|
||||||
// Get text from the currency input
|
|
||||||
String currencySelections = currencyInput != null
|
|
||||||
? currencyInput.getText().trim()
|
|
||||||
: "";
|
|
||||||
|
|
||||||
// Get selections from the special card selector
|
|
||||||
String specialCardSelections = specialCardSelector != null && specialCardSelector.getSelectedItem() != null
|
|
||||||
? specialCardSelector.getSelectedItem().trim()
|
|
||||||
: "";
|
|
||||||
// Build the combined text without adding unnecessary spaces
|
|
||||||
StringBuilder combinedText = new StringBuilder();
|
|
||||||
|
|
||||||
if (!buildingSelections.isEmpty()) {
|
|
||||||
combinedText.append(buildingSelections);
|
|
||||||
}
|
|
||||||
if (!currencySelections.isEmpty()) {
|
|
||||||
if (combinedText.length() > 0) {
|
|
||||||
combinedText.append(" | "); // Add a separator if there's already text
|
|
||||||
}
|
|
||||||
combinedText.append(currencySelections);
|
|
||||||
}
|
|
||||||
if (!specialCardSelections.isEmpty()) {
|
|
||||||
if (combinedText.length() > 0) {
|
|
||||||
combinedText.append(" | "); // Add a separator if there's already text
|
|
||||||
}
|
|
||||||
combinedText.append(specialCardSelections);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Update the content of the TextField
|
|
||||||
selectionsField.setText(combinedText.toString());
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Handles the escape action for the dialog.
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public void escape() {
|
|
||||||
new SettingsMenu(app).open();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Updates the dialog periodically, called by the dialog manager.
|
|
||||||
*
|
|
||||||
* @param delta The time elapsed since the last update.
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public void update(float delta) {
|
|
||||||
// Periodic updates (if needed) can be implemented here
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Functional interface for a selection action listener.
|
|
||||||
*/
|
|
||||||
@FunctionalInterface
|
|
||||||
private interface SelectionActionListener<T> {
|
|
||||||
void onSelectionChanged(T selection);
|
|
||||||
}
|
|
||||||
/**
|
|
||||||
* Adds a custom action listener to the Selector.
|
|
||||||
*/
|
|
||||||
private void addCustomSelectionListener(Selector<String> selector, SelectionActionListener<String> listener) {
|
|
||||||
VersionedReference<Set<Integer>> selectionRef = selector.getSelectionModel().createReference();
|
|
||||||
|
|
||||||
app.getStateManager().attach(new BaseAppState() {
|
|
||||||
@Override
|
|
||||||
public void update(float tpf) {
|
|
||||||
if (selectionRef.update()) {
|
|
||||||
String selected = selector.getSelectedItem();
|
|
||||||
listener.onSelectionChanged(selected);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void initialize(Application app) {}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void cleanup(Application app) {}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void onEnable() {}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void onDisable() {}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
private void monitorTextFieldChanges(TextField textField, Runnable onChange) {
|
|
||||||
VersionedReference<DocumentModel> ref = textField.getDocumentModel().createReference();
|
|
||||||
|
|
||||||
app.getStateManager().attach(new BaseAppState() {
|
|
||||||
@Override
|
|
||||||
public void update(float tpf) {
|
|
||||||
if (ref.update()) {
|
|
||||||
onChange.run();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void initialize(Application app) {}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void cleanup(Application app) {}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void onEnable() {}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
protected void onDisable() {}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@@ -1,37 +0,0 @@
|
|||||||
package pp.monopoly.client.gui;
|
|
||||||
|
|
||||||
import com.simsilica.lemur.Slider;
|
|
||||||
|
|
||||||
import pp.monopoly.client.GameMusic;
|
|
||||||
/**
|
|
||||||
* The VolumeSlider class represents the Volume Slider in the Menu.
|
|
||||||
* It extends the Slider class and provides functionalities for setting the music volume,
|
|
||||||
* with the help of the Slider in the GUI
|
|
||||||
*/
|
|
||||||
public class VolumeSlider extends Slider {
|
|
||||||
|
|
||||||
private final pp.monopoly.client.GameMusic music;
|
|
||||||
private double vol;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructs the Volume Slider for the Menu dialog
|
|
||||||
* @param music the music instance
|
|
||||||
*/
|
|
||||||
public VolumeSlider(GameMusic music) {
|
|
||||||
super();
|
|
||||||
this.music = music;
|
|
||||||
vol = GameMusic.volumeInPreferences();
|
|
||||||
getModel().setPercent(vol);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* when triggered it updates the volume to the value set with the slider
|
|
||||||
*/
|
|
||||||
public void update() {
|
|
||||||
if (vol != getModel().getPercent()) {
|
|
||||||
vol = getModel().getPercent();
|
|
||||||
music.setVolume( (float) vol);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@@ -1,504 +0,0 @@
|
|||||||
/*
|
|
||||||
* $Id$
|
|
||||||
*
|
|
||||||
* Copyright (c) 2014, Simsilica, LLC
|
|
||||||
* All rights reserved.
|
|
||||||
*
|
|
||||||
* Redistribution and use in source and binary forms, with or without
|
|
||||||
* modification, are permitted provided that the following conditions
|
|
||||||
* are met:
|
|
||||||
*
|
|
||||||
* 1. Redistributions of source code must retain the above copyright
|
|
||||||
* notice, this list of conditions and the following disclaimer.
|
|
||||||
*
|
|
||||||
* 2. Redistributions in binary form must reproduce the above copyright
|
|
||||||
* notice, this list of conditions and the following disclaimer in
|
|
||||||
* the documentation and/or other materials provided with the
|
|
||||||
* distribution.
|
|
||||||
*
|
|
||||||
* 3. Neither the name of the copyright holder nor the names of its
|
|
||||||
* contributors may be used to endorse or promote products derived
|
|
||||||
* from this software without specific prior written permission.
|
|
||||||
*
|
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
||||||
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
||||||
* COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
|
||||||
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
||||||
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
||||||
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
||||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
||||||
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
||||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
|
||||||
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package pp.monopoly.client.gui.hslider;
|
|
||||||
|
|
||||||
import com.jme3.scene.Node;
|
|
||||||
import com.jme3.scene.Spatial;
|
|
||||||
import com.simsilica.lemur.Axis;
|
|
||||||
import com.simsilica.lemur.Button;
|
|
||||||
import com.simsilica.lemur.FillMode;
|
|
||||||
import com.simsilica.lemur.GuiGlobals;
|
|
||||||
import com.simsilica.lemur.HAlignment;
|
|
||||||
import com.simsilica.lemur.Label;
|
|
||||||
import com.simsilica.lemur.Panel;
|
|
||||||
import com.simsilica.lemur.TextField;
|
|
||||||
import com.simsilica.lemur.component.SpringGridLayout;
|
|
||||||
import com.simsilica.lemur.core.GuiControl;
|
|
||||||
import com.simsilica.lemur.core.VersionedReference;
|
|
||||||
import com.simsilica.lemur.grid.GridModel;
|
|
||||||
import com.simsilica.lemur.style.Attributes;
|
|
||||||
import com.simsilica.lemur.style.ElementId;
|
|
||||||
import com.simsilica.lemur.style.StyleDefaults;
|
|
||||||
import com.simsilica.lemur.style.Styles;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* @author Paul Speed
|
|
||||||
*/
|
|
||||||
public class GridPanel extends Panel {
|
|
||||||
|
|
||||||
public static final String ELEMENT_ID = "grid";
|
|
||||||
|
|
||||||
private GridModel<Panel> model;
|
|
||||||
private VersionedReference<GridModel<Panel>> modelRef;
|
|
||||||
private SpringGridLayout layout;
|
|
||||||
private int visibleRows = 5;
|
|
||||||
private int visibleColumns = 5;
|
|
||||||
private int row = 0;
|
|
||||||
private int column = 0;
|
|
||||||
private Float alpha; // for setting to new children
|
|
||||||
private Float[] columnwidths = null;
|
|
||||||
private Float[] rowheight = null;
|
|
||||||
private boolean widthsupdate = false;
|
|
||||||
private HAlignment [] columnHalignement = null;
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public GridPanel(GridModel<Panel> model ) {
|
|
||||||
this(true, model, new ElementId(ELEMENT_ID), null);
|
|
||||||
}
|
|
||||||
|
|
||||||
public GridPanel(GridModel<Panel> model, String style ) {
|
|
||||||
this(true, model, new ElementId(ELEMENT_ID), style);
|
|
||||||
}
|
|
||||||
|
|
||||||
public GridPanel(GridModel<Panel> model, ElementId elementId, String style ) {
|
|
||||||
this(true, model, elementId, style);
|
|
||||||
}
|
|
||||||
|
|
||||||
protected GridPanel(boolean applyStyles, GridModel<Panel> model,
|
|
||||||
ElementId elementId, String style ) {
|
|
||||||
super(false, elementId, style);
|
|
||||||
|
|
||||||
this.layout = new SpringGridLayout(Axis.Y, Axis.X,
|
|
||||||
FillMode.ForcedEven,
|
|
||||||
FillMode.ForcedEven);
|
|
||||||
getControl(GuiControl.class).setLayout(layout);
|
|
||||||
|
|
||||||
if( applyStyles ) {
|
|
||||||
Styles styles = GuiGlobals.getInstance().getStyles();
|
|
||||||
styles.applyStyles(this, elementId, style);
|
|
||||||
}
|
|
||||||
|
|
||||||
setModel(model);
|
|
||||||
}
|
|
||||||
// change the layout if necessary
|
|
||||||
public void setLayout(SpringGridLayout lay) {
|
|
||||||
this.layout = lay;
|
|
||||||
getControl(GuiControl.class).getLayout().clearChildren();
|
|
||||||
getControl(GuiControl.class).setLayout(layout);
|
|
||||||
|
|
||||||
this.modelRef = null;
|
|
||||||
if( this.model != null ) {
|
|
||||||
this.modelRef = model.createReference();
|
|
||||||
refreshGrid();
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
@StyleDefaults(ELEMENT_ID)
|
|
||||||
public static void initializeDefaultStyles( Attributes attrs ) {
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setModel( GridModel<Panel> model ) {
|
|
||||||
|
|
||||||
if( this.model == model ) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
if( this.model != null ) {
|
|
||||||
// Clear the old panel
|
|
||||||
getControl(GuiControl.class).getLayout().clearChildren();
|
|
||||||
this.modelRef = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
this.model = model;
|
|
||||||
|
|
||||||
if( this.model != null ) {
|
|
||||||
this.modelRef = model.createReference();
|
|
||||||
refreshGrid();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public GridModel<Panel> getModel() {
|
|
||||||
return model;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setRow( int row ) {
|
|
||||||
setLocation(row, column);
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getRow() {
|
|
||||||
return row;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setColumn( int column ) {
|
|
||||||
setLocation(row, column);
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getColumn() {
|
|
||||||
return column;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Panel getCell( int r, int c ) {
|
|
||||||
r = r - row;
|
|
||||||
c = c - column;
|
|
||||||
if( r < 0 || c < 0 || r >= visibleRows || c >= visibleColumns ) {
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
return (Panel)layout.getChild(r, c);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setLocation( int row, int column ) {
|
|
||||||
if( this.row == row && this.column == column ) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
this.row = row;
|
|
||||||
this.column = column;
|
|
||||||
refreshGrid();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVisibleSize( int rows, int columns ) {
|
|
||||||
this.visibleRows = rows;
|
|
||||||
this.visibleColumns = columns;
|
|
||||||
getControl(GuiControl.class).getLayout().clearChildren();
|
|
||||||
refreshGrid();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVisibleRows( int rows ) {
|
|
||||||
setVisibleSize(rows, visibleColumns);
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getVisibleRows() {
|
|
||||||
return visibleRows;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setVisibleColumns( int columns ) {
|
|
||||||
setVisibleSize(visibleRows, columns);
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getVisibleColumns() {
|
|
||||||
return visibleColumns;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setAlpha( float alpha, boolean recursive ) {
|
|
||||||
this.alpha = alpha;
|
|
||||||
super.setAlpha(alpha, recursive);
|
|
||||||
}
|
|
||||||
|
|
||||||
protected void refreshGrid() {
|
|
||||||
widthsupdate = false;
|
|
||||||
|
|
||||||
if( model == null ) {
|
|
||||||
getControl(GuiControl.class).getLayout().clearChildren();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
for( int r = row; r < row + visibleRows; r++ ) {
|
|
||||||
for( int c = column; c < column + visibleColumns; c++ ) {
|
|
||||||
Node existing = layout.getChild(r-row, c-column);
|
|
||||||
if( r < 0 || r >= model.getRowCount() || c < 0 || c >= model.getColumnCount() ) {
|
|
||||||
// Out of bounds
|
|
||||||
layout.addChild(null, r-row, c-column);
|
|
||||||
} else {
|
|
||||||
Panel child = model.getCell(r, c, (Panel)existing);
|
|
||||||
|
|
||||||
// we check if there is a size for either rowheight or columnwidth stored
|
|
||||||
Float ytemp = null;
|
|
||||||
Float xtemp = null;
|
|
||||||
|
|
||||||
if (columnwidths !=null) {
|
|
||||||
if (columnwidths.length > c) {
|
|
||||||
if (columnwidths[c] != null) xtemp = columnwidths[c];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (rowheight != null) {
|
|
||||||
if (rowheight.length > r) {
|
|
||||||
if (rowheight[r] !=null) ytemp = rowheight[r];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// and only if, we set the preferred size
|
|
||||||
if (ytemp !=null || xtemp != null) {
|
|
||||||
child.setPreferredSize(null);
|
|
||||||
if (xtemp != null) child.setPreferredSize(child.getPreferredSize().clone().setX(xtemp));
|
|
||||||
if (ytemp !=null) child.setPreferredSize(child.getPreferredSize().clone().setY(ytemp));
|
|
||||||
}
|
|
||||||
|
|
||||||
if (columnHalignement != null) {
|
|
||||||
if (columnHalignement.length > c) {
|
|
||||||
if (columnHalignement[c] != null) {
|
|
||||||
// we only set the alignement for "text" elements attached to the listbox
|
|
||||||
// for others e.g. progressbar etc. we should call the element and do the changes there
|
|
||||||
if (child instanceof Button) ((Button) child).setTextHAlignment(columnHalignement[c]);
|
|
||||||
if (child instanceof Label) ((Label) child).setTextHAlignment(columnHalignement[c]);
|
|
||||||
if (child instanceof TextField)
|
|
||||||
((TextField) child).setTextHAlignment(columnHalignement[c]);
|
|
||||||
} else if (child instanceof Button) ((Button) child).setTextHAlignment(HAlignment.Left);
|
|
||||||
} else if (child instanceof Button) ((Button) child).setTextHAlignment(HAlignment.Left);
|
|
||||||
} else if (child instanceof Button) ((Button) child).setTextHAlignment(HAlignment.Left);
|
|
||||||
|
|
||||||
if( child != existing ) {
|
|
||||||
// Make sure new children pick up the alpha of the container
|
|
||||||
if( alpha != null && alpha != 1 ) {
|
|
||||||
child.setAlpha(alpha);
|
|
||||||
}
|
|
||||||
|
|
||||||
layout.addChild(child, r-row, c-column);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void updateLogicalState( float tpf ) {
|
|
||||||
super.updateLogicalState(tpf);
|
|
||||||
|
|
||||||
if( modelRef.update() ) {
|
|
||||||
refreshGrid();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (widthsupdate) refreshGrid();
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return getClass().getName() + "[elementId=" + getElementId() + "]";
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public Float[] getColumnwidths() {
|
|
||||||
return columnwidths;
|
|
||||||
}
|
|
||||||
|
|
||||||
public Float[] getRowheights() {
|
|
||||||
return rowheight;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public void setRowheight(Float rowheight, int rownumber_starting_with_0){
|
|
||||||
// adds or replaces a columnwidth
|
|
||||||
if (rownumber_starting_with_0 < 0) return;
|
|
||||||
int size = rownumber_starting_with_0+1;
|
|
||||||
if (this.rowheight != null) {
|
|
||||||
size = Math.max(size, this.rowheight.length);
|
|
||||||
}
|
|
||||||
preparegridsizes(size,false);
|
|
||||||
setcheckedsize(rowheight,rownumber_starting_with_0,true,true);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setColumnwidths(Float columnwidth, int columnnumber_starting_with_0) {
|
|
||||||
// adds or replaces a columnwidth
|
|
||||||
if (columnnumber_starting_with_0 <0) return;
|
|
||||||
int size = columnnumber_starting_with_0+1;
|
|
||||||
if (this.columnwidths != null) {
|
|
||||||
size = Math.max(size, this.columnwidths.length);
|
|
||||||
}
|
|
||||||
preparegridsizes(size,true);
|
|
||||||
setcheckedsize(columnwidth,columnnumber_starting_with_0,true,false);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public void setRowheight (Float[] rowheights_or_null) {
|
|
||||||
// replaces the given rowheights and only keep the number of rows given
|
|
||||||
setRowheight(rowheights_or_null,true);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setColumnwidths (Float[] columnwidths_or_null) {
|
|
||||||
// replaces the given columnwidths and only keep the number of columns given
|
|
||||||
setColumnwidths(columnwidths_or_null,true);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public void setRowheight(Float[] rowheights_or_null, boolean write_null_values) {
|
|
||||||
// replaces the given rowheights and only keep the number of rows given
|
|
||||||
// null values either overwrite or will be ignored
|
|
||||||
Integer tmp = null;
|
|
||||||
if (rowheights_or_null != null) tmp = rowheights_or_null.length;
|
|
||||||
if (preparegridsizes(tmp,false)) {
|
|
||||||
for (int i = 0; i <tmp;i++) {
|
|
||||||
setcheckedsize(rowheights_or_null[i],i,write_null_values,true);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setColumnwidths(Float[] columnwidths_or_null, boolean write_null_values) {
|
|
||||||
// replaces the given columnwidths_or_null and only keep the number of columns given
|
|
||||||
// null values either overwrite or will be ignored
|
|
||||||
Integer tmp = null;
|
|
||||||
if (columnwidths_or_null != null) tmp = columnwidths_or_null.length;
|
|
||||||
if (preparegridsizes(tmp,true)) {
|
|
||||||
for (int i = 0; i <tmp;i++) {
|
|
||||||
setcheckedsize(columnwidths_or_null[i],i,write_null_values,false);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
private boolean preparegridsizes(Integer givenfieldsize, boolean width) {
|
|
||||||
// prepares and adjust the size of the field(s) that hold columnwidth or rowheights
|
|
||||||
if (givenfieldsize == null) {
|
|
||||||
if (width) { //either columns or rows will be set null
|
|
||||||
columnwidths =null;
|
|
||||||
} else {
|
|
||||||
rowheight = null;
|
|
||||||
}
|
|
||||||
for (Spatial p: this.getChildren()) {
|
|
||||||
Panel x = (Panel) p;
|
|
||||||
x.setPreferredSize(null); //we set all sizes to 0 as we will recalculate them with next update
|
|
||||||
}
|
|
||||||
widthsupdate = true;
|
|
||||||
return false; // no more activity needed
|
|
||||||
} else {
|
|
||||||
Float[] tmp;
|
|
||||||
tmp = new Float[givenfieldsize];
|
|
||||||
if (width) {
|
|
||||||
if (columnwidths == null) {
|
|
||||||
columnwidths = tmp;
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
int i = 0;
|
|
||||||
for (Float z:columnwidths) {
|
|
||||||
tmp[i] =z;
|
|
||||||
i++;
|
|
||||||
if (i>= givenfieldsize) break;
|
|
||||||
}
|
|
||||||
columnwidths = tmp; // we get what we have
|
|
||||||
} else {
|
|
||||||
if (rowheight == null) {
|
|
||||||
rowheight = tmp;
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
int i = 0;
|
|
||||||
for (Float z:rowheight) {
|
|
||||||
tmp[i] =z;
|
|
||||||
i++;
|
|
||||||
if (i>= givenfieldsize) break;
|
|
||||||
}
|
|
||||||
rowheight = tmp; // we get what we have
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private void setcheckedsize(Float size, int row_or_column, boolean override, boolean i_am_a_row) {
|
|
||||||
if (override || (size !=null)) {
|
|
||||||
if (i_am_a_row) {
|
|
||||||
rowheight[row_or_column] = size;
|
|
||||||
} else {
|
|
||||||
columnwidths[row_or_column] = size;
|
|
||||||
}
|
|
||||||
widthsupdate = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// public void setRowheight(Float rowheight_or_null){
|
|
||||||
// if (rowheight_or_null<=0) return;
|
|
||||||
// this.rowheight = rowheight_or_null;
|
|
||||||
// widthsupdate = true;
|
|
||||||
// }
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
public void setHalignements(HAlignment[] hals) {
|
|
||||||
setHalignements(hals,false);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setHalignements(HAlignment[] hals, boolean overridestandard) {
|
|
||||||
if (checkexistinghal(hals)) {
|
|
||||||
int i =0;
|
|
||||||
for (HAlignment z:hals) {
|
|
||||||
setHalignementchecked(z,i,overridestandard);
|
|
||||||
i++;
|
|
||||||
if (i>=columnHalignement.length) return; // we ignore given HAlignement that is out of column bound
|
|
||||||
}
|
|
||||||
if (!overridestandard ) return;
|
|
||||||
for (int u = i; u<columnHalignement.length;u++) {
|
|
||||||
setHalignementchecked(null,u,overridestandard); // override existing HAlignements
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setHalignements(HAlignment hal, int column) {
|
|
||||||
checkexistinghal(new HAlignment[]{HAlignment.Center});
|
|
||||||
if (column < columnHalignement.length) setHalignementchecked(hal,column,true);
|
|
||||||
}
|
|
||||||
|
|
||||||
private void setHalignementchecked(HAlignment hal, int column,boolean override) {
|
|
||||||
if (override || (hal !=null)) {
|
|
||||||
columnHalignement[column] = hal;
|
|
||||||
widthsupdate = true;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
private boolean checkexistinghal(HAlignment[] givenfield) {
|
|
||||||
// delete the given Halignements
|
|
||||||
if (givenfield == null) {
|
|
||||||
columnHalignement =null;
|
|
||||||
for (Spatial p: this.getChildren()) {
|
|
||||||
Button x = (Button)((Panel) p);
|
|
||||||
x.setTextHAlignment(HAlignment.Left); //standard HAlignement
|
|
||||||
}
|
|
||||||
widthsupdate = true;
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
// or prepare if we have no columnHalignement yet
|
|
||||||
HAlignment[] tmp;
|
|
||||||
if (columnHalignement == null) {
|
|
||||||
tmp = new HAlignment[model.getColumnCount()];
|
|
||||||
columnHalignement = tmp;
|
|
||||||
} else {
|
|
||||||
if (!(columnHalignement.length ==model.getColumnCount() )) {
|
|
||||||
tmp = new HAlignment[model.getColumnCount()];
|
|
||||||
int i = 0;
|
|
||||||
for (HAlignment z:columnHalignement) {
|
|
||||||
tmp[i] =z;
|
|
||||||
i++;
|
|
||||||
if (i>=model.getColumnCount()) break;
|
|
||||||
}
|
|
||||||
columnHalignement = tmp;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
public HAlignment[] getColumnHalignement() {
|
|
||||||
return columnHalignement;
|
|
||||||
}
|
|
||||||
}
|
|
@@ -1,135 +0,0 @@
|
|||||||
/*
|
|
||||||
* $Id$
|
|
||||||
*
|
|
||||||
* Copyright (c) 2014, Simsilica, LLC
|
|
||||||
* All rights reserved.
|
|
||||||
*
|
|
||||||
* Redistribution and use in source and binary forms, with or without
|
|
||||||
* modification, are permitted provided that the following conditions
|
|
||||||
* are met:
|
|
||||||
*
|
|
||||||
* 1. Redistributions of source code must retain the above copyright
|
|
||||||
* notice, this list of conditions and the following disclaimer.
|
|
||||||
*
|
|
||||||
* 2. Redistributions in binary form must reproduce the above copyright
|
|
||||||
* notice, this list of conditions and the following disclaimer in
|
|
||||||
* the documentation and/or other materials provided with the
|
|
||||||
* distribution.
|
|
||||||
*
|
|
||||||
* 3. Neither the name of the copyright holder nor the names of its
|
|
||||||
* contributors may be used to endorse or promote products derived
|
|
||||||
* from this software without specific prior written permission.
|
|
||||||
*
|
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
||||||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
|
|
||||||
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
|
|
||||||
* COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
|
|
||||||
* INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
||||||
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
|
|
||||||
* SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
||||||
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
|
|
||||||
* STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
||||||
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
|
|
||||||
* OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
package pp.monopoly.client.gui.hslider;
|
|
||||||
|
|
||||||
import java.util.AbstractList;
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
|
||||||
|
|
||||||
import com.simsilica.lemur.core.VersionedObject;
|
|
||||||
import com.simsilica.lemur.core.VersionedReference;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
*
|
|
||||||
* @author Paul Speed
|
|
||||||
*/
|
|
||||||
public class VersionedList<T> extends AbstractList<T>
|
|
||||||
implements VersionedObject<List<T>> {
|
|
||||||
private long version = 0;
|
|
||||||
private List<T> list;
|
|
||||||
|
|
||||||
protected VersionedList(List<T> items, boolean copy ) {
|
|
||||||
if( copy ) {
|
|
||||||
list = new ArrayList<T>();
|
|
||||||
list.addAll(items);
|
|
||||||
} else {
|
|
||||||
this.list = items;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public VersionedList() {
|
|
||||||
this(new ArrayList<T>(), false);
|
|
||||||
}
|
|
||||||
|
|
||||||
public VersionedList(List<T> items ) {
|
|
||||||
this(items, true);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Wraps a list in a VersionedList instead of copying it.
|
|
||||||
* This is useful for cases where a VersionedList is required
|
|
||||||
* but strict versioning is not, for example, passing a static list
|
|
||||||
* to a ListBox. Changes to the wrapped list obviously don't
|
|
||||||
* trigger version changes in the wrapper. Only changes through
|
|
||||||
* the wrapper will increment the version.
|
|
||||||
*/
|
|
||||||
public static <T> VersionedList<T> wrap( List<T> list ) {
|
|
||||||
return new VersionedList<T>(list, false);
|
|
||||||
}
|
|
||||||
|
|
||||||
public void incrementVersion() { // changed this to public
|
|
||||||
version++;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public long getVersion() {
|
|
||||||
return version;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public List<T> getObject() {
|
|
||||||
return this;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public VersionedReference<List<T>> createReference() {
|
|
||||||
return new VersionedReference<List<T>>(this);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public T get( int i ) {
|
|
||||||
return list.get(i);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int size() {
|
|
||||||
return list.size();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public T set( int i, T val ) {
|
|
||||||
T result = list.set(i, val);
|
|
||||||
incrementVersion();
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void add( int i, T val ) {
|
|
||||||
list.add(i, val);
|
|
||||||
incrementVersion();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public T remove( int i ) {
|
|
||||||
T result = list.remove(i);
|
|
||||||
incrementVersion();
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
@@ -1,135 +0,0 @@
|
|||||||
package pp.monopoly.client.gui.popups;
|
|
||||||
|
|
||||||
import com.jme3.material.Material;
|
|
||||||
import com.jme3.material.RenderState.BlendMode;
|
|
||||||
import com.jme3.math.ColorRGBA;
|
|
||||||
import com.jme3.scene.Geometry;
|
|
||||||
import com.jme3.scene.shape.Quad;
|
|
||||||
import com.simsilica.lemur.Container;
|
|
||||||
import com.simsilica.lemur.Label;
|
|
||||||
import com.simsilica.lemur.component.QuadBackgroundComponent;
|
|
||||||
import com.simsilica.lemur.style.ElementId;
|
|
||||||
|
|
||||||
import pp.dialog.Dialog;
|
|
||||||
import pp.monopoly.client.MonopolyApp;
|
|
||||||
import pp.monopoly.client.gui.SettingsMenu;
|
|
||||||
import pp.monopoly.model.fields.BuildingProperty;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* TODO Kommentare fixen
|
|
||||||
* SettingsMenu ist ein Overlay-Menü, das durch ESC aufgerufen werden kann.
|
|
||||||
*/
|
|
||||||
public class BuildingPropertyCard extends Dialog {
|
|
||||||
private final MonopolyApp app;
|
|
||||||
private final Geometry overlayBackground;
|
|
||||||
private final Container buildingPropertyContainer;
|
|
||||||
private final Container backgroundContainer;
|
|
||||||
private int index = 37;
|
|
||||||
|
|
||||||
public BuildingPropertyCard(MonopolyApp app) {
|
|
||||||
super(app.getDialogManager());
|
|
||||||
this.app = app;
|
|
||||||
|
|
||||||
//Generate the corresponfing field
|
|
||||||
BuildingProperty field = (BuildingProperty) app.getGameLogic().getBoardManager().getFieldAtIndex(index);
|
|
||||||
|
|
||||||
// Halbtransparentes Overlay hinzufügen
|
|
||||||
overlayBackground = createOverlayBackground();
|
|
||||||
app.getGuiNode().attachChild(overlayBackground);
|
|
||||||
|
|
||||||
// Create the background container
|
|
||||||
backgroundContainer = new Container();
|
|
||||||
backgroundContainer.setBackground(new QuadBackgroundComponent(new ColorRGBA(0.8657f, 0.8735f, 0.8892f, 1.0f))); // Darker background
|
|
||||||
app.getGuiNode().attachChild(backgroundContainer);
|
|
||||||
|
|
||||||
// Hauptcontainer für die Gebäudekarte
|
|
||||||
buildingPropertyContainer = new Container();
|
|
||||||
buildingPropertyContainer.setBackground(new QuadBackgroundComponent(field.getColor().getColor()));
|
|
||||||
|
|
||||||
|
|
||||||
Label settingsTitle = buildingPropertyContainer.addChild(new Label( field.getName(), new ElementId("settings-title")));
|
|
||||||
settingsTitle.setFontSize(48);
|
|
||||||
|
|
||||||
// Text, der auf der Karte steht
|
|
||||||
// Die Preise werden dynamisch dem BoardManager entnommen
|
|
||||||
Container propertyValuesContainer = buildingPropertyContainer.addChild(new Container());
|
|
||||||
propertyValuesContainer.addChild(new Label("„Grundstückswert: " + field.getPrice() + " EUR", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.addChild(new Label("", new ElementId("label-Text")));// Leerzeile
|
|
||||||
propertyValuesContainer.addChild(new Label("„Miete allein: " + field.getAllRent().get(0)+ " EUR", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.addChild(new Label("„-mit 1 Haus: " + field.getAllRent().get(1) + " EUR", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.addChild(new Label("„-mit 2 Häuser: " + field.getAllRent().get(2) + " EUR", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.addChild(new Label("„-mit 3 Häuser: " + field.getAllRent().get(3) + " EUR", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.addChild(new Label("„-mit 4 Häuser: " + field.getAllRent().get(4) + " EUR", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.addChild(new Label("„-mit 1 Hotel: " + field.getAllRent().get(5) + " EUR", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.addChild(new Label("„-1 Haus kostet: " + field.getHousePrice()+ " EUR", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.addChild(new Label("", new ElementId("label-Text")));// Leerzeile
|
|
||||||
propertyValuesContainer.addChild(new Label("„Hypothek: " + field.getHypo() + " EUR", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.setBackground(new QuadBackgroundComponent(new ColorRGBA(0.4657f, 0.4735f, 0.4892f, 1.0f)));
|
|
||||||
|
|
||||||
//TODO eventuell diese Stelle löschen, da nur die BuyCard Kaufen und beenden hat
|
|
||||||
|
|
||||||
/*
|
|
||||||
// Beenden-Button
|
|
||||||
Button quitButton = foodFieldContainer.addChild(new Button("Beenden", new ElementId("button")));
|
|
||||||
quitButton.setFontSize(32);
|
|
||||||
// Kaufen-Button
|
|
||||||
Button buyButton = foodFieldContainer.addChild(new Button("Kaufen", new ElementId("button")));
|
|
||||||
buyButton.setFontSize(32);
|
|
||||||
*/
|
|
||||||
|
|
||||||
float padding = 10; // Padding around the settingsContainer for the background
|
|
||||||
backgroundContainer.setPreferredSize(buildingPropertyContainer.getPreferredSize().addLocal(padding, padding, 0));
|
|
||||||
|
|
||||||
|
|
||||||
// Zentriere das Menü
|
|
||||||
buildingPropertyContainer.setLocalTranslation(
|
|
||||||
(app.getCamera().getWidth() - buildingPropertyContainer.getPreferredSize().x) / 2,
|
|
||||||
(app.getCamera().getHeight() + buildingPropertyContainer.getPreferredSize().y) / 2,
|
|
||||||
8
|
|
||||||
);
|
|
||||||
|
|
||||||
backgroundContainer.setLocalTranslation(
|
|
||||||
(app.getCamera().getWidth() - buildingPropertyContainer.getPreferredSize().x - padding) / 2,
|
|
||||||
(app.getCamera().getHeight() + buildingPropertyContainer.getPreferredSize().y+ padding) / 2,
|
|
||||||
7
|
|
||||||
);
|
|
||||||
|
|
||||||
app.getGuiNode().attachChild(buildingPropertyContainer);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Erstellt einen halbtransparenten Hintergrund für das Menü.
|
|
||||||
*
|
|
||||||
* @return Geometrie des Overlays
|
|
||||||
*/
|
|
||||||
private Geometry createOverlayBackground() {
|
|
||||||
Quad quad = new Quad(app.getCamera().getWidth(), app.getCamera().getHeight());
|
|
||||||
Geometry overlay = new Geometry("Overlay", quad);
|
|
||||||
Material material = new Material(app.getAssetManager(), "Common/MatDefs/Misc/Unshaded.j3md");
|
|
||||||
material.setColor("Color", new ColorRGBA(0, 0, 0, 0.5f)); // Halbtransparent
|
|
||||||
material.getAdditionalRenderState().setBlendMode(BlendMode.Alpha);
|
|
||||||
overlay.setMaterial(material);
|
|
||||||
overlay.setLocalTranslation(0, 0, 0);
|
|
||||||
return overlay;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Schließt das Menü und entfernt die GUI-Elemente.
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public void close() {
|
|
||||||
app.getGuiNode().detachChild(buildingPropertyContainer); // Entferne das Menü
|
|
||||||
app.getGuiNode().detachChild(backgroundContainer); //Entfernt Rand
|
|
||||||
app.getGuiNode().detachChild(overlayBackground); // Entferne das Overlay
|
|
||||||
super.close();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setIndex(int index) {
|
|
||||||
this.index = index;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void escape() {
|
|
||||||
new SettingsMenu(app).open();
|
|
||||||
}
|
|
||||||
}
|
|
@@ -1,112 +0,0 @@
|
|||||||
package pp.monopoly.client.gui.popups;
|
|
||||||
|
|
||||||
import com.jme3.math.ColorRGBA;
|
|
||||||
import com.simsilica.lemur.Button;
|
|
||||||
import com.simsilica.lemur.Container;
|
|
||||||
import com.simsilica.lemur.Label;
|
|
||||||
import com.simsilica.lemur.component.QuadBackgroundComponent;
|
|
||||||
import com.simsilica.lemur.style.ElementId;
|
|
||||||
import pp.dialog.Dialog;
|
|
||||||
import pp.monopoly.client.MonopolyApp;
|
|
||||||
import pp.monopoly.client.gui.SettingsMenu;
|
|
||||||
import pp.monopoly.message.client.BuyPropertyRequest;
|
|
||||||
import pp.monopoly.model.fields.BoardManager;
|
|
||||||
import pp.monopoly.model.fields.BuildingProperty;
|
|
||||||
import pp.monopoly.notification.Sound;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* SettingsMenu ist ein Overlay-Menü, das durch ESC aufgerufen werden kann.
|
|
||||||
*/
|
|
||||||
public class BuyCard extends Dialog {
|
|
||||||
private final MonopolyApp app;
|
|
||||||
private final Container buyCardContainer;
|
|
||||||
private final Container backgroundContainer;
|
|
||||||
|
|
||||||
|
|
||||||
public BuyCard(MonopolyApp app) {
|
|
||||||
super(app.getDialogManager());
|
|
||||||
this.app = app;
|
|
||||||
|
|
||||||
//Generate the corresponfing field
|
|
||||||
int index = app.getGameLogic().getPlayerHandler().getPlayers().get(0).getFieldID();;
|
|
||||||
BuildingProperty field = (BuildingProperty) new BoardManager().getFieldAtIndex(index);
|
|
||||||
|
|
||||||
// Create the background container
|
|
||||||
backgroundContainer = new Container();
|
|
||||||
backgroundContainer.setBackground(new QuadBackgroundComponent(new ColorRGBA(0.8657f, 0.8735f, 0.8892f, 1.0f))); // Darker background
|
|
||||||
attachChild(backgroundContainer);
|
|
||||||
|
|
||||||
// Hauptcontainer für die Gebäudekarte
|
|
||||||
buyCardContainer = new Container();
|
|
||||||
|
|
||||||
|
|
||||||
Label title = buyCardContainer.addChild(new Label( field.getName(), new ElementId("label-Bold")));
|
|
||||||
title.setBackground(new QuadBackgroundComponent(field.getColor().getColor()));
|
|
||||||
title.setFontSize(48);
|
|
||||||
|
|
||||||
// Text, der auf der Karte steht
|
|
||||||
// Die Preise werden dynamisch dem BoardManager entnommen
|
|
||||||
Container propertyValuesContainer = buyCardContainer.addChild(new Container());
|
|
||||||
propertyValuesContainer.addChild(new Label("„Grundstückswert: " + field.getPrice() + " EUR", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.addChild(new Label("", new ElementId("label-Text")));// Leerzeile
|
|
||||||
propertyValuesContainer.addChild(new Label("„Miete allein: " + field.getAllRent().get(0)+ " EUR", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.addChild(new Label("„-mit 1 Haus: " + field.getAllRent().get(1) + " EUR", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.addChild(new Label("„-mit 2 Häuser: " + field.getAllRent().get(2) + " EUR", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.addChild(new Label("„-mit 3 Häuser: " + field.getAllRent().get(3) + " EUR", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.addChild(new Label("„-mit 4 Häuser: " + field.getAllRent().get(4) + " EUR", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.addChild(new Label("„-mit 1 Hotel: " + field.getAllRent().get(5) + " EUR", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.addChild(new Label("„-1 Haus kostet: " + field.getHousePrice()+ " EUR", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.addChild(new Label("", new ElementId("label-Text")));// Leerzeile
|
|
||||||
propertyValuesContainer.addChild(new Label("„Hypothek: " + field.getHypo() + " EUR", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.setBackground(new QuadBackgroundComponent(new ColorRGBA(0.4657f, 0.4735f, 0.4892f, 1.0f)));
|
|
||||||
|
|
||||||
// Beenden-Button
|
|
||||||
Button quitButton = buyCardContainer.addChild(new Button("Beenden", new ElementId("button")));
|
|
||||||
quitButton.setFontSize(32);
|
|
||||||
quitButton.addClickCommands(s -> ifTopDialog(() -> {
|
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
|
||||||
close();
|
|
||||||
}));
|
|
||||||
// Kaufen-Button
|
|
||||||
Button buyButton = buyCardContainer.addChild(new Button("Kaufen", new ElementId("button")));
|
|
||||||
buyButton.setFontSize(32);
|
|
||||||
buyButton.addClickCommands(s -> ifTopDialog( () -> {
|
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
|
||||||
app.getGameLogic().send(new BuyPropertyRequest());
|
|
||||||
}));
|
|
||||||
|
|
||||||
float padding = 10; // Padding around the settingsContainer for the background
|
|
||||||
backgroundContainer.setPreferredSize(buyCardContainer.getPreferredSize().addLocal(padding, padding, 0));
|
|
||||||
|
|
||||||
|
|
||||||
// Zentriere das Menü
|
|
||||||
buyCardContainer.setLocalTranslation(
|
|
||||||
(app.getCamera().getWidth() - buyCardContainer.getPreferredSize().x) / 2,
|
|
||||||
(app.getCamera().getHeight() + buyCardContainer.getPreferredSize().y) / 2,
|
|
||||||
8
|
|
||||||
);
|
|
||||||
|
|
||||||
backgroundContainer.setLocalTranslation(
|
|
||||||
(app.getCamera().getWidth() - buyCardContainer.getPreferredSize().x - padding) / 2,
|
|
||||||
(app.getCamera().getHeight() + buyCardContainer.getPreferredSize().y+ padding) / 2,
|
|
||||||
7
|
|
||||||
);
|
|
||||||
|
|
||||||
app.getGuiNode().attachChild(buyCardContainer);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Schließt das Menü und entfernt die GUI-Elemente.
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public void close() {
|
|
||||||
app.getGuiNode().detachChild(buyCardContainer); // Entferne das Menü
|
|
||||||
app.getGuiNode().detachChild(backgroundContainer); //Entfernt Rand
|
|
||||||
super.close();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void escape() {
|
|
||||||
new SettingsMenu(app).open();
|
|
||||||
}
|
|
||||||
}
|
|
@@ -1,119 +0,0 @@
|
|||||||
package pp.monopoly.client.gui.popups;
|
|
||||||
|
|
||||||
import com.jme3.math.ColorRGBA;
|
|
||||||
import com.simsilica.lemur.Button;
|
|
||||||
import com.simsilica.lemur.Container;
|
|
||||||
import com.simsilica.lemur.Label;
|
|
||||||
import com.simsilica.lemur.component.QuadBackgroundComponent;
|
|
||||||
import com.simsilica.lemur.style.ElementId;
|
|
||||||
import pp.dialog.Dialog;
|
|
||||||
import pp.monopoly.client.MonopolyApp;
|
|
||||||
import pp.monopoly.client.gui.SettingsMenu;
|
|
||||||
import pp.monopoly.message.client.BuyPropertyRequest;
|
|
||||||
import pp.monopoly.notification.Sound;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* SettingsMenu ist ein Overlay-Menü, das durch ESC aufgerufen werden kann.
|
|
||||||
*/
|
|
||||||
public class ConfirmTrade extends Dialog {
|
|
||||||
private final MonopolyApp app;
|
|
||||||
private final Container confirmTradeContainer;
|
|
||||||
private final Container backgroundContainer;
|
|
||||||
|
|
||||||
|
|
||||||
public ConfirmTrade(MonopolyApp app) {
|
|
||||||
super(app.getDialogManager());
|
|
||||||
this.app = app;
|
|
||||||
|
|
||||||
//Generate the corresponfing field
|
|
||||||
//int index = app.getGameLogic().getPlayerHandler().getPlayers().get(0).getFieldID();;
|
|
||||||
// BuildingProperty field = (BuildingProperty) new BoardManager().getFieldAtIndex(index);
|
|
||||||
|
|
||||||
// Create the background container
|
|
||||||
backgroundContainer = new Container();
|
|
||||||
backgroundContainer.setBackground(new QuadBackgroundComponent(new ColorRGBA(0.8657f, 0.8735f, 0.8892f, 1.0f))); // Darker background
|
|
||||||
attachChild(backgroundContainer);
|
|
||||||
|
|
||||||
// Hauptcontainer für die Gebäudekarte
|
|
||||||
confirmTradeContainer = new Container();
|
|
||||||
|
|
||||||
|
|
||||||
Label title = confirmTradeContainer.addChild(new Label( "Handel", new ElementId("label-Bold"))); //TODO ggf die Buttons Sprachabhängig von den Properties machen
|
|
||||||
title.setFontSize(48);
|
|
||||||
title.setColor(ColorRGBA.Black);
|
|
||||||
|
|
||||||
// Text, der auf der Karte steht
|
|
||||||
// Die Preise werden dynamisch dem BoardManager entnommen
|
|
||||||
Container propertyValuesContainer = confirmTradeContainer.addChild(new Container());
|
|
||||||
propertyValuesContainer.addChild(new Label("„Spieler XXX möchte:", new ElementId("label-Text"))); //TODO hier überall die entsprechenden Variablen einfügen
|
|
||||||
propertyValuesContainer.addChild(new Label("", new ElementId("label-Text")));// Leerzeile
|
|
||||||
propertyValuesContainer.addChild(new Label("- XXX Gebäude", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.addChild(new Label("- XXX EUR", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.addChild(new Label("- XXX Sonderkaten", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.addChild(new Label("", new ElementId("label-Text")));// Leerzeile
|
|
||||||
propertyValuesContainer.addChild(new Label("gegen:", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.addChild(new Label("", new ElementId("label-Text")));// Leerzeile
|
|
||||||
propertyValuesContainer.addChild(new Label("- XXX Gebäude", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.addChild(new Label("- XXX EUR", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.addChild(new Label("- XXX Sonderkaten", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.addChild(new Label("", new ElementId("label-Text")));// Leerzeile
|
|
||||||
propertyValuesContainer.addChild(new Label("tauschen, willst du das Angebot annehmen?", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.setBackground(new QuadBackgroundComponent(new ColorRGBA(0.4657f, 0.4735f, 0.4892f, 1.0f)));
|
|
||||||
|
|
||||||
// Beenden-Button
|
|
||||||
Button declineButton = confirmTradeContainer.addChild(new Button("Ablehnen", new ElementId("button"))); //TODO ggf die Buttons Sprachabhängig von den Properties machen
|
|
||||||
declineButton.setFontSize(32);
|
|
||||||
declineButton.addClickCommands(s -> ifTopDialog(() -> {
|
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
|
||||||
close();
|
|
||||||
}));
|
|
||||||
// Kaufen-Button
|
|
||||||
Button negotiateButton = confirmTradeContainer.addChild(new Button("Verhandeln", new ElementId("button"))); //TODO ggf die Buttons Sprachabhängig von den Properties machen
|
|
||||||
negotiateButton.setFontSize(32);
|
|
||||||
negotiateButton.addClickCommands(s -> ifTopDialog( () -> {
|
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
|
||||||
app.getGameLogic().send(new BuyPropertyRequest());
|
|
||||||
}));
|
|
||||||
// Kaufen-Button
|
|
||||||
Button confirmButton = confirmTradeContainer.addChild(new Button("Bestätigen", new ElementId("button"))); //TODO ggf die Buttons Sprachabhängig von den Properties machen
|
|
||||||
confirmButton.setFontSize(32);
|
|
||||||
confirmButton.addClickCommands(s -> ifTopDialog( () -> {
|
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
|
||||||
app.getGameLogic().send(new BuyPropertyRequest());
|
|
||||||
}));
|
|
||||||
|
|
||||||
float padding = 10; // Padding around the settingsContainer for the background
|
|
||||||
backgroundContainer.setPreferredSize(confirmTradeContainer.getPreferredSize().addLocal(padding, padding, 0));
|
|
||||||
|
|
||||||
|
|
||||||
// Zentriere das Menü
|
|
||||||
confirmTradeContainer.setLocalTranslation(
|
|
||||||
(app.getCamera().getWidth() - confirmTradeContainer.getPreferredSize().x) / 2,
|
|
||||||
(app.getCamera().getHeight() + confirmTradeContainer.getPreferredSize().y) / 2,
|
|
||||||
8
|
|
||||||
);
|
|
||||||
|
|
||||||
backgroundContainer.setLocalTranslation(
|
|
||||||
(app.getCamera().getWidth() - confirmTradeContainer.getPreferredSize().x - padding) / 2,
|
|
||||||
(app.getCamera().getHeight() + confirmTradeContainer.getPreferredSize().y+ padding) / 2,
|
|
||||||
7
|
|
||||||
);
|
|
||||||
|
|
||||||
app.getGuiNode().attachChild(confirmTradeContainer);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Schließt das Menü und entfernt die GUI-Elemente.
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public void close() {
|
|
||||||
app.getGuiNode().detachChild(confirmTradeContainer); // Entferne das Menü
|
|
||||||
app.getGuiNode().detachChild(backgroundContainer); //Entfernt Rand
|
|
||||||
super.close();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void escape() {
|
|
||||||
new SettingsMenu(app).open();
|
|
||||||
}
|
|
||||||
}
|
|
@@ -1,116 +0,0 @@
|
|||||||
package pp.monopoly.client.gui.popups;
|
|
||||||
|
|
||||||
import com.jme3.material.Material;
|
|
||||||
import com.jme3.material.RenderState.BlendMode;
|
|
||||||
import com.jme3.math.ColorRGBA;
|
|
||||||
import com.jme3.math.Vector3f;
|
|
||||||
import com.jme3.scene.Geometry;
|
|
||||||
import com.jme3.scene.shape.Quad;
|
|
||||||
import com.simsilica.lemur.Button;
|
|
||||||
import com.simsilica.lemur.Container;
|
|
||||||
import com.simsilica.lemur.Label;
|
|
||||||
import com.simsilica.lemur.component.QuadBackgroundComponent;
|
|
||||||
import com.simsilica.lemur.style.ElementId;
|
|
||||||
import pp.dialog.Dialog;
|
|
||||||
import pp.monopoly.client.MonopolyApp;
|
|
||||||
import pp.monopoly.client.gui.SettingsMenu;
|
|
||||||
/**
|
|
||||||
* SettingsMenu ist ein Overlay-Menü, das durch ESC aufgerufen werden kann.
|
|
||||||
*/
|
|
||||||
public class EventCard extends Dialog {
|
|
||||||
private final MonopolyApp app;
|
|
||||||
private final Geometry overlayBackground;
|
|
||||||
private final Container eventCardContainer;
|
|
||||||
private final Container backgroundContainer;
|
|
||||||
private final String description;
|
|
||||||
|
|
||||||
|
|
||||||
public EventCard(MonopolyApp app, String description) {
|
|
||||||
super(app.getDialogManager());
|
|
||||||
this.app = app;
|
|
||||||
this.description = description;
|
|
||||||
|
|
||||||
// Halbtransparentes Overlay hinzufügen
|
|
||||||
overlayBackground = createOverlayBackground();
|
|
||||||
app.getGuiNode().attachChild(overlayBackground);
|
|
||||||
|
|
||||||
// Create the background container
|
|
||||||
backgroundContainer = new Container();
|
|
||||||
backgroundContainer.setBackground(new QuadBackgroundComponent(new ColorRGBA(0.8657f, 0.8735f, 0.8892f, 1.0f))); // Darker background
|
|
||||||
app.getGuiNode().attachChild(backgroundContainer);
|
|
||||||
|
|
||||||
// Hauptcontainer für die Gebäudekarte
|
|
||||||
eventCardContainer = new Container();
|
|
||||||
eventCardContainer.setBackground(new QuadBackgroundComponent(new ColorRGBA(0.8657f, 0.8735f, 0.8892f, 1.0f)));
|
|
||||||
eventCardContainer.setPreferredSize(new Vector3f(550,400,10));
|
|
||||||
|
|
||||||
// Titel
|
|
||||||
// Die Namen werden dynamisch dem BoardManager entnommen
|
|
||||||
Label gateFieldTitle = eventCardContainer.addChild(new Label("Ereigniskarte", new ElementId("settings-title")));
|
|
||||||
gateFieldTitle.setFontSize(48);
|
|
||||||
gateFieldTitle.setColor(ColorRGBA.Black);
|
|
||||||
|
|
||||||
// Text, der auf der Karte steht
|
|
||||||
// Die Preise werden dynamisch dem BoardManager entnommen
|
|
||||||
Container propertyValuesContainer = eventCardContainer.addChild(new Container());
|
|
||||||
propertyValuesContainer.addChild(new Label(description, new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.setBackground(new QuadBackgroundComponent(new ColorRGBA(0.4657f, 0.4735f, 0.4892f, 1.0f)));
|
|
||||||
propertyValuesContainer.setPreferredSize(new Vector3f(300,200,10));
|
|
||||||
|
|
||||||
// Beenden-Button
|
|
||||||
Button quitButton = eventCardContainer.addChild(new Button("Jawohl", new ElementId("button")));
|
|
||||||
quitButton.setFontSize(32);
|
|
||||||
quitButton.addClickCommands(source -> close());
|
|
||||||
|
|
||||||
float padding = 10; // Padding around the settingsContainer for the background
|
|
||||||
backgroundContainer.setPreferredSize(eventCardContainer.getPreferredSize().addLocal(padding, padding, 0));
|
|
||||||
|
|
||||||
|
|
||||||
// Zentriere das Menü
|
|
||||||
eventCardContainer.setLocalTranslation(
|
|
||||||
(app.getCamera().getWidth() - eventCardContainer.getPreferredSize().x) / 2,
|
|
||||||
(app.getCamera().getHeight() + eventCardContainer.getPreferredSize().y) / 2,
|
|
||||||
8
|
|
||||||
);
|
|
||||||
|
|
||||||
backgroundContainer.setLocalTranslation(
|
|
||||||
(app.getCamera().getWidth() - eventCardContainer.getPreferredSize().x - padding) / 2,
|
|
||||||
(app.getCamera().getHeight() + eventCardContainer.getPreferredSize().y+ padding) / 2,
|
|
||||||
7
|
|
||||||
);
|
|
||||||
|
|
||||||
app.getGuiNode().attachChild(eventCardContainer);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Erstellt einen halbtransparenten Hintergrund für das Menü.
|
|
||||||
*
|
|
||||||
* @return Geometrie des Overlays
|
|
||||||
*/
|
|
||||||
private Geometry createOverlayBackground() {
|
|
||||||
Quad quad = new Quad(app.getCamera().getWidth(), app.getCamera().getHeight());
|
|
||||||
Geometry overlay = new Geometry("Overlay", quad);
|
|
||||||
Material material = new Material(app.getAssetManager(), "Common/MatDefs/Misc/Unshaded.j3md");
|
|
||||||
material.setColor("Color", new ColorRGBA(0, 0, 0, 0.5f)); // Halbtransparent
|
|
||||||
material.getAdditionalRenderState().setBlendMode(BlendMode.Alpha);
|
|
||||||
overlay.setMaterial(material);
|
|
||||||
overlay.setLocalTranslation(0, 0, 0);
|
|
||||||
return overlay;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Schließt das Menü und entfernt die GUI-Elemente.
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public void close() {
|
|
||||||
app.getGuiNode().detachChild(eventCardContainer); // Entferne das Menü
|
|
||||||
app.getGuiNode().detachChild(backgroundContainer); //Entfernt Rand
|
|
||||||
app.getGuiNode().detachChild(overlayBackground); // Entferne das Overlay
|
|
||||||
super.close();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void escape() {
|
|
||||||
close();
|
|
||||||
}
|
|
||||||
}
|
|
@@ -1,140 +0,0 @@
|
|||||||
package pp.monopoly.client.gui.popups;
|
|
||||||
|
|
||||||
import com.jme3.material.Material;
|
|
||||||
import com.jme3.material.RenderState.BlendMode;
|
|
||||||
import com.jme3.math.ColorRGBA;
|
|
||||||
import com.jme3.scene.Geometry;
|
|
||||||
import com.jme3.scene.shape.Quad;
|
|
||||||
import com.simsilica.lemur.Button;
|
|
||||||
import com.simsilica.lemur.Container;
|
|
||||||
import com.simsilica.lemur.Label;
|
|
||||||
import com.simsilica.lemur.component.QuadBackgroundComponent;
|
|
||||||
import com.simsilica.lemur.style.ElementId;
|
|
||||||
|
|
||||||
import pp.dialog.Dialog;
|
|
||||||
import pp.monopoly.client.MonopolyApp;
|
|
||||||
import pp.monopoly.client.gui.SettingsMenu;
|
|
||||||
import pp.monopoly.message.client.BuyPropertyRequest;
|
|
||||||
import pp.monopoly.model.fields.FoodField;
|
|
||||||
import pp.monopoly.notification.Sound;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* FoodFieldCard erstellt die Geböudekarte vom Brandl und der Truppenküche
|
|
||||||
*/
|
|
||||||
public class FoodFieldCard extends Dialog {
|
|
||||||
private final MonopolyApp app;
|
|
||||||
private final Geometry overlayBackground;
|
|
||||||
private final Container foodFieldContainer;
|
|
||||||
private final Container backgroundContainer;
|
|
||||||
|
|
||||||
public FoodFieldCard(MonopolyApp app) {
|
|
||||||
super(app.getDialogManager());
|
|
||||||
this.app = app;
|
|
||||||
|
|
||||||
//Generate the corresponfing field
|
|
||||||
int index = app.getGameLogic().getPlayerHandler().getPlayers().get(0).getFieldID();
|
|
||||||
FoodField field = (FoodField) app.getGameLogic().getBoardManager().getFieldAtIndex(index);
|
|
||||||
|
|
||||||
// Halbtransparentes Overlay hinzufügen
|
|
||||||
overlayBackground = createOverlayBackground();
|
|
||||||
app.getGuiNode().attachChild(overlayBackground);
|
|
||||||
|
|
||||||
// Create the background container
|
|
||||||
backgroundContainer = new Container();
|
|
||||||
backgroundContainer.setBackground(new QuadBackgroundComponent(new ColorRGBA(0.8657f, 0.8735f, 0.8892f, 1.0f))); // Darker background
|
|
||||||
app.getGuiNode().attachChild(backgroundContainer);
|
|
||||||
|
|
||||||
// Hauptcontainer für die Gebäudekarte
|
|
||||||
foodFieldContainer = new Container();
|
|
||||||
foodFieldContainer.setBackground(new QuadBackgroundComponent(new ColorRGBA(0.1f, 0.1f, 0.1f, 0.9f)));
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// Titel, bestehend aus dynamischen Namen anhand der ID und der Schriftfarbe/größe
|
|
||||||
Label settingsTitle = foodFieldContainer.addChild(new Label(field.getName(), new ElementId("settings-title")));
|
|
||||||
settingsTitle.setFontSize(48);
|
|
||||||
|
|
||||||
// Text, der auf der Karte steht
|
|
||||||
Container propertyValuesContainer = foodFieldContainer.addChild(new Container());
|
|
||||||
propertyValuesContainer.addChild(new Label("„Preis: " + field.getPrice() + " EUR", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.addChild(new Label("", new ElementId("label-Text"))); // Leerzeile
|
|
||||||
propertyValuesContainer.addChild(new Label("„Wenn man Besitzer des", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.addChild(new Label(field.getName()+" ist, so ist die", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.addChild(new Label("Miete 40-mal so hoch, wie", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.addChild(new Label("Augen auf den zwei Würfeln sind.", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.addChild(new Label("", new ElementId("label-Text"))); // Leerzeile
|
|
||||||
propertyValuesContainer.addChild(new Label("„Wenn man Besitzer beider", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.addChild(new Label("Restaurants ist, so ist die", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.addChild(new Label("Miete 100-mal so hoch, wie", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.addChild(new Label("Augen auf den zwei Würfeln sind.", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.addChild(new Label("", new ElementId("label-Text"))); // Leerzeile
|
|
||||||
propertyValuesContainer.addChild(new Label("„Hypothek: " + field.getHypo() + " EUR", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.setBackground(new QuadBackgroundComponent(new ColorRGBA(0.4657f, 0.4735f, 0.4892f, 1.0f)));
|
|
||||||
|
|
||||||
// Beenden-Button
|
|
||||||
Button quitButton = foodFieldContainer.addChild(new Button("Beenden", new ElementId("button")));
|
|
||||||
quitButton.setFontSize(32);
|
|
||||||
quitButton.addClickCommands(s -> ifTopDialog(() -> {
|
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
|
||||||
close();
|
|
||||||
}));
|
|
||||||
// Kaufen-Button
|
|
||||||
Button buyButton = foodFieldContainer.addChild(new Button("Kaufen", new ElementId("button")));
|
|
||||||
buyButton.setFontSize(32);
|
|
||||||
buyButton.addClickCommands(s -> ifTopDialog( () -> {
|
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
|
||||||
app.getGameLogic().send(new BuyPropertyRequest());
|
|
||||||
}));
|
|
||||||
|
|
||||||
float padding = 10; // Padding around the settingsContainer for the background
|
|
||||||
backgroundContainer.setPreferredSize(foodFieldContainer.getPreferredSize().addLocal(padding, padding, 0));
|
|
||||||
|
|
||||||
// Zentriere das Menü
|
|
||||||
foodFieldContainer.setLocalTranslation(
|
|
||||||
(app.getCamera().getWidth() - foodFieldContainer.getPreferredSize().x) / 2,
|
|
||||||
(app.getCamera().getHeight() + foodFieldContainer.getPreferredSize().y) / 2,
|
|
||||||
8
|
|
||||||
);
|
|
||||||
|
|
||||||
backgroundContainer.setLocalTranslation(
|
|
||||||
(app.getCamera().getWidth() - foodFieldContainer.getPreferredSize().x - padding) / 2,
|
|
||||||
(app.getCamera().getHeight() + foodFieldContainer.getPreferredSize().y+ padding) / 2,
|
|
||||||
7
|
|
||||||
);
|
|
||||||
|
|
||||||
app.getGuiNode().attachChild(foodFieldContainer);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Erstellt einen halbtransparenten Hintergrund für das Menü.
|
|
||||||
*
|
|
||||||
* @return Geometrie des Overlays
|
|
||||||
*/
|
|
||||||
private Geometry createOverlayBackground() {
|
|
||||||
Quad quad = new Quad(app.getCamera().getWidth(), app.getCamera().getHeight());
|
|
||||||
Geometry overlay = new Geometry("Overlay", quad);
|
|
||||||
Material material = new Material(app.getAssetManager(), "Common/MatDefs/Misc/Unshaded.j3md");
|
|
||||||
material.setColor("Color", new ColorRGBA(0, 0, 0, 0.5f)); // Halbtransparent
|
|
||||||
material.getAdditionalRenderState().setBlendMode(BlendMode.Alpha);
|
|
||||||
overlay.setMaterial(material);
|
|
||||||
overlay.setLocalTranslation(0, 0, 0);
|
|
||||||
return overlay;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Schließt das Menü und entfernt die GUI-Elemente.
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public void close() {
|
|
||||||
app.getGuiNode().detachChild(foodFieldContainer); // Entferne das Menü
|
|
||||||
app.getGuiNode().detachChild(backgroundContainer); //Entfernt Rand
|
|
||||||
app.getGuiNode().detachChild(overlayBackground); // Entferne das Overlay
|
|
||||||
super.close();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void escape() {
|
|
||||||
new SettingsMenu(app).open();
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
|
@@ -1,136 +0,0 @@
|
|||||||
package pp.monopoly.client.gui.popups;
|
|
||||||
|
|
||||||
import com.jme3.material.Material;
|
|
||||||
import com.jme3.material.RenderState.BlendMode;
|
|
||||||
import com.jme3.math.ColorRGBA;
|
|
||||||
import com.jme3.scene.Geometry;
|
|
||||||
import com.jme3.scene.shape.Quad;
|
|
||||||
import com.simsilica.lemur.Button;
|
|
||||||
import com.simsilica.lemur.Container;
|
|
||||||
import com.simsilica.lemur.Label;
|
|
||||||
import com.simsilica.lemur.component.QuadBackgroundComponent;
|
|
||||||
import com.simsilica.lemur.style.ElementId;
|
|
||||||
import pp.dialog.Dialog;
|
|
||||||
import pp.monopoly.client.MonopolyApp;
|
|
||||||
import pp.monopoly.client.gui.SettingsMenu;
|
|
||||||
import pp.monopoly.message.client.BuyPropertyRequest;
|
|
||||||
import pp.monopoly.model.fields.GateField;
|
|
||||||
import pp.monopoly.notification.Sound;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* SettingsMenu ist ein Overlay-Menü, das durch ESC aufgerufen werden kann.
|
|
||||||
*/
|
|
||||||
public class GateFieldCard extends Dialog {
|
|
||||||
private final MonopolyApp app;
|
|
||||||
private final Geometry overlayBackground;
|
|
||||||
private final Container gateFieldContainer;
|
|
||||||
private final Container backgroundContainer;
|
|
||||||
|
|
||||||
public GateFieldCard(MonopolyApp app) {
|
|
||||||
super(app.getDialogManager());
|
|
||||||
this.app = app;
|
|
||||||
|
|
||||||
//Generate the corresponfing field
|
|
||||||
int index = app.getGameLogic().getPlayerHandler().getPlayers().get(0).getFieldID();
|
|
||||||
GateField field = (GateField) app.getGameLogic().getBoardManager().getFieldAtIndex(index);
|
|
||||||
|
|
||||||
// Halbtransparentes Overlay hinzufügen
|
|
||||||
overlayBackground = createOverlayBackground();
|
|
||||||
app.getGuiNode().attachChild(overlayBackground);
|
|
||||||
|
|
||||||
// Create the background container
|
|
||||||
backgroundContainer = new Container();
|
|
||||||
backgroundContainer.setBackground(new QuadBackgroundComponent(new ColorRGBA(0.8657f, 0.8735f, 0.8892f, 1.0f))); // Darker background
|
|
||||||
app.getGuiNode().attachChild(backgroundContainer);
|
|
||||||
|
|
||||||
// Hauptcontainer für die Gebäudekarte
|
|
||||||
gateFieldContainer = new Container();
|
|
||||||
gateFieldContainer.setBackground(new QuadBackgroundComponent(new ColorRGBA(0.8657f, 0.8735f, 0.8892f, 1.0f)));
|
|
||||||
|
|
||||||
// Titel
|
|
||||||
// Die Namen werden dynamisch dem BoardManager entnommen
|
|
||||||
Label gateFieldTitle = gateFieldContainer.addChild(new Label(field.getName(), new ElementId("settings-title")));
|
|
||||||
gateFieldTitle.setFontSize(48);
|
|
||||||
gateFieldTitle.setColor(ColorRGBA.Black);
|
|
||||||
|
|
||||||
// Text, der auf der Karte steht
|
|
||||||
// Die Preise werden dynamisch dem BoardManager entnommen
|
|
||||||
Container propertyValuesContainer = gateFieldContainer.addChild(new Container());
|
|
||||||
propertyValuesContainer.addChild(new Label("„Preis: " + field.getPrice() + " EUR", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.addChild(new Label("", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.addChild(new Label("Wenn man 1 Bahnhof besitzt: 250 EUR", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.addChild(new Label("Wenn man 2 Bahnhöfe besitzt: 500 EUR", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.addChild(new Label("Wenn man 3 Bahnhöfe besitzt: 1000 EUR", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.addChild(new Label("Wenn man 4 Bahnhöfe besitzt: 2000 EUR", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.addChild(new Label("", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.addChild(new Label("„Hypothek: " + field.getHypo() + " EUR", new ElementId("label-Text")));
|
|
||||||
propertyValuesContainer.setBackground(new QuadBackgroundComponent(new ColorRGBA(0.4657f, 0.4735f, 0.4892f, 1.0f)));
|
|
||||||
|
|
||||||
// Beenden-Button
|
|
||||||
Button quitButton = gateFieldContainer.addChild(new Button("Beenden", new ElementId("button")));
|
|
||||||
quitButton.setFontSize(32);
|
|
||||||
quitButton.addClickCommands(s -> ifTopDialog(() -> {
|
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
|
||||||
close();
|
|
||||||
}));
|
|
||||||
// Kaufen-Button
|
|
||||||
Button buyButton = gateFieldContainer.addChild(new Button("Kaufen", new ElementId("button")));
|
|
||||||
buyButton.setFontSize(32);
|
|
||||||
buyButton.addClickCommands(s -> ifTopDialog(() -> {
|
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
|
||||||
app.getGameLogic().send(new BuyPropertyRequest());
|
|
||||||
close();
|
|
||||||
}));
|
|
||||||
|
|
||||||
float padding = 10; // Padding around the settingsContainer for the background
|
|
||||||
backgroundContainer.setPreferredSize(gateFieldContainer.getPreferredSize().addLocal(padding, padding, 0));
|
|
||||||
|
|
||||||
|
|
||||||
// Zentriere das Menü
|
|
||||||
gateFieldContainer.setLocalTranslation(
|
|
||||||
(app.getCamera().getWidth() - gateFieldContainer.getPreferredSize().x) / 2,
|
|
||||||
(app.getCamera().getHeight() + gateFieldContainer.getPreferredSize().y) / 2,
|
|
||||||
8
|
|
||||||
);
|
|
||||||
|
|
||||||
backgroundContainer.setLocalTranslation(
|
|
||||||
(app.getCamera().getWidth() - gateFieldContainer.getPreferredSize().x - padding) / 2,
|
|
||||||
(app.getCamera().getHeight() + gateFieldContainer.getPreferredSize().y+ padding) / 2,
|
|
||||||
7
|
|
||||||
);
|
|
||||||
|
|
||||||
app.getGuiNode().attachChild(gateFieldContainer);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Erstellt einen halbtransparenten Hintergrund für das Menü.
|
|
||||||
*
|
|
||||||
* @return Geometrie des Overlays
|
|
||||||
*/
|
|
||||||
private Geometry createOverlayBackground() {
|
|
||||||
Quad quad = new Quad(app.getCamera().getWidth(), app.getCamera().getHeight());
|
|
||||||
Geometry overlay = new Geometry("Overlay", quad);
|
|
||||||
Material material = new Material(app.getAssetManager(), "Common/MatDefs/Misc/Unshaded.j3md");
|
|
||||||
material.setColor("Color", new ColorRGBA(0, 0, 0, 0.5f)); // Halbtransparent
|
|
||||||
material.getAdditionalRenderState().setBlendMode(BlendMode.Alpha);
|
|
||||||
overlay.setMaterial(material);
|
|
||||||
overlay.setLocalTranslation(0, 0, 0);
|
|
||||||
return overlay;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Schließt das Menü und entfernt die GUI-Elemente.
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public void close() {
|
|
||||||
app.getGuiNode().detachChild(gateFieldContainer); // Entferne das Menü
|
|
||||||
app.getGuiNode().detachChild(backgroundContainer); //Entfernt Rand
|
|
||||||
app.getGuiNode().detachChild(overlayBackground); // Entferne das Overlay
|
|
||||||
super.close();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void escape() {
|
|
||||||
new SettingsMenu(app).open();
|
|
||||||
}
|
|
||||||
}
|
|
@@ -1,52 +0,0 @@
|
|||||||
package pp.monopoly.client.gui.popups;
|
|
||||||
|
|
||||||
import com.simsilica.lemur.Button;
|
|
||||||
import com.simsilica.lemur.Container;
|
|
||||||
import com.simsilica.lemur.Label;
|
|
||||||
import com.simsilica.lemur.component.IconComponent;
|
|
||||||
|
|
||||||
import pp.dialog.Dialog;
|
|
||||||
import pp.monopoly.client.MonopolyApp;
|
|
||||||
|
|
||||||
public class LooserPopUp extends Dialog {
|
|
||||||
|
|
||||||
private final MonopolyApp app;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructs a new NetworkDialog.
|
|
||||||
*
|
|
||||||
* @param network The NetworkSupport instance to be used for network operations.
|
|
||||||
*/
|
|
||||||
public LooserPopUp(MonopolyApp app) {
|
|
||||||
super(app.getDialogManager());
|
|
||||||
this.app = app;
|
|
||||||
initializeDialog();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Initializes the dialog with input fields and connection buttons.
|
|
||||||
*/
|
|
||||||
private void initializeDialog() {
|
|
||||||
Container inputContainer = new Container();
|
|
||||||
|
|
||||||
// Titel und Eingabefelder für Host und Port
|
|
||||||
inputContainer.addChild(new Label("Schade, du hast leider verloren!"));
|
|
||||||
inputContainer.addChild(new Label("Die nächste Runde wird besser!"));
|
|
||||||
|
|
||||||
Label imageLabel = new Label("");
|
|
||||||
IconComponent icon = new IconComponent("Pictures/MonopolyLooser.png"); // Icon mit Textur erstellen
|
|
||||||
icon.setIconScale(1); // Skalierung des Bildes
|
|
||||||
imageLabel.setIcon(icon);
|
|
||||||
|
|
||||||
// Setze das Icon im Label
|
|
||||||
inputContainer.addChild(imageLabel);
|
|
||||||
|
|
||||||
Button cancelButton = inputContainer.addChild(new Button("Spiel beenden"));
|
|
||||||
cancelButton.addClickCommands(source -> ifTopDialog(app::closeApp));
|
|
||||||
|
|
||||||
inputContainer.setLocalTranslation(300, 800, 0);
|
|
||||||
app.getGuiNode().attachChild(inputContainer);
|
|
||||||
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@@ -1,49 +0,0 @@
|
|||||||
package pp.monopoly.client.gui.popups;
|
|
||||||
|
|
||||||
/*
|
|
||||||
* $Id$
|
|
||||||
*
|
|
||||||
* Copyright (c) 2013-2013 jMonkeyEngine
|
|
||||||
* All rights reserved.
|
|
||||||
*
|
|
||||||
* Redistribution and use in source and binary forms, with or without
|
|
||||||
* modification, are permitted provided that the following conditions are
|
|
||||||
* met:
|
|
||||||
*
|
|
||||||
* * Redistributions of source code must retain the above copyright
|
|
||||||
* notice, this list of conditions and the following disclaimer.
|
|
||||||
*
|
|
||||||
* * Redistributions in binary form must reproduce the above copyright
|
|
||||||
* notice, this list of conditions and the following disclaimer in the
|
|
||||||
* documentation and/or other materials provided with the distribution.
|
|
||||||
*
|
|
||||||
* * Neither the name of 'jMonkeyEngine' nor the names of its contributors
|
|
||||||
* may be used to endorse or promote products derived from this software
|
|
||||||
* without specific prior written permission.
|
|
||||||
*
|
|
||||||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
||||||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
||||||
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
||||||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
|
|
||||||
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
|
||||||
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
||||||
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
|
||||||
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
|
|
||||||
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
|
|
||||||
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
|
||||||
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
|
|
||||||
import com.jme3.scene.Spatial;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Notified when the current selection changes.
|
|
||||||
*
|
|
||||||
* @author Paul Speed
|
|
||||||
*/
|
|
||||||
public interface SelectionListener {
|
|
||||||
|
|
||||||
public void selectionChanged( Spatial selection, Spatial previous );
|
|
||||||
}
|
|
@@ -1,117 +0,0 @@
|
|||||||
package pp.monopoly.client.gui.popups;
|
|
||||||
|
|
||||||
import com.jme3.math.ColorRGBA;
|
|
||||||
import com.jme3.math.Vector2f;
|
|
||||||
import com.jme3.math.Vector3f;
|
|
||||||
import com.simsilica.lemur.Button;
|
|
||||||
import com.simsilica.lemur.Container;
|
|
||||||
import com.simsilica.lemur.Label;
|
|
||||||
import com.simsilica.lemur.component.IconComponent;
|
|
||||||
import com.simsilica.lemur.component.QuadBackgroundComponent;
|
|
||||||
import com.simsilica.lemur.style.ElementId;
|
|
||||||
import pp.dialog.Dialog;
|
|
||||||
import pp.monopoly.client.MonopolyApp;
|
|
||||||
import pp.monopoly.client.gui.SettingsMenu;
|
|
||||||
import pp.monopoly.message.client.BuyPropertyRequest;
|
|
||||||
import pp.monopoly.notification.Sound;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* SettingsMenu ist ein Overlay-Menü, das durch ESC aufgerufen werden kann.
|
|
||||||
*/
|
|
||||||
public class SellHouse extends Dialog {
|
|
||||||
private final MonopolyApp app;
|
|
||||||
private final Container sellhouseContainer;
|
|
||||||
private final Container backgroundContainer;
|
|
||||||
|
|
||||||
|
|
||||||
public SellHouse(MonopolyApp app) {
|
|
||||||
super(app.getDialogManager());
|
|
||||||
this.app = app;
|
|
||||||
|
|
||||||
//Generate the corresponfing field
|
|
||||||
//int index = app.getGameLogic().getPlayerHandler().getPlayers().get(0).getFieldID();;
|
|
||||||
// BuildingProperty field = (BuildingProperty) new BoardManager().getFieldAtIndex(index);
|
|
||||||
|
|
||||||
// Create the background container
|
|
||||||
backgroundContainer = new Container();
|
|
||||||
backgroundContainer.setBackground(new QuadBackgroundComponent(new ColorRGBA(0.8657f, 0.8735f, 0.8892f, 1.0f))); // Darker background
|
|
||||||
attachChild(backgroundContainer);
|
|
||||||
|
|
||||||
// Hauptcontainer für die Gebäudekarte
|
|
||||||
sellhouseContainer = new Container();
|
|
||||||
|
|
||||||
|
|
||||||
Label title = sellhouseContainer.addChild(new Label( "Gebäude Abreißen", new ElementId("label-Bold"))); //TODO ggf die Buttons Sprachabhängig von den Properties machen
|
|
||||||
title.setFontSize(48);
|
|
||||||
title.setColor(ColorRGBA.Black);
|
|
||||||
|
|
||||||
Container upContainer = sellhouseContainer.addChild(new Container());
|
|
||||||
Container middleContainer = sellhouseContainer.addChild(new Container());
|
|
||||||
Container downContainer = sellhouseContainer.addChild(new Container());
|
|
||||||
|
|
||||||
// Text, der auf der Karte steht
|
|
||||||
// Die Preise werden dynamisch dem BoardManager entnommen
|
|
||||||
upContainer.addChild(new Label("„Grundstück wählen:", new ElementId("label-Text"))); //TODO hier überall die entsprechenden Variablen einfügen
|
|
||||||
upContainer.addChild(new Label("", new ElementId("label-Text")));// Leerzeile
|
|
||||||
upContainer.setBackground(new QuadBackgroundComponent(new ColorRGBA(0.4657f, 0.4735f, 0.4892f, 1.0f)));
|
|
||||||
middleContainer.setPreferredSize(new Vector3f(100, 150, 0));
|
|
||||||
middleContainer.setBackground(new QuadBackgroundComponent(ColorRGBA.Red));
|
|
||||||
middleContainer.addChild(new Label("Dies ist ein Container", new ElementId("label-Text")));
|
|
||||||
middleContainer.addChild(new Label("", new ElementId("label-Text")));
|
|
||||||
middleContainer.addChild(new Label("Hier kann der Slider und die Checkbocen eingefügt werden", new ElementId("label-Text")));
|
|
||||||
downContainer.addChild(new Label("", new ElementId("label-Text")));// Leerzeile
|
|
||||||
downContainer.addChild(new Label("Erstattung:", new ElementId("label-Text")));// Leerzeile
|
|
||||||
downContainer.addChild(new Label("Hier die tätsächliche Erstattung", new ElementId("label-Text")));
|
|
||||||
downContainer.setBackground(new QuadBackgroundComponent(new ColorRGBA(0.4657f, 0.4735f, 0.4892f, 1.0f)));
|
|
||||||
|
|
||||||
// Beenden-Button
|
|
||||||
Button cancelButton = sellhouseContainer.addChild(new Button("Abbrechen", new ElementId("button"))); //TODO ggf die Buttons Sprachabhängig von den Properties machen
|
|
||||||
cancelButton.setFontSize(32);
|
|
||||||
cancelButton.addClickCommands(s -> ifTopDialog(() -> {
|
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
|
||||||
close();
|
|
||||||
}));
|
|
||||||
// Kaufen-Button
|
|
||||||
Button confirmButton = sellhouseContainer.addChild(new Button("Bestätigen", new ElementId("button"))); //TODO ggf die Buttons Sprachabhängig von den Properties machen
|
|
||||||
confirmButton.setFontSize(32);
|
|
||||||
confirmButton.addClickCommands(s -> ifTopDialog( () -> {
|
|
||||||
app.getGameLogic().playSound(Sound.BUTTON);
|
|
||||||
app.getGameLogic().send(new BuyPropertyRequest());
|
|
||||||
}));
|
|
||||||
|
|
||||||
|
|
||||||
float padding = 10; // Padding around the settingsContainer for the background
|
|
||||||
backgroundContainer.setPreferredSize(sellhouseContainer.getPreferredSize().addLocal(padding, padding, 0));
|
|
||||||
|
|
||||||
|
|
||||||
// Zentriere das Menü
|
|
||||||
sellhouseContainer.setLocalTranslation(
|
|
||||||
(app.getCamera().getWidth() - sellhouseContainer.getPreferredSize().x) / 2,
|
|
||||||
(app.getCamera().getHeight() + sellhouseContainer.getPreferredSize().y) / 2,
|
|
||||||
8
|
|
||||||
);
|
|
||||||
|
|
||||||
backgroundContainer.setLocalTranslation(
|
|
||||||
(app.getCamera().getWidth() - sellhouseContainer.getPreferredSize().x - padding) / 2,
|
|
||||||
(app.getCamera().getHeight() + sellhouseContainer.getPreferredSize().y+ padding) / 2,
|
|
||||||
7
|
|
||||||
);
|
|
||||||
|
|
||||||
app.getGuiNode().attachChild(sellhouseContainer);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Schließt das Menü und entfernt die GUI-Elemente.
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public void close() {
|
|
||||||
app.getGuiNode().detachChild(sellhouseContainer); // Entferne das Menü
|
|
||||||
app.getGuiNode().detachChild(backgroundContainer); //Entfernt Rand
|
|
||||||
super.close();
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void escape() {
|
|
||||||
new SettingsMenu(app).open();
|
|
||||||
}
|
|
||||||
}
|
|
@@ -1,51 +0,0 @@
|
|||||||
package pp.monopoly.client.gui.popups;
|
|
||||||
|
|
||||||
import com.simsilica.lemur.Button;
|
|
||||||
import com.simsilica.lemur.Container;
|
|
||||||
import com.simsilica.lemur.Label;
|
|
||||||
import com.simsilica.lemur.component.IconComponent;
|
|
||||||
|
|
||||||
import pp.dialog.Dialog;
|
|
||||||
import pp.monopoly.client.MonopolyApp;
|
|
||||||
|
|
||||||
public class WinnerPopUp extends Dialog {
|
|
||||||
|
|
||||||
private final MonopolyApp app;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Constructs a new NetworkDialog.
|
|
||||||
*
|
|
||||||
* @param app The NetworkSupport instance to be used for network operations.
|
|
||||||
*/
|
|
||||||
public WinnerPopUp(MonopolyApp app) {
|
|
||||||
super(app.getDialogManager());
|
|
||||||
this.app = app;
|
|
||||||
initializeDialog();
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Initializes the dialog with input fields and connection buttons.
|
|
||||||
*/
|
|
||||||
private void initializeDialog() {
|
|
||||||
Container inputContainer = new Container();
|
|
||||||
|
|
||||||
// Titel und Eingabefelder für Host und Port
|
|
||||||
inputContainer.addChild(new Label("Herlichen Glückwunsch!"));
|
|
||||||
inputContainer.addChild(new Label("Du,bist der Monopoly Champion!!!"));
|
|
||||||
|
|
||||||
Label imageLabel = new Label("");
|
|
||||||
IconComponent icon = new IconComponent("Pictures/MonopolyWinner.png"); // Icon mit Textur erstellen
|
|
||||||
icon.setIconScale(1); // Skalierung des Bildes
|
|
||||||
imageLabel.setIcon(icon);
|
|
||||||
|
|
||||||
// Setze das Icon im Label
|
|
||||||
inputContainer.addChild(imageLabel);
|
|
||||||
|
|
||||||
Button cancelButton = inputContainer.addChild(new Button("Spiel beenden"));
|
|
||||||
cancelButton.addClickCommands(source -> ifTopDialog(app::closeApp));
|
|
||||||
|
|
||||||
inputContainer.setLocalTranslation(300, 800, 0);
|
|
||||||
app.getGuiNode().attachChild(inputContainer);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
Before Width: | Height: | Size: 260 KiB |
Before Width: | Height: | Size: 260 KiB |
Before Width: | Height: | Size: 409 KiB |
Before Width: | Height: | Size: 1.4 MiB |
Before Width: | Height: | Size: 169 KiB |
Before Width: | Height: | Size: 171 KiB |
Before Width: | Height: | Size: 183 KiB |
Before Width: | Height: | Size: 207 KiB |
Before Width: | Height: | Size: 105 KiB |
Before Width: | Height: | Size: 228 KiB |
Before Width: | Height: | Size: 105 KiB |
Before Width: | Height: | Size: 207 KiB |
Before Width: | Height: | Size: 169 KiB |
Before Width: | Height: | Size: 228 KiB |
Before Width: | Height: | Size: 183 KiB |
Before Width: | Height: | Size: 171 KiB |
Before Width: | Height: | Size: 3.9 MiB |
@@ -1,8 +0,0 @@
|
|||||||
package pp.monopoly.game.client;
|
|
||||||
|
|
||||||
public class ActiveState extends ClientState{
|
|
||||||
|
|
||||||
ActiveState(ClientGameLogic logic) {
|
|
||||||
super(logic);
|
|
||||||
}
|
|
||||||
}
|
|
@@ -1,18 +1,26 @@
|
|||||||
|
////////////////////////////////////////
|
||||||
|
// Programming project code
|
||||||
|
// UniBw M, 2022, 2023, 2024
|
||||||
|
// www.unibw.de/inf2
|
||||||
|
// (c) Mark Minas (mark.minas@unibw.de)
|
||||||
|
////////////////////////////////////////
|
||||||
|
|
||||||
package pp.monopoly.game.client;
|
package pp.monopoly.game.client;
|
||||||
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.IOException;
|
||||||
import java.lang.System.Logger;
|
import java.lang.System.Logger;
|
||||||
import java.lang.System.Logger.Level;
|
import java.lang.System.Logger.Level;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import pp.monopoly.game.server.PlayerHandler;
|
|
||||||
import pp.monopoly.message.client.ClientMessage;
|
import pp.monopoly.message.client.ClientMessage;
|
||||||
|
import pp.monopoly.message.server.BuyPropertyResponse;
|
||||||
import pp.monopoly.message.server.DiceResult;
|
import pp.monopoly.message.server.DiceResult;
|
||||||
import pp.monopoly.message.server.EventDrawCard;
|
import pp.monopoly.message.server.EventDrawCard;
|
||||||
import pp.monopoly.message.server.GameOver;
|
import pp.monopoly.message.server.GameOver;
|
||||||
import pp.monopoly.message.server.GameStart;
|
import pp.monopoly.message.server.GameStart;
|
||||||
import pp.monopoly.message.server.JailEvent;
|
import pp.monopoly.message.server.JailEvent;
|
||||||
import pp.monopoly.message.server.NextPlayerTurn;
|
|
||||||
import pp.monopoly.message.server.PlayerStatusUpdate;
|
import pp.monopoly.message.server.PlayerStatusUpdate;
|
||||||
import pp.monopoly.message.server.ServerInterpreter;
|
import pp.monopoly.message.server.ServerInterpreter;
|
||||||
import pp.monopoly.message.server.TimeOutWarning;
|
import pp.monopoly.message.server.TimeOutWarning;
|
||||||
@@ -21,43 +29,34 @@ import pp.monopoly.message.server.TradeRequest;
|
|||||||
import pp.monopoly.message.server.ViewAssetsResponse;
|
import pp.monopoly.message.server.ViewAssetsResponse;
|
||||||
import pp.monopoly.model.Board;
|
import pp.monopoly.model.Board;
|
||||||
import pp.monopoly.model.IntPoint;
|
import pp.monopoly.model.IntPoint;
|
||||||
import pp.monopoly.model.fields.BoardManager;
|
|
||||||
import pp.monopoly.notification.ClientStateEvent;
|
import pp.monopoly.notification.ClientStateEvent;
|
||||||
import pp.monopoly.notification.DiceRollEvent;
|
|
||||||
import pp.monopoly.notification.ButtonStatusEvent;
|
|
||||||
import pp.monopoly.notification.EventCardEvent;
|
|
||||||
import pp.monopoly.notification.GameEvent;
|
import pp.monopoly.notification.GameEvent;
|
||||||
import pp.monopoly.notification.GameEventBroker;
|
import pp.monopoly.notification.GameEventBroker;
|
||||||
import pp.monopoly.notification.GameEventListener;
|
import pp.monopoly.notification.GameEventListener;
|
||||||
import pp.monopoly.notification.InfoTextEvent;
|
import pp.monopoly.notification.InfoTextEvent;
|
||||||
import pp.monopoly.notification.Sound;
|
import pp.monopoly.notification.Sound;
|
||||||
import pp.monopoly.notification.SoundEvent;
|
import pp.monopoly.notification.SoundEvent;
|
||||||
import pp.monopoly.notification.UpdatePlayerView;
|
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.lang.System.Logger;
|
||||||
|
import java.lang.System.Logger.Level;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Controls the client-side game logic for Monopoly.
|
* Controls the client-side game logic for Monopoly.
|
||||||
* Handles interactions with the server and game state management on the client side.
|
* Manages the player's placement, interactions with the map, and response to server messages.
|
||||||
*/
|
*/
|
||||||
public class ClientGameLogic implements ServerInterpreter, GameEventBroker {
|
public class ClientGameLogic implements ServerInterpreter, GameEventBroker {
|
||||||
|
|
||||||
/** Logger for the client-side game logic. */
|
|
||||||
static final Logger LOGGER = System.getLogger(ClientGameLogic.class.getName());
|
static final Logger LOGGER = System.getLogger(ClientGameLogic.class.getName());
|
||||||
|
|
||||||
/** The object responsible for sending messages to the server. */
|
|
||||||
private final ClientSender clientSender;
|
private final ClientSender clientSender;
|
||||||
|
|
||||||
/** A list of listeners to receive game events. */
|
|
||||||
private final List<GameEventListener> listeners = new ArrayList<>();
|
private final List<GameEventListener> listeners = new ArrayList<>();
|
||||||
|
|
||||||
/** The game board representing the player's current state. */
|
|
||||||
private Board board;
|
private Board board;
|
||||||
|
|
||||||
/** The current state of the client game logic. */
|
private ClientState state = new ClientState(this) {
|
||||||
private ClientState state = new LobbyState(this);
|
|
||||||
|
|
||||||
private PlayerHandler playerHandler;
|
};
|
||||||
|
|
||||||
private BoardManager boardManager = new BoardManager();
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructs a ClientGameLogic with the specified sender object.
|
* Constructs a ClientGameLogic with the specified sender object.
|
||||||
@@ -68,18 +67,8 @@ public class ClientGameLogic implements ServerInterpreter, GameEventBroker {
|
|||||||
this.clientSender = clientSender;
|
this.clientSender = clientSender;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Reutns the BoardManager
|
|
||||||
* @return the boardManager
|
|
||||||
*/
|
|
||||||
public BoardManager getBoardManager() {
|
|
||||||
return boardManager;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the current state of the game logic.
|
* Returns the current state of the game logic.
|
||||||
*
|
|
||||||
* @return the current state
|
|
||||||
*/
|
*/
|
||||||
ClientState getState() {
|
ClientState getState() {
|
||||||
return state;
|
return state;
|
||||||
@@ -97,14 +86,10 @@ public class ClientGameLogic implements ServerInterpreter, GameEventBroker {
|
|||||||
state.entry();
|
state.entry();
|
||||||
}
|
}
|
||||||
|
|
||||||
public PlayerHandler getPlayerHandler() {
|
|
||||||
return playerHandler;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the player's game board.
|
* Returns the player's own map.
|
||||||
*
|
*
|
||||||
* @return the player's game board
|
* @return the player's own map
|
||||||
*/
|
*/
|
||||||
public Board getBoard() {
|
public Board getBoard() {
|
||||||
return board;
|
return board;
|
||||||
@@ -131,23 +116,32 @@ public class ClientGameLogic implements ServerInterpreter, GameEventBroker {
|
|||||||
/**
|
/**
|
||||||
* Emits an event to play the specified sound.
|
* Emits an event to play the specified sound.
|
||||||
*
|
*
|
||||||
* @param sound the sound to be played
|
* @param sound the sound to be played.
|
||||||
*/
|
*/
|
||||||
public void playSound(Sound sound) {
|
public void playSound(Sound sound) {
|
||||||
notifyListeners(new SoundEvent(sound));
|
notifyListeners(new SoundEvent(sound));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Loads a map from the specified file.
|
||||||
|
*
|
||||||
|
* @param file the file to load the map from
|
||||||
|
* @throws IOException if an I/O error occurs
|
||||||
|
*/
|
||||||
|
public void loadMap(File file) throws IOException {
|
||||||
|
state.loadMap(file);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Sends a message to the server.
|
* Sends a message to the server.
|
||||||
*
|
*
|
||||||
* @param msg the message to be sent
|
* @param msg the message to be sent
|
||||||
*/
|
*/
|
||||||
public void send(ClientMessage msg) {
|
void send(ClientMessage msg) {
|
||||||
if (clientSender == null) {
|
if (clientSender == null)
|
||||||
LOGGER.log(Level.ERROR, "trying to send {0} with sender==null", msg); //NON-NLS
|
LOGGER.log(Level.ERROR, "trying to send {0} with sender==null", msg); //NON-NLS
|
||||||
} else {
|
else
|
||||||
clientSender.send(msg);
|
clientSender.send(msg);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -179,13 +173,12 @@ public class ClientGameLogic implements ServerInterpreter, GameEventBroker {
|
|||||||
synchronized (this) {
|
synchronized (this) {
|
||||||
copy = new ArrayList<>(listeners);
|
copy = new ArrayList<>(listeners);
|
||||||
}
|
}
|
||||||
for (GameEventListener listener : copy) {
|
for (GameEventListener listener : copy)
|
||||||
event.notifyListener(listener);
|
event.notifyListener(listener);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Updates the game logic once per frame in the update loop.
|
* Called once per frame by the update loop.
|
||||||
*
|
*
|
||||||
* @param delta time in seconds since the last update call
|
* @param delta time in seconds since the last update call
|
||||||
*/
|
*/
|
||||||
@@ -193,140 +186,75 @@ public class ClientGameLogic implements ServerInterpreter, GameEventBroker {
|
|||||||
state.update(delta);
|
state.update(delta);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
@Override
|
||||||
* Handles the result of a dice roll.
|
public void received(BuyPropertyResponse msg) {
|
||||||
*
|
if (msg.isSuccessful()) {
|
||||||
* @param msg the message containing the dice roll result
|
setInfoText("You successfully bought " + msg.getPropertyName() + "!");
|
||||||
*/
|
playSound(Sound.MONEY_LOST);
|
||||||
|
} else {
|
||||||
|
setInfoText("Unable to buy " + msg.getPropertyName() + ". Reason: " + msg.getReason());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void received(DiceResult msg) {
|
public void received(DiceResult msg) {
|
||||||
|
setInfoText("You rolled a " + msg.calcTotal() + "!");
|
||||||
playSound(Sound.DICE_ROLL);
|
playSound(Sound.DICE_ROLL);
|
||||||
notifyListeners(new DiceRollEvent(msg.getRollResult().get(0), msg.getRollResult().get(1)));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Handles drawing an event card.
|
|
||||||
*
|
|
||||||
* @param msg the message containing the drawn card details
|
|
||||||
*/
|
|
||||||
@Override
|
@Override
|
||||||
public void received(EventDrawCard msg) {
|
public void received(EventDrawCard msg) {
|
||||||
|
setInfoText("Event card drawn: " + msg.getCardDescription());
|
||||||
playSound(Sound.EVENT_CARD);
|
playSound(Sound.EVENT_CARD);
|
||||||
notifyListeners(new EventCardEvent(msg.getCardDescription()));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Handles the game over message.
|
|
||||||
*
|
|
||||||
* @param msg the message containing game over details
|
|
||||||
*/
|
|
||||||
@Override
|
@Override
|
||||||
public void received(GameOver msg) {
|
public void received(GameOver msg) {
|
||||||
if (msg.isWinner()) {
|
if (msg.isWinner()) {
|
||||||
|
setInfoText("Congratulations! You have won the game!");
|
||||||
//Winner popup
|
|
||||||
playSound(Sound.WINNER);
|
playSound(Sound.WINNER);
|
||||||
} else {
|
} else {
|
||||||
|
setInfoText("Game over. Better luck next time!");
|
||||||
// Looser popup
|
|
||||||
playSound(Sound.LOSER);
|
playSound(Sound.LOSER);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Handles the start of the game.
|
|
||||||
*
|
|
||||||
* @param msg the game start message
|
|
||||||
*/
|
|
||||||
@Override
|
@Override
|
||||||
public void received(GameStart msg) {
|
public void received(GameStart msg) {
|
||||||
playerHandler = msg.getPlayerHandler();
|
setInfoText("The game has started! Good luck!");
|
||||||
setState(new WaitForTurnState(this));
|
|
||||||
notifyListeners(new ButtonStatusEvent(false));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Handles jail-related events.
|
|
||||||
*
|
|
||||||
* @param msg the message containing jail event details
|
|
||||||
*/
|
|
||||||
@Override
|
@Override
|
||||||
public void received(JailEvent msg) {
|
public void received(JailEvent msg) {
|
||||||
if (msg.isGoingToJail()) {
|
if (msg.isGoingToJail()) {
|
||||||
|
setInfoText("You are sent to jail!");
|
||||||
playSound(Sound.GULAG);
|
playSound(Sound.GULAG);
|
||||||
} else {
|
} else {
|
||||||
|
setInfoText("You are out of jail!");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Updates the status of a player.
|
|
||||||
*
|
|
||||||
* @param msg the message containing player status update details
|
|
||||||
*/
|
|
||||||
@Override
|
@Override
|
||||||
public void received(PlayerStatusUpdate msg) {
|
public void received(PlayerStatusUpdate msg) {
|
||||||
playerHandler = msg.getPlayerHandler();
|
setInfoText("Player " + msg.getPlayerName() + " status updated: " + msg.getStatus());
|
||||||
notifyListeners(new UpdatePlayerView());
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Handles timeout warnings.
|
|
||||||
*
|
|
||||||
* @param msg the message containing timeout warning details
|
|
||||||
*/
|
|
||||||
@Override
|
@Override
|
||||||
public void received(TimeOutWarning msg) {
|
public void received(TimeOutWarning msg) {
|
||||||
|
setInfoText("Warning! Time is running out. You have " + msg.getRemainingTime() + " seconds left.");
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Displays the player's assets in response to a server query.
|
|
||||||
*
|
|
||||||
* @param msg the message containing the player's assets
|
|
||||||
*/
|
|
||||||
@Override
|
@Override
|
||||||
public void received(ViewAssetsResponse msg) {
|
public void received(ViewAssetsResponse msg) {
|
||||||
|
setInfoText("Your current assets are being displayed.");
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Handles trade replies from other players.
|
|
||||||
*
|
|
||||||
* @param msg the message containing the trade reply
|
|
||||||
*/
|
|
||||||
@Override
|
@Override
|
||||||
public void received(TradeReply msg) {
|
public void received(TradeReply msg) {
|
||||||
if (msg.getTradeHandler().getStatus()) {
|
|
||||||
|
|
||||||
playSound(Sound.TRADE_ACCEPTED);
|
|
||||||
} else {
|
|
||||||
|
|
||||||
playSound(Sound.TRADE_REJECTED);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Handles trade requests from other players.
|
|
||||||
*
|
|
||||||
* @param msg the message containing the trade request details
|
|
||||||
*/
|
|
||||||
@Override
|
@Override
|
||||||
public void received(TradeRequest msg) {
|
public void received(TradeRequest msg) {
|
||||||
|
|
||||||
// playSound(Sound.TRADE_REQUEST); no sound effect
|
|
||||||
// notifyListeners();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Handles the transition to the next player's turn.
|
|
||||||
*
|
|
||||||
* @param msg the message indicating it's the next player's turn
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public void received(NextPlayerTurn msg) {
|
|
||||||
notifyListeners(new ButtonStatusEvent(true));
|
|
||||||
setState(new ActiveState(this));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@@ -1,8 +0,0 @@
|
|||||||
package pp.monopoly.game.client;
|
|
||||||
|
|
||||||
public class LobbyState extends ClientState{
|
|
||||||
|
|
||||||
LobbyState(ClientGameLogic logic) {
|
|
||||||
super(logic);
|
|
||||||
}
|
|
||||||
}
|
|
@@ -1,8 +0,0 @@
|
|||||||
package pp.monopoly.game.client;
|
|
||||||
|
|
||||||
public class WaitForTurnState extends ClientState{
|
|
||||||
|
|
||||||
WaitForTurnState(ClientGameLogic logic) {
|
|
||||||
super(logic);
|
|
||||||
}
|
|
||||||
}
|
|
@@ -7,19 +7,13 @@
|
|||||||
|
|
||||||
package pp.monopoly.game.server;
|
package pp.monopoly.game.server;
|
||||||
|
|
||||||
import java.util.ArrayList;
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Random;
|
import java.util.Random;
|
||||||
|
|
||||||
import com.jme3.network.serializing.Serializable;
|
|
||||||
|
|
||||||
import pp.monopoly.message.server.DiceResult;
|
import pp.monopoly.message.server.DiceResult;
|
||||||
import pp.monopoly.message.server.EventDrawCard;
|
|
||||||
import pp.monopoly.message.server.NextPlayerTurn;
|
|
||||||
import pp.monopoly.message.server.PlayerStatusUpdate;
|
|
||||||
import pp.monopoly.model.FieldVisitor;
|
import pp.monopoly.model.FieldVisitor;
|
||||||
import pp.monopoly.model.Figure;
|
import pp.monopoly.model.Figure;
|
||||||
import pp.monopoly.model.card.Card;
|
import pp.monopoly.model.card.DeckHelper;
|
||||||
import pp.monopoly.model.fields.BuildingProperty;
|
import pp.monopoly.model.fields.BuildingProperty;
|
||||||
import pp.monopoly.model.fields.EventField;
|
import pp.monopoly.model.fields.EventField;
|
||||||
import pp.monopoly.model.fields.FineField;
|
import pp.monopoly.model.fields.FineField;
|
||||||
@@ -34,28 +28,18 @@ import pp.monopoly.model.fields.WacheField;
|
|||||||
/**
|
/**
|
||||||
* Class representing a player
|
* Class representing a player
|
||||||
*/
|
*/
|
||||||
@Serializable
|
|
||||||
public class Player implements FieldVisitor<Void>{
|
public class Player implements FieldVisitor<Void>{
|
||||||
private final int id;
|
private final int id;
|
||||||
private String name;
|
private String name;
|
||||||
private int accountBalance = 15000;
|
private PlayerColor color;
|
||||||
|
private int accountBalance = 0;
|
||||||
private Figure figure;
|
private Figure figure;
|
||||||
private List<PropertyField> properties = new ArrayList<>();
|
private List<PropertyField> properties;
|
||||||
private int getOutOfJailCard;
|
private int getOutOfJailCard;
|
||||||
private int fieldID;
|
private int fieldID;
|
||||||
private DiceResult rollResult;
|
private DiceResult rollResult;
|
||||||
private transient final PlayerHandler handler;
|
private final PlayerHandler handler;
|
||||||
private transient PlayerState state = new WaitForTurnState();
|
private PlayerState state = new LobbyState();
|
||||||
private int doubletscounter = 0;
|
|
||||||
private boolean mayRollDice = false;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Default constructor for serialization purposes.
|
|
||||||
*/
|
|
||||||
private Player(){
|
|
||||||
id = 0;
|
|
||||||
handler = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructs a player with the speciefied params
|
* Constructs a player with the speciefied params
|
||||||
@@ -79,38 +63,20 @@ public class Player implements FieldVisitor<Void>{
|
|||||||
this.handler = handler;
|
this.handler = handler;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setFigure(Figure figure) {
|
|
||||||
this.figure = figure;
|
|
||||||
}
|
|
||||||
|
|
||||||
public PlayerColor getColor() {
|
|
||||||
switch ((id%6)+1) {
|
|
||||||
case 1: return PlayerColor.CYAN;
|
|
||||||
case 2: return PlayerColor.YELLOW;
|
|
||||||
case 3: return PlayerColor.RED;
|
|
||||||
case 4: return PlayerColor.PINK;
|
|
||||||
case 5: return PlayerColor.GREEN;
|
|
||||||
case 6: return PlayerColor.PURPLE;
|
|
||||||
|
|
||||||
default:
|
|
||||||
return null;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Set the name of the Player
|
* Set the name of the Player
|
||||||
* @param name the new name
|
* @param name the new name
|
||||||
*/
|
*/
|
||||||
public void setName(String name) {
|
void setName(String name) {
|
||||||
this.name = name;
|
this.name = name;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Retuns the Playerhandler
|
* Set the PlayerColor
|
||||||
* @return the Playerhandler
|
* @param color the color to be set to
|
||||||
*/
|
*/
|
||||||
public PlayerHandler getHandler() {
|
void setColor(PlayerColor color) {
|
||||||
return handler;
|
this.color = color;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -128,23 +94,6 @@ public class Player implements FieldVisitor<Void>{
|
|||||||
public int getFieldID() {
|
public int getFieldID() {
|
||||||
return fieldID;
|
return fieldID;
|
||||||
}
|
}
|
||||||
void setActive() {
|
|
||||||
state = new ActiveState();
|
|
||||||
doubletscounter = 0;
|
|
||||||
mayRollDice = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
boolean finishTurn() {
|
|
||||||
if(canFinishTurn()) {
|
|
||||||
state = new WaitForTurnState();
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
else return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
boolean canFinishTurn() {
|
|
||||||
return accountBalance >= 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Moves by the specified amount of steps
|
* Moves by the specified amount of steps
|
||||||
@@ -166,22 +115,6 @@ public class Player implements FieldVisitor<Void>{
|
|||||||
fieldID = fieldID%40;
|
fieldID = fieldID%40;
|
||||||
earnMoney(2000);
|
earnMoney(2000);
|
||||||
}
|
}
|
||||||
figure.moveTo(fieldID);
|
|
||||||
handler.getLogic().getBoardManager().getFieldAtIndex(fieldID).accept(this);
|
|
||||||
return fieldID;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the player to the specified Position on the board
|
|
||||||
* @param position the position to move to
|
|
||||||
* @return the new position
|
|
||||||
*/
|
|
||||||
public int setPosition(int position){
|
|
||||||
if(position < 40 && position > 0) {
|
|
||||||
fieldID = position;
|
|
||||||
figure.moveTo(fieldID);
|
|
||||||
handler.getLogic().getBoardManager().getFieldAtIndex(fieldID).accept(this);
|
|
||||||
}
|
|
||||||
return fieldID;
|
return fieldID;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -201,7 +134,6 @@ public class Player implements FieldVisitor<Void>{
|
|||||||
public void buyProperty(PropertyField property) {
|
public void buyProperty(PropertyField property) {
|
||||||
if (property.getOwner() == null && accountBalance >= property.getPrice()) {
|
if (property.getOwner() == null && accountBalance >= property.getPrice()) {
|
||||||
properties.add(property);
|
properties.add(property);
|
||||||
property.setOwner(this);
|
|
||||||
pay(property.getPrice());
|
pay(property.getPrice());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -217,14 +149,6 @@ public class Player implements FieldVisitor<Void>{
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Set the account Balance
|
|
||||||
* @param accountBalance the amount to be set to
|
|
||||||
*/
|
|
||||||
public void setAccountBalance(int accountBalance) {
|
|
||||||
this.accountBalance = accountBalance;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets this players current accountBalanece
|
* Gets this players current accountBalanece
|
||||||
* @return the amount of money currently owned by this player
|
* @return the amount of money currently owned by this player
|
||||||
@@ -340,22 +264,21 @@ public class Player implements FieldVisitor<Void>{
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Void visit(EventField field) {
|
public Void visit(EventField field) {
|
||||||
Card c = getHandler().getLogic().getDeckHelper().drawCard();
|
DeckHelper.drawCard();
|
||||||
getHandler().getLogic().getDeckHelper().visit(c, this); //Logic
|
|
||||||
getHandler().getLogic().send(this, new EventDrawCard(c.getDescription())); // Card notification
|
|
||||||
getHandler().getLogic().send(this, new PlayerStatusUpdate(getHandler())); //update view
|
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Void visit(WacheField field) {
|
public Void visit(WacheField field) {
|
||||||
setPosition(10);
|
movePos(10);
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public Void visit(GoField field) {
|
public Void visit(GoField field) {
|
||||||
earnMoney(2000);
|
earnMoney(2000);
|
||||||
|
GulagField res = (GulagField) handler.getLogic().getBoardManager().getFieldAtIndex(10);
|
||||||
|
res.accept(this);
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -384,27 +307,7 @@ public class Player implements FieldVisitor<Void>{
|
|||||||
return count;
|
return count;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getNumHouses() {
|
/**
|
||||||
int total = 0;
|
|
||||||
for (PropertyField field : properties) {
|
|
||||||
if (field.getClass() == BuildingProperty.class) {
|
|
||||||
total += ((BuildingProperty) field).getHouses();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return total;
|
|
||||||
}
|
|
||||||
|
|
||||||
public int getNumHotels() {
|
|
||||||
int total = 0;
|
|
||||||
for (PropertyField field : properties) {
|
|
||||||
if (field.getClass() == BuildingProperty.class) {
|
|
||||||
total += ((BuildingProperty) field).getHotel();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return total;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Inner class for dice functionality in the game.
|
* Inner class for dice functionality in the game.
|
||||||
* Rolls random dice values.
|
* Rolls random dice values.
|
||||||
*/
|
*/
|
||||||
@@ -427,21 +330,7 @@ public class Player implements FieldVisitor<Void>{
|
|||||||
* @return a List of two integers representing the dice roll results
|
* @return a List of two integers representing the dice roll results
|
||||||
*/
|
*/
|
||||||
DiceResult rollDice() {
|
DiceResult rollDice() {
|
||||||
if (mayRollDice) {
|
return state.rollDice();
|
||||||
state.rollDice();
|
|
||||||
}
|
|
||||||
if (rollResult.isDoublets()) {
|
|
||||||
doubletscounter++;
|
|
||||||
mayRollDice = true;
|
|
||||||
getHandler().getLogic().send(this, new NextPlayerTurn());
|
|
||||||
setName(name);
|
|
||||||
if (doubletscounter >= 3) {
|
|
||||||
setPosition(10);
|
|
||||||
}
|
|
||||||
} else {
|
|
||||||
mayRollDice = false;
|
|
||||||
}
|
|
||||||
return rollResult;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -475,7 +364,7 @@ public class Player implements FieldVisitor<Void>{
|
|||||||
@Override
|
@Override
|
||||||
public DiceResult rollDice() {
|
public DiceResult rollDice() {
|
||||||
List<Integer> roll = List.of(Dice.rollDice(), Dice.rollDice());
|
List<Integer> roll = List.of(Dice.rollDice(), Dice.rollDice());
|
||||||
rollResult = new DiceResult(roll.get(0), roll.get(1));
|
rollResult = new DiceResult(roll);
|
||||||
return rollResult;
|
return rollResult;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -491,6 +380,31 @@ public class Player implements FieldVisitor<Void>{
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* A class to represent the Lobby PlayerState
|
||||||
|
* Set when in Lobby
|
||||||
|
*/
|
||||||
|
private class LobbyState implements PlayerState{
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public DiceResult rollDice() {
|
||||||
|
//do nothing
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void payBail() {
|
||||||
|
//do nothing
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void useJailCard() {
|
||||||
|
// do nothing
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A class to represent the Jailed PlayerState
|
* A class to represent the Jailed PlayerState
|
||||||
* Set when in Gulag
|
* Set when in Gulag
|
||||||
@@ -502,7 +416,7 @@ public class Player implements FieldVisitor<Void>{
|
|||||||
@Override
|
@Override
|
||||||
public DiceResult rollDice() {
|
public DiceResult rollDice() {
|
||||||
List<Integer> roll = List.of(Dice.rollDice(), Dice.rollDice());
|
List<Integer> roll = List.of(Dice.rollDice(), Dice.rollDice());
|
||||||
rollResult = new DiceResult(roll.get(0), roll.get(1));
|
rollResult = new DiceResult(roll);
|
||||||
if (rollResult.isDoublets()) {
|
if (rollResult.isDoublets()) {
|
||||||
state = new ActiveState();
|
state = new ActiveState();
|
||||||
} else if (DoubletsCounter == 0) {
|
} else if (DoubletsCounter == 0) {
|
||||||
@@ -526,19 +440,47 @@ public class Player implements FieldVisitor<Void>{
|
|||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
private class WaitForTurnState implements PlayerState {
|
|
||||||
|
private class BankruptState implements PlayerState {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public DiceResult rollDice() {
|
public DiceResult rollDice() {
|
||||||
return null;
|
// TODO Auto-generated method stub
|
||||||
|
throw new UnsupportedOperationException("Unimplemented method 'rollDice'");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void payBail() {
|
public void payBail() {
|
||||||
|
// TODO Auto-generated method stub
|
||||||
|
throw new UnsupportedOperationException("Unimplemented method 'payBail'");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void useJailCard() {
|
public void useJailCard() {
|
||||||
|
// TODO Auto-generated method stub
|
||||||
|
throw new UnsupportedOperationException("Unimplemented method 'useJailCard'");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
private class WaitForTurnState implements PlayerState {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public DiceResult rollDice() {
|
||||||
|
// TODO Auto-generated method stub
|
||||||
|
throw new UnsupportedOperationException("Unimplemented method 'rollDice'");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void payBail() {
|
||||||
|
// TODO Auto-generated method stub
|
||||||
|
throw new UnsupportedOperationException("Unimplemented method 'payBail'");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void useJailCard() {
|
||||||
|
// TODO Auto-generated method stub
|
||||||
|
throw new UnsupportedOperationException("Unimplemented method 'useJailCard'");
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -6,12 +6,12 @@ import com.jme3.math.ColorRGBA;
|
|||||||
* Enum representing six distinct colors for players in the game.
|
* Enum representing six distinct colors for players in the game.
|
||||||
*/
|
*/
|
||||||
public enum PlayerColor {
|
public enum PlayerColor {
|
||||||
CYAN(new ColorRGBA(1 / 255f, 190 / 255f, 254 / 255f, 1)),
|
GREEN_LIGHT(new ColorRGBA(0 / 255f, 204 / 255f, 0 / 255f, 1)), // Hex: 00cc00
|
||||||
YELLOW(new ColorRGBA(255 / 255f, 255 / 255f, 0 / 255f, 1)),
|
RED(new ColorRGBA(255 / 255f, 0 / 255f, 0 / 255f, 1)), // Hex: ff0000
|
||||||
RED(new ColorRGBA(255 / 255f, 0 / 255f, 0 / 255f, 1)),
|
BLUE(new ColorRGBA(0 / 255f, 0 / 255f, 204 / 255f, 1)), // Hex: 0000cc
|
||||||
PINK(new ColorRGBA(255 / 255f, 77 / 255f, 166 / 255f, 1)),
|
PINK(new ColorRGBA(255 / 255f, 77 / 255f, 166 / 255f, 1)), // Hex: ff4da6
|
||||||
GREEN(new ColorRGBA(0 / 255f, 204 / 255f, 0 / 255f, 1)),
|
GREEN_DARK(new ColorRGBA(0 / 255f, 102 / 255f, 0 / 255f, 1)), // Hex: 006600
|
||||||
PURPLE(new ColorRGBA(143 / 255f, 0 / 255f, 255 / 255f, 1));
|
YELLOW(new ColorRGBA(255 / 255f, 255 / 255f, 0 / 255f, 1)); // Hex: ffff00
|
||||||
|
|
||||||
private final ColorRGBA color;
|
private final ColorRGBA color;
|
||||||
|
|
||||||
|
@@ -1,30 +1,18 @@
|
|||||||
package pp.monopoly.game.server;
|
package pp.monopoly.game.server;
|
||||||
|
|
||||||
import java.util.Collection;
|
|
||||||
import java.util.Collections;
|
|
||||||
import java.util.HashSet;
|
|
||||||
import java.util.LinkedList;
|
import java.util.LinkedList;
|
||||||
|
import java.util.Collection;
|
||||||
|
import java.util.HashSet;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.NoSuchElementException;
|
import java.util.NoSuchElementException;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
|
||||||
import com.jme3.network.serializing.Serializable;
|
|
||||||
|
|
||||||
import pp.monopoly.model.LimitedLinkedList;
|
|
||||||
/**
|
/**
|
||||||
* A class for helping with player actions and managing thier turns
|
* A class for helping with player actions and managing thier turns
|
||||||
*/
|
*/
|
||||||
@Serializable
|
|
||||||
public class PlayerHandler {
|
public class PlayerHandler {
|
||||||
private List<Player> players = new LinkedList<>();
|
private List<Player> players = new LinkedList<>();
|
||||||
private Set<Player> readyPlayers = new HashSet<>();
|
private Set<Player> readyPlayers = new HashSet<>();
|
||||||
private transient ServerGameLogic logic;
|
private ServerGameLogic logic;
|
||||||
private Player extra = null;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Default constructor for serialization purposes.
|
|
||||||
*/
|
|
||||||
private PlayerHandler() {}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Contructs a PlayerHandler
|
* Contructs a PlayerHandler
|
||||||
@@ -62,14 +50,6 @@ public class PlayerHandler {
|
|||||||
return players.size();
|
return players.size();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Retuns all players
|
|
||||||
* @return List of all players
|
|
||||||
*/
|
|
||||||
public List<Player> getPlayers() {
|
|
||||||
return players;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Chechs if all players are ready to start the game
|
* Chechs if all players are ready to start the game
|
||||||
* @return {@code true} if all players are ready, otherwise {@code false}
|
* @return {@code true} if all players are ready, otherwise {@code false}
|
||||||
@@ -128,13 +108,8 @@ public class PlayerHandler {
|
|||||||
* Completes a player turn and return the next player
|
* Completes a player turn and return the next player
|
||||||
* @return the next players who is active
|
* @return the next players who is active
|
||||||
*/
|
*/
|
||||||
public Player nextPlayer() {
|
Player nextPlayer() {
|
||||||
Player tmp = players.get(0);
|
Player tmp = players.get(0);
|
||||||
if (extra != null) {
|
|
||||||
tmp = extra;
|
|
||||||
extra = null;
|
|
||||||
return tmp;
|
|
||||||
}
|
|
||||||
players.remove(0);
|
players.remove(0);
|
||||||
players.add(tmp);
|
players.add(tmp);
|
||||||
return players.get(0);
|
return players.get(0);
|
||||||
@@ -144,7 +119,7 @@ public class PlayerHandler {
|
|||||||
* Returns the {@link ServerGameLogic} of this PlayerHandler
|
* Returns the {@link ServerGameLogic} of this PlayerHandler
|
||||||
* @return the {@link ServerGameLogic} of this PlayerHandler
|
* @return the {@link ServerGameLogic} of this PlayerHandler
|
||||||
*/
|
*/
|
||||||
public ServerGameLogic getLogic() {
|
ServerGameLogic getLogic() {
|
||||||
return logic;
|
return logic;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -153,32 +128,10 @@ public class PlayerHandler {
|
|||||||
* @param id the id to be searched for
|
* @param id the id to be searched for
|
||||||
* @return the player with the required id
|
* @return the player with the required id
|
||||||
*/
|
*/
|
||||||
public Player getPlayerById(int id) {
|
Player getPlayerById(int id) {
|
||||||
for (Player player : players) {
|
for (Player player : players) {
|
||||||
if (player.getId() == id) return player;
|
if (player.getId() == id) return player;
|
||||||
}
|
}
|
||||||
throw new NoSuchElementException("Player mit id "+id+" existiert nicht");
|
throw new NoSuchElementException("Player mit id "+id+" existiert nicht");
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* Arranges the players turns in a random order.
|
|
||||||
* Shuffles the players and sets their state to WaitForNextTurn, the first one will be active
|
|
||||||
*/
|
|
||||||
void randomOrder() {
|
|
||||||
Collections.shuffle(players);
|
|
||||||
for (Player player : players) {
|
|
||||||
player.finishTurn();
|
|
||||||
}
|
|
||||||
players.get(0).setActive();
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setStartBalance(int amount) {
|
|
||||||
for (Player player : players) {
|
|
||||||
player.setAccountBalance(amount);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public void extraTurn(Player player) {
|
|
||||||
if (players.contains(player)) extra = player;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@@ -1,30 +1,20 @@
|
|||||||
package pp.monopoly.game.server;
|
package pp.monopoly.game.server;
|
||||||
|
|
||||||
|
import pp.monopoly.MonopolyConfig;
|
||||||
|
import pp.monopoly.message.client.*;
|
||||||
|
import pp.monopoly.message.server.ServerMessage;
|
||||||
|
import pp.monopoly.message.server.TradeReply;
|
||||||
|
import pp.monopoly.message.server.TradeRequest;
|
||||||
|
import pp.monopoly.message.server.ViewAssetsResponse;
|
||||||
|
import pp.monopoly.model.fields.BoardManager;
|
||||||
|
import pp.monopoly.model.fields.PropertyField;
|
||||||
|
|
||||||
import java.lang.System.Logger;
|
import java.lang.System.Logger;
|
||||||
import java.lang.System.Logger.Level;
|
import java.lang.System.Logger.Level;
|
||||||
|
|
||||||
import pp.monopoly.MonopolyConfig;
|
import pp.monopoly.MonopolyConfig;
|
||||||
import pp.monopoly.message.client.BuyPropertyRequest;
|
|
||||||
import pp.monopoly.message.client.ClientInterpreter;
|
import pp.monopoly.message.client.ClientInterpreter;
|
||||||
import pp.monopoly.message.client.EndTurn;
|
|
||||||
import pp.monopoly.message.client.PlayerReady;
|
|
||||||
import pp.monopoly.message.client.RollDice;
|
|
||||||
import pp.monopoly.message.client.TradeOffer;
|
|
||||||
import pp.monopoly.message.client.TradeResponse;
|
|
||||||
import pp.monopoly.message.client.ViewAssetsRequest;
|
|
||||||
import pp.monopoly.message.server.GameStart;
|
|
||||||
import pp.monopoly.message.server.NextPlayerTurn;
|
|
||||||
import pp.monopoly.message.server.PlayerStatusUpdate;
|
|
||||||
import pp.monopoly.message.server.ServerMessage;
|
import pp.monopoly.message.server.ServerMessage;
|
||||||
import pp.monopoly.message.server.TradeReply;
|
|
||||||
import pp.monopoly.message.server.TradeRequest;
|
|
||||||
import pp.monopoly.message.server.ViewAssetsResponse;
|
|
||||||
import pp.monopoly.model.Board;
|
|
||||||
import pp.monopoly.model.Figure;
|
|
||||||
import pp.monopoly.model.Rotation;
|
|
||||||
import pp.monopoly.model.card.DeckHelper;
|
|
||||||
import pp.monopoly.model.fields.BoardManager;
|
|
||||||
import pp.monopoly.model.fields.PropertyField;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Controls the server-side game logic for Monopoly.
|
* Controls the server-side game logic for Monopoly.
|
||||||
@@ -36,11 +26,9 @@ public class ServerGameLogic implements ClientInterpreter {
|
|||||||
private final MonopolyConfig config;
|
private final MonopolyConfig config;
|
||||||
private final PlayerHandler playerHandler = new PlayerHandler(this);
|
private final PlayerHandler playerHandler = new PlayerHandler(this);
|
||||||
private final ServerSender serverSender;
|
private final ServerSender serverSender;
|
||||||
private ServerState state = ServerState.LOBBY;
|
private ServerState state = ServerState.CREATEGAME;
|
||||||
private static final int MAX_PLAYERS = 6;
|
private static final int MAX_PLAYERS = 6;
|
||||||
private BoardManager boardManager = new BoardManager();
|
private BoardManager boardManager = new BoardManager();
|
||||||
private final DeckHelper deckHelper = new DeckHelper();
|
|
||||||
private int startMoney;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructs a ServerGameLogic instance with the specified sender and configuration.
|
* Constructs a ServerGameLogic instance with the specified sender and configuration.
|
||||||
@@ -169,15 +157,9 @@ public class ServerGameLogic implements ClientInterpreter {
|
|||||||
@Override
|
@Override
|
||||||
public void received(EndTurn msg, int from) {
|
public void received(EndTurn msg, int from) {
|
||||||
Player player = playerHandler.getPlayerById(from);
|
Player player = playerHandler.getPlayerById(from);
|
||||||
if (player != null && player == playerHandler.getPlayerAtIndex(0)) {
|
if (player != null && state == ServerState.INGAME) {
|
||||||
if (player.finishTurn()) {
|
LOGGER.log(Level.DEBUG, "Ending turn for player {0}", player.getName());
|
||||||
LOGGER.log(Level.DEBUG, "Ending turn for player {0}", player.getName());
|
playerHandler.nextPlayer();
|
||||||
Player next = playerHandler.nextPlayer();
|
|
||||||
next.setActive();
|
|
||||||
send(next, new NextPlayerTurn());
|
|
||||||
send(next, new PlayerStatusUpdate(playerHandler));
|
|
||||||
send(player, new PlayerStatusUpdate(playerHandler));
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -190,26 +172,12 @@ public class ServerGameLogic implements ClientInterpreter {
|
|||||||
@Override
|
@Override
|
||||||
public void received(PlayerReady msg, int from) {
|
public void received(PlayerReady msg, int from) {
|
||||||
Player player = playerHandler.getPlayerById(from);
|
Player player = playerHandler.getPlayerById(from);
|
||||||
if(player.getId() == 0) {
|
|
||||||
startMoney = msg.getStartMoney();
|
|
||||||
}
|
|
||||||
|
|
||||||
if (player != null) {
|
if (player != null) {
|
||||||
player.setName(msg.getName());
|
player.setName(msg.getName());
|
||||||
player.setFigure(new Figure(1, -10, -10, Rotation.LEFT, msg.getFigure()));
|
player.setColor(msg.getColor());
|
||||||
//TODO add figure to the map
|
player.setName(msg.getName());
|
||||||
playerHandler.setPlayerReady(player, true);
|
|
||||||
LOGGER.log(Level.DEBUG, "Player {0} is ready", player.getName());
|
LOGGER.log(Level.DEBUG, "Player {0} is ready", player.getName());
|
||||||
}
|
}
|
||||||
|
|
||||||
if(playerHandler.allPlayersReady()) {
|
|
||||||
playerHandler.setStartBalance(startMoney);
|
|
||||||
for (Player p : playerHandler.getPlayers()) {
|
|
||||||
send(p, new GameStart(playerHandler));
|
|
||||||
}
|
|
||||||
playerHandler.randomOrder();
|
|
||||||
send(playerHandler.getPlayerAtIndex(0), new NextPlayerTurn());
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -221,7 +189,7 @@ public class ServerGameLogic implements ClientInterpreter {
|
|||||||
@Override
|
@Override
|
||||||
public void received(RollDice msg, int from) {
|
public void received(RollDice msg, int from) {
|
||||||
Player player = playerHandler.getPlayerById(from);
|
Player player = playerHandler.getPlayerById(from);
|
||||||
if (player != null) {
|
if (player != null && state == ServerState.INGAME) {
|
||||||
send(player, player.rollDice());
|
send(player, player.rollDice());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -268,12 +236,11 @@ public class ServerGameLogic implements ClientInterpreter {
|
|||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void received(ViewAssetsRequest msg, int from) {
|
public void received(ViewAssetsRequest msg, int from) {
|
||||||
Player sender = playerHandler.getPlayerById(from);
|
Player player = playerHandler.getPlayerById(from);
|
||||||
Player player = msg.getPlayer();
|
if (player != null) {
|
||||||
if (sender != null && player != null) {
|
LOGGER.log(Level.DEBUG, "Processing ViewAssetsRequest for player {0}", player.getName());
|
||||||
LOGGER.log(Level.DEBUG, "Processing ViewAssetsRequest for player {0}", sender.getName());
|
|
||||||
|
|
||||||
send(sender, new ViewAssetsResponse(boardManager, player.getProperties(), player.getAccountBalance(), player.getNumJailCard()));
|
send(player, new ViewAssetsResponse(player.getProperties(), player.getAccountBalance(), player.getNumJailCard()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -289,8 +256,4 @@ public class ServerGameLogic implements ClientInterpreter {
|
|||||||
public Player getPlayerById(int id) {
|
public Player getPlayerById(int id) {
|
||||||
return playerHandler.getPlayerById(id);
|
return playerHandler.getPlayerById(id);
|
||||||
}
|
}
|
||||||
|
|
||||||
public DeckHelper getDeckHelper() {
|
|
||||||
return deckHelper;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@@ -1,20 +1,28 @@
|
|||||||
package pp.monopoly.message.client;
|
package pp.monopoly.message.client;
|
||||||
|
|
||||||
import com.jme3.network.serializing.Serializable;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Represents a request from a player to buy a property.
|
* Represents a request from a player to buy a property.
|
||||||
*/
|
*/
|
||||||
@Serializable
|
|
||||||
public class BuyPropertyRequest extends ClientMessage{
|
public class BuyPropertyRequest extends ClientMessage{
|
||||||
|
private int propertyId;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructs a BuyPropertyRequest with the specified property ID.
|
* Constructs a BuyPropertyRequest with the specified property ID.
|
||||||
*
|
*
|
||||||
* @param propertyId the ID of the property to buy
|
* @param propertyId the ID of the property to buy
|
||||||
*/
|
*/
|
||||||
public BuyPropertyRequest() {}
|
public BuyPropertyRequest(int propertyId) {
|
||||||
|
this.propertyId = propertyId;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gets the ID of the property to buy.
|
||||||
|
*
|
||||||
|
* @return the property ID
|
||||||
|
*/
|
||||||
|
public int getPropertyId() {
|
||||||
|
return propertyId;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void accept(ClientInterpreter interpreter, int from) {
|
public void accept(ClientInterpreter interpreter, int from) {
|
||||||
|
@@ -1,18 +1,9 @@
|
|||||||
package pp.monopoly.message.client;
|
package pp.monopoly.message.client;
|
||||||
|
|
||||||
import com.jme3.network.serializing.Serializable;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Represents a message indicating the player wants to end their turn.
|
* Represents a message indicating the player wants to end their turn.
|
||||||
*/
|
*/
|
||||||
@Serializable
|
|
||||||
public class EndTurn extends ClientMessage{
|
public class EndTurn extends ClientMessage{
|
||||||
|
|
||||||
/**
|
|
||||||
* Default constructor for serialization purposes.
|
|
||||||
*/
|
|
||||||
public EndTurn() { /* empty */ }
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void accept(ClientInterpreter interpreter, int from) {
|
public void accept(ClientInterpreter interpreter, int from) {
|
||||||
interpreter.received(this, from);
|
interpreter.received(this, from);
|
||||||
|
@@ -1,51 +1,49 @@
|
|||||||
package pp.monopoly.message.client;
|
package pp.monopoly.message.client;
|
||||||
|
|
||||||
import com.jme3.network.serializing.Serializable;
|
import pp.monopoly.game.server.PlayerColor;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Represents a message indicating the player is ready to play.
|
* Represents a message indicating the player is ready to play.
|
||||||
*/
|
*/
|
||||||
@Serializable
|
public class PlayerReady extends ClientMessage{
|
||||||
public class PlayerReady extends ClientMessage {
|
|
||||||
private boolean isReady;
|
private boolean isReady;
|
||||||
private String name;
|
private String name;
|
||||||
private String figure;
|
private PlayerColor color;
|
||||||
private int startMoney;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Default constructor for serialization purposes.
|
|
||||||
*/
|
|
||||||
private PlayerReady() { /* empty */ }
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructs a PlayerReady message.
|
* Constructs a PlayerReady message.
|
||||||
*
|
*
|
||||||
* @param isReady true if the player is ready, false otherwise
|
* @param isReady true if the player is ready, false otherwise
|
||||||
* @param name the name of the player
|
|
||||||
* @param color the color of the player (can be null)
|
|
||||||
*/
|
*/
|
||||||
public PlayerReady(boolean isReady, String name, String figure, int startMoney) {
|
public PlayerReady(boolean isReady) {
|
||||||
this.isReady = isReady;
|
this.isReady = isReady;
|
||||||
this.name = name;
|
|
||||||
this.figure = figure;
|
|
||||||
this.startMoney = startMoney;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Getter for the Name
|
||||||
|
* @return the Name
|
||||||
|
*/
|
||||||
public String getName() {
|
public String getName() {
|
||||||
return name;
|
return name;
|
||||||
}
|
}
|
||||||
|
|
||||||
public String getFigure() {
|
/**
|
||||||
return figure;
|
* Getter for the Playercolor
|
||||||
|
* @return the Playercolor
|
||||||
|
*/
|
||||||
|
public PlayerColor getColor() {
|
||||||
|
return color;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Checks if the player is ready.
|
||||||
|
*
|
||||||
|
* @return true if ready, false otherwise
|
||||||
|
*/
|
||||||
public boolean isReady() {
|
public boolean isReady() {
|
||||||
return isReady;
|
return isReady;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getStartMoney() {
|
|
||||||
return startMoney;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void accept(ClientInterpreter interpreter, int from) {
|
public void accept(ClientInterpreter interpreter, int from) {
|
||||||
|
@@ -1,18 +1,9 @@
|
|||||||
package pp.monopoly.message.client;
|
package pp.monopoly.message.client;
|
||||||
|
|
||||||
import com.jme3.network.serializing.Serializable;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Represents a message requesting to roll the dice.
|
* Represents a message requesting to roll the dice.
|
||||||
*/
|
*/
|
||||||
@Serializable
|
|
||||||
public class RollDice extends ClientMessage{
|
public class RollDice extends ClientMessage{
|
||||||
|
|
||||||
/**
|
|
||||||
* Default constructor for serialization purposes.
|
|
||||||
*/
|
|
||||||
public RollDice() { /* empty */ }
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void accept(ClientInterpreter interpreter, int from) {
|
public void accept(ClientInterpreter interpreter, int from) {
|
||||||
interpreter.received(this, from);
|
interpreter.received(this, from);
|
||||||
|
@@ -1,21 +1,14 @@
|
|||||||
package pp.monopoly.message.client;
|
package pp.monopoly.message.client;
|
||||||
|
|
||||||
import com.jme3.network.serializing.Serializable;
|
|
||||||
|
|
||||||
import pp.monopoly.model.TradeHandler;
|
import pp.monopoly.model.TradeHandler;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Represents a trade Request message from one player to another.
|
* Represents a trade Request message from one player to another.
|
||||||
*/
|
*/
|
||||||
@Serializable
|
|
||||||
public class TradeOffer extends ClientMessage{
|
public class TradeOffer extends ClientMessage{
|
||||||
private int receiverId;
|
private int receiverId;
|
||||||
private TradeHandler tradehandler;
|
private TradeHandler tradehandler;
|
||||||
|
|
||||||
/**
|
|
||||||
* Default constructor for serialization purposes.
|
|
||||||
*/
|
|
||||||
private TradeOffer() { /* empty */ }
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructs a TradeOffer with the specified details.
|
* Constructs a TradeOffer with the specified details.
|
||||||
|
@@ -1,22 +1,14 @@
|
|||||||
package pp.monopoly.message.client;
|
package pp.monopoly.message.client;
|
||||||
|
|
||||||
import com.jme3.network.serializing.Serializable;
|
|
||||||
|
|
||||||
import pp.monopoly.model.TradeHandler;
|
import pp.monopoly.model.TradeHandler;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Represents a response to a trade offer.
|
* Represents a response to a trade offer.
|
||||||
*/
|
*/
|
||||||
@Serializable
|
|
||||||
public class TradeResponse extends ClientMessage{
|
public class TradeResponse extends ClientMessage{
|
||||||
private int initiatorId;
|
private int initiatorId;
|
||||||
private TradeHandler tradeHandler;
|
private TradeHandler tradeHandler;
|
||||||
|
|
||||||
/**
|
|
||||||
* Default constructor for serialization purposes.
|
|
||||||
*/
|
|
||||||
private TradeResponse() { /* empty */ }
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Constructs a TradeResponse with the specified response details.
|
* Constructs a TradeResponse with the specified response details.
|
||||||
*
|
*
|
||||||
|
@@ -1,33 +1,12 @@
|
|||||||
package pp.monopoly.message.client;
|
package pp.monopoly.message.client;
|
||||||
|
|
||||||
import com.jme3.network.serializing.Serializable;
|
|
||||||
|
|
||||||
import pp.monopoly.game.server.Player;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Represents a request from a player to view their assets.
|
* Represents a request from a player to view their assets.
|
||||||
*/
|
*/
|
||||||
@Serializable
|
|
||||||
public class ViewAssetsRequest extends ClientMessage{
|
public class ViewAssetsRequest extends ClientMessage{
|
||||||
|
|
||||||
private Player player;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Default constructor for serialization purposes.
|
|
||||||
*/
|
|
||||||
private ViewAssetsRequest() { /* empty */ }
|
|
||||||
|
|
||||||
public ViewAssetsRequest(Player player) {
|
|
||||||
this.player = player;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void accept(ClientInterpreter interpreter, int from) {
|
public void accept(ClientInterpreter interpreter, int from) {
|
||||||
interpreter.received(this, from);
|
interpreter.received(this, from);
|
||||||
}
|
}
|
||||||
|
|
||||||
public Player getPlayer() {
|
|
||||||
return player;
|
|
||||||
}
|
|
||||||
|
|
||||||
}
|
}
|
@@ -0,0 +1,39 @@
|
|||||||
|
package pp.monopoly.message.server;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Represents the server's response to a player's request to buy a property.
|
||||||
|
*/
|
||||||
|
public class BuyPropertyResponse extends ServerMessage{
|
||||||
|
private final boolean successful;
|
||||||
|
private final String propertyName;
|
||||||
|
private final String reason; // Reason for failure, if any
|
||||||
|
|
||||||
|
public BuyPropertyResponse(boolean successful, String propertyName, String reason) {
|
||||||
|
this.successful = successful;
|
||||||
|
this.propertyName = propertyName;
|
||||||
|
this.reason = reason;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isSuccessful() {
|
||||||
|
return successful;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getPropertyName() {
|
||||||
|
return propertyName;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getReason() {
|
||||||
|
return reason;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void accept(ServerInterpreter interpreter) {
|
||||||
|
interpreter.received(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getInfoTextKey() {
|
||||||
|
// TODO Auto-generated method stub
|
||||||
|
throw new UnsupportedOperationException("Unimplemented method 'getInfoTextKey'");
|
||||||
|
}
|
||||||
|
}
|
@@ -2,29 +2,16 @@ package pp.monopoly.message.server;
|
|||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
import com.jme3.network.serializing.Serializable;
|
|
||||||
|
|
||||||
@Serializable
|
|
||||||
public class DiceResult extends ServerMessage{
|
public class DiceResult extends ServerMessage{
|
||||||
|
|
||||||
private final int a;
|
private List<Integer> rollResult;
|
||||||
private final int b;
|
|
||||||
|
|
||||||
/**
|
public DiceResult(List<Integer> rollResult) {
|
||||||
* Default constructor for serialization purposes.
|
this.rollResult = rollResult;
|
||||||
*/
|
|
||||||
private DiceResult() {
|
|
||||||
a = 1;
|
|
||||||
b = 1;
|
|
||||||
}
|
|
||||||
|
|
||||||
public DiceResult(int a, int b) {
|
|
||||||
this.a = a;
|
|
||||||
this.b = b;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<Integer> getRollResult() {
|
public List<Integer> getRollResult() {
|
||||||
return List.of(a,b);
|
return rollResult;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -39,10 +26,10 @@ public class DiceResult extends ServerMessage{
|
|||||||
}
|
}
|
||||||
|
|
||||||
public boolean isDoublets() {
|
public boolean isDoublets() {
|
||||||
return a == b;
|
return rollResult.get(0) == rollResult.get(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
public int calcTotal() {
|
public int calcTotal() {
|
||||||
return a+b;
|
return rollResult.get(0)+rollResult.get(1);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|