to String hinzugefügt und Spiel erweitert

pull/26/head
Philipp Kotte 2023-10-11 11:15:39 +02:00
parent 8e7ccb941f
commit 605d8c803d
2 changed files with 8 additions and 3 deletions

View File

@ -77,7 +77,8 @@ public class Spiel implements Serializable {
@Override @Override
public String toString() { public String toString() {
return ""; return "Runde: " + getRunde() + ", Gestartet : " + (istSpielGestartet() ? "Ja " : "Nein ") + ", Beendet: "
+ (istSpielBeendet() ? "Ja" : "Nein") + ", Spieler am Zug: " + getSpielerAmZug()[0];
} }
/*--------------------------------------------------------*/ /*--------------------------------------------------------*/
@ -111,7 +112,7 @@ public class Spiel implements Serializable {
} }
public String[] getSpielerAmZug() { public String[] getSpielerAmZug() {
return new String[0]; return new String[1];
} }
public boolean istSpielGestartet() { public boolean istSpielGestartet() {

View File

@ -27,7 +27,8 @@ public class SpielCLI {
System.out.println("Was sillst du tun"); System.out.println("Was sillst du tun");
System.out.println("--------Hauptmenü--------"); System.out.println("--------Hauptmenü--------");
System.out.println("-1- Spiel starten"); System.out.println("-1- Spiel starten");
System.out.println("-2- Exit"); System.out.println("-2- Spiel to String");
System.out.println("-3- Exit");
int input = 0; int input = 0;
@ -42,6 +43,9 @@ public class SpielCLI {
System.out.println("Noch nicht implementiert."); System.out.println("Noch nicht implementiert.");
break; break;
case 2: case 2:
System.out.println(spiel.toString());
break;
case 3:
break mainloop; break mainloop;
case 0: case 0:
System.out.println("Diese eingabe ist nicht vergeben."); System.out.println("Diese eingabe ist nicht vergeben.");