Compare commits
71 Commits
Author | SHA1 | Date |
---|---|---|
|
3c7d68109a | |
|
eaa5b64956 | |
|
5b3ecb52bb | |
|
9ea176cc6d | |
|
7a706e1b73 | |
|
175241395e | |
|
1b08b39105 | |
|
8dd697bb66 | |
|
30360c7bd4 | |
|
6f98a82a90 | |
|
a4cb3f68d5 | |
|
424dd2544e | |
|
27157fb0a3 | |
|
0fef0069f8 | |
|
5839b13980 | |
|
0f42a66e4a | |
|
c14f7d5bfe | |
|
f13e0ab2ba | |
|
e85f151b33 | |
|
7fb19bfeac | |
|
9ed0dc1e9e | |
|
9d51e708e5 | |
|
44f04a454f | |
|
678ed9d81e | |
|
be6b50739f | |
|
458aa46638 | |
|
be46f3587e | |
|
9c6d629357 | |
|
70749c2c62 | |
|
3ad7233383 | |
|
529178f4db | |
|
4045d3ce7b | |
|
d97826db6c | |
|
2cce52b827 | |
|
f73114eaeb | |
|
931a757a67 | |
|
8b4b017e85 | |
|
6909b9417f | |
|
29d4118d8f | |
|
0cea473146 | |
|
a4bfe5eb5f | |
|
1e58626e6f | |
|
9d62e74877 | |
|
8933a40d53 | |
|
cb9b110621 | |
|
4dd1c9b39b | |
|
a3827d6bd0 | |
|
b7215db6d9 | |
|
7f610b4a90 | |
|
65451d6912 | |
|
bfb25dfe2c | |
|
3370975e57 | |
|
20732e730c | |
|
f4cf28f4bf | |
|
7ef04711c3 | |
|
fdd2e6d2f1 | |
|
31e4d91baf | |
|
e27b852c14 | |
|
15c23c1f2c | |
|
0b2ee88316 | |
|
42fc341608 | |
|
10e5a8ef5e | |
|
1f04760f6a | |
|
db2b0532bc | |
|
8c953a1f2b | |
|
626ae041e5 | |
|
f5a0f8c9fe | |
|
f1adf06035 | |
|
e0748ceff9 | |
|
0935c3bcb7 | |
|
d8804d5369 |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 396 B |
3
makefile
3
makefile
|
@ -29,6 +29,9 @@ test-jar: jar
|
||||||
# $(JR) -cp "$(OUT_DIR)/:$(LIB_DIR)/*" $(MAIN_CLASS)
|
# $(JR) -cp "$(OUT_DIR)/:$(LIB_DIR)/*" $(MAIN_CLASS)
|
||||||
$(JR) -jar $(OUT_DIR)/$(JAR_NAME)
|
$(JR) -jar $(OUT_DIR)/$(JAR_NAME)
|
||||||
|
|
||||||
|
docs:
|
||||||
|
javadoc -cp "$(LIB_DIR)/*" -d "docs" $(SRC_DIR)/*.java
|
||||||
|
|
||||||
test: classfiles
|
test: classfiles
|
||||||
$(JR) -cp "$(OUT_DIR)$(SEPERATOR)$(LIB_DIR)/*" $(MAIN_CLASS)
|
$(JR) -cp "$(OUT_DIR)$(SEPERATOR)$(LIB_DIR)/*" $(MAIN_CLASS)
|
||||||
|
|
||||||
|
|
|
@ -3,22 +3,43 @@ import java.util.Iterator;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Random;
|
import java.util.Random;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Die Klasse AiPlayer ist die Basis für alle Ki Spieler und jede Spezifische Ki erweitert diese Klasse.
|
||||||
|
* @author Florian Alexy und Florian Hantzschel
|
||||||
|
* */
|
||||||
public abstract class AiPlayer extends LocalPlayer implements Runnable {
|
public abstract class AiPlayer extends LocalPlayer implements Runnable {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Liste aller erstellten ShootThreads
|
||||||
|
*/
|
||||||
List<Thread> shootThreads;
|
List<Thread> shootThreads;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Konstruktor
|
||||||
|
* @author Florian Alexy und Florian Hantzschel
|
||||||
|
*/
|
||||||
public AiPlayer() {
|
public AiPlayer() {
|
||||||
this.setName("AI Player");
|
this.setName("AI Player");
|
||||||
this.shootThreads = new ArrayList<>();
|
this.shootThreads = new ArrayList<>();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gibt einen zufälligen Punkt im Spielfeld zurück.
|
||||||
|
* @return Ein zufälliger Punkt
|
||||||
|
* @author Florian Alexy und Florian Hantzschel
|
||||||
|
*/
|
||||||
public Point RandomPoint() {
|
public Point RandomPoint() {
|
||||||
Random random = new Random(); // Pseudo Random für zufallszahlen
|
Random random = new Random(); // Pseudo Random für zufallszahlen
|
||||||
int posx = random.nextInt(super.board.getSize()); // Generiert 0 - 13
|
int posx = random.nextInt(super.board.getSize()); // Generiert 0 - 13
|
||||||
int posy = random.nextInt(super.board.getSize()); //
|
int posy = random.nextInt(super.board.getSize()); //
|
||||||
return new Point(posx,posy);
|
return new Point(posx,posy);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Initialisiert das Board.
|
||||||
|
* @param size größe des Boards
|
||||||
|
* @author Florian Alexy und Florian Hantzschel
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void createBoard(int size) {
|
public void createBoard(int size) {
|
||||||
super.createBoard(size);
|
super.createBoard(size);
|
||||||
|
@ -26,30 +47,51 @@ public abstract class AiPlayer extends LocalPlayer implements Runnable {
|
||||||
this.ready();
|
this.ready();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ki Methode zum zufälligen Setzten der Schiffe
|
||||||
|
* @author Florian Alexy und Florian Hantzschel
|
||||||
|
*/
|
||||||
public void aiSetShips() {
|
public void aiSetShips() {
|
||||||
for(int i = 0; i < super.board.getShips().size(); i++) { // Interiert durch alle Shiffe
|
for(int i = 0; i < super.board.getShips().size(); i++) { // Interiert durch alle Shiffe
|
||||||
//TODO: set horizontal
|
//TODO: set horizontal
|
||||||
while(!super.board.getShips().get(i).setPosition(RandomPoint(), true, super.board.getShips(), super.board.getSize())) {}
|
while(!super.board.getShips().get(i).setPosition(RandomPoint(), true, super.board.getShips(), super.board.getSize())) {}
|
||||||
} // Versucht das Aktuelle Shiff zu setzten und wiederholt solange bis es funktioniert
|
} // Versucht das aktuelle Schiff zu setzten und wiederholt solange bis es funktioniert
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* Ki Methode zum zufälligen Schießen auf das gegnerische Board.
|
||||||
|
* @author Florian Alexy und Florian Hantzschel
|
||||||
|
*/
|
||||||
public void aiShoot() {
|
public void aiShoot() {
|
||||||
|
if (!this.myTurn) return;
|
||||||
this.enemy.receiveShoot(RandomPoint());
|
this.enemy.receiveShoot(RandomPoint());
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Nachdem receiveShoot beim gegner den schuss verarbeitet hat,
|
||||||
|
* wird diese Methode mit der antwort aufgerufen.
|
||||||
|
* @param hitResponse the hitresponse
|
||||||
|
* @author Florian Alexy und Florian Hantzschel und Luca Conte
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public synchronized void receiveHit(HitResponse hitResponse) {
|
public synchronized void receiveHit(HitResponse hitResponse) {
|
||||||
|
// Eltern-Klasse LocalPlayer updatet myTurn
|
||||||
super.receiveHit(hitResponse);
|
super.receiveHit(hitResponse);
|
||||||
if (this.myTurn) {
|
if (this.myTurn) {
|
||||||
|
// Neuer Schuss wird erstellt und gestartet.
|
||||||
Thread t = new Thread(this);
|
Thread t = new Thread(this);
|
||||||
t.start();
|
t.start();
|
||||||
this.shootThreads.add(t);
|
this.shootThreads.add(t);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Erhält einen schuss vom gegner und verarbeitet ihn.
|
||||||
|
* @param point the location to be shot
|
||||||
|
* @author Florian Alexy und Florian Hantzschel und Luca Conte
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public synchronized void receiveShoot(Point point) {
|
public synchronized void receiveShoot(Point point) {
|
||||||
super.receiveShoot(point);
|
super.receiveShoot(point);
|
||||||
|
@ -59,8 +101,12 @@ public abstract class AiPlayer extends LocalPlayer implements Runnable {
|
||||||
this.shootThreads.add(t);
|
this.shootThreads.add(t);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Wird aufgerufen, wenn in determineCoinToss festgestellt wurde das die Ki anfängt.
|
||||||
|
* Erster Schuss wird gestartet.
|
||||||
|
* @author Florian Alexy und Florian Hantzschel und Luca Conte
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void beginTurn() {
|
public void beginTurn() {
|
||||||
Thread t = new Thread(this);
|
Thread t = new Thread(this);
|
||||||
|
@ -68,6 +114,10 @@ public abstract class AiPlayer extends LocalPlayer implements Runnable {
|
||||||
this.shootThreads.add(t);
|
this.shootThreads.add(t);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Closes past threads and tries firing a shot.
|
||||||
|
* @author Luca Conte, Florian Alexy und Florian Hantzschel
|
||||||
|
*/
|
||||||
public void run() {
|
public void run() {
|
||||||
Iterator<Thread> i = this.shootThreads.iterator();
|
Iterator<Thread> i = this.shootThreads.iterator();
|
||||||
while(i.hasNext()) {
|
while(i.hasNext()) {
|
||||||
|
@ -85,7 +135,7 @@ public abstract class AiPlayer extends LocalPlayer implements Runnable {
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
Thread.sleep(300);
|
Thread.sleep(250);
|
||||||
} catch (InterruptedException e) {
|
} catch (InterruptedException e) {
|
||||||
// TODO Auto-generated catch block
|
// TODO Auto-generated catch block
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
|
@ -93,4 +143,25 @@ public abstract class AiPlayer extends LocalPlayer implements Runnable {
|
||||||
|
|
||||||
this.aiShoot();
|
this.aiShoot();
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
/**
|
||||||
|
* Closes all running threads and does some cleanup work so the garbage collector will delete the player
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public void destroy() {
|
||||||
|
super.destroy();
|
||||||
|
Iterator<Thread> i = this.shootThreads.iterator();
|
||||||
|
while(i.hasNext()) {
|
||||||
|
Thread thread = i.next();
|
||||||
|
try {
|
||||||
|
thread.interrupt();
|
||||||
|
thread.join();
|
||||||
|
i.remove();
|
||||||
|
} catch (InterruptedException e) {
|
||||||
|
// TODO Auto-generated catch block
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -7,6 +7,10 @@ import java.net.InetSocketAddress;
|
||||||
import java.net.ServerSocket;
|
import java.net.ServerSocket;
|
||||||
import java.net.Socket;
|
import java.net.Socket;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Provides an Interface to communicate using a socket asynchronously
|
||||||
|
* @author Luca Conte, Peer Ole Wachtel
|
||||||
|
*/
|
||||||
public class AsyncSocket {
|
public class AsyncSocket {
|
||||||
private Socket socket;
|
private Socket socket;
|
||||||
private Thread checkerThread;
|
private Thread checkerThread;
|
||||||
|
@ -19,6 +23,12 @@ public class AsyncSocket {
|
||||||
private BufferedReader in;
|
private BufferedReader in;
|
||||||
private BufferedWriter out;
|
private BufferedWriter out;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Creates a socket server and turns the first incoming connection into an AsyncSocket
|
||||||
|
* @param port the port to listen on for a connection
|
||||||
|
* @param handler the handler that will be called when a message is received
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
public AsyncSocket(int port, AsyncSocketListener handler) {
|
public AsyncSocket(int port, AsyncSocketListener handler) {
|
||||||
this.setHandler(handler);
|
this.setHandler(handler);
|
||||||
|
|
||||||
|
@ -45,6 +55,12 @@ public class AsyncSocket {
|
||||||
this.connectorThread.start();
|
this.connectorThread.start();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Connects to the address provided and turns the resulting socket into an AsyncSocket
|
||||||
|
* @param address the socket address to connect to
|
||||||
|
* @param handler the handler that will be called when a message is received
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
public AsyncSocket(InetSocketAddress address, AsyncSocketListener handler) {
|
public AsyncSocket(InetSocketAddress address, AsyncSocketListener handler) {
|
||||||
this.setHandler(handler);
|
this.setHandler(handler);
|
||||||
|
|
||||||
|
@ -68,11 +84,22 @@ public class AsyncSocket {
|
||||||
this.connectorThread.start();
|
this.connectorThread.start();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param socket the socket to be wrapped in an AsyncSocket
|
||||||
|
* @param handler the handler that will be called when a message is received
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
public AsyncSocket(Socket socket, AsyncSocketListener handler) throws IOException {
|
public AsyncSocket(Socket socket, AsyncSocketListener handler) throws IOException {
|
||||||
this.setHandler(handler);
|
this.setHandler(handler);
|
||||||
this.initSocket(socket);
|
this.initSocket(socket);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* creates input and ouput writer / readers as well as a checker thread to repeatedly check
|
||||||
|
* for incoming messages
|
||||||
|
* @param socket the socket to be wrapped
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
private void initSocket(Socket socket) throws IOException {
|
private void initSocket(Socket socket) throws IOException {
|
||||||
System.out.println("Initialising sockets");
|
System.out.println("Initialising sockets");
|
||||||
this.socket = socket;
|
this.socket = socket;
|
||||||
|
@ -122,17 +149,39 @@ public class AsyncSocket {
|
||||||
this.flushBuffer();
|
this.flushBuffer();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* sets the message handler for the async socket
|
||||||
|
* @param handler the `AsyncSocketListener` to be set as the new handler
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
public void setHandler(AsyncSocketListener handler) {
|
public void setHandler(AsyncSocketListener handler) {
|
||||||
this.handler = handler;
|
this.handler = handler;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* sends a message through the socket
|
||||||
|
* @param socketPackage the socket package to be sent
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
public synchronized void send(SocketPackage socketPackage) {
|
public synchronized void send(SocketPackage socketPackage) {
|
||||||
this.sendLine(socketPackage.toString());
|
this.sendLine(socketPackage.toString());
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* sends a message through the socket
|
||||||
|
* @param packageName the name of the package to be sent
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
public synchronized void send(String packageName) {
|
public synchronized void send(String packageName) {
|
||||||
this.send(packageName, "");
|
this.send(packageName, "");
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* sends a message through the socket
|
||||||
|
* @param packageName the name of the package to be sent
|
||||||
|
* @param packageContent the content of the package to be sent.
|
||||||
|
* `packageName` and `packageContent` are joined with a space " "
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
public synchronized void send(String packageName, String packageContent) {
|
public synchronized void send(String packageName, String packageContent) {
|
||||||
if (packageContent.length() > 0) {
|
if (packageContent.length() > 0) {
|
||||||
packageContent = " " + packageContent;
|
packageContent = " " + packageContent;
|
||||||
|
@ -140,11 +189,19 @@ public class AsyncSocket {
|
||||||
this.sendLine(packageName + packageContent);
|
this.sendLine(packageName + packageContent);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* sends a string of text into the socket, concatenated with CRLF
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
public synchronized void sendLine(String message) {
|
public synchronized void sendLine(String message) {
|
||||||
sendBuffer = sendBuffer + message + "\r\n";
|
sendBuffer = sendBuffer + message + "\r\n";
|
||||||
this.flushBuffer();
|
this.flushBuffer();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* flushes the buffers to send all pending messages
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
private synchronized void flushBuffer() {
|
private synchronized void flushBuffer() {
|
||||||
if (!this.sendBuffer.isEmpty() && this.out != null) {
|
if (!this.sendBuffer.isEmpty() && this.out != null) {
|
||||||
try {
|
try {
|
||||||
|
@ -159,12 +216,19 @@ public class AsyncSocket {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* closes the socket connection and removes the checker thread
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
public void close() {
|
public void close() {
|
||||||
this.shouldStop = true;
|
this.shouldStop = true;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
this.socket.close();
|
this.socket.close();
|
||||||
this.checkerThread.join();
|
if (this.checkerThread != null) {
|
||||||
|
this.checkerThread.interrupt();
|
||||||
|
this.checkerThread.join();
|
||||||
|
}
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
} catch (InterruptedException e) {
|
} catch (InterruptedException e) {
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
/**
|
||||||
|
* defines a message listener for AsyncSockets
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
public interface AsyncSocketListener {
|
public interface AsyncSocketListener {
|
||||||
public void receive(String message);
|
public void receive(String message);
|
||||||
}
|
}
|
|
@ -1,14 +1,37 @@
|
||||||
|
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Diese Klasse ist das Board von eimem spieler und enthält alle logischen operationen.
|
||||||
|
* Sprich ist das Backend Board.
|
||||||
|
*
|
||||||
|
* @author Peer Ole Wachtel, Florian Alexy und Florian Hantzschel
|
||||||
|
*/
|
||||||
public class Board {
|
public class Board {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Alle bisher empfangenen HitResponsen
|
||||||
|
*/
|
||||||
private List<HitResponse> hits;
|
private List<HitResponse> hits;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Alle Schiffe des Semesters
|
||||||
|
*/
|
||||||
private List<Ship> ships;
|
private List<Ship> ships;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Die größe des Spielfeldes
|
||||||
|
*/
|
||||||
private final int size;
|
private final int size;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Erstellt ein neues Board.
|
||||||
|
* setzt die übergebene Spielfeldgröße.
|
||||||
|
* Erstellt die Liste aller Schiffe des Semesters
|
||||||
|
* @param size Die größe des Spielfeldes
|
||||||
|
* @author Peer Ole Wachtel, Florian Alexy und Florian Hantzschel
|
||||||
|
*/
|
||||||
public Board(int size) {
|
public Board(int size) {
|
||||||
this.size = size;
|
this.size = size;
|
||||||
this.ships = new ArrayList<>();
|
this.ships = new ArrayList<>();
|
||||||
|
@ -16,6 +39,12 @@ public class Board {
|
||||||
this.createShip(size - 13);
|
this.createShip(size - 13);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Nimmt einen punkt entgegen und Gibt einen HitResponse zurück.
|
||||||
|
* @param point auf den geschossen wurde
|
||||||
|
* @return
|
||||||
|
* @author Peer Ole Wachtel
|
||||||
|
*/
|
||||||
public synchronized HitResponse hit (Point point){
|
public synchronized HitResponse hit (Point point){
|
||||||
HitResponse response = new HitResponse(HitResponseType.MISS,point);
|
HitResponse response = new HitResponse(HitResponseType.MISS,point);
|
||||||
for (int i = 0; i < this.ships.size(); i++) {
|
for (int i = 0; i < this.ships.size(); i++) {
|
||||||
|
@ -42,6 +71,12 @@ public class Board {
|
||||||
return response;
|
return response;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* finds adjacened hit responses and sets their type to SUNK if they are currently HIT
|
||||||
|
* this makes it so that all the points of the ship are marked as SUNK, not just the final hit
|
||||||
|
* @param p the Point from which to propate the SUNK type
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
private void propagateSunk(Point p) {
|
private void propagateSunk(Point p) {
|
||||||
HitResponse hit = this.getHitResponseOnPoint(p);
|
HitResponse hit = this.getHitResponseOnPoint(p);
|
||||||
|
|
||||||
|
@ -55,17 +90,36 @@ public class Board {
|
||||||
propagateSunk(new Point(p.getX(), p.getY() - 1));
|
propagateSunk(new Point(p.getX(), p.getY() - 1));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* creates all the ships on a board given a certain semester
|
||||||
|
* @param semester the semester to be played in
|
||||||
|
* @author Peer Ole Wachtel
|
||||||
|
*/
|
||||||
private void createShip(int semester){
|
private void createShip(int semester){
|
||||||
List<ShipData> shipData = Ship.semeterList.get(semester -1);
|
List<ShipData> shipData = Ship.semeterList.get(semester-1);
|
||||||
for (int i = 0; i < shipData.size(); i++) {
|
for (int i = 0; i < shipData.size(); i++) {
|
||||||
this.ships.add(new Ship(shipData.get(i).size(), shipData.get(i).name()));
|
this.ships.add(new Ship(shipData.get(i).size(), shipData.get(i).name()));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* returns a list of all the Ships on the board
|
||||||
|
* @return a list of all the Ships on the board
|
||||||
|
* @author Peer Ole Wachtel
|
||||||
|
*/
|
||||||
public List<Ship> getShips() {
|
public List<Ship> getShips() {
|
||||||
return ships;
|
return ships;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* adds a HitResponse to the list of Hits on the board
|
||||||
|
* If a hit response already exists on the same position, the hit response will not be added
|
||||||
|
* If the hit response is of type `HitResponseType.SUNK` it will propagate this hit response type
|
||||||
|
* to all adjacened hit responses with type HIT using `propagateSunk`.
|
||||||
|
* @param hitResponse the HitResponse to be added
|
||||||
|
* @return true when the hit response was added, otherwise false
|
||||||
|
* @author Peer Ole Wachtel, Luca Conte
|
||||||
|
*/
|
||||||
public synchronized boolean addHits(HitResponse hitResponse) {
|
public synchronized boolean addHits(HitResponse hitResponse) {
|
||||||
if (this.getHitResponseOnPoint(hitResponse.getPoint()) == null){
|
if (this.getHitResponseOnPoint(hitResponse.getPoint()) == null){
|
||||||
this.hits.add(hitResponse);
|
this.hits.add(hitResponse);
|
||||||
|
@ -81,6 +135,11 @@ public class Board {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param point the position to get the hit response from
|
||||||
|
* @return the hit response at the position `point`
|
||||||
|
* @author Peer Ole Wachtel
|
||||||
|
*/
|
||||||
public synchronized HitResponse getHitResponseOnPoint(Point point) {
|
public synchronized HitResponse getHitResponseOnPoint(Point point) {
|
||||||
for (int i = 0; i < this.hits.size(); i++){
|
for (int i = 0; i < this.hits.size(); i++){
|
||||||
if (this.hits.get(i).getPoint().equals(point)){
|
if (this.hits.get(i).getPoint().equals(point)){
|
||||||
|
@ -90,6 +149,11 @@ public class Board {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* returns the size of the board
|
||||||
|
* @return the size of the board
|
||||||
|
* @author Florian Alexy, Florian Hantzschel
|
||||||
|
*/
|
||||||
public int getSize() {
|
public int getSize() {
|
||||||
return this.size;
|
return this.size;
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,13 +6,12 @@ import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* TODO Klassenbeschreibung
|
* Dient dem Aufbau der Matrix (Spielfeld) und füllt diese mit Funktion
|
||||||
* reines im frontend zeichnen für preview
|
* @author Lucas Bronson, Luca Conte, Joshua Kuklok
|
||||||
*/
|
*/
|
||||||
public class BoardDisplay extends JPanel {
|
public class BoardDisplay extends JPanel {
|
||||||
private JButton[][] fields;
|
private JButton[][] fields;
|
||||||
private int gridSize;
|
private int gridSize;
|
||||||
//private List <Ship> ships;//brauchen wir nicht mehr
|
|
||||||
private Ship currentShip;
|
private Ship currentShip;
|
||||||
private Player player;
|
private Player player;
|
||||||
private boolean horizontal = false;
|
private boolean horizontal = false;
|
||||||
|
@ -20,46 +19,55 @@ public class BoardDisplay extends JPanel {
|
||||||
private boolean enemyBoard;
|
private boolean enemyBoard;
|
||||||
private Point mousePosition;
|
private Point mousePosition;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fügt Buttons zu Liste hinzu und aktualisiert Feld durch Aufruf von paintFields
|
||||||
|
* @param button Jeweiliger Button der hinzugefügt werden soll
|
||||||
|
* @author Joshua Kuklok
|
||||||
|
*/
|
||||||
public void addShipButton(ShipButton button) {
|
public void addShipButton(ShipButton button) {
|
||||||
shipButtonList.add(button);
|
shipButtonList.add(button);
|
||||||
paintFields();
|
paintFields();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gibt currentShip zurück
|
||||||
|
* @return currentShip Objekt der Klasse Schiff
|
||||||
|
* @author Lucas Bronson Luca Conte
|
||||||
|
*/
|
||||||
public Ship getCurrentShip() {
|
public Ship getCurrentShip() {
|
||||||
return currentShip;
|
return currentShip;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Konstruktor der startLocalGame.
|
* Konstruktor des Board Displays
|
||||||
* TODO fertig schreiben
|
* @param gridSize Die Größe des Spielfelds
|
||||||
* @param gridSize
|
* @param player Der Spieler
|
||||||
* @param player
|
* @author Lucas Bronson
|
||||||
*/
|
*/
|
||||||
public BoardDisplay(int gridSize, Player player, boolean enemyBoard) {
|
public BoardDisplay(int gridSize, Player player, boolean enemyBoard) {
|
||||||
super(new GridLayout(gridSize + 1, gridSize + 1)); // +1 wegen extra Zeile/Spalte
|
super(new GridLayout(gridSize + 1, gridSize + 1)); // +1 wegen extra Zeile/Spalte
|
||||||
this.fields = new JButton[gridSize][gridSize];
|
this.fields = new JButton[gridSize][gridSize];
|
||||||
//this.ships = new ArrayList<>();
|
|
||||||
this.shipButtonList = new ArrayList<>();
|
this.shipButtonList = new ArrayList<>();
|
||||||
this.player = player;
|
this.player = player;
|
||||||
this.gridSize = gridSize;
|
this.gridSize = gridSize;
|
||||||
this.enemyBoard = enemyBoard;
|
this.enemyBoard = enemyBoard;
|
||||||
System.out.println("Name in Boarddisplay: " + player.getName());//Testausgabe
|
|
||||||
// Erstellung von Spielfeld
|
// Erstellung vom Spielfeld
|
||||||
for (int i = 0; i <= gridSize; i++) {
|
for (int i = 0; i <= gridSize; i++) {
|
||||||
for (int j = 0; j <= gridSize; j++) {
|
for (int j = 0; j <= gridSize; j++) {
|
||||||
final int x = j - 1; // Temporäre Variable
|
final int x = j - 1; // Temporäre Variable für überspringen von Rahmenzeile-/spalte
|
||||||
final int y = i - 1; // Temporäre Variable
|
final int y = i - 1; // Temporäre Variable für überspringen von Rahmenzeile-/spalte
|
||||||
if (i == 0 && j == 0) {
|
if (i == 0 && j == 0) {
|
||||||
add(new JLabel(" "));
|
add(new JLabel(" "));
|
||||||
} else if (i == 0) {
|
} else if (i == 0) {
|
||||||
JLabel colLabel = new JLabel(String.valueOf(j));
|
JLabel colLabel = new JLabel(String.valueOf(j));
|
||||||
colLabel.setHorizontalAlignment(SwingConstants.CENTER);
|
colLabel.setHorizontalAlignment(SwingConstants.CENTER);
|
||||||
colLabel.setFont(new Font("Arial", Font.BOLD, 14));
|
colLabel.setFont(new Font("Roboto", Font.BOLD, 14));
|
||||||
add(colLabel);
|
add(colLabel);
|
||||||
} else if (j == 0) {
|
} else if (j == 0) {
|
||||||
JLabel rowLabel = new JLabel(String.valueOf((char) ('A' + i - 1)));
|
JLabel rowLabel = new JLabel(String.valueOf((char) ('A' + i - 1)));
|
||||||
rowLabel.setHorizontalAlignment(SwingConstants.CENTER);
|
rowLabel.setHorizontalAlignment(SwingConstants.CENTER);
|
||||||
rowLabel.setFont(new Font("Arial", Font.BOLD, 14));
|
rowLabel.setFont(new Font("Roboto", Font.BOLD, 14));
|
||||||
add(rowLabel);
|
add(rowLabel);
|
||||||
} else {
|
} else {
|
||||||
// Spielfeld (interaktive Zellen)
|
// Spielfeld (interaktive Zellen)
|
||||||
|
@ -69,32 +77,24 @@ public class BoardDisplay extends JPanel {
|
||||||
field.setBorderPainted(true);
|
field.setBorderPainted(true);
|
||||||
fields[x][y] = field;
|
fields[x][y] = field;
|
||||||
add(field);
|
add(field);
|
||||||
//field.addMouseListener(new MouseAdapter() {
|
|
||||||
// @Override
|
|
||||||
//public void mouseClicked(MouseEvent e) {
|
|
||||||
// if (SwingUtilities.isRightMouseButton(e)) {
|
|
||||||
// handleFieldClick(field);
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
//@Override
|
// Um Mausinteraktionen zu ermöglichen (Rechts/- Linksklick, Hover)
|
||||||
//public void mouseExited(MouseEvent e) {
|
|
||||||
// field.setBackground(Color.LIGHT_GRAY);
|
|
||||||
// }
|
|
||||||
// });
|
|
||||||
field.addMouseListener(new MouseAdapter() {
|
field.addMouseListener(new MouseAdapter() {
|
||||||
|
|
||||||
|
// Um beim "Hovern" Position zu setzten und weiterzugeben.
|
||||||
@Override
|
@Override
|
||||||
public void mouseEntered(MouseEvent e) {
|
public void mouseEntered(MouseEvent e) {
|
||||||
mousePosition = new Point(x, y);
|
mousePosition = new Point(x, y);
|
||||||
paintFields();
|
paintFields();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Um nach "wegbewegen" der Maus wieder zu entfärben
|
||||||
@Override
|
@Override
|
||||||
public void mouseExited(MouseEvent e) {
|
public void mouseExited(MouseEvent e) {
|
||||||
paintFields();
|
paintFields();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Um Schiffe zu rotieren/platzieren
|
||||||
@Override
|
@Override
|
||||||
public void mouseClicked(MouseEvent e) {
|
public void mouseClicked(MouseEvent e) {
|
||||||
if (SwingUtilities.isRightMouseButton(e)) {
|
if (SwingUtilities.isRightMouseButton(e)) {
|
||||||
|
@ -102,19 +102,20 @@ public class BoardDisplay extends JPanel {
|
||||||
} else if (SwingUtilities.isLeftMouseButton(e)) {
|
} else if (SwingUtilities.isLeftMouseButton(e)) {
|
||||||
Point o = new Point(x, y);
|
Point o = new Point(x, y);
|
||||||
handleFieldClick(o);
|
handleFieldClick(o);
|
||||||
|
SoundHandler.playSound("plop");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// this.ships = new ArrayList<Ship>();
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Aktuelles Schiff auswaehlen
|
* Aktuelles Schiff auswählen
|
||||||
* @param ship
|
* @param ship Schiff zum Auswählen
|
||||||
|
* @author Lucas Bronson, Joshua Kuklok
|
||||||
*/
|
*/
|
||||||
public void selectCurrentShip(Ship ship) {
|
public void selectCurrentShip(Ship ship) {
|
||||||
this.currentShip = ship;
|
this.currentShip = ship;
|
||||||
|
@ -122,11 +123,11 @@ public class BoardDisplay extends JPanel {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Zuruecksetzen von aktuellem Schiff und allen Schiffen des Spielers
|
* Zurücksetzen von aktuellem Schiff und allen Schiffen des Spielers.
|
||||||
* Danach blau faerben des Spielfeldes
|
* Danach blau färben des Spielfeldes
|
||||||
|
* @author Lucas Bronson, Joshua Kuklok
|
||||||
*/
|
*/
|
||||||
public void resetAllShips() {
|
public void resetAllShips() {
|
||||||
//ships.clear();
|
|
||||||
this.currentShip = null;
|
this.currentShip = null;
|
||||||
for (Ship ship : player.getBoard().getShips()) {
|
for (Ship ship : player.getBoard().getShips()) {
|
||||||
ship.resetPosition();
|
ship.resetPosition();
|
||||||
|
@ -136,6 +137,7 @@ public class BoardDisplay extends JPanel {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Wechselt die Platzierungsrichtung zwischen horizontal und vertikal.
|
* Wechselt die Platzierungsrichtung zwischen horizontal und vertikal.
|
||||||
|
* @author Lucas Bronson, Joshua Kuklok
|
||||||
*/
|
*/
|
||||||
private void togglePlacementDirection() {
|
private void togglePlacementDirection() {
|
||||||
horizontal = !horizontal;
|
horizontal = !horizontal;
|
||||||
|
@ -147,6 +149,7 @@ public class BoardDisplay extends JPanel {
|
||||||
/**
|
/**
|
||||||
* Handhabt das Platzieren eines Schiffs auf dem Spielfeld.
|
* Handhabt das Platzieren eines Schiffs auf dem Spielfeld.
|
||||||
* @param o Die Koordinaten des Klicks.
|
* @param o Die Koordinaten des Klicks.
|
||||||
|
* @author Lucas Bronson, Luca Conte
|
||||||
*/
|
*/
|
||||||
private void handleFieldClick(Point o) {
|
private void handleFieldClick(Point o) {
|
||||||
System.out.println("CLICK " + o);
|
System.out.println("CLICK " + o);
|
||||||
|
@ -157,26 +160,21 @@ public class BoardDisplay extends JPanel {
|
||||||
this.player.enemy.shoot(o);
|
this.player.enemy.shoot(o);
|
||||||
}
|
}
|
||||||
paintFields();
|
paintFields();
|
||||||
//if(this.currentShip.isPlaced()){
|
|
||||||
// this.currentShip.
|
|
||||||
// };
|
|
||||||
// Beispiel: Setze ein Schiff bei einem Klick
|
|
||||||
//if (setShip(new Ship(3, "TestShip"), o, true,player)) {
|
|
||||||
// field.setBackground(Color.BLUE); // Visualisiere Schiff
|
|
||||||
//}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Faerbt das Spielfeld blau, ueberprueft ob das aktuelle Schiff null ist
|
* Färbt das Spielfeld blau, überprüft, ob das aktuelle Schiff null ist.
|
||||||
* Faerbt eine Preview in das Spielfeld ein ob Schiff setzen moeglich ist
|
* Färbt eine Preview in das Spielfeld ein, ob Schiff setzen möglich ist
|
||||||
* Schiffe die gesetzt wurden werden grau gefaerbt
|
* Schiffe die gesetzt wurden, werden grau gefärbt
|
||||||
* Aufrufen von refreshButtonState um zu zeigen ob Button drueckbar ist
|
* Aufrufen von refreshButtonState um zu zeigen, ob Button drückbar ist
|
||||||
|
* @author Lucas Bronson, Luca Conte, Joshua Kuklok
|
||||||
*/
|
*/
|
||||||
public void paintFields() {
|
public void paintFields() {
|
||||||
List<Point> test=new ArrayList<>();
|
List<Point> test=new ArrayList<>();
|
||||||
if(currentShip != null) {
|
if(currentShip != null) {
|
||||||
test = currentShip.getVirtualOccupiedPoints(mousePosition, horizontal);
|
test = currentShip.getVirtualOccupiedPoints(mousePosition, horizontal);
|
||||||
}
|
}
|
||||||
|
if (player == null || player.getBoard() == null) return;
|
||||||
for(int i = 0; i < gridSize; i++) {
|
for(int i = 0; i < gridSize; i++) {
|
||||||
for(int j = 0; j < gridSize; j++) {
|
for(int j = 0; j < gridSize; j++) {
|
||||||
if(fields[i][j] == null) {
|
if(fields[i][j] == null) {
|
||||||
|
@ -214,7 +212,7 @@ public class BoardDisplay extends JPanel {
|
||||||
}
|
}
|
||||||
for(Ship ship: player.getBoard().getShips()) {
|
for(Ship ship: player.getBoard().getShips()) {
|
||||||
if(ship.isShipOnPos(new Point(i,j))) {
|
if(ship.isShipOnPos(new Point(i,j))) {
|
||||||
fields[i][j].setBackground(Color.LIGHT_GRAY);
|
fields[i][j].setBackground(Color.WHITE);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
HitResponse hit = this.player.getBoard().getHitResponseOnPoint(new Point(i, j));
|
HitResponse hit = this.player.getBoard().getHitResponseOnPoint(new Point(i, j));
|
||||||
|
@ -222,13 +220,16 @@ public class BoardDisplay extends JPanel {
|
||||||
switch (hit.getType()) {
|
switch (hit.getType()) {
|
||||||
case HIT:
|
case HIT:
|
||||||
fields[i][j].setBackground(Color.ORANGE);
|
fields[i][j].setBackground(Color.ORANGE);
|
||||||
|
//SoundHandler.playSound("hit");
|
||||||
break;
|
break;
|
||||||
case SUNK:
|
case SUNK:
|
||||||
|
//SoundHandler.playSound("destroyed");
|
||||||
case VICTORY:
|
case VICTORY:
|
||||||
fields[i][j].setBackground(Color.RED);
|
fields[i][j].setBackground(Color.RED);
|
||||||
break;
|
break;
|
||||||
case MISS:
|
case MISS:
|
||||||
if (this.enemyBoard) {
|
if (this.enemyBoard) {
|
||||||
|
//SoundHandler.playSound("miss");
|
||||||
fields[i][j].setBackground(Color.BLUE);
|
fields[i][j].setBackground(Color.BLUE);
|
||||||
} else {
|
} else {
|
||||||
fields[i][j].setBackground(Color.CYAN);
|
fields[i][j].setBackground(Color.CYAN);
|
||||||
|
@ -243,10 +244,11 @@ public class BoardDisplay extends JPanel {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft paintFields auf, um Felder zu aktualisieren
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
public void refresh() {
|
public void refresh() {
|
||||||
paintFields();
|
paintFields();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,13 +2,12 @@ import javax.swing.*;
|
||||||
import java.awt.*;
|
import java.awt.*;
|
||||||
import java.awt.event.ActionEvent;
|
import java.awt.event.ActionEvent;
|
||||||
import java.awt.event.ActionListener;
|
import java.awt.event.ActionListener;
|
||||||
import java.awt.event.MouseEvent;
|
|
||||||
import java.awt.event.MouseAdapter;
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Das GameBoard dient als Panel, in dem das tatsächliche Spiel stattfindet.
|
* Das GameBoard dient als Panel, in dem das tatsächliche Spiel stattfindet.
|
||||||
* Der Benutzer kann hier seine Schiffe platzieren, das Spiel starten etc.
|
* Der Benutzer kann hier seine Schiffe platzieren, das Spiel starten etc.
|
||||||
|
* @author Lucas Bronson, Luca Conte, Joshua Kuklok
|
||||||
*/
|
*/
|
||||||
public class GameBoard extends JPanel {
|
public class GameBoard extends JPanel {
|
||||||
|
|
||||||
|
@ -24,7 +23,7 @@ public class GameBoard extends JPanel {
|
||||||
ImageIcon gameBoardX = new ImageIcon("graphics/gameboardx.png");
|
ImageIcon gameBoardX = new ImageIcon("graphics/gameboardx.png");
|
||||||
|
|
||||||
// kontextText Text-Strings
|
// kontextText Text-Strings
|
||||||
String kT1 = "Bitte Schiffe setzten";
|
String kT1 = "Bitte Schiffe setzten - Rechtsclick zum drehen";
|
||||||
String kT2 = "Warte auf Gegner";
|
String kT2 = "Warte auf Gegner";
|
||||||
String kT3 = "Du fängst an";
|
String kT3 = "Du fängst an";
|
||||||
String kT4 = "Dein Gegner fängt an";
|
String kT4 = "Dein Gegner fängt an";
|
||||||
|
@ -38,8 +37,9 @@ public class GameBoard extends JPanel {
|
||||||
JLabel frameTitle = new JLabel("GameBoard");
|
JLabel frameTitle = new JLabel("GameBoard");
|
||||||
JLabel kontextText = new JLabel(kT1);
|
JLabel kontextText = new JLabel(kT1);
|
||||||
|
|
||||||
JButton backButton = new JButton(backButtonIcon);
|
// Buttons
|
||||||
// Eigene ModulButtons
|
JButton giveUpButton = new JButton("Aufgeben");
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Konstruktor von GameBoard.
|
* Konstruktor von GameBoard.
|
||||||
|
@ -47,6 +47,7 @@ public class GameBoard extends JPanel {
|
||||||
* @param semesterCounter Ausgewähltes Semester
|
* @param semesterCounter Ausgewähltes Semester
|
||||||
* @param p1 Erstes Spielerobjekt
|
* @param p1 Erstes Spielerobjekt
|
||||||
* @param p2 Zweites Spielerobjekt
|
* @param p2 Zweites Spielerobjekt
|
||||||
|
* @author Lucas Bronson, Luca Conte, Joshua Kuklok
|
||||||
*/
|
*/
|
||||||
GameBoard(MainFrame frame, int semesterCounter,Player p1, Player p2) {
|
GameBoard(MainFrame frame, int semesterCounter,Player p1, Player p2) {
|
||||||
this.p1 = p1;
|
this.p1 = p1;
|
||||||
|
@ -54,66 +55,42 @@ public class GameBoard extends JPanel {
|
||||||
buildPanel(frame, semesterCounter);
|
buildPanel(frame, semesterCounter);
|
||||||
List<Ship> shipsP1 =p1.getBoard().getShips();
|
List<Ship> shipsP1 =p1.getBoard().getShips();
|
||||||
List<Ship> shipsP2 =p2.getBoard().getShips();
|
List<Ship> shipsP2 =p2.getBoard().getShips();
|
||||||
backButton.addActionListener(e -> frame.showPanel("MainMenu"));
|
|
||||||
}
|
|
||||||
/* TODO löschen falls nicht gebraucht
|
|
||||||
|
|
||||||
private void updateButtonLabels(List<Ship> ships,JToggleButton[] buttons) {
|
giveUpButton.addActionListener((e) -> {
|
||||||
for(int i=0;i<buttons.length &&i<ships.size();i++ ) {
|
frame.showPanel("MainMenu");
|
||||||
Ship ship = ships.get(i);
|
p1.withdraw();
|
||||||
buttons[i].setText(ship.getName());
|
});
|
||||||
}
|
|
||||||
}
|
}
|
||||||
*/
|
|
||||||
|
|
||||||
// Timer für pulsierenden Effekt
|
// Timer für pulsierenden SchwarzGrau-Effekt
|
||||||
Timer timer = new Timer(10, new ActionListener() {
|
Timer timer = new Timer(10, new ActionListener() {
|
||||||
private int grayValue = 50; // Start-Grauwert (0 = Schwarz, 255 = Weiß)
|
// Start-Grauwert (0 = Schwarz, 255 = Weiß)
|
||||||
private boolean increasing = false; // Richtung des Pulsierens
|
private int value = 50;
|
||||||
|
private boolean increasing = false;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void actionPerformed(ActionEvent e) {
|
public void actionPerformed(ActionEvent e) {
|
||||||
// Grauwert aktualisieren
|
kontextText.setForeground(new Color(value, value, value));
|
||||||
kontextText.setForeground(new Color(grayValue, grayValue, grayValue));
|
|
||||||
|
|
||||||
// Grauwert erhöhen oder verringern
|
|
||||||
if (increasing) {
|
if (increasing) {
|
||||||
grayValue++;
|
value++;
|
||||||
if (grayValue >= 90) {
|
if (value >= 90) {
|
||||||
increasing = false; // Richtung ändern
|
increasing = false;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
grayValue--;
|
value--;
|
||||||
if (grayValue <= 0) {
|
if (value <= 0) {
|
||||||
increasing = true; // Richtung ändern
|
increasing = true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
/*
|
|
||||||
// Timer für pulsierenden Disco-Effekt
|
|
||||||
Timer timer = new Timer(50, new ActionListener() {
|
|
||||||
private float hue = 0; // Farbton-Wert für HSB-Farbmodell
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void actionPerformed(ActionEvent e) {
|
|
||||||
// Farbe basierend auf dem Farbton-Wert berechnen
|
|
||||||
Color pulsierendeFarbe = Color.getHSBColor(hue, 0.8f, 0.8f); // Sättigung und Helligkeit fix
|
|
||||||
kontextText.setForeground(pulsierendeFarbe);
|
|
||||||
|
|
||||||
// Farbton leicht verändern (Zyklus zwischen 0 und 1)
|
|
||||||
hue += 0.01f;
|
|
||||||
if (hue > 1) {
|
|
||||||
hue = 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});*/
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* TODO Funktion beschreiben etc.
|
* Baut das grundlegende Spielboard
|
||||||
* @param frame Der Mainframe der Anwendung über den alle Panels angezeigt werden.
|
* @param frame Der Mainframe der Anwendung über den alle Panels angezeigt werden.
|
||||||
* @param semesterCounter Ausgewähltes Semester
|
* @param semesterCounter Ausgewähltes Semester
|
||||||
|
* @author Lucas Bronson, Luca Conte, Joshua Kuklok
|
||||||
*/
|
*/
|
||||||
public void buildPanel(MainFrame frame, int semesterCounter) {
|
public void buildPanel(MainFrame frame, int semesterCounter) {
|
||||||
// Hauptlayout - BorderLayout für die Anordnung der Komponenten
|
// Hauptlayout - BorderLayout für die Anordnung der Komponenten
|
||||||
|
@ -129,8 +106,8 @@ public class GameBoard extends JPanel {
|
||||||
JPanel headerPanel = new JPanel();
|
JPanel headerPanel = new JPanel();
|
||||||
headerPanel.setLayout(new BorderLayout());
|
headerPanel.setLayout(new BorderLayout());
|
||||||
headerPanel.add(kontextText, BorderLayout.WEST);
|
headerPanel.add(kontextText, BorderLayout.WEST);
|
||||||
kontextText.setFont(new Font("Roboto", Font.BOLD, 30)); //TODO setFont fixen
|
kontextText.setFont(new Font("Roboto", Font.BOLD, 30));
|
||||||
headerPanel.add(backButton, BorderLayout.EAST);
|
headerPanel.add(giveUpButton, BorderLayout.EAST);
|
||||||
|
|
||||||
JPanel leftButtonsPanel = new JPanel();
|
JPanel leftButtonsPanel = new JPanel();
|
||||||
leftButtonsPanel.setLayout(new GridLayout(7, 1)); // 6 Buttons untereinander
|
leftButtonsPanel.setLayout(new GridLayout(7, 1)); // 6 Buttons untereinander
|
||||||
|
@ -157,7 +134,6 @@ public class GameBoard extends JPanel {
|
||||||
opponentBoardPanel.addShipButton(shipButton);
|
opponentBoardPanel.addShipButton(shipButton);
|
||||||
shipButton.setEnabled(false);
|
shipButton.setEnabled(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
JToggleButton readyButton = new JToggleButton("Bereit");
|
JToggleButton readyButton = new JToggleButton("Bereit");
|
||||||
readyButton.setBackground(Color.GREEN);
|
readyButton.setBackground(Color.GREEN);
|
||||||
rightButtonsPanel.add(readyButton);
|
rightButtonsPanel.add(readyButton);
|
||||||
|
@ -173,11 +149,20 @@ public class GameBoard extends JPanel {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// Um Bereit-Meldung and Backend zu geben, kontextText zu setzten und ready/reset Button zu deaktivieren
|
||||||
readyButton.addActionListener(new ActionListener() {
|
readyButton.addActionListener(new ActionListener() {
|
||||||
@Override
|
@Override
|
||||||
public void actionPerformed(ActionEvent e) {
|
public void actionPerformed(ActionEvent e) {
|
||||||
kontextText.setText(kT2);
|
kontextText.setText(kT2);
|
||||||
p1.ready();
|
p1.ready();
|
||||||
|
if(p1.isReady()) {
|
||||||
|
remove(readyButton);
|
||||||
|
remove(resetButton);
|
||||||
|
remove(rightButtonsPanel);
|
||||||
|
remove(leftButtonsPanel);
|
||||||
|
readyButton.setEnabled(false);
|
||||||
|
resetButton.setEnabled(false);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -211,21 +196,42 @@ public class GameBoard extends JPanel {
|
||||||
add(leftButtonsPanel, BorderLayout.WEST);
|
add(leftButtonsPanel, BorderLayout.WEST);
|
||||||
add(rightButtonsPanel, BorderLayout.EAST);
|
add(rightButtonsPanel, BorderLayout.EAST);
|
||||||
add(headerPanel, BorderLayout.NORTH);
|
add(headerPanel, BorderLayout.NORTH);
|
||||||
//add(centerPanel, BorderLayout.CENTER);
|
|
||||||
add(namesAndBoardsPanel, BorderLayout.CENTER);
|
add(namesAndBoardsPanel, BorderLayout.CENTER);
|
||||||
timer.start();
|
timer.start();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
*
|
* Aktualisiert Zustand(kontextText) je nach Zug
|
||||||
|
* @author Luca Conte, Joshua Kuklok
|
||||||
*/
|
*/
|
||||||
public void refresh() {
|
public void refresh() {
|
||||||
if (this.p1.myTurn) {
|
if (this.p1.myTurn) {
|
||||||
this.kontextText.setText(kT5);
|
if (!kontextText.getText().equals(kT5)) {
|
||||||
|
this.kontextText.setText(kT5);
|
||||||
|
SoundHandler.playSound("yourturn");
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
this.kontextText.setText(kT6);
|
this.kontextText.setText(kT6);
|
||||||
}
|
}
|
||||||
this.ownBoardPanel.refresh();
|
this.ownBoardPanel.refresh();
|
||||||
this.opponentBoardPanel.refresh();
|
this.opponentBoardPanel.refresh();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Getter für Player1
|
||||||
|
* @return Player 1
|
||||||
|
* @author Peer Ole Wachtel
|
||||||
|
*/
|
||||||
|
public Player getP1() {
|
||||||
|
return p1;
|
||||||
|
}
|
||||||
|
/**
|
||||||
|
* Getter für Player2
|
||||||
|
* @return Player 2
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
|
public Player getP2() {
|
||||||
|
return p2;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,28 +5,65 @@ import java.util.HashMap;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The central Backend Component
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
public class GameController {
|
public class GameController {
|
||||||
|
|
||||||
private static MainFrame mainFrame;
|
private static MainFrame mainFrame;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* returns the current MainFrame
|
||||||
|
* @return the current MainFrame
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
public static MainFrame getMainFrame() {
|
public static MainFrame getMainFrame() {
|
||||||
return GameController.mainFrame;
|
return GameController.mainFrame;
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* sets the current MainFrame
|
||||||
|
* @param mainFrame the current MainFrame
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
public static void setMainFrame(MainFrame mainFrame) {
|
public static void setMainFrame(MainFrame mainFrame) {
|
||||||
GameController.mainFrame = mainFrame;
|
GameController.mainFrame = mainFrame;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* converts a semester to be played in into its respective board size
|
||||||
|
* @param semester the semester to be played in
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
public static int semesterToBoardSize(int semester) {
|
public static int semesterToBoardSize(int semester) {
|
||||||
return semester + 13;
|
return semester + 13;
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* converts a board size into its respective semester
|
||||||
|
* @param size the board size to get the semester of
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
public static int boardSizeToSemester(int size) {
|
public static int boardSizeToSemester(int size) {
|
||||||
return size - 13;
|
return size - 13;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* the list of supported versions of the online protocol
|
||||||
|
* https://github.com/lgc-4/ProgProjekt-Netzwerkstandard
|
||||||
|
*/
|
||||||
public static HashMap<String, Class<? extends OnlinePlayer>> supportedVersions = new HashMap<>(Map.of(
|
public static HashMap<String, Class<? extends OnlinePlayer>> supportedVersions = new HashMap<>(Map.of(
|
||||||
"1.1.0", OnlinePlayer_1_1_0.class
|
"1.1.0", OnlinePlayer_1_1_0.class
|
||||||
));
|
));
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Starts a game with one local player and one online player.
|
||||||
|
* @param localPlayerClass the class of the local player to be instantiated. must extend `LocalPlayer`
|
||||||
|
* @param localPlayerName the name of the local player. Only necessarry when localPlayerClass is `HumanPlayer`
|
||||||
|
* @param address the Address of the opposing player. If the hostname of the address is set to be 0.0.0.0, it
|
||||||
|
* is interpreted that this instance should instead listen on the defined port for incoming connections.
|
||||||
|
* @param size the board size that it is intended to be played in
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
public static void startOnlineGame(Class<? extends LocalPlayer> localPlayerClass, String localPlayerName, InetSocketAddress address, int size) throws IOException {
|
public static void startOnlineGame(Class<? extends LocalPlayer> localPlayerClass, String localPlayerName, InetSocketAddress address, int size) throws IOException {
|
||||||
AsyncSocket clientSocket;
|
AsyncSocket clientSocket;
|
||||||
|
|
||||||
|
@ -89,7 +126,8 @@ public class GameController {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* finds the largest common version in two lists of version strings
|
* finds the largest common version in two lists of version strings
|
||||||
* @return null if no common versions are found
|
* @return null if no common versions are found otherwise returns the most recent version present in both lists
|
||||||
|
* @author Luca Conte
|
||||||
*/
|
*/
|
||||||
public static String findMostRecentVersion(List<String> versions1, List<String> versions2) {
|
public static String findMostRecentVersion(List<String> versions1, List<String> versions2) {
|
||||||
if (versions1 == null || versions2 == null) return null;
|
if (versions1 == null || versions2 == null) return null;
|
||||||
|
@ -114,10 +152,13 @@ public class GameController {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* compares two version strings
|
* compares two version strings
|
||||||
|
* @param version1 the first version to be compared
|
||||||
|
* @param version2 the second version to be compared
|
||||||
* @return
|
* @return
|
||||||
* 0 if versions are equal
|
* 0 if versions are equal
|
||||||
* 1 if version1 is more recent than version2
|
* 1 if version1 is more recent than version2
|
||||||
* -1 otherwise
|
* -1 otherwise
|
||||||
|
* @author Luca Conte
|
||||||
*/
|
*/
|
||||||
public static int compareVersions(String version1, String version2) {
|
public static int compareVersions(String version1, String version2) {
|
||||||
if (!checkVersionString(version1) || !checkVersionString(version2)) {
|
if (!checkVersionString(version1) || !checkVersionString(version2)) {
|
||||||
|
@ -143,11 +184,21 @@ public class GameController {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* checks if a provided string matches the format of a version number
|
* checks if a provided string matches the format of a version number
|
||||||
|
* @param versionString the version String to be checked
|
||||||
|
* @author Luca Conte
|
||||||
*/
|
*/
|
||||||
public static boolean checkVersionString(String versionString) {
|
public static boolean checkVersionString(String versionString) {
|
||||||
return versionString != null && versionString.matches("\\d+\\.\\d+\\.\\d+");
|
return versionString != null && versionString.matches("\\d+\\.\\d+\\.\\d+");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Starts a game with two local players
|
||||||
|
* @param localPlayerClass the class of the local player to be instantiated. must extend `LocalPlayer`
|
||||||
|
* @param localPlayerName the name of the local player. Only necessarry when localPlayerClass is `HumanPlayer`
|
||||||
|
* @param enemyClass the class of the enemy player. Must extend `AiPlayer`. For Humans VS Human games use an online game instead.
|
||||||
|
* @param size the board size that it is intended to be played in
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
public static void startLocalGame(Class<? extends LocalPlayer> localPlayerClass, String localPlayerName, Class<? extends AiPlayer> enemyClass, int size) {
|
public static void startLocalGame(Class<? extends LocalPlayer> localPlayerClass, String localPlayerName, Class<? extends AiPlayer> enemyClass, int size) {
|
||||||
|
|
||||||
LocalPlayer localPlayer;
|
LocalPlayer localPlayer;
|
||||||
|
@ -175,6 +226,13 @@ public class GameController {
|
||||||
startGameWithInstancedPlayers(localPlayer, aiPlayer, size);
|
startGameWithInstancedPlayers(localPlayer, aiPlayer, size);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* switches to the ingame screen
|
||||||
|
* @param p1 the first player. This player is always shown on the left side of the screen and is expected to be the Human player, if there is one.
|
||||||
|
* @param p2 the second player
|
||||||
|
* @param boardSize the board size to be played in
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
public static void startGameWithInstancedPlayers(LocalPlayer p1, Player p2, int boardSize) {
|
public static void startGameWithInstancedPlayers(LocalPlayer p1, Player p2, int boardSize) {
|
||||||
mainFrame.showPanelSLG("GameBoard", boardSizeToSemester(boardSize), p1, p2);
|
mainFrame.showPanelSLG("GameBoard", boardSizeToSemester(boardSize), p1, p2);
|
||||||
|
|
||||||
|
|
|
@ -1,21 +1,17 @@
|
||||||
|
/**
|
||||||
|
* Hauptklasse über die der MainFrame gestartet wird
|
||||||
|
* @author Lucas Bronson, Peer Ole Wachtel, Joshua Kuklok
|
||||||
|
*/
|
||||||
public class HalloSchiffeVersenken {
|
public class HalloSchiffeVersenken {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Erstellt und setzt den Mainframe
|
||||||
|
* @param args Argumente an Main durch Konsole etc.
|
||||||
|
* @throws InterruptedException
|
||||||
|
* @author Peer Ole Wachtel
|
||||||
|
*/
|
||||||
public static void main(String[] args) throws InterruptedException {
|
public static void main(String[] args) throws InterruptedException {
|
||||||
MainFrame mf = new MainFrame();
|
MainFrame mf = new MainFrame();
|
||||||
mf.setVisible(true);
|
mf.setVisible(true);
|
||||||
|
|
||||||
System.out.println("HelloSchiffeVersenekn");
|
|
||||||
|
|
||||||
|
|
||||||
System.out.println("sound");
|
|
||||||
SoundHandler.playSound("hit");
|
|
||||||
|
|
||||||
Thread.sleep(10000);
|
|
||||||
|
|
||||||
SoundHandler.setSoundOn(false);
|
|
||||||
System.out.println("sound off");
|
|
||||||
SoundHandler.playSound("hit");
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,14 +1,38 @@
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Eine Antwort auf einen Schuss
|
||||||
|
* enthält einen Punkt, auf den geschossen wurde, sowie einen typen,
|
||||||
|
* der angibt, ob es sich bei dem Schuss um einen Treffer handelt
|
||||||
|
* @author Peer Ole Wachtel
|
||||||
|
*/
|
||||||
public class HitResponse {
|
public class HitResponse {
|
||||||
|
/**
|
||||||
|
* Speichert den typ der HitResponse.
|
||||||
|
*/
|
||||||
private HitResponseType type;
|
private HitResponseType type;
|
||||||
|
/**
|
||||||
|
* Speicher den Punkt wofür die HitResponse gilt.
|
||||||
|
*/
|
||||||
private Point point;
|
private Point point;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Erstellt eine neue HitResponse und setzt den Punkt und typ.
|
||||||
|
* @param type der HitResponse.
|
||||||
|
* @param point für den die HitResponse gilt.
|
||||||
|
* @author Peer Ole Wachtel.
|
||||||
|
*/
|
||||||
public HitResponse(HitResponseType type, Point point) {
|
public HitResponse(HitResponseType type, Point point) {
|
||||||
this.type = type;
|
this.type = type;
|
||||||
this.point = point;
|
this.point = point;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
*Erstellt eine neue HitResponse und setzt den Punkt und typ.
|
||||||
|
* @param typeIndex der HitResponse.
|
||||||
|
* @param point für den die HitResponse gilt.
|
||||||
|
* @throws IllegalArgumentException wenn der übergebene int nicht auf ein typ referenziert werden kann.
|
||||||
|
* @author Peer Ole Wachtel.
|
||||||
|
*/
|
||||||
public HitResponse (int typeIndex, Point point) {
|
public HitResponse (int typeIndex, Point point) {
|
||||||
if (typeIndex >= 0 && typeIndex < HitResponseType.values().length) {
|
if (typeIndex >= 0 && typeIndex < HitResponseType.values().length) {
|
||||||
this.type = HitResponseType.values()[typeIndex];
|
this.type = HitResponseType.values()[typeIndex];
|
||||||
|
@ -18,23 +42,48 @@ public class HitResponse {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* returns the type of the HitResponse
|
||||||
|
* @return the type of the HitResponse
|
||||||
|
* @author Florian Hantzschel
|
||||||
|
*/
|
||||||
public HitResponseType getHitResponse() {
|
public HitResponseType getHitResponse() {
|
||||||
return this.type;
|
return this.type;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* returns the point of the HitResponse
|
||||||
|
* @return the point of the HitResponse
|
||||||
|
* @author Florian Hantzschel
|
||||||
|
*/
|
||||||
public Point getPoint() {
|
public Point getPoint() {
|
||||||
return this.point;
|
return this.point;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Setter für den type
|
||||||
|
* @param type auf den die HitResponse gesetzt werden soll.
|
||||||
|
* @author Peer Ole Wachtel
|
||||||
|
*/
|
||||||
public void setType(HitResponseType type) {
|
public void setType(HitResponseType type) {
|
||||||
this.type = type;
|
this.type = type;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Gibt den passenden string nach Netzwerkstandard für eine HitResponse zurück.
|
||||||
|
* @return den passenden string nach Netzwerkstandard für eine HitResponse.
|
||||||
|
* @author Peer Ole Wachtel.
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return this.getPoint().toString() + " " + this.type.ordinal();
|
return this.getPoint().toString() + " " + this.type.ordinal();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Getter für den typ der HitResponse.
|
||||||
|
* @return den typ der HitRespnse.
|
||||||
|
* @author Peer Ole Wachtel.
|
||||||
|
*/
|
||||||
public HitResponseType getType() {
|
public HitResponseType getType() {
|
||||||
return type;
|
return type;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
|
/**
|
||||||
|
* Stellt die verschiedenen möglichkeiten einer HitResponse als typ dar.
|
||||||
|
* @author Peer Ole Wachtel
|
||||||
|
*/
|
||||||
public enum HitResponseType {
|
public enum HitResponseType {
|
||||||
MISS, HIT, SUNK, VICTORY
|
MISS, HIT, SUNK, VICTORY
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,18 @@
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Repräsentiert einen menschlichen Spieler
|
||||||
|
* @author Luca Conte, Florian Hantzschel
|
||||||
|
*/
|
||||||
public class HumanPlayer extends LocalPlayer {
|
public class HumanPlayer extends LocalPlayer {
|
||||||
|
/**
|
||||||
|
* shoots a shot onto the provided point on the enemy board
|
||||||
|
* if it is not the players turn, this method does nothing.
|
||||||
|
* @param point the location to be shot
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public void shoot(Point point) {
|
||||||
|
if (!this.myTurn) return;
|
||||||
|
enemy.receiveShoot(point);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -8,8 +8,13 @@ import java.net.InetSocketAddress;
|
||||||
/**
|
/**
|
||||||
* Das JoinGame Panel dient zum setzten des Ports/IP-Adresse.
|
* Das JoinGame Panel dient zum setzten des Ports/IP-Adresse.
|
||||||
* Anschließend kann das Verbinden Panel gezeigt werden.
|
* Anschließend kann das Verbinden Panel gezeigt werden.
|
||||||
|
* @author Lucas Bronson
|
||||||
*/
|
*/
|
||||||
public class JoinGame extends JPanel {
|
public class JoinGame extends JPanel {
|
||||||
|
|
||||||
|
// Funktionshilfen
|
||||||
|
String standardPort = "51525";
|
||||||
|
|
||||||
// Grafiken
|
// Grafiken
|
||||||
ImageIcon backButtonIcon = new ImageIcon("graphics/backButton.png");
|
ImageIcon backButtonIcon = new ImageIcon("graphics/backButton.png");
|
||||||
|
|
||||||
|
@ -35,10 +40,11 @@ public class JoinGame extends JPanel {
|
||||||
* @param g int-Anzeige, ob es sich um "spiel erstellen" oder "spiel beitreten" handelt.
|
* @param g int-Anzeige, ob es sich um "spiel erstellen" oder "spiel beitreten" handelt.
|
||||||
* @param playerType int-Anzeige, ob es sich um einen HumanPlayer,AIEasy... handelt.
|
* @param playerType int-Anzeige, ob es sich um einen HumanPlayer,AIEasy... handelt.
|
||||||
* @param playerName Name des Spielers
|
* @param playerName Name des Spielers
|
||||||
|
* @author Lucas Bronson, Joshua Kuklok
|
||||||
*/
|
*/
|
||||||
public JoinGame(MainFrame frame,int g,int playerType,String playerName) {
|
public JoinGame(MainFrame frame,int g,int playerType,String playerName, int semesterCounter) {
|
||||||
setLayout(null);
|
setLayout(null);
|
||||||
buildPanel(frame,g,playerType,playerName);
|
buildPanel(frame,g,playerType,playerName, semesterCounter);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -47,8 +53,10 @@ public class JoinGame extends JPanel {
|
||||||
* @param g int-Anzeige, ob es sich um "spiel erstellen" oder "spiel beitreten" handelt.
|
* @param g int-Anzeige, ob es sich um "spiel erstellen" oder "spiel beitreten" handelt.
|
||||||
* @param playerType int-Anzeige, ob es sich um einen HumanPlayer,AIEasy... handelt.
|
* @param playerType int-Anzeige, ob es sich um einen HumanPlayer,AIEasy... handelt.
|
||||||
* @param playerName Name des Spielers
|
* @param playerName Name des Spielers
|
||||||
|
* @author Lucas Bronson, Joshua Kuklok
|
||||||
*/
|
*/
|
||||||
private void buildPanel(MainFrame frame,int g,int playerType,String playerName) {
|
private void buildPanel(MainFrame frame,int g,int playerType,String playerName, int semesterCounter) {
|
||||||
|
System.out.println("semesterzahl in JoinGame" + semesterCounter);
|
||||||
if(g==1){
|
if(g==1){
|
||||||
spielBeitretenLabel= new JLabel("Spiel beitreten");
|
spielBeitretenLabel= new JLabel("Spiel beitreten");
|
||||||
}else{
|
}else{
|
||||||
|
@ -61,12 +69,13 @@ public class JoinGame extends JPanel {
|
||||||
|
|
||||||
portLabel.setBounds(50, 200, 200, 30);
|
portLabel.setBounds(50, 200, 200, 30);
|
||||||
|
|
||||||
if(g==1) { //Wenn man Spiel erstellen will werden IP-Felder nicht angezeigt.
|
if(g==1) { // Wenn man Spiel erstellen will, werden IP-Felder nicht angezeigt.
|
||||||
ipLabel.setBounds(50, 125, 200, 30);
|
ipLabel.setBounds(50, 125, 200, 30);
|
||||||
ipTextField.setBounds(50, 150, 250, 50);
|
ipTextField.setBounds(50, 150, 250, 50);
|
||||||
}
|
}
|
||||||
|
|
||||||
portTextField.setBounds(50, 225, 250, 50);
|
portTextField.setBounds(50, 225, 250, 50);
|
||||||
|
portTextField.setText(standardPort);
|
||||||
|
|
||||||
spielBeitretenLabel.setFont(robotoFont.deriveFont(50f));
|
spielBeitretenLabel.setFont(robotoFont.deriveFont(50f));
|
||||||
|
|
||||||
|
@ -77,7 +86,8 @@ public class JoinGame extends JPanel {
|
||||||
add(ipTextField);
|
add(ipTextField);
|
||||||
add(portTextField);
|
add(portTextField);
|
||||||
add(backButton);
|
add(backButton);
|
||||||
// ActionListener für Buttons
|
|
||||||
|
// ActionListener für Buttons.
|
||||||
// Um in das MultiplayerGame zurückzuwechseln.
|
// Um in das MultiplayerGame zurückzuwechseln.
|
||||||
backButton.addActionListener(new ActionListener() {
|
backButton.addActionListener(new ActionListener() {
|
||||||
@Override
|
@Override
|
||||||
|
@ -95,6 +105,7 @@ public class JoinGame extends JPanel {
|
||||||
if (ipAddress.isEmpty()) {
|
if (ipAddress.isEmpty()) {
|
||||||
ipAddress = "0.0.0.0";
|
ipAddress = "0.0.0.0";
|
||||||
}
|
}
|
||||||
|
System.out.println(portTextField.getText());
|
||||||
String portText = portTextField.getText();
|
String portText = portTextField.getText();
|
||||||
|
|
||||||
int port = Integer.parseInt(portText);
|
int port = Integer.parseInt(portText);
|
||||||
|
@ -104,13 +115,13 @@ public class JoinGame extends JPanel {
|
||||||
|
|
||||||
try {
|
try {
|
||||||
if(playerType == 0) {
|
if(playerType == 0) {
|
||||||
GameController.startOnlineGame(HumanPlayer.class, playerName, address,GameController.semesterToBoardSize(2));
|
GameController.startOnlineGame(HumanPlayer.class, playerName, address,GameController.semesterToBoardSize(semesterCounter));
|
||||||
} else if(playerType == 1) {
|
} else if(playerType == 1) {
|
||||||
GameController.startOnlineGame(SpecificAiPlayerEasy.class, playerName, address,GameController.semesterToBoardSize(2));
|
GameController.startOnlineGame(SpecificAiPlayerEasy.class, playerName, address,GameController.semesterToBoardSize(semesterCounter));
|
||||||
} else if (playerType == 2) {
|
} else if (playerType == 2) {
|
||||||
GameController.startOnlineGame(SpecificAiPlayerMedium.class, playerName, address,GameController.semesterToBoardSize(2));
|
GameController.startOnlineGame(SpecificAiPlayerMedium.class, playerName, address,GameController.semesterToBoardSize(semesterCounter));
|
||||||
} else if (playerType == 3) {
|
} else if (playerType == 3) {
|
||||||
GameController.startOnlineGame(SpecificAiPlayerHard.class, playerName, address,GameController.semesterToBoardSize(2));
|
GameController.startOnlineGame(SpecificAiPlayerHard.class, playerName, address,GameController.semesterToBoardSize(semesterCounter));
|
||||||
}
|
}
|
||||||
} catch (IOException ex) {
|
} catch (IOException ex) {
|
||||||
throw new RuntimeException(ex);
|
throw new RuntimeException(ex);
|
||||||
|
|
|
@ -1,15 +1,36 @@
|
||||||
import java.util.Random;
|
import java.util.Random;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* repräsentiert einen Player, der Lokal an dem Gerät spielt,
|
||||||
|
* auf dem dieses Programm läuft
|
||||||
|
* @author Luca Conte, Peer Ole Wachtel, Florian Hantzschel
|
||||||
|
*/
|
||||||
public class LocalPlayer extends Player {
|
public class LocalPlayer extends Player {
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* erstellt einen LocalPlayer und setzt myCoin random
|
||||||
|
* @author Peer Ole Wachtel
|
||||||
|
*/
|
||||||
public LocalPlayer(){
|
public LocalPlayer(){
|
||||||
super();
|
super();
|
||||||
Random random = new Random();
|
Random random = new Random();
|
||||||
this.myCoin = random.nextBoolean();
|
this.myCoin = random.nextBoolean();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* receives a shot onto a point from the enemy
|
||||||
|
* @param point the location to be shot
|
||||||
|
* @author Luca Conte, Peer Ole Wachtel
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public synchronized void receiveShoot(Point point) {
|
public synchronized void receiveShoot(Point point) {
|
||||||
|
if (!this.enemy.myTurn) {
|
||||||
|
System.out.println("enemy tried to fire when not their turn!");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
this.enemy.myTurn = false;
|
||||||
|
|
||||||
HitResponse hitResponse = board.getHitResponseOnPoint(point);
|
HitResponse hitResponse = board.getHitResponseOnPoint(point);
|
||||||
if (!(hitResponse == null)){
|
if (!(hitResponse == null)){
|
||||||
enemy.receiveHit(hitResponse);
|
enemy.receiveHit(hitResponse);
|
||||||
|
@ -22,22 +43,34 @@ public class LocalPlayer extends Player {
|
||||||
switch (hitResponse.getType()) {
|
switch (hitResponse.getType()) {
|
||||||
case HIT, SUNK -> this.myTurn = false;
|
case HIT, SUNK -> this.myTurn = false;
|
||||||
case MISS -> this.myTurn = true;
|
case MISS -> this.myTurn = true;
|
||||||
case VICTORY -> System.out.println("Game Over"); //TODO Was halt bei victory passiert ist hier wurder verloheren
|
case VICTORY -> this.lose();
|
||||||
}
|
}
|
||||||
GameController.getMainFrame().refreshGameBoard();
|
GameController.getMainFrame().refreshGameBoard();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* receives a hit response from the enemy as a response to a receiveShoot call
|
||||||
|
* @param hitResponse the hitresponse
|
||||||
|
* @author Peer Ole Wachtel
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public synchronized void receiveHit(HitResponse hitResponse) {
|
public synchronized void receiveHit(HitResponse hitResponse) {
|
||||||
enemy.board.addHits(hitResponse);
|
enemy.board.addHits(hitResponse);
|
||||||
switch (hitResponse.getType()) {
|
switch (hitResponse.getType()) {
|
||||||
case HIT, SUNK -> this.myTurn = true;
|
case HIT, SUNK -> this.myTurn = true;
|
||||||
case MISS -> this.myTurn = false;
|
case MISS -> this.myTurn = false;
|
||||||
case VICTORY -> System.out.println("Win"); // TODO was halt beim victory passier ist hier wurde gewonnen
|
case VICTORY -> this.win();
|
||||||
}
|
}
|
||||||
GameController.getMainFrame().refreshGameBoard();
|
GameController.getMainFrame().refreshGameBoard();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* receives the enemies coin toss result
|
||||||
|
* this method does nothing if the player has already received the enemies coin
|
||||||
|
* it will also call `determineCoinToss`
|
||||||
|
* @param coin the coin of the enemy player
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public synchronized void receiveCoin(boolean coin) {
|
public synchronized void receiveCoin(boolean coin) {
|
||||||
if (!this.hasReceivedCoin) {
|
if (!this.hasReceivedCoin) {
|
||||||
|
@ -46,12 +79,20 @@ public class LocalPlayer extends Player {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* sends shot to enemy player.
|
||||||
|
* should ONLY be called on HumanPlayer
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void shoot(Point point){
|
public void shoot(Point point){
|
||||||
this.myTurn = false;
|
return;
|
||||||
enemy.receiveShoot(point);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* marks the player as ready, if all ships have been placed
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public synchronized void ready() {
|
public synchronized void ready() {
|
||||||
for (Ship ship : this.board.getShips()) {
|
for (Ship ship : this.board.getShips()) {
|
||||||
|
@ -60,4 +101,4 @@ public class LocalPlayer extends Player {
|
||||||
super.ready();
|
super.ready();
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,48 @@
|
||||||
|
import java.awt.*;
|
||||||
|
import java.awt.event.ActionEvent;
|
||||||
|
import java.awt.event.ActionListener;
|
||||||
|
import javax.swing.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Klasse für Erstellung von looseScreen Objekten
|
||||||
|
* Dient zur Anzeige das ein Spiel verloren wurde
|
||||||
|
* @author Joshua Kuklok, Luca Bronson
|
||||||
|
*/
|
||||||
|
public class LoseScreen extends JPanel {
|
||||||
|
JLabel loseLabel = new JLabel("Du hast Verloren");
|
||||||
|
JButton okButton = new JButton("Zurück zum Hauptmenü");
|
||||||
|
Font robotoFont = new Font("Roboto", Font.BOLD, 45);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Konstruktor der LoseScreen Klasse
|
||||||
|
* @param frame Der Mainframe der Anwendung über den alle Panels angezeigt werden.
|
||||||
|
* @author Lucas Bronson
|
||||||
|
*/
|
||||||
|
public LoseScreen(MainFrame frame) {
|
||||||
|
setLayout(null);
|
||||||
|
buildPanel(frame);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Panel bauen/Objekte hinzufügen
|
||||||
|
* @param frame Der Mainframe der Anwendung über den alle Panels angezeigt werden.
|
||||||
|
* @author Lucas Bronson, Joshua Kuklok
|
||||||
|
*/
|
||||||
|
public void buildPanel(MainFrame frame) {
|
||||||
|
add(loseLabel);
|
||||||
|
okButton.setBounds(625,525,200,50);
|
||||||
|
loseLabel.setBounds(550,450,500,50);
|
||||||
|
loseLabel.setFont(robotoFont);
|
||||||
|
SoundHandler.playSound("loose");
|
||||||
|
|
||||||
|
// Zurückkehren zum Hauptmenü, wenn okButton gedrückt wird
|
||||||
|
okButton.addActionListener(new ActionListener() {
|
||||||
|
@Override
|
||||||
|
public void actionPerformed(ActionEvent e) {
|
||||||
|
frame.showPanel("MainMenu");
|
||||||
|
}
|
||||||
|
});
|
||||||
|
add(loseLabel);
|
||||||
|
add(okButton);
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,11 +1,10 @@
|
||||||
import javax.swing.*;
|
import javax.swing.*;
|
||||||
import java.awt.*;
|
import java.awt.*;
|
||||||
|
|
||||||
//TODO Generell button ausblenden anpassen
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Der MainFrame dient als Hub und Übergreifendes Fenster auf dem alle weiteren Panel angezeigt werden.
|
* Der MainFrame dient als Hub und Übergreifendes Fenster auf dem alle weiteren Panel angezeigt werden.
|
||||||
* Dadurch werden keine weiteren Fenster geöffnet.
|
* Dadurch werden keine weiteren Fenster geöffnet.
|
||||||
|
* @author Lucas Bronson, Luca Conte, Joshua Kuklok
|
||||||
*/
|
*/
|
||||||
public class MainFrame extends JFrame {
|
public class MainFrame extends JFrame {
|
||||||
|
|
||||||
|
@ -21,11 +20,13 @@ public class MainFrame extends JFrame {
|
||||||
// Von startLocalGameLoadingScreen an GameBoard
|
// Von startLocalGameLoadingScreen an GameBoard
|
||||||
int semesterCounter;
|
int semesterCounter;
|
||||||
// ---------- //
|
// ---------- //
|
||||||
|
|
||||||
private GameBoard gameBoard;
|
private GameBoard gameBoard;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Konstruktor von MainFrame.
|
* Konstruktor von MainFrame.
|
||||||
* Ermöglicht es Panel anzuzeigen.
|
* Ermöglicht es Panel anzuzeigen.
|
||||||
|
* @author Lucas Bronson, Luca Conte, Joshua Kuklok
|
||||||
*/
|
*/
|
||||||
public MainFrame() {
|
public MainFrame() {
|
||||||
|
|
||||||
|
@ -44,15 +45,14 @@ public class MainFrame extends JFrame {
|
||||||
MainMenuView mainMenuView = new MainMenuView(this);
|
MainMenuView mainMenuView = new MainMenuView(this);
|
||||||
startLocalGame localGame = new startLocalGame(this);
|
startLocalGame localGame = new startLocalGame(this);
|
||||||
startMultiplayerGame multiplayerGame = new startMultiplayerGame(this);
|
startMultiplayerGame multiplayerGame = new startMultiplayerGame(this);
|
||||||
coinToss coinToss = new coinToss(this);
|
|
||||||
Verbinden verbinden = new Verbinden(this);
|
Verbinden verbinden = new Verbinden(this);
|
||||||
|
|
||||||
// Panels hinzufügen
|
// Panels hinzufügen
|
||||||
mainPanel.add(mainMenuView, "MainMenu");
|
mainPanel.add(mainMenuView, "MainMenu");
|
||||||
mainPanel.add(localGame, "LocalGame");
|
mainPanel.add(localGame, "LocalGame");
|
||||||
mainPanel.add(multiplayerGame, "MultiplayerGame");
|
mainPanel.add(multiplayerGame, "MultiplayerGame");
|
||||||
mainPanel.add(coinToss, "coinToss");
|
|
||||||
mainPanel.add(verbinden, "Verbinden");
|
mainPanel.add(verbinden, "Verbinden");
|
||||||
|
// mainPanel.add(winLooseScreen, "WinLooseScreen");
|
||||||
|
|
||||||
// Hauptpanel in JFrame hinzufügen
|
// Hauptpanel in JFrame hinzufügen
|
||||||
add(mainPanel);
|
add(mainPanel);
|
||||||
|
@ -64,6 +64,7 @@ public class MainFrame extends JFrame {
|
||||||
/**
|
/**
|
||||||
* Methode, um die Ansicht zu wechseln
|
* Methode, um die Ansicht zu wechseln
|
||||||
* @param panelName Name des anzuzeigenden Panels
|
* @param panelName Name des anzuzeigenden Panels
|
||||||
|
* @author Joshua Kuklok
|
||||||
*/
|
*/
|
||||||
public void showPanel(String panelName) {
|
public void showPanel(String panelName) {
|
||||||
cardLayout.show(mainPanel, panelName);
|
cardLayout.show(mainPanel, panelName);
|
||||||
|
@ -75,15 +76,16 @@ public class MainFrame extends JFrame {
|
||||||
* @param num Hilfsvariable um abzugleichen, ob "Spiel erstellen" oder "Spiel beitreten" ausgewählt wurde
|
* @param num Hilfsvariable um abzugleichen, ob "Spiel erstellen" oder "Spiel beitreten" ausgewählt wurde
|
||||||
* @param playerType Spielertyp(HumanPlayer, AIEasy etc.)
|
* @param playerType Spielertyp(HumanPlayer, AIEasy etc.)
|
||||||
* @param playerName Name des Spielers
|
* @param playerName Name des Spielers
|
||||||
|
* @author Lucas Bronson, Joshua Kuklok
|
||||||
*/
|
*/
|
||||||
public void showPanelSMG(String panelName, int num, int playerType,String playerName) {
|
public void showPanelSMG(String panelName, int num, int playerType,String playerName, int semesterCounter) {
|
||||||
this.localMult = num;
|
this.localMult = num;
|
||||||
|
|
||||||
JoinGame joinGame = new JoinGame(this, localMult, playerType, playerName);
|
JoinGame joinGame = new JoinGame(this, localMult, playerType, playerName, semesterCounter);
|
||||||
mainPanel.add(joinGame, panelName);
|
mainPanel.add(joinGame, panelName);
|
||||||
mainPanel.revalidate(); // Refresh
|
mainPanel.revalidate();
|
||||||
mainPanel.repaint();
|
mainPanel.repaint();
|
||||||
cardLayout.show(mainPanel, panelName); // Show the panel
|
cardLayout.show(mainPanel, panelName);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -92,6 +94,7 @@ public class MainFrame extends JFrame {
|
||||||
* @param semesterCounter Ausgewähltes Semester
|
* @param semesterCounter Ausgewähltes Semester
|
||||||
* @param p1 Erstes Spielerobjekt
|
* @param p1 Erstes Spielerobjekt
|
||||||
* @param p2 Zweites Spielerobjekt
|
* @param p2 Zweites Spielerobjekt
|
||||||
|
* @author Lucas Bronson, Luca Conte, Joshua Kuklok
|
||||||
*/
|
*/
|
||||||
public void showPanelSLG(String panelName,int semesterCounter, Player p1, Player p2) {
|
public void showPanelSLG(String panelName,int semesterCounter, Player p1, Player p2) {
|
||||||
this.semesterCounter = semesterCounter;
|
this.semesterCounter = semesterCounter;
|
||||||
|
@ -100,28 +103,79 @@ public class MainFrame extends JFrame {
|
||||||
mainPanel.add(gameBoard, panelName);
|
mainPanel.add(gameBoard, panelName);
|
||||||
mainPanel.revalidate();
|
mainPanel.revalidate();
|
||||||
mainPanel.repaint();
|
mainPanel.repaint();
|
||||||
cardLayout.show(mainPanel, panelName); // Show the panel
|
cardLayout.show(mainPanel, panelName); // Panel anzeigen
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Spezifische ShowPanel der startLocalGame Klasse
|
* Spezifische ShowPanel der startLocalGame Klasse
|
||||||
* @param panelName Name des anzuzeigenden Panels
|
* @param panelName Name des anzuzeigenden Panels
|
||||||
* @param semesterCounter Ausgewähltes Semester
|
* @param semesterCounter Ausgewähltes Semester
|
||||||
|
* @author Joshua Kuklok
|
||||||
*/
|
*/
|
||||||
public void showPanelSLGLS(String panelName,int semesterCounter) {
|
public void showPanelSLGLS(String panelName,int semesterCounter) {
|
||||||
this.semesterCounter = semesterCounter;
|
this.semesterCounter = semesterCounter;
|
||||||
|
|
||||||
startLocalGameLoadingScreen LocalGameLoadingScreen = new startLocalGameLoadingScreen(this, semesterCounter);
|
startLocalGameLoadingScreen LocalGameLoadingScreen = new startLocalGameLoadingScreen(this, semesterCounter);
|
||||||
mainPanel.add(LocalGameLoadingScreen, panelName);
|
mainPanel.add(LocalGameLoadingScreen, panelName);
|
||||||
mainPanel.revalidate(); // Refresh
|
mainPanel.revalidate();
|
||||||
mainPanel.repaint();
|
mainPanel.repaint();
|
||||||
cardLayout.show(mainPanel, panelName); // Show the panel
|
cardLayout.show(mainPanel, panelName); // Panel anzeigen
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Spezifische ShowPanel für WinScreen Klasse
|
||||||
|
* @param panelName Name des anzuzeigenden Panels
|
||||||
|
* @param player Player von dem die funktion aufgerufen worden ist
|
||||||
|
* @author Lucas Bronson, Peer Ole Wachtel, Luca Conte
|
||||||
|
*/
|
||||||
|
public void showPanelWin(String panelName, Player player){
|
||||||
|
if(gameBoard == null || player != gameBoard.getP1()){
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.gameBoard.getP1().destroy();
|
||||||
|
this.gameBoard.getP2().destroy();
|
||||||
|
this.gameBoard.removeAll();
|
||||||
|
this.gameBoard = null;
|
||||||
|
|
||||||
|
WinScreen winScreen = new WinScreen(this);
|
||||||
|
mainPanel.add(winScreen, panelName);
|
||||||
|
mainPanel.revalidate();
|
||||||
|
mainPanel.repaint();
|
||||||
|
cardLayout.show(mainPanel, panelName);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Spezifische ShowPanel für LooseScreen Klasse
|
||||||
|
* @param panelName Name des anzuzeigenden Panels
|
||||||
|
* @param player Player von dem die funktion aufgerufen worden ist
|
||||||
|
* @author Lucas Bronson, Peer Ole Wachtel, Luca Conte
|
||||||
|
*/
|
||||||
|
public void showPanelLose(String panelName, Player player){
|
||||||
|
if(gameBoard == null || player != gameBoard.getP1()){
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
this.gameBoard.getP1().destroy();
|
||||||
|
this.gameBoard.getP2().destroy();
|
||||||
|
this.gameBoard.removeAll();
|
||||||
|
this.gameBoard = null;
|
||||||
|
|
||||||
|
LoseScreen looseScreen = new LoseScreen(this);
|
||||||
|
mainPanel.add(looseScreen,panelName);
|
||||||
|
mainPanel.revalidate();
|
||||||
|
mainPanel.repaint();
|
||||||
|
cardLayout.show(mainPanel, panelName);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Aktualisiert das Spielfeld
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
public void refreshGameBoard() {
|
public void refreshGameBoard() {
|
||||||
if(this.gameBoard == null) {
|
if(this.gameBoard == null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
this.gameBoard.refresh();
|
this.gameBoard.refresh();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,35 +0,0 @@
|
||||||
import java.awt.event.ActionEvent;
|
|
||||||
import java.awt.event.ActionListener;
|
|
||||||
import javax.swing.*;
|
|
||||||
|
|
||||||
public class MainMenuController implements ActionListener {
|
|
||||||
private MainMenuView view;
|
|
||||||
private MainMenuModel model;
|
|
||||||
|
|
||||||
public MainMenuController(MainMenuModel model, MainMenuView view) {
|
|
||||||
this.view = view;
|
|
||||||
this.model = model;
|
|
||||||
//this.view.getLocalButton().addActionListener(this);
|
|
||||||
//this.view.getMultiButton().addActionListener(this);
|
|
||||||
// this.view.getSoundButton().addActionListener(this);
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void actionPerformed(ActionEvent e) {
|
|
||||||
//if (e.getSource() == view.getMultiButton()) {
|
|
||||||
// model.setGameMode("Multiplayer");
|
|
||||||
// MultiMenuModel multiModel = new MultiMenuModel();
|
|
||||||
// MultiMenuView multiView = new MultiMenuView();
|
|
||||||
// MultiMenuController multiMenuController = new MultiMenuController(multiModel, multiView);
|
|
||||||
// view.addPanel(multiView.getMultiPanel(), "MultiMenu");
|
|
||||||
// view.showPanel("MultiMenu");
|
|
||||||
// }else if (e.getSource() == view.getSoundButton()) {
|
|
||||||
// view.toggleMute();
|
|
||||||
// }else if(e.getSource() == view.getLocalButton()) {
|
|
||||||
model.setGameMode("LocalGame");
|
|
||||||
//startLocalGame localGame = new startLocalGame();
|
|
||||||
// view.addPanel(localGame.getLocalPanel(), "LocalMenu");
|
|
||||||
// view.showPanel("LocalMenu");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
//}
|
|
|
@ -1,11 +0,0 @@
|
||||||
public class MainMenuModel {
|
|
||||||
private String gameMode;
|
|
||||||
|
|
||||||
public void setGameMode(String mode) {
|
|
||||||
this.gameMode = mode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getGameMode() {
|
|
||||||
return gameMode;
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,9 +1,13 @@
|
||||||
import java.awt.*;
|
import java.awt.*;
|
||||||
import java.awt.event.ActionEvent;
|
import java.awt.event.ActionEvent;
|
||||||
import java.awt.event.ActionListener;
|
import java.awt.event.ActionListener;
|
||||||
import javax.swing.JFrame;
|
|
||||||
import javax.swing.*;
|
import javax.swing.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Klasse zum Erstellen von MainMenu Objekten
|
||||||
|
* Dient als Hauptmenü für die Anwendung
|
||||||
|
* @author Lucas Bronson
|
||||||
|
*/
|
||||||
public class MainMenuView extends JPanel {
|
public class MainMenuView extends JPanel {
|
||||||
|
|
||||||
private JLabel titelLabel = new JLabel("Studium versenken");
|
private JLabel titelLabel = new JLabel("Studium versenken");
|
||||||
|
@ -15,11 +19,21 @@ public class MainMenuView extends JPanel {
|
||||||
private ImageIcon soundIcon = new ImageIcon("graphics/sound button.png");
|
private ImageIcon soundIcon = new ImageIcon("graphics/sound button.png");
|
||||||
private ImageIcon muteIcon = new ImageIcon("graphics/sound button muted.png");
|
private ImageIcon muteIcon = new ImageIcon("graphics/sound button muted.png");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Konstruktor der MainMenuView Klasse
|
||||||
|
* @param frame Der Mainframe der Anwendung über den alle Panels angezeigt werden.
|
||||||
|
* @author Lucas Bronson
|
||||||
|
*/
|
||||||
public MainMenuView(MainFrame frame) {
|
public MainMenuView(MainFrame frame) {
|
||||||
setLayout(null);
|
setLayout(null);
|
||||||
buildPanel(frame);
|
buildPanel(frame);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Methode zum Füllen des Panels, Objekte werden dem frame hinzugefügt
|
||||||
|
* @param frame Der Mainframe der Anwendung über den alle Panels angezeigt werden.
|
||||||
|
* @author Lucas Bronson
|
||||||
|
*/
|
||||||
private void buildPanel(MainFrame frame) {
|
private void buildPanel(MainFrame frame) {
|
||||||
lokalButton.setBounds(200, 200, 500, 500);
|
lokalButton.setBounds(200, 200, 500, 500);
|
||||||
multiButton.setBounds(800, 200, 500, 500);
|
multiButton.setBounds(800, 200, 500, 500);
|
||||||
|
@ -36,7 +50,7 @@ public class MainMenuView extends JPanel {
|
||||||
add(multiButton);
|
add(multiButton);
|
||||||
add(soundButton);
|
add(soundButton);
|
||||||
|
|
||||||
// Event Listener für Buttons
|
// ActionListener um vom Hauptmenü zum LocalGame Menü zu wechseln
|
||||||
lokalButton.addActionListener(new ActionListener() {
|
lokalButton.addActionListener(new ActionListener() {
|
||||||
@Override
|
@Override
|
||||||
public void actionPerformed(ActionEvent e) {
|
public void actionPerformed(ActionEvent e) {
|
||||||
|
@ -45,6 +59,7 @@ public class MainMenuView extends JPanel {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// ActionListener um vom Hauptmenü zum MultiPlayerGame Menü zu wechseln
|
||||||
multiButton.addActionListener(new ActionListener() {
|
multiButton.addActionListener(new ActionListener() {
|
||||||
@Override
|
@Override
|
||||||
public void actionPerformed(ActionEvent e) {
|
public void actionPerformed(ActionEvent e) {
|
||||||
|
@ -53,6 +68,7 @@ public class MainMenuView extends JPanel {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
//Aufruf von toggleMute, falls der soundButton geklickt wird
|
||||||
soundButton.addActionListener(new ActionListener() {
|
soundButton.addActionListener(new ActionListener() {
|
||||||
@Override
|
@Override
|
||||||
public void actionPerformed(ActionEvent e) {
|
public void actionPerformed(ActionEvent e) {
|
||||||
|
@ -62,11 +78,18 @@ public class MainMenuView extends JPanel {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Setzt Sound auf Stumm/Laut und ändert Grafik, sodass
|
||||||
|
* der aktuelle Stand der Grafik entspricht
|
||||||
|
* @author Lucas Bronson, Joshua Kuklok
|
||||||
|
*/
|
||||||
private void toggleMute() {
|
private void toggleMute() {
|
||||||
if (soundButton.getIcon() == soundIcon) {
|
if (soundButton.getIcon() == soundIcon) {
|
||||||
soundButton.setIcon(muteIcon);
|
soundButton.setIcon(muteIcon);
|
||||||
|
SoundHandler.setSoundOn(false);
|
||||||
} else {
|
} else {
|
||||||
soundButton.setIcon(soundIcon);
|
soundButton.setIcon(soundIcon);
|
||||||
|
SoundHandler.setSoundOn(true);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -1,22 +0,0 @@
|
||||||
import java.awt.event.ActionEvent;
|
|
||||||
import java.awt.event.ActionListener;
|
|
||||||
import javax.swing.*;
|
|
||||||
|
|
||||||
public class MultiMenuController implements ActionListener {
|
|
||||||
private MultiMenuView view;
|
|
||||||
private MultiMenuModel model;
|
|
||||||
|
|
||||||
public MultiMenuController(MultiMenuModel model, MultiMenuView view) {
|
|
||||||
this.view = view;
|
|
||||||
this.model = model;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public void actionPerformed(ActionEvent e) {
|
|
||||||
if (e.getSource() == view.getPlayerLeftButton()){
|
|
||||||
view.togglePlayerIcon();
|
|
||||||
}else if(e.getSource() == view.getPlayerRightButton()){
|
|
||||||
view.togglePlayerIcon();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,11 +0,0 @@
|
||||||
public class MultiMenuModel {
|
|
||||||
private String gameMode;
|
|
||||||
|
|
||||||
public void setGameMode(String mode) {
|
|
||||||
this.gameMode = mode;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getGameMode() {
|
|
||||||
return gameMode;
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,83 +0,0 @@
|
||||||
import java.awt.*;
|
|
||||||
import javax.swing.JFrame;
|
|
||||||
import javax.swing.*;
|
|
||||||
|
|
||||||
public class MultiMenuView {
|
|
||||||
int semesterCounter = 1;
|
|
||||||
private JPanel multiPanel = new JPanel(null);
|
|
||||||
|
|
||||||
private ImageIcon humanPlayerIcon = new ImageIcon("graphics/humanPlayer.png");
|
|
||||||
private ImageIcon aiPlayerIcon = new ImageIcon("graphics/aiPlayer.png");
|
|
||||||
|
|
||||||
JButton PlayerLeftButton = new JButton("<-");
|
|
||||||
JButton PlayerRightButton = new JButton("->");
|
|
||||||
JButton semesterUpButton = new JButton("^");
|
|
||||||
JButton semesterDownButton = new JButton("v");
|
|
||||||
|
|
||||||
JLabel semesterLabel = new JLabel("Semester");
|
|
||||||
private JLabel titelLabel = new JLabel("Multiplayer");
|
|
||||||
private JLabel PlayerIcon = new JLabel(humanPlayerIcon);
|
|
||||||
private JLabel PlayerName = new JLabel("Name");
|
|
||||||
private JTextField PlayerTextField = new JTextField(20);
|
|
||||||
JLabel semesterCounterLabel = new JLabel(String.valueOf(semesterCounter));
|
|
||||||
|
|
||||||
private Font robotoFont = new Font("Roboto", Font.BOLD, 45);
|
|
||||||
public MultiMenuView() {
|
|
||||||
buildPanel();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public void buildPanel(){
|
|
||||||
titelLabel.setBounds(20,20,700,100);
|
|
||||||
PlayerIcon.setBounds(75, 400, 200, 128);
|
|
||||||
PlayerName.setBounds(50, 625, 200, 30);
|
|
||||||
PlayerTextField.setBounds(50, 650, 250, 50);
|
|
||||||
semesterCounterLabel.setBounds(725, 475, 50, 50); // zwischen den Up/Down-Buttons
|
|
||||||
PlayerLeftButton.setBounds(50, 450, 50, 50);
|
|
||||||
PlayerRightButton.setBounds(250, 450, 50, 50);
|
|
||||||
semesterLabel.setBounds(500, 400, 200, 30);
|
|
||||||
semesterUpButton.setBounds(700, 400, 50, 50);
|
|
||||||
semesterDownButton.setBounds(700, 550, 50, 50);
|
|
||||||
|
|
||||||
|
|
||||||
multiPanel.setLayout(null);
|
|
||||||
titelLabel.setFont(robotoFont.deriveFont(50f));
|
|
||||||
semesterLabel.setFont(robotoFont.deriveFont(20f));
|
|
||||||
|
|
||||||
multiPanel.add(PlayerName);
|
|
||||||
multiPanel.add(titelLabel);
|
|
||||||
multiPanel.add(PlayerIcon);
|
|
||||||
multiPanel.add(PlayerTextField);
|
|
||||||
multiPanel.add(semesterCounterLabel);
|
|
||||||
multiPanel.add(semesterUpButton);
|
|
||||||
multiPanel.add(semesterDownButton);
|
|
||||||
multiPanel.add(PlayerLeftButton);
|
|
||||||
multiPanel.add(PlayerRightButton);
|
|
||||||
multiPanel.add(semesterLabel);
|
|
||||||
}
|
|
||||||
|
|
||||||
public JPanel getMultiPanel() {
|
|
||||||
return multiPanel;
|
|
||||||
}
|
|
||||||
|
|
||||||
//public void showMultiPanel(String panelName) {
|
|
||||||
// CardLayout cl = (CardLayout)mainPanel.getLayout();
|
|
||||||
// cl.show(multiPanel, panelName);
|
|
||||||
//}
|
|
||||||
|
|
||||||
public void togglePlayerIcon() {
|
|
||||||
if (PlayerIcon.getIcon() == humanPlayerIcon) {
|
|
||||||
PlayerIcon.setIcon(aiPlayerIcon);
|
|
||||||
} else {
|
|
||||||
PlayerIcon.setIcon(humanPlayerIcon);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
public JButton getPlayerLeftButton() {
|
|
||||||
return PlayerLeftButton;
|
|
||||||
}
|
|
||||||
|
|
||||||
public JButton getPlayerRightButton() {
|
|
||||||
return PlayerRightButton;
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,28 +1,57 @@
|
||||||
public abstract class OnlinePlayer extends Player implements AsyncSocketListener{
|
/**
|
||||||
|
* Abstrakte Repräsentation eines Spielers, der an einem anderen gerät spielt
|
||||||
|
* und durch eine Online Verbindung mit dieser Instanz kommuniziert
|
||||||
|
* @author Luca Conte, Peer Ole Wachtel
|
||||||
|
*/
|
||||||
|
public abstract class OnlinePlayer extends Player implements AsyncSocketListener {
|
||||||
protected AsyncSocket socket;
|
protected AsyncSocket socket;
|
||||||
protected int wantedBoardSize;
|
protected int wantedBoardSize;
|
||||||
|
|
||||||
protected boolean hasReceivedCoinPackage;
|
protected boolean hasReceivedCoinPackage;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Constructor
|
||||||
|
* @param size the size of the board the enemy player wants to play with
|
||||||
|
* the actual board size will be determined once the semester of the online partner is known
|
||||||
|
* @param socket an AsyncSocket to communicate with the enemy through
|
||||||
|
* @author Peer Ole Wachtel, Luca Conte
|
||||||
|
*/
|
||||||
public OnlinePlayer(Integer size, AsyncSocket socket) {
|
public OnlinePlayer(Integer size, AsyncSocket socket) {
|
||||||
this.socket = socket;
|
this.socket = socket;
|
||||||
this.wantedBoardSize = size;
|
this.wantedBoardSize = size;
|
||||||
this.myCoin = null;
|
this.myCoin = null;
|
||||||
socket.setHandler(this);
|
socket.setHandler(this);
|
||||||
//TODO Auto-generated constructor stub
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* sends the IAM Package for introduction
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
public abstract void sendIAM();
|
public abstract void sendIAM();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* receives a message from the AsyncSocket
|
||||||
|
* satisfies AsyncSocketListener interface
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
public abstract void receive(String message);
|
public abstract void receive(String message);
|
||||||
|
|
||||||
@Override
|
/**
|
||||||
public abstract void receiveShoot(Point point);
|
* receives the coin toss result from the enemy
|
||||||
|
* @param coin the result of the coin toss
|
||||||
@Override
|
* @author Peer Ole Wachtel
|
||||||
public abstract void receiveHit(HitResponse hitResponse);
|
*/
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public abstract void receiveCoin(boolean coin);
|
public abstract void receiveCoin(boolean coin);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* closes the socket and does player cleanup work
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public void destroy() {
|
||||||
|
super.destroy();
|
||||||
|
this.socket.close();
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,11 +1,29 @@
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* eine Implementierung des Kommunikationsprotokoll nach Version 1.1.0 des Netzwerkstandards
|
||||||
|
* https://github.com/lgc-4/ProgProjekt-Netzwerkstandard
|
||||||
|
* @author Peer Ole Wachtel, Luca Conte
|
||||||
|
*/
|
||||||
public class OnlinePlayer_1_1_0 extends OnlinePlayer {
|
public class OnlinePlayer_1_1_0 extends OnlinePlayer {
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Erstellt einen Online Player
|
||||||
|
* @param size die maximale Größe des Spielfelds
|
||||||
|
* @param socket der Socket zur Kommunikation mit dem Online Partner
|
||||||
|
*/
|
||||||
public OnlinePlayer_1_1_0(Integer size, AsyncSocket socket) {
|
public OnlinePlayer_1_1_0(Integer size, AsyncSocket socket) {
|
||||||
super(size, socket);
|
super(size, socket);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* receives a message from the AsyncSocket
|
||||||
|
* implemented according to version 1.1.0 of https://github.com/lgc-4/ProgProjekt-Netzwerkstandard
|
||||||
|
* @param message the message from the socket
|
||||||
|
* @author Peer Ole Wachtel, Luca Conte, Florian Hantzschel
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void receive(String message) {
|
public void receive(String message) {
|
||||||
SocketPackage p = new SocketPackage(message);
|
SocketPackage p = new SocketPackage(message);
|
||||||
|
@ -34,8 +52,8 @@ public class OnlinePlayer_1_1_0 extends OnlinePlayer {
|
||||||
case "COIN":
|
case "COIN":
|
||||||
if(!this.hasReceivedCoinPackage && (p.getData().equals("1") || p.getData().equals("0"))){
|
if(!this.hasReceivedCoinPackage && (p.getData().equals("1") || p.getData().equals("0"))){
|
||||||
this.myCoin = p.getData().equals("1");
|
this.myCoin = p.getData().equals("1");
|
||||||
this.ready();
|
|
||||||
this.hasReceivedCoinPackage = true;
|
this.hasReceivedCoinPackage = true;
|
||||||
|
this.ready();
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
@ -52,7 +70,23 @@ public class OnlinePlayer_1_1_0 extends OnlinePlayer {
|
||||||
Point point = new Point(data.get(0));
|
Point point = new Point(data.get(0));
|
||||||
int typeIndex = Integer.parseInt(data.get(1));
|
int typeIndex = Integer.parseInt(data.get(1));
|
||||||
if (Point.isValidSyntax(data.get(0)) && typeIndex >= 0 && typeIndex < HitResponseType.values().length){
|
if (Point.isValidSyntax(data.get(0)) && typeIndex >= 0 && typeIndex < HitResponseType.values().length){
|
||||||
this.enemy.receiveHit(new HitResponse(typeIndex, point));
|
|
||||||
|
HitResponse hitResponse = new HitResponse(typeIndex, point);
|
||||||
|
|
||||||
|
this.enemy.receiveHit(hitResponse);
|
||||||
|
|
||||||
|
switch (hitResponse.getType()) {
|
||||||
|
case HIT, SUNK:
|
||||||
|
this.myTurn = false;
|
||||||
|
break;
|
||||||
|
case MISS:
|
||||||
|
this.myTurn = true;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case VICTORY:
|
||||||
|
// GameController.getMainFrame().showPanelWin("", this.enemy);
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -61,28 +95,66 @@ public class OnlinePlayer_1_1_0 extends OnlinePlayer {
|
||||||
//TODO CHAT
|
//TODO CHAT
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case "WITHDRAW":
|
||||||
|
this.withdraw();
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
//nichts passier da Paket ungültig
|
//nichts passier da Paket ungültig
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* sends introduction package IAM to online partner.
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public synchronized void sendIAM() {
|
public synchronized void sendIAM() {
|
||||||
if (this.enemy == null) throw new RuntimeException("enemy has not yet been defined");
|
if (this.enemy == null) throw new RuntimeException("enemy has not yet been defined");
|
||||||
socket.send(new SocketPackage("IAM", GameController.boardSizeToSemester(this.wantedBoardSize) + " " + this.enemy.name));
|
socket.send(new SocketPackage("IAM", GameController.boardSizeToSemester(this.wantedBoardSize) + " " + this.enemy.name));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* receives a shot from the enemy and sends it to the online partner
|
||||||
|
* if it is not the enemies turn, this method does nothing.
|
||||||
|
* @param point the point to be shot
|
||||||
|
* @author Peer Ole Wachtel, Luca Conte
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public synchronized void receiveShoot(Point point){
|
public synchronized void receiveShoot(Point point){
|
||||||
|
if (!this.enemy.myTurn) return;
|
||||||
super.socket.send(new SocketPackage("SHOOT",point.toString()));
|
super.socket.send(new SocketPackage("SHOOT",point.toString()));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* receives a hitresponse from the enemy player and sends it to the online partner
|
||||||
|
* @param hitResponse the hitresponse to be sent
|
||||||
|
* @author Peer Ole Wachtel, Luca Conte
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public synchronized void receiveHit(HitResponse hitResponse) {
|
public synchronized void receiveHit(HitResponse hitResponse) {
|
||||||
|
switch (hitResponse.getType()) {
|
||||||
|
case HIT, SUNK:
|
||||||
|
this.myTurn = true;
|
||||||
|
break;
|
||||||
|
case MISS:
|
||||||
|
this.myTurn = false;
|
||||||
|
break;
|
||||||
|
|
||||||
|
case VICTORY:
|
||||||
|
// GameController.getMainFrame().showPanelLose("", this.enemy);
|
||||||
|
break;
|
||||||
|
}
|
||||||
super.socket.send(new SocketPackage("HIT", hitResponse.toString()));
|
super.socket.send(new SocketPackage("HIT", hitResponse.toString()));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* receives the coin toss result from the enemy player and sends it to the online partner
|
||||||
|
* if this player has already received the enemies coin, this method does nothing.
|
||||||
|
* @param coin the result of the coin toss
|
||||||
|
* @author Peer Ole Wachtel, Luca Conte
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public synchronized void receiveCoin(boolean coin) {
|
public synchronized void receiveCoin(boolean coin) {
|
||||||
if (!this.hasReceivedCoin) {
|
if (!this.hasReceivedCoin) {
|
||||||
|
@ -92,8 +164,25 @@ public class OnlinePlayer_1_1_0 extends OnlinePlayer {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* für Online Player nicht zu implementieren
|
||||||
|
* nur für HumanPlayer relevant
|
||||||
|
* @author Luca Conte, Peer Ole Wachtel
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public synchronized void shoot(Point point) {
|
public synchronized void shoot(Point point) {
|
||||||
super.socket.send(new SocketPackage("SHOOT", point.toString()));
|
// SHOULD NEVER BE CALLED ON ONLINE PLAYER. ONLY ON HUMAN PLAYER
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
/**
|
||||||
|
* empfängt Withdraw vom Gegner und leitet es an den Online Partner weiter
|
||||||
|
* beendet das Spiel
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
|
@Override
|
||||||
|
public void receiveWithdraw() {
|
||||||
|
this.socket.send(new SocketPackage("WITHDRAW"));
|
||||||
|
super.receiveWithdraw();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
131
src/Player.java
131
src/Player.java
|
@ -1,3 +1,7 @@
|
||||||
|
/**
|
||||||
|
* abstrakte repräsentation eines Spielers
|
||||||
|
* @author Peer Ole Wachtel, Luca Conte, Lucas Bronson
|
||||||
|
*/
|
||||||
public abstract class Player {
|
public abstract class Player {
|
||||||
protected boolean myTurn;
|
protected boolean myTurn;
|
||||||
protected boolean isServer;
|
protected boolean isServer;
|
||||||
|
@ -12,6 +16,10 @@ public abstract class Player {
|
||||||
|
|
||||||
protected boolean hasReceivedCoin;
|
protected boolean hasReceivedCoin;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Konstruktor
|
||||||
|
* @author Peer Ole Wachtel, Luca Conte
|
||||||
|
*/
|
||||||
public Player() {
|
public Player() {
|
||||||
this.setName("Player");
|
this.setName("Player");
|
||||||
this.hasReceivedCoin = false;
|
this.hasReceivedCoin = false;
|
||||||
|
@ -20,35 +28,85 @@ public abstract class Player {
|
||||||
this.gameRunning = false;
|
this.gameRunning = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* initialises this players board
|
||||||
|
* @param size the size of the board to be created
|
||||||
|
* @author Peer Ole Wachtel
|
||||||
|
*/
|
||||||
public void createBoard(int size) {
|
public void createBoard(int size) {
|
||||||
this.board = new Board(size);
|
this.board = new Board(size);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* receives a shot onto a point from the enemy
|
||||||
|
* @param point the location to be shot
|
||||||
|
* @author Luca Conte, Peer Ole Wachtel
|
||||||
|
*/
|
||||||
public abstract void receiveShoot(Point point);
|
public abstract void receiveShoot(Point point);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* receives a hit response from the enemy as a response to a receiveShoot call
|
||||||
|
* @param hitResponse the hitresponse
|
||||||
|
* @author Peer Ole Wachtel
|
||||||
|
*/
|
||||||
public abstract void receiveHit(HitResponse hitResponse);
|
public abstract void receiveHit(HitResponse hitResponse);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* sends shot to enemy player.
|
||||||
|
* should ONLY be called on HumanPlayer
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
public abstract void shoot(Point point);
|
public abstract void shoot(Point point);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* only relevant for AI Players.
|
||||||
|
* starts the first turn
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
public void beginTurn() {
|
public void beginTurn() {
|
||||||
System.out.println("issa my turn-a");
|
System.out.println("issa my turn-a");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* sets the enemy Player
|
||||||
|
* @author Peer Ole Wachtel
|
||||||
|
*/
|
||||||
public void setEnemy(Player enemy) {
|
public void setEnemy(Player enemy) {
|
||||||
this.enemy = enemy;
|
this.enemy = enemy;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* sets the name of this player
|
||||||
|
* @param name the name of this player
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
public void setName(String name) {
|
public void setName(String name) {
|
||||||
this.name = name;
|
this.name = name;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* returns the name of this player
|
||||||
|
* @return the name of this player
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
public String getName() {
|
public String getName() {
|
||||||
return this.name;
|
return this.name;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* returns the board of this player
|
||||||
|
* @return the board of this player
|
||||||
|
* @author Lucas Bronson
|
||||||
|
*/
|
||||||
public Board getBoard() {
|
public Board getBoard() {
|
||||||
return this.board;
|
return this.board;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* marks the player as ready by sending their coin to the enemy player
|
||||||
|
* calls determineCoinToss if the enemy coin has already been received
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
public void ready() {
|
public void ready() {
|
||||||
this.enemy.receiveCoin(this.myCoin);
|
this.enemy.receiveCoin(this.myCoin);
|
||||||
this.sentCoin = true;
|
this.sentCoin = true;
|
||||||
|
@ -57,6 +115,11 @@ public abstract class Player {
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/**
|
||||||
|
* determines the result of the coin toss
|
||||||
|
* this method does nothing if either player is not ready yet or has not yet sent their coin
|
||||||
|
* @author Luca Conte, Peer Ole Wachtel
|
||||||
|
*/
|
||||||
protected void determineCoinToss() {
|
protected void determineCoinToss() {
|
||||||
if (!this.sentCoin || this.myCoin == null || !this.hasReceivedCoin || this.enemy.myCoin == null) return;
|
if (!this.sentCoin || this.myCoin == null || !this.hasReceivedCoin || this.enemy.myCoin == null) return;
|
||||||
boolean result = this.enemy.myCoin ^ this.myCoin; // XOR
|
boolean result = this.enemy.myCoin ^ this.myCoin; // XOR
|
||||||
|
@ -68,13 +131,81 @@ public abstract class Player {
|
||||||
GameController.getMainFrame().refreshGameBoard();
|
GameController.getMainFrame().refreshGameBoard();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* receives the coin toss from the enemy player
|
||||||
|
* @param coin the coin of the enemy player
|
||||||
|
* @author Peer Ole Wachtel
|
||||||
|
*/
|
||||||
public abstract void receiveCoin(boolean coin);
|
public abstract void receiveCoin(boolean coin);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* returns whether the game this player is in has started, meaning both players are ready and have sent their coins
|
||||||
|
* @return the game's running state
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
public boolean isGameRunning() {
|
public boolean isGameRunning() {
|
||||||
return this.gameRunning;
|
return this.gameRunning;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* returns whether this player is ready and has sent their coin to the enemy player
|
||||||
|
* @return the player's ready state
|
||||||
|
* @author Lucas Bronson
|
||||||
|
*/
|
||||||
public boolean isReady() {
|
public boolean isReady() {
|
||||||
return this.sentCoin;
|
return this.sentCoin;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* removes connections to the enemy and its board as well as setting myTurn and gameRunning to false
|
||||||
|
* this stops the AI Players from making more moves and allows the garbage collector to remove the boards
|
||||||
|
* and players
|
||||||
|
*
|
||||||
|
* This method should be called at the end of a game
|
||||||
|
*
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
|
public void destroy() {
|
||||||
|
this.myTurn = false;
|
||||||
|
this.gameRunning = false;
|
||||||
|
this.board = null;
|
||||||
|
this.enemy = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* the player wins
|
||||||
|
* ends the game
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
|
public void win() {
|
||||||
|
GameController.getMainFrame().showPanelWin("", this);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* the player loses
|
||||||
|
* ends the game
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
|
public void lose() {
|
||||||
|
GameController.getMainFrame().showPanelLose("", this);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* the player loses by withdrawal
|
||||||
|
* ends the game
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
|
public void withdraw() {
|
||||||
|
this.enemy.receiveWithdraw();
|
||||||
|
this.lose();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* the enemy player withdraws
|
||||||
|
* ends the game
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
|
public void receiveWithdraw(){
|
||||||
|
this.win();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,11 +1,32 @@
|
||||||
|
/**
|
||||||
|
* repräsentation der Koordinaten eines Feldes auf dem Spielfeld
|
||||||
|
* @author Peer Ole Wachtel, Luca Conte
|
||||||
|
*/
|
||||||
public class Point {
|
public class Point {
|
||||||
private int x;
|
private int x;
|
||||||
private int y;
|
private int y;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* initialises a point using X and Y coordinates starting at 0
|
||||||
|
* @param x the x coordinate of the point starting at 0
|
||||||
|
* @param y the y coordinate of the point starting at 0
|
||||||
|
* @author Peer Ole Wachtel
|
||||||
|
*/
|
||||||
public Point (int x, int y) {
|
public Point (int x, int y) {
|
||||||
this.setX(x);
|
this.setX(x);
|
||||||
this.setY(y);
|
this.setY(y);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* initialises a Point using a coordinate provided in the format of a letter followed by a number
|
||||||
|
* this coordinate is checked using `isValidSyntax`
|
||||||
|
* If the coordinate is not in a valid syntax, an `IllegalArgumentException` will be thrown, stating as such
|
||||||
|
* The number part of the coordinate starts at 1 instead of 0 so for example, the
|
||||||
|
* string A1 will result in the X and Y coordinates of (0, 0)
|
||||||
|
* @param str the coordinate in alphanumeric format
|
||||||
|
* @throws IllegalArgumentException if the coordinate is invalid according to `isValidSyntax`
|
||||||
|
* @author Peer Ole Wachtel, Luca Conte
|
||||||
|
*/
|
||||||
public Point (String str) {
|
public Point (String str) {
|
||||||
if (Point.isValidSyntax(str)) {
|
if (Point.isValidSyntax(str)) {
|
||||||
this.setX(str.charAt(0));
|
this.setX(str.charAt(0));
|
||||||
|
@ -15,34 +36,78 @@ public class Point {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* returns this point as a string in its alphanumeric format
|
||||||
|
* @return this point as a string in its alphanumeric format
|
||||||
|
* @author Luca Conte, Peer Ole Wachtel
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public String toString() {
|
public String toString() {
|
||||||
return (char) ('A' + this.x) + String.valueOf(this.y + 1);
|
return (char) ('A' + this.x) + String.valueOf(this.y + 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* returns the X coordinate of the point starting at 0
|
||||||
|
* @return the X coordinate of the point starting at 0
|
||||||
|
* @author Peer Ole Wachtel
|
||||||
|
*/
|
||||||
public int getX() {
|
public int getX() {
|
||||||
return x;
|
return x;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* returns the Y coordinate of the point starting at 0
|
||||||
|
* @return the Y coordinate of the point starting at 0
|
||||||
|
* @author Peer Ole Wachtel
|
||||||
|
*/
|
||||||
public int getY() {
|
public int getY() {
|
||||||
return y;
|
return y;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* sets the X coordinate of the point starting at 0
|
||||||
|
* @param x the X coordinate of the point starting at 0
|
||||||
|
* @author Peer Ole Wachtel
|
||||||
|
*/
|
||||||
public void setX(int x) {
|
public void setX(int x) {
|
||||||
this.x = x;
|
this.x = x;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* sets the Y coordinate of the point starting at 0
|
||||||
|
* @param y the Y coordinate of the point starting at 0
|
||||||
|
* @author Peer Ole Wachtel
|
||||||
|
*/
|
||||||
public void setY(int y) {
|
public void setY(int y) {
|
||||||
this.y = y;
|
this.y = y;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* sets the X coordinate of the from its character value in alphanumeric form
|
||||||
|
* @param c the character to be transformed into
|
||||||
|
* @author Peer Ole Wachtel
|
||||||
|
*/
|
||||||
public void setX(char c) {
|
public void setX(char c) {
|
||||||
this.x = c - 'A';
|
this.x = c - 'A';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* checks whether a string is a valid alphanumeric point coordinate
|
||||||
|
* @param str the string to be tested
|
||||||
|
* @return whether the string is valid according to the regular expression `^[A-Z]\\d+$`
|
||||||
|
* @author Peer Ole Wachtel
|
||||||
|
*/
|
||||||
public static boolean isValidSyntax(String str) {
|
public static boolean isValidSyntax(String str) {
|
||||||
return str.matches("^[A-Z]\\d+$");
|
return str.matches("^[A-Z]\\d+$");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* returns whether two points are equal
|
||||||
|
* two points with equivalent coordinates are considered equal
|
||||||
|
* @param o the other object/Point to compare this one to
|
||||||
|
* @return whether the objects are equal
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public boolean equals(Object o) {
|
public boolean equals(Object o) {
|
||||||
if (this == o) return true;
|
if (this == o) return true;
|
||||||
|
@ -52,6 +117,13 @@ public class Point {
|
||||||
return p.getX() == this.getX() && p.getY() == this.getY();
|
return p.getX() == this.getX() && p.getY() == this.getY();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* determines whether two points are neighbours
|
||||||
|
* points are considered neighbours if their positions are equal or within a difference of 1 on both X and Y axis
|
||||||
|
* @param other the point to check for neighbourship
|
||||||
|
* @return whether the points are neighbours
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
public boolean neighbours(Point other) {
|
public boolean neighbours(Point other) {
|
||||||
if (other == null) return false;
|
if (other == null) return false;
|
||||||
return (int)Math.abs(this.getX() - other.getX()) <= 1 && (int)Math.abs(this.getY() - other.getY()) <= 1;
|
return (int)Math.abs(this.getX() - other.getX()) <= 1 && (int)Math.abs(this.getY() - other.getY()) <= 1;
|
||||||
|
|
181
src/Ship.java
181
src/Ship.java
|
@ -5,44 +5,56 @@ import java.util.List;
|
||||||
|
|
||||||
record ShipData (int size, String name){}
|
record ShipData (int size, String name){}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* repräsentation eines Schiffes auf dem Spielfeld
|
||||||
|
* @author Peer Ole Wachtel, Lucas Bronson, Florian Hanzschel
|
||||||
|
*/
|
||||||
public class Ship {
|
public class Ship {
|
||||||
static List<List<ShipData>> semeterList = Arrays.asList(Arrays.asList(
|
static List<List<ShipData>> semeterList =
|
||||||
new ShipData(2, "PRG 1"),
|
Arrays.asList(
|
||||||
new ShipData(2, "GDI"),
|
Arrays.asList(
|
||||||
new ShipData(2, "MAT 1"),
|
new ShipData(2, "PRG 1"),
|
||||||
new ShipData(2, "THI"),
|
new ShipData(2, "GDI"),
|
||||||
new ShipData(4, "STP"),
|
new ShipData(2, "MAT 1"),
|
||||||
new ShipData(6, "ENG")),
|
new ShipData(2, "THI"),
|
||||||
Arrays.asList(
|
new ShipData(4, "STP"),
|
||||||
new ShipData(2, "PRG 2"),
|
new ShipData(6, "ENG")
|
||||||
new ShipData(2, "DBS 1"),
|
),
|
||||||
new ShipData(2, "MAT 2"),
|
Arrays.asList(
|
||||||
new ShipData(2, "STA"),
|
new ShipData(2, "PRG 2"),
|
||||||
new ShipData(2, "AUD")),
|
new ShipData(2, "DBS 1"),
|
||||||
Arrays.asList(
|
new ShipData(2, "MAT 2"),
|
||||||
new ShipData(2, "PRG 3"),
|
new ShipData(2, "STA"),
|
||||||
new ShipData(2, "DBS 2"),
|
new ShipData(2, "AUD")
|
||||||
new ShipData(2, "MAT 3"),
|
),
|
||||||
new ShipData(2, "BSN 1"),
|
Arrays.asList(
|
||||||
new ShipData(4, "PRP"),
|
new ShipData(2, "PRG 3"),
|
||||||
new ShipData(6, "BWL")),
|
new ShipData(2, "DBS 2"),
|
||||||
Arrays.asList(
|
new ShipData(2, "MAT 3"),
|
||||||
new ShipData(2, "WEB"),
|
new ShipData(2, "BSN 1"),
|
||||||
new ShipData(2, "SE 1"),
|
new ShipData(4, "PRP"),
|
||||||
new ShipData(2, "CG 1"),
|
new ShipData(6, "BWL")
|
||||||
new ShipData(2, "BSN 2"),
|
),
|
||||||
new ShipData(4, "SEM"),
|
Arrays.asList(
|
||||||
new ShipData(6, "E BWL")),
|
new ShipData(2, "WEB"),
|
||||||
Arrays.asList(
|
new ShipData(2, "SE 1"),
|
||||||
new ShipData(2, "WPF 1"),
|
new ShipData(2, "CG 1"),
|
||||||
new ShipData(2, "SE 2"),
|
new ShipData(2, "BSN 2"),
|
||||||
new ShipData(2, "CG 2"),
|
new ShipData(4, "SEM"),
|
||||||
new ShipData(2, "PXP 1"),
|
new ShipData(6, "E BWL")
|
||||||
new ShipData(6, "EF 1")),
|
),
|
||||||
Arrays.asList(
|
Arrays.asList(
|
||||||
new ShipData(2, "WPF 2"),
|
new ShipData(2, "WPF 1"),
|
||||||
new ShipData(1, "PXP 2"),
|
new ShipData(2, "SE 2"),
|
||||||
new ShipData(8, "BAA"))
|
new ShipData(2, "CG 2"),
|
||||||
|
new ShipData(2, "PXP 1"),
|
||||||
|
new ShipData(6, "EF 1")
|
||||||
|
),
|
||||||
|
Arrays.asList(
|
||||||
|
new ShipData(2, "WPF 2"),
|
||||||
|
new ShipData(1, "PXP 2"),
|
||||||
|
new ShipData(8, "BAA")
|
||||||
|
)
|
||||||
);
|
);
|
||||||
|
|
||||||
private int size;
|
private int size;
|
||||||
|
@ -52,6 +64,12 @@ public class Ship {
|
||||||
private int hitsOnMe;
|
private int hitsOnMe;
|
||||||
private boolean sunk;
|
private boolean sunk;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* initialises a Ship with a given size and name
|
||||||
|
* @param size the size of the ship
|
||||||
|
* @param name the name of the ship
|
||||||
|
* @author Peer Ole Wachtel
|
||||||
|
*/
|
||||||
public Ship (int size, String name) {
|
public Ship (int size, String name) {
|
||||||
this.size = size;
|
this.size = size;
|
||||||
this.name = name;
|
this.name = name;
|
||||||
|
@ -61,10 +79,23 @@ public class Ship {
|
||||||
this.sunk = false;
|
this.sunk = false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* resets the position of this ship
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
public void resetPosition() {
|
public void resetPosition() {
|
||||||
this.position = null;
|
this.position = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* sets the position of this ship, provided it is valid
|
||||||
|
* @param pos the position to move the ship to
|
||||||
|
* @param horizontal whether the ship is horizontal or not
|
||||||
|
* @param shipsList the list of other ships on this board. It will be checked whether the ship is touching any of them
|
||||||
|
* @param boardSize the size of the board the ship is to be placed on
|
||||||
|
* @return true if the position was set successfully. false if the ship is out of the bounds of the board or touches a different ship
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
public boolean setPosition(Point pos, boolean horizontal, List<Ship> shipsList, int boardSize) {
|
public boolean setPosition(Point pos, boolean horizontal, List<Ship> shipsList, int boardSize) {
|
||||||
if (!this.checkValidPlacement(pos, horizontal, shipsList, boardSize)) return false;
|
if (!this.checkValidPlacement(pos, horizontal, shipsList, boardSize)) return false;
|
||||||
|
|
||||||
|
@ -74,6 +105,15 @@ public class Ship {
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* checks whether a position is valid for ship placement
|
||||||
|
* @param pos the position to check the ship placement at
|
||||||
|
* @param horizontal whether the ship is to be placed horizontally or not
|
||||||
|
* @param shipsList the list of other ships on this board. It will be checked whether the ship is touching any of them
|
||||||
|
* @param boardSize the size of the board the ship is to be placed on
|
||||||
|
* @return true if the position is valid. false if the ship is out of the bounds of the board or touches a different ship
|
||||||
|
* @author Florian Hantzschel, Peer Ole Wachtel, Luca Conte
|
||||||
|
*/
|
||||||
public boolean checkValidPlacement(Point pos, boolean horizontal, List<Ship> shipsList, int boardSize) {
|
public boolean checkValidPlacement(Point pos, boolean horizontal, List<Ship> shipsList, int boardSize) {
|
||||||
// ueberpruefe boundaries
|
// ueberpruefe boundaries
|
||||||
if (pos.getX() < 0 || pos.getY() < 0 || pos.getX() >= boardSize || pos.getY() >= boardSize) {
|
if (pos.getX() < 0 || pos.getY() < 0 || pos.getX() >= boardSize || pos.getY() >= boardSize) {
|
||||||
|
@ -122,7 +162,11 @@ public class Ship {
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Returns the Points on the ship if it were to be placed at positino `pos` in orientation defined by `horizontal`
|
* Returns the Points on the ship if it were to be placed at position `pos` in orientation defined by `horizontal`
|
||||||
|
* @param pos the position where the ship should be placed
|
||||||
|
* @param horizontal whether the ship should be placed horizontally
|
||||||
|
* @return a list of points the ship would occupy, were it placed at position `pos` in orientation `horizontal`
|
||||||
|
* @author Florian Hantzschel, Luca Conte
|
||||||
*/
|
*/
|
||||||
public List<Point> getVirtualOccupiedPoints(Point pos, boolean horizontal) {
|
public List<Point> getVirtualOccupiedPoints(Point pos, boolean horizontal) {
|
||||||
List<Point> points = new ArrayList<>();
|
List<Point> points = new ArrayList<>();
|
||||||
|
@ -137,23 +181,30 @@ public class Ship {
|
||||||
return points;
|
return points;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Returns the Points the ship occupies
|
||||||
|
* @return a list of points the ship occupies
|
||||||
|
* @author Florian Hantzschel, Luca Conte
|
||||||
|
*/
|
||||||
public List<Point> getOccupiedPoints() {
|
public List<Point> getOccupiedPoints() {
|
||||||
List<Point> points = new ArrayList<>();
|
return this.getVirtualOccupiedPoints(this.position, this.horizontal);
|
||||||
if (this.position == null) {
|
|
||||||
return points;
|
|
||||||
}
|
|
||||||
for (int i = 0; i < this.size; i++) {
|
|
||||||
int x = this.horizontal ? this.position.getX() + i : this.position.getX();
|
|
||||||
int y = this.horizontal ? this.position.getY() : this.position.getY() + i;
|
|
||||||
points.add(new Point(x, y));
|
|
||||||
}
|
|
||||||
return points;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* returns the position of this ship
|
||||||
|
* @return the position of this ship
|
||||||
|
* @author Peer Ole Wachtel
|
||||||
|
*/
|
||||||
public Point getPosition() {
|
public Point getPosition() {
|
||||||
return position;
|
return position;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* checks whether the ship occupies a certain point
|
||||||
|
* @param pos the point to be checkd
|
||||||
|
* @return whether the point provided is one of the points occupied by the ship
|
||||||
|
* @author Peer Ole Wachtel, Lucas Bronson
|
||||||
|
*/
|
||||||
public boolean isShipOnPos(Point pos){
|
public boolean isShipOnPos(Point pos){
|
||||||
if(this.position == null){
|
if(this.position == null){
|
||||||
return false;
|
return false;
|
||||||
|
@ -165,6 +216,13 @@ public class Ship {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* "shoots" this ship.
|
||||||
|
* @return a hit response, depending on whether the ship was hit or not. If the amount of times
|
||||||
|
* the ship was hit is greater or equal to the size of the ship, the ship is considered sunk.
|
||||||
|
* @param pos the point where the ship is shot
|
||||||
|
* @author Peer Ole Wachtel
|
||||||
|
*/
|
||||||
public HitResponseType shootOnShip(Point pos) {
|
public HitResponseType shootOnShip(Point pos) {
|
||||||
if (this.isShipOnPos(pos)) {
|
if (this.isShipOnPos(pos)) {
|
||||||
hitsOnMe++;
|
hitsOnMe++;
|
||||||
|
@ -179,22 +237,47 @@ public class Ship {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* returns whether the ship has been sunk or not
|
||||||
|
* @return whether the ship has been sunk or not
|
||||||
|
* @author Peer Ole Wachtel
|
||||||
|
*/
|
||||||
public boolean isSunk() {
|
public boolean isSunk() {
|
||||||
return sunk;
|
return sunk;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* sets the orientation of the ship
|
||||||
|
* @param horizontal whether the ship is to be placed in a horizontal orientation
|
||||||
|
* @author Lucas Bronson
|
||||||
|
*/
|
||||||
public void setHorizontal(boolean horizontal) {
|
public void setHorizontal(boolean horizontal) {
|
||||||
this.horizontal = horizontal;
|
this.horizontal = horizontal;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* returns the size of the ship
|
||||||
|
* @return the size of the ship
|
||||||
|
* @author Lucas Bronson
|
||||||
|
*/
|
||||||
public int getSize() {
|
public int getSize() {
|
||||||
return size;
|
return size;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* returns the name of the ship
|
||||||
|
* @return the name of the ship
|
||||||
|
* @author Lucas Bronson
|
||||||
|
*/
|
||||||
public String getName() {
|
public String getName() {
|
||||||
return name;
|
return name;
|
||||||
}
|
}
|
||||||
|
|
||||||
//potentiell falsch neu
|
/**
|
||||||
|
* returns whether the ship has been placed or not
|
||||||
|
* @return whether the ship has been placed or not
|
||||||
|
* @author Lucas Bronson
|
||||||
|
*/
|
||||||
public boolean isPlaced(){
|
public boolean isPlaced(){
|
||||||
return this.position != null;
|
return this.position != null;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,10 +1,21 @@
|
||||||
import javax.swing.*;
|
import javax.swing.*;
|
||||||
import java.awt.*;
|
import java.awt.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Das ShipButton Panel dient dem Erstellen eines lokalen Spiels.
|
||||||
|
* Hier kann der Benutzer Spieler inklusive Namen und das Semester, in dem sich der Benutzer befindet, einstellen.
|
||||||
|
* @author Lucas Bronson, Luca Conte, Joshua Kuklok
|
||||||
|
*/
|
||||||
public class ShipButton extends JButton {
|
public class ShipButton extends JButton {
|
||||||
private Ship ship;
|
private Ship ship;
|
||||||
private BoardDisplay boardDisplay;
|
private BoardDisplay boardDisplay;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Erstellt Buttons für die beiden Spieler (Module/Schiffe)
|
||||||
|
* @param ship Schiff von welchem der Name genommen wird
|
||||||
|
* @param boardDisplay Klasse für Interaktion
|
||||||
|
* @author Lucas Bronson, Luca Conte, Joshua Kuklok
|
||||||
|
*/
|
||||||
public ShipButton(Ship ship, BoardDisplay boardDisplay) {
|
public ShipButton(Ship ship, BoardDisplay boardDisplay) {
|
||||||
super(ship.getName());
|
super(ship.getName());
|
||||||
this.ship = ship;
|
this.ship = ship;
|
||||||
|
@ -14,6 +25,12 @@ public class ShipButton extends JButton {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Setzt Farbe der Modulbuttons.
|
||||||
|
* Verschiedene Farben für:
|
||||||
|
* Modul ausgewählt, platziert nicht platziert.
|
||||||
|
* @author Joshua Kuklok
|
||||||
|
*/
|
||||||
public void refreshButtonState() {
|
public void refreshButtonState() {
|
||||||
if (ship.isPlaced()) {
|
if (ship.isPlaced()) {
|
||||||
setBackground(Color.LIGHT_GRAY);
|
setBackground(Color.LIGHT_GRAY);
|
||||||
|
|
|
@ -1,17 +1,39 @@
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
/**
|
||||||
|
* beschreibt ein Package das durch einen AsyncSocket gesendet werden kann nach Netzwerkstandard
|
||||||
|
* https://github.com/lgc-4/ProgProjekt-Netzwerkstandard
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
public class SocketPackage {
|
public class SocketPackage {
|
||||||
|
|
||||||
private String name = "";
|
private String name = "";
|
||||||
private String data = "";
|
private String data = "";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* initialises a socket package by prividing a package name and data
|
||||||
|
* @param name the name of the package
|
||||||
|
* @param data the data of the package
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
public SocketPackage(String name, String data) {
|
public SocketPackage(String name, String data) {
|
||||||
this.setName(name);
|
this.setName(name);
|
||||||
this.setData(data);
|
this.setData(data);
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* initialises an empty socket package
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
public SocketPackage() {
|
public SocketPackage() {
|
||||||
this("","");
|
this("","");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* initialises a socket package from a message
|
||||||
|
* the message is parsed according to https://github.com/lgc-4/ProgProjekt-Netzwerkstandard
|
||||||
|
* @param message the message to be parsed
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
public SocketPackage(String message) {
|
public SocketPackage(String message) {
|
||||||
if (message.length() <= 0) {
|
if (message.length() <= 0) {
|
||||||
throw new IllegalArgumentException("Socket message cannot be empty.");
|
throw new IllegalArgumentException("Socket message cannot be empty.");
|
||||||
|
@ -25,24 +47,51 @@ public class SocketPackage {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* sets the package name
|
||||||
|
* the name is always stored in upper case
|
||||||
|
* @param name the new name of the package
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
public void setName(String name) {
|
public void setName(String name) {
|
||||||
if (name == null) name = "";
|
if (name == null) name = "";
|
||||||
this.name = name.toUpperCase();
|
this.name = name.toUpperCase();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* sets the package data
|
||||||
|
* @param name the new data of the package
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
public void setData(String data) {
|
public void setData(String data) {
|
||||||
if (data == null) data = "";
|
if (data == null) data = "";
|
||||||
this.data = data;
|
this.data = data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* returns the name of the package
|
||||||
|
* @return the name of the package
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
public String getName() {
|
public String getName() {
|
||||||
return this.name;
|
return this.name;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* returns the data of the package
|
||||||
|
* @return the data of the package
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
public String getData() {
|
public String getData() {
|
||||||
return this.data;
|
return this.data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* parses the package into a string according to https://github.com/lgc-4/ProgProjekt-Netzwerkstandard
|
||||||
|
* the package name and data are joined using a space " " `0x20`
|
||||||
|
* @return the package in string format
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
public String toString() {
|
public String toString() {
|
||||||
if (this.data == null || this.data.length() == 0) {
|
if (this.data == null || this.data.length() == 0) {
|
||||||
return this.name;
|
return this.name;
|
||||||
|
@ -51,6 +100,11 @@ public class SocketPackage {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* returns the data string as a list, split at every space " " `0x20`
|
||||||
|
* @return the data string as a list, split at every space " " `0x20`
|
||||||
|
* @author Luca Conte
|
||||||
|
*/
|
||||||
public List<String> splitData() {
|
public List<String> splitData() {
|
||||||
return Arrays.asList(this.data.split(" "));
|
return Arrays.asList(this.data.split(" "));
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,6 +9,10 @@ import java.util.HashMap;
|
||||||
import java.util.Iterator;
|
import java.util.Iterator;
|
||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Der SoundHandler dient zum Anlegen und Abspielen von Sounds
|
||||||
|
* @author Lucas Bronson, Luca Conte, Ole Wachtel, Joshua Kuklok
|
||||||
|
*/
|
||||||
public class SoundHandler {
|
public class SoundHandler {
|
||||||
|
|
||||||
private static boolean soundOn = true;
|
private static boolean soundOn = true;
|
||||||
|
@ -17,9 +21,20 @@ public class SoundHandler {
|
||||||
|
|
||||||
// Wenn fehler beim erstellen von .jar mit sound hier gucken
|
// Wenn fehler beim erstellen von .jar mit sound hier gucken
|
||||||
private static HashMap<String, String> sounds = new HashMap<String, String>(Map.of(
|
private static HashMap<String, String> sounds = new HashMap<String, String>(Map.of(
|
||||||
"hit", "./Sound/water-drip.mp3"
|
"miss", "./Sound/water-drip.mp3",
|
||||||
|
"hit", "./Sound/hit.mp3",
|
||||||
|
"destroyed", "./Sound/hit.mp3",
|
||||||
|
"plop", "./Sound/plop.mp3",
|
||||||
|
"loose", "./Sound/loosescreenlaugh.mp3",
|
||||||
|
"win", "./Sound/win.mp3",
|
||||||
|
"yourturn", "./Sound/yourturn.mp3"
|
||||||
));
|
));
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Erstellt neuen Thread, um ausgewählten Sound abzuspielen
|
||||||
|
* @param soundName Name der Audiodatei, welche abgespielt werden soll
|
||||||
|
* @author Ole Wachtel, Luca Conte
|
||||||
|
*/
|
||||||
public static void playSound(String soundName) {
|
public static void playSound(String soundName) {
|
||||||
if (soundOn) {
|
if (soundOn) {
|
||||||
Thread thread = new Thread(new Runnable() {
|
Thread thread = new Thread(new Runnable() {
|
||||||
|
@ -53,11 +68,21 @@ public class SoundHandler {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* fügt einen neuen Sound zum SoundHanlder hinzu
|
||||||
|
* @param soundName der intern zu verwendende Name des Sounds
|
||||||
|
* @param path der Dateipfad zur Sound Datei
|
||||||
|
* @author Ole Wachtel
|
||||||
|
*/
|
||||||
static void add(String soundName, String path){
|
static void add(String soundName, String path){
|
||||||
sounds.put(soundName, path);
|
sounds.put(soundName, path);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* schaltet den Ton an oder aus
|
||||||
|
* @param sound ob der sound an ist
|
||||||
|
* @author Ole Wachtel
|
||||||
|
*/
|
||||||
static void setSoundOn(boolean sound){
|
static void setSoundOn(boolean sound){
|
||||||
soundOn= sound;
|
soundOn= sound;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,14 @@
|
||||||
|
/**
|
||||||
|
* Diese Klasse implementiert den Einfachsten Ki Spieler.
|
||||||
|
* @author Florian Alexy und Florian Hantzschel
|
||||||
|
* */
|
||||||
public class SpecificAiPlayerEasy extends AiPlayer{
|
public class SpecificAiPlayerEasy extends AiPlayer{
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Bein einfachen Ki Spieler wird nur der AiPlayer initialisiert und der Name gesetzt,
|
||||||
|
* da in der Eltern-Klasse AiPlayer eine default implementierung für alle Methoden existieren.
|
||||||
|
* @author Florian Alexy und Florian Hantzschel
|
||||||
|
*/
|
||||||
public SpecificAiPlayerEasy() {
|
public SpecificAiPlayerEasy() {
|
||||||
super();
|
super();
|
||||||
this.setName("AI Player Easy");
|
this.setName("AI Player Easy");
|
||||||
|
|
|
@ -1,15 +1,35 @@
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.Random;
|
// import java.util.Random; wird nicht mehr verwendet
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Diese Klasse implementiert den Harten Ki Spieler.
|
||||||
|
* @author Florian Alexy und Florian Hantzschel
|
||||||
|
* */
|
||||||
public class SpecificAiPlayerHard extends AiPlayer{
|
public class SpecificAiPlayerHard extends AiPlayer{
|
||||||
|
|
||||||
private int gridSize;
|
private int gridSize;
|
||||||
private boolean[][] shotsFired;
|
private boolean[][] shotsFired;
|
||||||
private final ArrayList<Point> hitQueue;
|
private final ArrayList<Point> hitQueue;
|
||||||
private final Random random;
|
//private final Random random; wird nicht mehr verwendet
|
||||||
private int nextChessRow;
|
private int nextChessRow;
|
||||||
private int nextChessCol;
|
private int nextChessCol;
|
||||||
|
|
||||||
|
// Enum für die Orientierung
|
||||||
|
private enum Orientierung {
|
||||||
|
UNBEKANNT,
|
||||||
|
HORIZONTAL,
|
||||||
|
VERTIKAL
|
||||||
|
}
|
||||||
|
private Orientierung orientierung;
|
||||||
|
// Speichert den ersten Treffer zur Bestimmung der Orientierung
|
||||||
|
private Point firstHit;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Eltern-Klasse wird initialisiert und alle lokalen variablen,
|
||||||
|
* die gesetzt werden können, werden initialisiert.
|
||||||
|
* @author Florian Alexy und Florian Hantzschel
|
||||||
|
*/
|
||||||
public SpecificAiPlayerHard() {
|
public SpecificAiPlayerHard() {
|
||||||
super();
|
super();
|
||||||
this.setName("AI Player Hard");
|
this.setName("AI Player Hard");
|
||||||
|
@ -17,32 +37,43 @@ public class SpecificAiPlayerHard extends AiPlayer{
|
||||||
this.shotsFired = new boolean[gridSize][gridSize];*/
|
this.shotsFired = new boolean[gridSize][gridSize];*/
|
||||||
this.gridSize = 0;
|
this.gridSize = 0;
|
||||||
this.hitQueue = new ArrayList<>();
|
this.hitQueue = new ArrayList<>();
|
||||||
this.random = new Random();
|
//this.random = new Random(); wird nicht mehr verwendet
|
||||||
this.nextChessRow = 0;
|
this.nextChessRow = 0;
|
||||||
this.nextChessCol = 0;
|
this.nextChessCol = 0;
|
||||||
|
this.orientierung = Orientierung.UNBEKANNT;
|
||||||
|
this.firstHit = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Checks if a position has already been shot at
|
/**
|
||||||
|
* Prüft, ob auf den punkt schonmal geschossen wurde.
|
||||||
|
* @param p zu prüfender Punkt
|
||||||
|
* @return boolean
|
||||||
|
* @author Florian Alexy und Florian Hantzschel
|
||||||
|
*/
|
||||||
public boolean alreadyShot(Point p) {
|
public boolean alreadyShot(Point p) {
|
||||||
return shotsFired[p.getX()][p.getY()];
|
return shotsFired[p.getX()][p.getY()];
|
||||||
}
|
}
|
||||||
|
|
||||||
// Generates the next move for the AI
|
/**
|
||||||
|
* Bestimmt den nächsten punkt, der beschossen werden soll.
|
||||||
|
* @return Position
|
||||||
|
* @author Florian Alexy und Florian Hantzschel
|
||||||
|
*/
|
||||||
public Point getNextMove() {
|
public Point getNextMove() {
|
||||||
if(gridSize == 0) {
|
if(gridSize == 0) {
|
||||||
this.gridSize = super.board.getSize();
|
this.gridSize = super.board.getSize();
|
||||||
this.shotsFired = new boolean[gridSize][gridSize];
|
this.shotsFired = new boolean[gridSize][gridSize];
|
||||||
}
|
}
|
||||||
// If there are hits to process, prioritize those
|
// Wenn wir noch Treffer in der Queue haben, diese priorisieren
|
||||||
while (!hitQueue.isEmpty()) {
|
while (!hitQueue.isEmpty()) {
|
||||||
Point target = hitQueue.remove(0);
|
Point target = hitQueue.remove(0);
|
||||||
|
|
||||||
if (!alreadyShot(target)) {
|
if (!alreadyShot(target)) {
|
||||||
|
shotsFired[target.getX()][target.getY()] = true;
|
||||||
return target;
|
return target;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Otherwise, use chess pattern targeting
|
// Ansonsten weiterhin "Schachbrettmuster"
|
||||||
int row = nextChessRow;
|
int row = nextChessRow;
|
||||||
int col = nextChessCol;
|
int col = nextChessCol;
|
||||||
while (alreadyShot(new Point(row, col))) {
|
while (alreadyShot(new Point(row, col))) {
|
||||||
|
@ -55,16 +86,122 @@ public class SpecificAiPlayerHard extends AiPlayer{
|
||||||
advanceChessPattern();
|
advanceChessPattern();
|
||||||
return new Point(row, col);
|
return new Point(row, col);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Nachdem receiveShoot beim gegner den schuss verarbeitet hat,
|
||||||
|
* wird diese Methode mit der antwort aufgerufen.
|
||||||
|
* @param hitResponse the hitresponse
|
||||||
|
* @author Florian Alexy und Florian Hantzschel
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public synchronized void receiveHit(HitResponse hitResponse) {
|
public synchronized void receiveHit(HitResponse hitResponse) {
|
||||||
super.receiveHit(hitResponse);
|
super.receiveHit(hitResponse);
|
||||||
// If it's a hit or sunk, add adjacent cells to the hitsQueue
|
|
||||||
|
// Wenn es ein Treffer ist, Adjacent-Punkte hinzufügen
|
||||||
if (hitResponse.getHitResponse() == HitResponseType.HIT) {
|
if (hitResponse.getHitResponse() == HitResponseType.HIT) {
|
||||||
addAdjacentPoints(hitResponse.getPoint());
|
Point hitPoint = hitResponse.getPoint();
|
||||||
|
|
||||||
|
// Wenn wir noch keinen ersten Treffer haben, speicher ihn
|
||||||
|
if (firstHit == null) {
|
||||||
|
firstHit = hitPoint;
|
||||||
|
// Orientierung noch unbekannt: alle möglichen Richtungen hinzufügen
|
||||||
|
addAdjacentPoints(hitPoint);
|
||||||
|
} else {
|
||||||
|
// Wenn Orientierung noch nicht bestimmt, jetzt prüfen
|
||||||
|
if (this.orientierung == Orientierung.UNBEKANNT) {
|
||||||
|
// Prüfen, ob der zweite Treffer horizontal oder vertikal liegt
|
||||||
|
if (firstHit.getY() == hitPoint.getY()) {
|
||||||
|
this.orientierung = Orientierung.VERTIKAL;
|
||||||
|
} else if (firstHit.getX() == hitPoint.getX()) {
|
||||||
|
this.orientierung = Orientierung.HORIZONTAL;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Sobald die Orientierung erkannt wurde, entferne alle „unpassenden“ Punkte
|
||||||
|
if (this.orientierung != Orientierung.UNBEKANNT) {
|
||||||
|
cleanUpHitQueue();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// Für den aktuellen Treffer nur in passender Orientierung erweitern
|
||||||
|
addPointsByOrientation(hitPoint);
|
||||||
|
}
|
||||||
|
} else if (hitResponse.getHitResponse() == HitResponseType.SUNK) {
|
||||||
|
this.orientierung = Orientierung.UNBEKANNT;
|
||||||
|
firstHit = null;
|
||||||
|
hitQueue.clear();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Entfernt aus der hitQueue alle Punkte, die nicht der erkannten Orientierung entsprechen.
|
||||||
|
* @author Florian Alexy und Florian Hantzschel
|
||||||
|
*/
|
||||||
|
private void cleanUpHitQueue() {
|
||||||
|
if (firstHit == null || this.orientierung == Orientierung.UNBEKANNT) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
ArrayList<Point> toRemove = new ArrayList<>();
|
||||||
|
for (Point p : hitQueue) {
|
||||||
|
if (this.orientierung == Orientierung.HORIZONTAL) {
|
||||||
|
// HORIZONTAL => gleiche Zeile wie firstHit
|
||||||
|
if (p.getX() != firstHit.getX()) {
|
||||||
|
toRemove.add(p);
|
||||||
|
}
|
||||||
|
} else if (this.orientierung == Orientierung.VERTIKAL) {
|
||||||
|
// VERTICAL => gleiche Spalte wie firstHit
|
||||||
|
if (p.getY() != firstHit.getY()) {
|
||||||
|
toRemove.add(p);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
hitQueue.removeAll(toRemove);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fügt benachbarte Felder in der erkannten Orientierung hinzu.
|
||||||
|
* Ist die Orientierung HORIZONTAL, so werden nur links/rechts hinzugefügt.
|
||||||
|
* Ist sie VERTICAL, so werden nur oben/unten hinzugefügt.
|
||||||
|
* @author Florian Alexy und Florian Hantzschel
|
||||||
|
*/
|
||||||
|
private void addPointsByOrientation(Point point) {
|
||||||
|
if (this.orientierung == Orientierung.UNBEKANNT) {
|
||||||
|
// Fallback: füge alle benachbarten Punkte hinzu
|
||||||
|
addAdjacentPoints(point);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
int x = point.getX();
|
||||||
|
int y = point.getY();
|
||||||
|
if (this.orientierung == Orientierung.HORIZONTAL) {
|
||||||
|
// Gleiche Zeile => links und rechts vom Point
|
||||||
|
Point left = new Point(x, y - 1);
|
||||||
|
Point right = new Point(x, y + 1);
|
||||||
|
|
||||||
|
if (isValidPoint(left) && !alreadyShot(left) && !hitQueue.contains(left)) {
|
||||||
|
hitQueue.add(left);
|
||||||
|
}
|
||||||
|
if (isValidPoint(right) && !alreadyShot(right) && !hitQueue.contains(right)) {
|
||||||
|
hitQueue.add(right);
|
||||||
|
}
|
||||||
|
} else if (this.orientierung == Orientierung.VERTIKAL) {
|
||||||
|
// Gleiche Spalte => oben und unten
|
||||||
|
Point up = new Point(x - 1, y);
|
||||||
|
Point down = new Point(x + 1, y);
|
||||||
|
|
||||||
|
if (isValidPoint(up) && !alreadyShot(up) && !hitQueue.contains(up)) {
|
||||||
|
hitQueue.add(up);
|
||||||
|
}
|
||||||
|
if (isValidPoint(down) && !alreadyShot(down) && !hitQueue.contains(down)) {
|
||||||
|
hitQueue.add(down);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Diese Methode erweitert die hitsQueue um die umliegenden Punkte die Schiffe seien könnten.
|
||||||
|
* @param point
|
||||||
|
* @author Florian Alexy und Florian Hantzschel
|
||||||
|
*/
|
||||||
private void addAdjacentPoints(Point point) {
|
private void addAdjacentPoints(Point point) {
|
||||||
int x = point.getX();
|
int x = point.getX();
|
||||||
int y = point.getY();
|
int y = point.getY();
|
||||||
|
@ -83,18 +220,29 @@ public class SpecificAiPlayerHard extends AiPlayer{
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* Die Methode gibt zurück, ob eine Position auf dem Board ist. (Boolean)
|
||||||
|
* @param point Punkt der geprüft werden soll
|
||||||
|
* @return Ist auf dem Board oder nicht.
|
||||||
|
* @author Florian Alexy und Florian Hantzschel
|
||||||
|
*/
|
||||||
private boolean isValidPoint(Point point) {
|
private boolean isValidPoint(Point point) {
|
||||||
return point.getX() >= 0 && point.getX() < gridSize &&
|
return point.getX() >= 0 && point.getX() < gridSize &&
|
||||||
point.getY() >= 0 && point.getY() < gridSize;
|
point.getY() >= 0 && point.getY() < gridSize;
|
||||||
}
|
}
|
||||||
|
/**
|
||||||
|
* Ki Methode um zu schießen.
|
||||||
|
* @author Florian Alexy und Florian Hantzschel
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void aiShoot() {
|
public void aiShoot() {
|
||||||
this.enemy.receiveShoot(getNextMove());
|
this.enemy.receiveShoot(getNextMove());
|
||||||
}
|
}
|
||||||
|
|
||||||
// Advances the chess pattern to the next cell
|
/**
|
||||||
|
* Die Zeilen und spalten variable wird hier angepasst, sodass beim nächsten schuss im Muster geschossen wird.
|
||||||
|
* @author Florian Alexy und Florian Hantzschel
|
||||||
|
*/
|
||||||
private void advanceChessPattern() {
|
private void advanceChessPattern() {
|
||||||
nextChessCol += 2;
|
nextChessCol += 2;
|
||||||
if (nextChessCol >= gridSize) {
|
if (nextChessCol >= gridSize) {
|
||||||
|
|
|
@ -1,22 +1,42 @@
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Diese Klasse implementiert den Medium Ki Spieler.
|
||||||
|
* @author Florian Alexy und Florian Hantzschel
|
||||||
|
* */
|
||||||
public class SpecificAiPlayerMedium extends AiPlayer{
|
public class SpecificAiPlayerMedium extends AiPlayer{
|
||||||
|
/**
|
||||||
|
* Liste an Punkten die beschossen werden sollen. (Mögliche weitere Segmente vom schiff)
|
||||||
|
*/
|
||||||
private List<Point> hitsQueue = new ArrayList<>();
|
private List<Point> hitsQueue = new ArrayList<>();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Eltern-Klasse wird initialisiert und der Name wird gesetzt.
|
||||||
|
* @author Florian Alexy und Florian Hantzschel
|
||||||
|
*/
|
||||||
public SpecificAiPlayerMedium() {
|
public SpecificAiPlayerMedium() {
|
||||||
super();
|
super();
|
||||||
this.setName("AI Player Medium");
|
this.setName("AI Player Medium");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ki Methode um zu schießen.
|
||||||
|
* @author Florian Alexy und Florian Hantzschel
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void aiShoot() {
|
public void aiShoot() {
|
||||||
Point nextShot = ComputeNextShot();
|
Point nextShot = ComputeNextShot();
|
||||||
// Shoot at the enemy and receive the hit response
|
// Shoot at the enemy and receive the hit response
|
||||||
enemy.receiveShoot(nextShot);
|
enemy.receiveShoot(nextShot);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Nachdem receiveShoot beim gegner den schuss verarbeitet hat,
|
||||||
|
* wird diese Methode mit der antwort aufgerufen.
|
||||||
|
* @param hitResponse the hitresponse
|
||||||
|
* @author Florian Alexy und Florian Hantzschel
|
||||||
|
*/
|
||||||
@Override
|
@Override
|
||||||
public synchronized void receiveHit(HitResponse hitResponse) {
|
public synchronized void receiveHit(HitResponse hitResponse) {
|
||||||
super.receiveHit(hitResponse);
|
super.receiveHit(hitResponse);
|
||||||
|
@ -26,6 +46,11 @@ public class SpecificAiPlayerMedium extends AiPlayer{
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Die Methode bestimmt welche Position als nächstes beschossen werden soll.
|
||||||
|
* @return der Punkt auf den als nächtest geschossen werden soll
|
||||||
|
* @author Florian Alexy und Florian Hantzschel
|
||||||
|
*/
|
||||||
public Point ComputeNextShot() {
|
public Point ComputeNextShot() {
|
||||||
Point nextShot;
|
Point nextShot;
|
||||||
|
|
||||||
|
@ -45,6 +70,11 @@ public class SpecificAiPlayerMedium extends AiPlayer{
|
||||||
return nextShot;
|
return nextShot;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Diese Methode erweitert die hitsQueue um die umliegenden Punkte die Schiffe seien könnten.
|
||||||
|
* @param point der Punkt dessen nachbarn zur hitQueue hinzugefügt werden sollen
|
||||||
|
* @author Florian Alexy und Florian Hantzschel
|
||||||
|
*/
|
||||||
private void addAdjacentPoints(Point point) {
|
private void addAdjacentPoints(Point point) {
|
||||||
int x = point.getX();
|
int x = point.getX();
|
||||||
int y = point.getY();
|
int y = point.getY();
|
||||||
|
@ -64,12 +94,24 @@ public class SpecificAiPlayerMedium extends AiPlayer{
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Diese Methode gibt zurück, ob eine Position schon beschossen wurde. (Boolean)
|
||||||
|
* @param p Punkt der geprüft werden soll
|
||||||
|
* @return wurde schon beschossen oder nicht.
|
||||||
|
* @author Florian Alexy und Florian Hantzschel
|
||||||
|
*/
|
||||||
private boolean alreadyShot(Point p) {
|
private boolean alreadyShot(Point p) {
|
||||||
|
|
||||||
return this.enemy.board.getHitResponseOnPoint(p) != null;
|
return this.enemy.board.getHitResponseOnPoint(p) != null;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Die Methode gibt zurück, ob eine Position auf dem Board ist. (Boolean)
|
||||||
|
* @param point Punkt der geprüft werden soll
|
||||||
|
* @return Ist auf dem Board oder nicht.
|
||||||
|
* @author Florian Alexy und Florian Hantzschel
|
||||||
|
*/
|
||||||
private boolean isValidPoint(Point point) {
|
private boolean isValidPoint(Point point) {
|
||||||
return point.getX() >= 0 && point.getX() < board.getSize() &&
|
return point.getX() >= 0 && point.getX() < board.getSize() &&
|
||||||
point.getY() >= 0 && point.getY() < board.getSize();
|
point.getY() >= 0 && point.getY() < board.getSize();
|
||||||
|
|
|
@ -3,18 +3,20 @@ import java.awt.*;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Das Verbinden Panel dient als "Überblende", während im Backend das Spiel erstellt/ eine Verbindung hergestellt wird.
|
* Das Verbinden Panel dient als "Überblende", während im Backend das Spiel erstellt/ eine Verbindung hergestellt wird.
|
||||||
|
* @author Lucas Bronson
|
||||||
*/
|
*/
|
||||||
public class Verbinden extends JPanel{
|
public class Verbinden extends JPanel{
|
||||||
|
|
||||||
ImageIcon backButtonIcon = new ImageIcon("graphics/backButton.png");
|
//ImageIcon backButtonIcon = new ImageIcon("graphics/backButton.png");
|
||||||
|
|
||||||
JLabel verbindenLabel = new JLabel("Verbinde . . .",SwingConstants.CENTER);
|
JLabel verbindenLabel = new JLabel("Verbinde . . .",SwingConstants.CENTER);
|
||||||
|
|
||||||
Font robotoFont = new Font("Roboto", Font.BOLD, 45);
|
Font robotoFont = new Font("Roboto", Font.BOLD, 45);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Konstruktor der startLocalGame.
|
* Konstruktor der Verbinden Klasse.
|
||||||
* @param frame Der Mainframe der Anwendung über den alle Panels angezeigt werden.
|
* @param frame Der Mainframe der Anwendung über den alle Panels angezeigt werden.
|
||||||
|
* @author Lucas Bronson
|
||||||
*/
|
*/
|
||||||
public Verbinden(MainFrame frame) {
|
public Verbinden(MainFrame frame) {
|
||||||
setLayout(null);
|
setLayout(null);
|
||||||
|
@ -24,6 +26,7 @@ public class Verbinden extends JPanel{
|
||||||
/**
|
/**
|
||||||
* Baut Panel auf.
|
* Baut Panel auf.
|
||||||
* @param frame Der Mainframe der Anwendung über den alle Panels angezeigt werden.
|
* @param frame Der Mainframe der Anwendung über den alle Panels angezeigt werden.
|
||||||
|
* @author Lucas Bronson
|
||||||
*/
|
*/
|
||||||
private void buildPanel(MainFrame frame) {
|
private void buildPanel(MainFrame frame) {
|
||||||
setLayout(new BorderLayout());
|
setLayout(new BorderLayout());
|
||||||
|
|
|
@ -0,0 +1,65 @@
|
||||||
|
import java.awt.*;
|
||||||
|
import java.awt.event.ActionEvent;
|
||||||
|
import java.awt.event.ActionListener;
|
||||||
|
import javax.swing.*;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Klasse für Erstellung von winScreen Objekten
|
||||||
|
* Dient zur Anzeige des Sieges nachdem ein Spiel
|
||||||
|
* @author Lucas Bronson
|
||||||
|
*/
|
||||||
|
public class WinScreen extends JPanel {
|
||||||
|
JLabel winLabel = new JLabel("Du hast Gewonnen!");
|
||||||
|
Font robotoFont = new Font("Roboto", Font.BOLD, 45);
|
||||||
|
JButton okButton = new JButton("Zurück zum Hauptmenü");
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Konstruktor der WinScreen Klasse
|
||||||
|
* @param frame Der Mainframe der Anwendung über den alle Panels angezeigt werden.
|
||||||
|
* @author Lucas Bronson
|
||||||
|
*/
|
||||||
|
public WinScreen(MainFrame frame) {
|
||||||
|
setLayout(null);
|
||||||
|
buildPanel(frame);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Panel bauen/Objekte hinzufuegen
|
||||||
|
* @param frame Der Mainframe der Anwendung über den alle Panels angezeigt werden.
|
||||||
|
* @author Lucas Bronson, Joshua Kuklok
|
||||||
|
*/
|
||||||
|
public void buildPanel(MainFrame frame) {
|
||||||
|
Timer timer = new Timer(5, new ActionListener() {
|
||||||
|
private float hue = 0; // Farbton-Wert für HSB-Farbmodell
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void actionPerformed(ActionEvent e) {
|
||||||
|
// Farbe basierend auf dem Farbton-Wert berechnen
|
||||||
|
Color pulsierendeFarbe = Color.getHSBColor(hue, 0.8f, 0.8f); // Sättigung und Helligkeit fix
|
||||||
|
winLabel.setForeground(pulsierendeFarbe);
|
||||||
|
|
||||||
|
// Farbton leicht verändern (Zyklus zwischen 0 und 1)
|
||||||
|
hue += 0.01f;
|
||||||
|
if (hue > 1) {
|
||||||
|
hue = 0;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
okButton.setBounds(650,525,200,50);
|
||||||
|
winLabel.setBounds(500,450,500,50);
|
||||||
|
timer.start(); // Timer starten
|
||||||
|
winLabel.setFont(robotoFont);
|
||||||
|
winLabel.setHorizontalAlignment(SwingConstants.CENTER);
|
||||||
|
SoundHandler.playSound("win");
|
||||||
|
|
||||||
|
// Zurückkehren zum Hauptmenü, wenn okButton gedrückt wird
|
||||||
|
okButton.addActionListener(new ActionListener() {
|
||||||
|
@Override
|
||||||
|
public void actionPerformed(ActionEvent e) {
|
||||||
|
frame.showPanel("MainMenu");
|
||||||
|
}
|
||||||
|
});
|
||||||
|
add(winLabel);
|
||||||
|
add(okButton);
|
||||||
|
}
|
||||||
|
}
|
|
@ -1,39 +0,0 @@
|
||||||
import javax.swing.*;
|
|
||||||
import java.awt.*;
|
|
||||||
|
|
||||||
public class coinToss extends JPanel {
|
|
||||||
private int reihenfolge = 1; // 1 = Spieler 1 fängt an, 0 = Spieler 2 fängt an
|
|
||||||
private Timer timer;
|
|
||||||
private JLabel infoLabel;
|
|
||||||
|
|
||||||
// Konstruktor
|
|
||||||
public coinToss(MainFrame frame) {
|
|
||||||
setLayout(new BorderLayout());
|
|
||||||
|
|
||||||
// Info-Label für den Anzeigetext
|
|
||||||
infoLabel = new JLabel("", SwingConstants.CENTER);
|
|
||||||
infoLabel.setFont(new Font("Arial", Font.BOLD, 24));
|
|
||||||
add(infoLabel, BorderLayout.CENTER);
|
|
||||||
|
|
||||||
// Bestimme den Anfangstext basierend auf der "reihenfolge" Variable
|
|
||||||
if (reihenfolge == 1) {
|
|
||||||
infoLabel.setText("Du fängst an, mach dich bereit...");
|
|
||||||
} else {
|
|
||||||
infoLabel.setText("Dein Gegner fängt an, mach dich bereit...");
|
|
||||||
}
|
|
||||||
|
|
||||||
// Erster Timer, der den Text nach 3 Sekunden auf "Es geht Los!" setzt
|
|
||||||
/*timer = new Timer(3000, e -> {
|
|
||||||
infoLabel.setText("Es geht Los!");
|
|
||||||
|
|
||||||
// Zweiter Timer, der nach weiteren 3 Sekunden zum Hauptmenü zurückkehrt
|
|
||||||
Timer backToMenuTimer = new Timer(3000, ev -> {
|
|
||||||
frame.showPanel("MainMenu");
|
|
||||||
});
|
|
||||||
//backToMenuTimer.setRepeats(false); // Timer nur einmal ausführen
|
|
||||||
backToMenuTimer.start();
|
|
||||||
});
|
|
||||||
//timer.setRepeats(false); // Erster Timer soll nur einmal ausgeführt werden
|
|
||||||
timer.start();*/
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,4 +1,5 @@
|
||||||
import javax.swing.*;
|
import javax.swing.*;
|
||||||
|
import java.awt.*;
|
||||||
import java.awt.event.ActionEvent;
|
import java.awt.event.ActionEvent;
|
||||||
import java.awt.event.ActionListener;
|
import java.awt.event.ActionListener;
|
||||||
import java.util.HashMap;
|
import java.util.HashMap;
|
||||||
|
@ -6,12 +7,9 @@ import java.util.HashMap;
|
||||||
/**
|
/**
|
||||||
* Das startLocalGame Panel dient dem Erstellen eines lokalen Spiels.
|
* Das startLocalGame Panel dient dem Erstellen eines lokalen Spiels.
|
||||||
* Hier kann der Benutzer Spieler inklusive Namen und das Semester, in dem sich der Benutzer befindet, einstellen.
|
* Hier kann der Benutzer Spieler inklusive Namen und das Semester, in dem sich der Benutzer befindet, einstellen.
|
||||||
|
* @author Lucas Bronson, Joshua Kuklok, Luca Conte
|
||||||
*/
|
*/
|
||||||
public class startLocalGame extends JPanel {
|
public class startLocalGame extends JPanel {
|
||||||
// Player
|
|
||||||
// TODO: entfernen
|
|
||||||
Player p1;
|
|
||||||
Player p2;
|
|
||||||
|
|
||||||
// Funktionshilfen
|
// Funktionshilfen
|
||||||
int semesterCounter = 1; // Semester Counter Label
|
int semesterCounter = 1; // Semester Counter Label
|
||||||
|
@ -43,25 +41,27 @@ public class startLocalGame extends JPanel {
|
||||||
JButton rightPlayerLeftButton = new JButton("<-");
|
JButton rightPlayerLeftButton = new JButton("<-");
|
||||||
JButton rightPlayerRightButton = new JButton("->");
|
JButton rightPlayerRightButton = new JButton("->");
|
||||||
JButton startButton = new JButton("Start!");
|
JButton startButton = new JButton("Start!");
|
||||||
JButton testButton = new JButton("Test");
|
|
||||||
|
|
||||||
// Textfelder
|
// Textfelder
|
||||||
JTextField leftPlayerTextField = new JTextField(20);
|
JTextField leftPlayerTextField = new JTextField(20);
|
||||||
JTextField rightPlayerTextField = new JTextField(20);
|
JTextField rightPlayerTextField = new JTextField(20);
|
||||||
|
|
||||||
|
Font robotoFont = new Font("Roboto", Font.BOLD, 45);
|
||||||
/**
|
/**
|
||||||
* Konstruktor der startLocalGame.
|
* Konstruktor der startLocalGame.
|
||||||
* Fügt Buttons, Textfelder und Label hinzu.
|
* Fügt Buttons, Textfelder und Label hinzu.
|
||||||
* Fügt ebenfalls ActionListeners hinzu, damit Buttons etc. ihre gewünschte Funktion haben
|
* Fügt ebenfalls ActionListeners hinzu, damit Buttons etc. ihre gewünschte Funktion haben
|
||||||
*
|
*
|
||||||
* @param frame Der Mainframe der Anwendung über den alle Panels angezeigt werden.
|
* @param frame Der Mainframe der Anwendung über den alle Panels angezeigt werden.
|
||||||
|
* @author Lucas Bronson, Joshua Kuklok
|
||||||
*/
|
*/
|
||||||
startLocalGame(MainFrame frame) {
|
startLocalGame(MainFrame frame) {
|
||||||
// Layout des Panels
|
// Layout des Panels
|
||||||
setLayout(null);
|
setLayout(null);
|
||||||
|
|
||||||
// Setze Komponentenpositionen
|
// Setze Komponentenpositionen
|
||||||
frameTitle.setBounds(20, 20, 200, 30);
|
frameTitle.setBounds(20, 20, 500, 60);
|
||||||
|
frameTitle.setFont(robotoFont.deriveFont(50f));
|
||||||
add(frameTitle);
|
add(frameTitle);
|
||||||
|
|
||||||
semesterLabel.setBounds(700, 300, 200, 30);
|
semesterLabel.setBounds(700, 300, 200, 30);
|
||||||
|
@ -79,13 +79,10 @@ public class startLocalGame extends JPanel {
|
||||||
rightPlayerIcon.setBounds(1225, 400, 200, 128);
|
rightPlayerIcon.setBounds(1225, 400, 200, 128);
|
||||||
add(rightPlayerIcon);
|
add(rightPlayerIcon);
|
||||||
|
|
||||||
semesterCounterLabel.setBounds(725, 475, 50, 50);
|
semesterCounterLabel.setBounds(705, 475, 50, 50);
|
||||||
semesterCounterLabel.setHorizontalAlignment(SwingConstants.CENTER);
|
semesterCounterLabel.setHorizontalAlignment(SwingConstants.CENTER);
|
||||||
add(semesterCounterLabel);
|
add(semesterCounterLabel);
|
||||||
|
|
||||||
testButton.setBounds(500,800,50,50);
|
|
||||||
add(testButton);
|
|
||||||
|
|
||||||
backButton.setBounds(1380, 20, 80, 80);
|
backButton.setBounds(1380, 20, 80, 80);
|
||||||
add(backButton);
|
add(backButton);
|
||||||
|
|
||||||
|
@ -95,10 +92,10 @@ public class startLocalGame extends JPanel {
|
||||||
leftPlayerRightButton.setBounds(250, 450, 50, 50);
|
leftPlayerRightButton.setBounds(250, 450, 50, 50);
|
||||||
add(leftPlayerRightButton);
|
add(leftPlayerRightButton);
|
||||||
|
|
||||||
semesterUpButton.setBounds(725, 400, 50, 50);
|
semesterUpButton.setBounds(705, 400, 50, 50);
|
||||||
add(semesterUpButton);
|
add(semesterUpButton);
|
||||||
|
|
||||||
semesterDownButton.setBounds(725, 550, 50, 50);
|
semesterDownButton.setBounds(705, 550, 50, 50);
|
||||||
add(semesterDownButton);
|
add(semesterDownButton);
|
||||||
|
|
||||||
rightPlayerLeftButton.setBounds(1200, 450, 50, 50);
|
rightPlayerLeftButton.setBounds(1200, 450, 50, 50);
|
||||||
|
@ -118,7 +115,7 @@ public class startLocalGame extends JPanel {
|
||||||
rightPlayerTextField.setText(rightPlayerNickname);
|
rightPlayerTextField.setText(rightPlayerNickname);
|
||||||
add(rightPlayerTextField);
|
add(rightPlayerTextField);
|
||||||
|
|
||||||
// ActionListener für Buttons
|
// ActionListener für Buttons.
|
||||||
// Um das Semester zu erhöhen.
|
// Um das Semester zu erhöhen.
|
||||||
semesterUpButton.addActionListener(e -> {
|
semesterUpButton.addActionListener(e -> {
|
||||||
if (semesterCounter < 6) {
|
if (semesterCounter < 6) {
|
||||||
|
@ -194,14 +191,6 @@ public class startLocalGame extends JPanel {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
// Um zum Gameboard zu wechseln.
|
|
||||||
testButton.addActionListener(new ActionListener() {
|
|
||||||
@Override
|
|
||||||
public void actionPerformed(ActionEvent e) {
|
|
||||||
frame.showPanelSLG("GameBoard",1,p1,p2);
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
// Um zum startLocalGameLoadingScreen zu wechseln und Daten an Backend weiterzureichen.
|
// Um zum startLocalGameLoadingScreen zu wechseln und Daten an Backend weiterzureichen.
|
||||||
startButton.addActionListener(new ActionListener() {
|
startButton.addActionListener(new ActionListener() {
|
||||||
@SuppressWarnings("unchecked")
|
@SuppressWarnings("unchecked")
|
||||||
|
@ -214,7 +203,7 @@ public class startLocalGame extends JPanel {
|
||||||
playerClassMap.put(aiPlayerHardIcon, SpecificAiPlayerHard.class);
|
playerClassMap.put(aiPlayerHardIcon, SpecificAiPlayerHard.class);
|
||||||
|
|
||||||
|
|
||||||
frame.showPanelSLGLS("startLocalGameLoadingScreen", semesterCounter); //TODO
|
frame.showPanelSLGLS("startLocalGameLoadingScreen", semesterCounter);
|
||||||
|
|
||||||
Class<? extends LocalPlayer> leftPlayerClass = playerClassMap.get(leftPlayerIcon.getIcon());
|
Class<? extends LocalPlayer> leftPlayerClass = playerClassMap.get(leftPlayerIcon.getIcon());
|
||||||
Class<? extends AiPlayer> rightPlayerClass = (Class<? extends AiPlayer>) playerClassMap.get(rightPlayerIcon.getIcon());
|
Class<? extends AiPlayer> rightPlayerClass = (Class<? extends AiPlayer>) playerClassMap.get(rightPlayerIcon.getIcon());
|
||||||
|
@ -223,41 +212,6 @@ public class startLocalGame extends JPanel {
|
||||||
rightPlayerClass,
|
rightPlayerClass,
|
||||||
GameController.semesterToBoardSize(semesterCounter)
|
GameController.semesterToBoardSize(semesterCounter)
|
||||||
);
|
);
|
||||||
|
|
||||||
// if (leftPlayerIcon.getIcon() == humanPlayerIcon) {// TODO Wird name wirklich weitergegeben?
|
|
||||||
// if (rightPlayerIcon.getIcon() == aiPlayerEasyIcon) {
|
|
||||||
// GameController.startLocalGame(HumanPlayer.class, leftPlayerNickname, SpecificAiPlayerEasy.class, GameController.semesterToBoardSize(semesterCounter));
|
|
||||||
// } else if (rightPlayerIcon.getIcon() == aiPlayerNormalIcon) {
|
|
||||||
// GameController.startLocalGame(HumanPlayer.class, leftPlayerNickname, SpecificAiPlayerMedium.class, GameController.semesterToBoardSize(semesterCounter));
|
|
||||||
// } else if (rightPlayerIcon.getIcon() == aiPlayerHardIcon) {
|
|
||||||
// GameController.startLocalGame(HumanPlayer.class, leftPlayerNickname, SpecificAiPlayerHard.class, GameController.semesterToBoardSize(semesterCounter));
|
|
||||||
// }
|
|
||||||
// } else if (leftPlayerIcon.getIcon() == aiPlayerEasyIcon) {
|
|
||||||
// if (rightPlayerIcon.getIcon() == aiPlayerEasyIcon) {
|
|
||||||
// GameController.startLocalGame(SpecificAiPlayerEasy.class, leftPlayerNickname, SpecificAiPlayerEasy.class, GameController.semesterToBoardSize(semesterCounter));
|
|
||||||
// } else if (rightPlayerIcon.getIcon() == aiPlayerNormalIcon) {
|
|
||||||
// GameController.startLocalGame(SpecificAiPlayerEasy.class, leftPlayerNickname, SpecificAiPlayerMedium.class, GameController.semesterToBoardSize(semesterCounter));
|
|
||||||
// } else if (rightPlayerIcon.getIcon() == aiPlayerHardIcon) {
|
|
||||||
// GameController.startLocalGame(SpecificAiPlayerEasy.class, leftPlayerNickname, SpecificAiPlayerHard.class, GameController.semesterToBoardSize(semesterCounter));
|
|
||||||
// }
|
|
||||||
// } else if (rightPlayerIcon.getIcon() == aiPlayerNormalIcon) {
|
|
||||||
// if (rightPlayerIcon.getIcon() == aiPlayerEasyIcon) {
|
|
||||||
// GameController.startLocalGame(SpecificAiPlayerMedium.class, leftPlayerNickname, SpecificAiPlayerEasy.class, GameController.semesterToBoardSize(semesterCounter));
|
|
||||||
// } else if (rightPlayerIcon.getIcon() == aiPlayerNormalIcon) {
|
|
||||||
// GameController.startLocalGame(SpecificAiPlayerMedium.class, leftPlayerNickname, SpecificAiPlayerMedium.class, GameController.semesterToBoardSize(semesterCounter));
|
|
||||||
// } else if (rightPlayerIcon.getIcon() == aiPlayerHardIcon) {
|
|
||||||
// GameController.startLocalGame(SpecificAiPlayerMedium.class, leftPlayerNickname, SpecificAiPlayerHard.class, GameController.semesterToBoardSize(semesterCounter));
|
|
||||||
// }
|
|
||||||
// } else if (rightPlayerIcon.getIcon() == aiPlayerHardIcon) {
|
|
||||||
// if (rightPlayerIcon.getIcon() == aiPlayerEasyIcon) {
|
|
||||||
// GameController.startLocalGame(SpecificAiPlayerHard.class, leftPlayerNickname, SpecificAiPlayerEasy.class, GameController.semesterToBoardSize(semesterCounter));
|
|
||||||
// } else if (rightPlayerIcon.getIcon() == aiPlayerNormalIcon) {
|
|
||||||
// GameController.startLocalGame(SpecificAiPlayerHard.class, leftPlayerNickname, SpecificAiPlayerMedium.class, GameController.semesterToBoardSize(semesterCounter));
|
|
||||||
// } else if (rightPlayerIcon.getIcon() == aiPlayerHardIcon) {
|
|
||||||
// GameController.startLocalGame(SpecificAiPlayerHard.class, leftPlayerNickname, SpecificAiPlayerHard.class, GameController.semesterToBoardSize(semesterCounter));
|
|
||||||
// }
|
|
||||||
// }
|
|
||||||
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -266,14 +220,18 @@ public class startLocalGame extends JPanel {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Setzt das jeweils "nächste" Icon, wenn der leftPlayerLeftButton gedrückt wird.
|
* Setzt das jeweils "nächste" Icon, wenn der leftPlayerLeftButton gedrückt wird.
|
||||||
|
* @author Joshua Kuklok
|
||||||
*/
|
*/
|
||||||
private void toggleLeftPlayerIconLeft() {
|
private void toggleLeftPlayerIconLeft() {
|
||||||
if (leftPlayerIcon.getIcon() == humanPlayerIcon) {
|
if (leftPlayerIcon.getIcon() == humanPlayerIcon) {
|
||||||
leftPlayerIcon.setIcon(aiPlayerHardIcon);
|
leftPlayerIcon.setIcon(aiPlayerHardIcon);
|
||||||
|
|
||||||
} else if (leftPlayerIcon.getIcon() == aiPlayerEasyIcon){
|
} else if (leftPlayerIcon.getIcon() == aiPlayerEasyIcon){
|
||||||
leftPlayerIcon.setIcon(humanPlayerIcon);
|
leftPlayerIcon.setIcon(humanPlayerIcon);
|
||||||
|
|
||||||
} else if (leftPlayerIcon.getIcon() == aiPlayerNormalIcon) {
|
} else if (leftPlayerIcon.getIcon() == aiPlayerNormalIcon) {
|
||||||
leftPlayerIcon.setIcon(aiPlayerEasyIcon);
|
leftPlayerIcon.setIcon(aiPlayerEasyIcon);
|
||||||
|
|
||||||
} else if (leftPlayerIcon.getIcon() == aiPlayerHardIcon) {
|
} else if (leftPlayerIcon.getIcon() == aiPlayerHardIcon) {
|
||||||
leftPlayerIcon.setIcon(aiPlayerNormalIcon);
|
leftPlayerIcon.setIcon(aiPlayerNormalIcon);
|
||||||
}
|
}
|
||||||
|
@ -281,14 +239,18 @@ public class startLocalGame extends JPanel {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Setzt das jeweils "nächste" Icon, wenn der leftPlayerRightButton gedrückt wird.
|
* Setzt das jeweils "nächste" Icon, wenn der leftPlayerRightButton gedrückt wird.
|
||||||
|
* @author Joshua Kuklok
|
||||||
*/
|
*/
|
||||||
private void toggleLeftPlayerIconRight() {
|
private void toggleLeftPlayerIconRight() {
|
||||||
if (leftPlayerIcon.getIcon() == humanPlayerIcon) {
|
if (leftPlayerIcon.getIcon() == humanPlayerIcon) {
|
||||||
leftPlayerIcon.setIcon(aiPlayerEasyIcon);
|
leftPlayerIcon.setIcon(aiPlayerEasyIcon);
|
||||||
|
|
||||||
} else if (leftPlayerIcon.getIcon() == aiPlayerEasyIcon){
|
} else if (leftPlayerIcon.getIcon() == aiPlayerEasyIcon){
|
||||||
leftPlayerIcon.setIcon(aiPlayerNormalIcon);
|
leftPlayerIcon.setIcon(aiPlayerNormalIcon);
|
||||||
|
|
||||||
} else if (leftPlayerIcon.getIcon() == aiPlayerNormalIcon) {
|
} else if (leftPlayerIcon.getIcon() == aiPlayerNormalIcon) {
|
||||||
leftPlayerIcon.setIcon(aiPlayerHardIcon);
|
leftPlayerIcon.setIcon(aiPlayerHardIcon);
|
||||||
|
|
||||||
} else if (leftPlayerIcon.getIcon() == aiPlayerHardIcon) {
|
} else if (leftPlayerIcon.getIcon() == aiPlayerHardIcon) {
|
||||||
leftPlayerIcon.setIcon(humanPlayerIcon);
|
leftPlayerIcon.setIcon(humanPlayerIcon);
|
||||||
}
|
}
|
||||||
|
@ -296,12 +258,15 @@ public class startLocalGame extends JPanel {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Setzt das jeweils "nächste" Icon, wenn der RightPlayerLeftButton gedrückt wird.
|
* Setzt das jeweils "nächste" Icon, wenn der RightPlayerLeftButton gedrückt wird.
|
||||||
|
* @author Joshua Kuklok
|
||||||
*/
|
*/
|
||||||
private void toggleRightPlayerIconLeft() {
|
private void toggleRightPlayerIconLeft() {
|
||||||
if (rightPlayerIcon.getIcon() == aiPlayerEasyIcon) {
|
if (rightPlayerIcon.getIcon() == aiPlayerEasyIcon) {
|
||||||
rightPlayerIcon.setIcon(aiPlayerHardIcon);
|
rightPlayerIcon.setIcon(aiPlayerHardIcon);
|
||||||
|
|
||||||
} else if (rightPlayerIcon.getIcon() == aiPlayerNormalIcon){
|
} else if (rightPlayerIcon.getIcon() == aiPlayerNormalIcon){
|
||||||
rightPlayerIcon.setIcon(aiPlayerEasyIcon);
|
rightPlayerIcon.setIcon(aiPlayerEasyIcon);
|
||||||
|
|
||||||
} else if (rightPlayerIcon.getIcon() == aiPlayerHardIcon) {
|
} else if (rightPlayerIcon.getIcon() == aiPlayerHardIcon) {
|
||||||
rightPlayerIcon.setIcon(aiPlayerNormalIcon);
|
rightPlayerIcon.setIcon(aiPlayerNormalIcon);
|
||||||
}
|
}
|
||||||
|
@ -309,12 +274,15 @@ public class startLocalGame extends JPanel {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Setzt das jeweils "nächste" Icon, wenn der RightPlayerRightButton gedrückt wird.
|
* Setzt das jeweils "nächste" Icon, wenn der RightPlayerRightButton gedrückt wird.
|
||||||
|
* @author Joshua Kuklok
|
||||||
*/
|
*/
|
||||||
private void toggleRightPlayerIconRight() {
|
private void toggleRightPlayerIconRight() {
|
||||||
if (rightPlayerIcon.getIcon() == aiPlayerEasyIcon) {
|
if (rightPlayerIcon.getIcon() == aiPlayerEasyIcon) {
|
||||||
rightPlayerIcon.setIcon(aiPlayerNormalIcon);
|
rightPlayerIcon.setIcon(aiPlayerNormalIcon);
|
||||||
|
|
||||||
} else if (rightPlayerIcon.getIcon() == aiPlayerNormalIcon){
|
} else if (rightPlayerIcon.getIcon() == aiPlayerNormalIcon){
|
||||||
rightPlayerIcon.setIcon(aiPlayerHardIcon);
|
rightPlayerIcon.setIcon(aiPlayerHardIcon);
|
||||||
|
|
||||||
} else if (rightPlayerIcon.getIcon() == aiPlayerHardIcon) {
|
} else if (rightPlayerIcon.getIcon() == aiPlayerHardIcon) {
|
||||||
rightPlayerIcon.setIcon(aiPlayerEasyIcon);
|
rightPlayerIcon.setIcon(aiPlayerEasyIcon);
|
||||||
}
|
}
|
||||||
|
@ -322,15 +290,19 @@ public class startLocalGame extends JPanel {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Aktualisiert die Textfelder basierend auf den Icons
|
* Aktualisiert die Textfelder basierend auf den Icons
|
||||||
|
* @author Joshua Kuklok
|
||||||
*/
|
*/
|
||||||
private void updateTextFields() {
|
private void updateTextFields() {
|
||||||
// Für Linken Spieler
|
// Für Linken Spieler
|
||||||
if (leftPlayerIcon.getIcon() == humanPlayerIcon) {
|
if (leftPlayerIcon.getIcon() == humanPlayerIcon) {
|
||||||
leftPlayerTextField.setText(leftPlayerNickname);
|
leftPlayerTextField.setText(leftPlayerNickname);
|
||||||
|
|
||||||
} else if (leftPlayerIcon.getIcon() == aiPlayerEasyIcon){
|
} else if (leftPlayerIcon.getIcon() == aiPlayerEasyIcon){
|
||||||
leftPlayerTextField.setText("Einfach");
|
leftPlayerTextField.setText("Einfach");
|
||||||
|
|
||||||
} else if (leftPlayerIcon.getIcon() == aiPlayerNormalIcon) {
|
} else if (leftPlayerIcon.getIcon() == aiPlayerNormalIcon) {
|
||||||
leftPlayerTextField.setText("Mittel");
|
leftPlayerTextField.setText("Mittel");
|
||||||
|
|
||||||
} else if (leftPlayerIcon.getIcon() == aiPlayerHardIcon) {
|
} else if (leftPlayerIcon.getIcon() == aiPlayerHardIcon) {
|
||||||
leftPlayerTextField.setText("Schwer");
|
leftPlayerTextField.setText("Schwer");
|
||||||
}
|
}
|
||||||
|
@ -338,8 +310,10 @@ public class startLocalGame extends JPanel {
|
||||||
// Für Rechten Spieler
|
// Für Rechten Spieler
|
||||||
if (rightPlayerIcon.getIcon() == aiPlayerEasyIcon){
|
if (rightPlayerIcon.getIcon() == aiPlayerEasyIcon){
|
||||||
rightPlayerTextField.setText("Einfach");
|
rightPlayerTextField.setText("Einfach");
|
||||||
|
|
||||||
} else if (rightPlayerIcon.getIcon() == aiPlayerNormalIcon) {
|
} else if (rightPlayerIcon.getIcon() == aiPlayerNormalIcon) {
|
||||||
rightPlayerTextField.setText("Mittel");
|
rightPlayerTextField.setText("Mittel");
|
||||||
|
|
||||||
} else if (rightPlayerIcon.getIcon() == aiPlayerHardIcon) {
|
} else if (rightPlayerIcon.getIcon() == aiPlayerHardIcon) {
|
||||||
rightPlayerTextField.setText("Schwer");
|
rightPlayerTextField.setText("Schwer");
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,12 +4,14 @@ import java.awt.*;
|
||||||
/**
|
/**
|
||||||
* Das startLocalGameLoadingScreen Panel dient als "Überblende", während im Backend das Spiel erstellt wird.
|
* Das startLocalGameLoadingScreen Panel dient als "Überblende", während im Backend das Spiel erstellt wird.
|
||||||
* Hier wird lediglich Text angezeigt
|
* Hier wird lediglich Text angezeigt
|
||||||
|
* @author Joshua Kuklok
|
||||||
*/
|
*/
|
||||||
public class startLocalGameLoadingScreen extends JPanel{
|
public class startLocalGameLoadingScreen extends JPanel{
|
||||||
/**
|
/**
|
||||||
* Konstruktor der startLocalGameLoadingScreen.
|
* Konstruktor der startLocalGameLoadingScreen.
|
||||||
* @param frame Der Mainframe der Anwendung über den alle Panels angezeigt werden.
|
* @param frame Der Mainframe der Anwendung über den alle Panels angezeigt werden.
|
||||||
* @param semesterCounter Ein Zähler, der das gewählte Semester speichert (hier unbenutzt)
|
* @param semesterCounter Ein Zähler, der das gewählte Semester speichert (hier unbenutzt)
|
||||||
|
* @author Joshua Kuklok
|
||||||
*/
|
*/
|
||||||
startLocalGameLoadingScreen(MainFrame frame, int semesterCounter) {
|
startLocalGameLoadingScreen(MainFrame frame, int semesterCounter) {
|
||||||
|
|
||||||
|
|
|
@ -1,10 +1,12 @@
|
||||||
import javax.swing.*;
|
import javax.swing.*;
|
||||||
|
import java.awt.*;
|
||||||
import java.awt.event.ActionEvent;
|
import java.awt.event.ActionEvent;
|
||||||
import java.awt.event.ActionListener;
|
import java.awt.event.ActionListener;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Das startMultiplayerGame Panel dient dem Erstellen eines Online Spiels.
|
* Das startMultiplayerGame Panel dient dem Erstellen eines Online Spiels.
|
||||||
* Hier kann der Benutzer Spieler inklusive Namen und das Semester, in dem sich der Benutzer befindet, einstellen.
|
* Hier kann der Benutzer Spieler inklusive Namen und das Semester, in dem sich der Benutzer befindet, einstellen.
|
||||||
|
* @author Joshua Kuklok
|
||||||
*/
|
*/
|
||||||
public class startMultiplayerGame extends JPanel {
|
public class startMultiplayerGame extends JPanel {
|
||||||
|
|
||||||
|
@ -38,11 +40,14 @@ public class startMultiplayerGame extends JPanel {
|
||||||
// Textfelder
|
// Textfelder
|
||||||
JTextField PlayerTextField = new JTextField(20);
|
JTextField PlayerTextField = new JTextField(20);
|
||||||
|
|
||||||
|
Font robotoFont = new Font("Roboto", Font.BOLD, 45);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Konstruktor der startLocalGame.
|
* Konstruktor der startLocalGame.
|
||||||
* Fügt Buttons, Textfelder und Label hinzu.
|
* Fügt Buttons, Textfelder und Label hinzu.
|
||||||
* Fügt ebenfalls ActionListeners hinzu, damit Buttons etc. ihre gewünschte Funktion haben
|
* Fügt ebenfalls ActionListeners hinzu, damit Buttons etc. ihre gewünschte Funktion haben
|
||||||
* @param frame Der Mainframe der Anwendung über den alle Panels angezeigt werden.
|
* @param frame Der Mainframe der Anwendung über den alle Panels angezeigt werden.
|
||||||
|
* @author Joshua Kuklok, Lucas Bronson
|
||||||
*/
|
*/
|
||||||
startMultiplayerGame(MainFrame frame) {
|
startMultiplayerGame(MainFrame frame) {
|
||||||
|
|
||||||
|
@ -50,7 +55,8 @@ public class startMultiplayerGame extends JPanel {
|
||||||
setLayout(null);
|
setLayout(null);
|
||||||
|
|
||||||
// Setze Komponentenpositionen
|
// Setze Komponentenpositionen
|
||||||
frameTitle.setBounds(20, 20, 200, 30);
|
frameTitle.setBounds(20, 20, 500, 60);
|
||||||
|
frameTitle.setFont(robotoFont.deriveFont(50f));
|
||||||
add(frameTitle);
|
add(frameTitle);
|
||||||
|
|
||||||
semesterLabel.setBounds(700, 300, 200, 30);
|
semesterLabel.setBounds(700, 300, 200, 30);
|
||||||
|
@ -62,7 +68,7 @@ public class startMultiplayerGame extends JPanel {
|
||||||
PlayerIcon.setBounds(75, 400, 200, 128);
|
PlayerIcon.setBounds(75, 400, 200, 128);
|
||||||
add(PlayerIcon);
|
add(PlayerIcon);
|
||||||
|
|
||||||
semesterCounterLabel.setBounds(725, 475, 50, 50); // zwischen den Up/Down-Buttons
|
semesterCounterLabel.setBounds(705, 475, 50, 50); // zwischen den Up/Down-Buttons
|
||||||
semesterCounterLabel.setHorizontalAlignment(SwingConstants.CENTER);
|
semesterCounterLabel.setHorizontalAlignment(SwingConstants.CENTER);
|
||||||
add(semesterCounterLabel);
|
add(semesterCounterLabel);
|
||||||
|
|
||||||
|
@ -75,10 +81,10 @@ public class startMultiplayerGame extends JPanel {
|
||||||
PlayerRightButton.setBounds(250, 450, 50, 50);
|
PlayerRightButton.setBounds(250, 450, 50, 50);
|
||||||
add(PlayerRightButton);
|
add(PlayerRightButton);
|
||||||
|
|
||||||
semesterUpButton.setBounds(725, 400, 50, 50);
|
semesterUpButton.setBounds(705, 400, 50, 50);
|
||||||
add(semesterUpButton);
|
add(semesterUpButton);
|
||||||
|
|
||||||
semesterDownButton.setBounds(725, 550, 50, 50);
|
semesterDownButton.setBounds(705, 550, 50, 50);
|
||||||
add(semesterDownButton);
|
add(semesterDownButton);
|
||||||
|
|
||||||
joinGameButton.setBounds(1100, 350, 200, 50);
|
joinGameButton.setBounds(1100, 350, 200, 50);
|
||||||
|
@ -148,13 +154,13 @@ public class startMultiplayerGame extends JPanel {
|
||||||
@Override
|
@Override
|
||||||
public void actionPerformed(ActionEvent e) {
|
public void actionPerformed(ActionEvent e) {
|
||||||
if (PlayerIcon.getIcon() == humanPlayerIcon) {
|
if (PlayerIcon.getIcon() == humanPlayerIcon) {
|
||||||
frame.showPanelSMG("JoinGame",1,0, PlayerNickname);
|
frame.showPanelSMG("JoinGame",1,0, PlayerNickname, semesterCounter);
|
||||||
} else if ( PlayerIcon.getIcon() == aiPlayerEasyIcon) {
|
} else if ( PlayerIcon.getIcon() == aiPlayerEasyIcon) {
|
||||||
frame.showPanelSMG("JoinGame",1,1, PlayerNickname);
|
frame.showPanelSMG("JoinGame",1,1, PlayerNickname, semesterCounter);
|
||||||
} else if ( PlayerIcon.getIcon() == aiPlayerNormalIcon) {
|
} else if ( PlayerIcon.getIcon() == aiPlayerNormalIcon) {
|
||||||
frame.showPanelSMG("JoinGame",1,2, PlayerNickname);
|
frame.showPanelSMG("JoinGame",1,2, PlayerNickname, semesterCounter);
|
||||||
} else if ( PlayerIcon.getIcon() == aiPlayerHardIcon) {
|
} else if ( PlayerIcon.getIcon() == aiPlayerHardIcon) {
|
||||||
frame.showPanelSMG("JoinGame",1,3, PlayerNickname);
|
frame.showPanelSMG("JoinGame",1,3, PlayerNickname, semesterCounter);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -164,14 +170,14 @@ public class startMultiplayerGame extends JPanel {
|
||||||
@Override
|
@Override
|
||||||
public void actionPerformed(ActionEvent e) {
|
public void actionPerformed(ActionEvent e) {
|
||||||
//Parameter -> panelName, Spiel erstellen oder beitreten (int), Spielertyp(int 0-3), Spielername
|
//Parameter -> panelName, Spiel erstellen oder beitreten (int), Spielertyp(int 0-3), Spielername
|
||||||
if (PlayerIcon.getIcon() == humanPlayerIcon) { // TODO Wird name wirklich weitergegeben?
|
if (PlayerIcon.getIcon() == humanPlayerIcon) {
|
||||||
frame.showPanelSMG("JoinGame",0,0, PlayerNickname);
|
frame.showPanelSMG("JoinGame",0,0, PlayerNickname, semesterCounter);
|
||||||
} else if ( PlayerIcon.getIcon() == aiPlayerEasyIcon) {
|
} else if ( PlayerIcon.getIcon() == aiPlayerEasyIcon) {
|
||||||
frame.showPanelSMG("JoinGame",0,1, PlayerNickname);
|
frame.showPanelSMG("JoinGame",0,1, PlayerNickname, semesterCounter);
|
||||||
} else if ( PlayerIcon.getIcon() == aiPlayerNormalIcon) {
|
} else if ( PlayerIcon.getIcon() == aiPlayerNormalIcon) {
|
||||||
frame.showPanelSMG("JoinGame",0,2, PlayerNickname);
|
frame.showPanelSMG("JoinGame",0,2, PlayerNickname, semesterCounter);
|
||||||
} else if ( PlayerIcon.getIcon() == aiPlayerHardIcon) {
|
} else if ( PlayerIcon.getIcon() == aiPlayerHardIcon) {
|
||||||
frame.showPanelSMG("JoinGame",0,3, PlayerNickname);
|
frame.showPanelSMG("JoinGame",0,3, PlayerNickname, semesterCounter);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -181,14 +187,18 @@ public class startMultiplayerGame extends JPanel {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Setzt das jeweils "nächste" Icon, wenn der PlayerLeftButton gedrückt wird.
|
* Setzt das jeweils "nächste" Icon, wenn der PlayerLeftButton gedrückt wird.
|
||||||
|
* @author Joshua Kuklok
|
||||||
*/
|
*/
|
||||||
private void togglePlayerIconLeft() {
|
private void togglePlayerIconLeft() {
|
||||||
if (PlayerIcon.getIcon() == humanPlayerIcon) {
|
if (PlayerIcon.getIcon() == humanPlayerIcon) {
|
||||||
PlayerIcon.setIcon(aiPlayerHardIcon);
|
PlayerIcon.setIcon(aiPlayerHardIcon);
|
||||||
|
|
||||||
} else if (PlayerIcon.getIcon() == aiPlayerEasyIcon){
|
} else if (PlayerIcon.getIcon() == aiPlayerEasyIcon){
|
||||||
PlayerIcon.setIcon(humanPlayerIcon);
|
PlayerIcon.setIcon(humanPlayerIcon);
|
||||||
|
|
||||||
} else if (PlayerIcon.getIcon() == aiPlayerNormalIcon) {
|
} else if (PlayerIcon.getIcon() == aiPlayerNormalIcon) {
|
||||||
PlayerIcon.setIcon(aiPlayerEasyIcon);
|
PlayerIcon.setIcon(aiPlayerEasyIcon);
|
||||||
|
|
||||||
} else if (PlayerIcon.getIcon() == aiPlayerHardIcon) {
|
} else if (PlayerIcon.getIcon() == aiPlayerHardIcon) {
|
||||||
PlayerIcon.setIcon(aiPlayerNormalIcon);
|
PlayerIcon.setIcon(aiPlayerNormalIcon);
|
||||||
}
|
}
|
||||||
|
@ -196,14 +206,18 @@ public class startMultiplayerGame extends JPanel {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Setzt das jeweils "nächste" Icon, wenn der PlayerRightButton gedrückt wird.
|
* Setzt das jeweils "nächste" Icon, wenn der PlayerRightButton gedrückt wird.
|
||||||
|
* @author Joshua Kuklok
|
||||||
*/
|
*/
|
||||||
private void togglePlayerIconRight() {
|
private void togglePlayerIconRight() {
|
||||||
if (PlayerIcon.getIcon() == humanPlayerIcon) {
|
if (PlayerIcon.getIcon() == humanPlayerIcon) {
|
||||||
PlayerIcon.setIcon(aiPlayerEasyIcon);
|
PlayerIcon.setIcon(aiPlayerEasyIcon);
|
||||||
|
|
||||||
} else if (PlayerIcon.getIcon() == aiPlayerEasyIcon){
|
} else if (PlayerIcon.getIcon() == aiPlayerEasyIcon){
|
||||||
PlayerIcon.setIcon(aiPlayerNormalIcon);
|
PlayerIcon.setIcon(aiPlayerNormalIcon);
|
||||||
|
|
||||||
} else if (PlayerIcon.getIcon() == aiPlayerNormalIcon) {
|
} else if (PlayerIcon.getIcon() == aiPlayerNormalIcon) {
|
||||||
PlayerIcon.setIcon(aiPlayerHardIcon);
|
PlayerIcon.setIcon(aiPlayerHardIcon);
|
||||||
|
|
||||||
} else if (PlayerIcon.getIcon() == aiPlayerHardIcon) {
|
} else if (PlayerIcon.getIcon() == aiPlayerHardIcon) {
|
||||||
PlayerIcon.setIcon(humanPlayerIcon);
|
PlayerIcon.setIcon(humanPlayerIcon);
|
||||||
}
|
}
|
||||||
|
@ -211,14 +225,18 @@ public class startMultiplayerGame extends JPanel {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Aktualisiert die Textfelder basierend auf den Icons
|
* Aktualisiert die Textfelder basierend auf den Icons
|
||||||
|
* @author Joshua Kuklok
|
||||||
*/
|
*/
|
||||||
private void updateTextFields() {
|
private void updateTextFields() {
|
||||||
if (PlayerIcon.getIcon() == humanPlayerIcon) {
|
if (PlayerIcon.getIcon() == humanPlayerIcon) {
|
||||||
PlayerTextField.setText(PlayerNickname);
|
PlayerTextField.setText(PlayerNickname);
|
||||||
|
|
||||||
} else if (PlayerIcon.getIcon() == aiPlayerEasyIcon){
|
} else if (PlayerIcon.getIcon() == aiPlayerEasyIcon){
|
||||||
PlayerTextField.setText("Einfach");
|
PlayerTextField.setText("Einfach");
|
||||||
|
|
||||||
} else if (PlayerIcon.getIcon() == aiPlayerNormalIcon) {
|
} else if (PlayerIcon.getIcon() == aiPlayerNormalIcon) {
|
||||||
PlayerTextField.setText("Mittel");
|
PlayerTextField.setText("Mittel");
|
||||||
|
|
||||||
} else if (PlayerIcon.getIcon() == aiPlayerHardIcon) {
|
} else if (PlayerIcon.getIcon() == aiPlayerHardIcon) {
|
||||||
PlayerTextField.setText("Schwer");
|
PlayerTextField.setText("Schwer");
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue