From 026e01577d360a9c97cb5ac1eda4f39c7b754492 Mon Sep 17 00:00:00 2001 From: Philipp Kotte Date: Wed, 11 Oct 2023 10:28:42 +0200 Subject: [PATCH 1/5] =?UTF-8?q?Temaplate=20f=C3=BCr=20die=20Anforderungen?= =?UTF-8?q?=20von=20einer=20Struktur=20f=C3=BCr=20Klassen=20von=20Dopatka?= =?UTF-8?q?=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- README.md | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) diff --git a/README.md b/README.md index 05e1cb8..98cc11e 100644 --- a/README.md +++ b/README.md @@ -11,6 +11,8 @@ Gruppe Studienleistung bereits vorhanden ## Dopatka Regeln wie Klassen anzulegen sind +### Aufbau + 1. statische Konstante 2. statische Attribute(zB. zähler) 3. Attribute jedes Objektes @@ -21,6 +23,46 @@ Gruppe Studienleistung bereits vorhanden 8. öffentliche Methodes 9. Hilfsmethoden (privat) +### Template + +``` +/*------------------------------------------*/ +// statische Konstanten +/*------------------------------------------*/ + +/*------------------------------------------*/ +// statische Attribute(zB. zähler) +/*------------------------------------------*/ + +/*------------------------------------------*/ +// Attribute jedes Objektes +/*------------------------------------------*/ + +/*------------------------------------------*/ +// Konstruktoren (default und spezifische) +/*------------------------------------------*/ + +/*------------------------------------------*/ +// statische Methoden +/*------------------------------------------*/ + +/*------------------------------------------*/ +// Getter und Setter +/*------------------------------------------*/ + +/*------------------------------------------*/ +// @Overrides +/*------------------------------------------*/ + +/*------------------------------------------*/ +// öffentliche Methodes +/*------------------------------------------*/ + +/*------------------------------------------*/ +// Hilfsmethoden (privat) +/*------------------------------------------*/ +``` + ## Für das Arbeiten mit geschützten Mainbranch Wenn Änderungen durchgeführt werden müssen, kann dieses nicht direkt auf dem main-Branch gepusht werden sondern muss mit einem Separatem Branch und Pull-Request durchgeführt werden. From 7ec9a4e436696f4514e15add1bcd537fc9b02def Mon Sep 17 00:00:00 2001 From: Philipp Kotte Date: Wed, 11 Oct 2023 11:04:46 +0200 Subject: [PATCH 2/5] =?UTF-8?q?Template=20von=20DOP=20hinzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Facade/Spiel.java | 58 ++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 57 insertions(+), 1 deletion(-) diff --git a/Facade/Spiel.java b/Facade/Spiel.java index 3248210..7e0a9a5 100644 --- a/Facade/Spiel.java +++ b/Facade/Spiel.java @@ -14,6 +14,18 @@ import Domain.Enums.Geschlecht; public class Spiel implements Serializable { + /*--------------------------------------------------------*/ + // statische Konstanten + /*--------------------------------------------------------*/ + + /*--------------------------------------------------------*/ + // statische Attribute(zB. zähler) + /*--------------------------------------------------------*/ + + /*--------------------------------------------------------*/ + // Attribute jedes Objektes + /*--------------------------------------------------------*/ + private boolean istGestartet; private boolean istBeendet; private Spieler spielerAmZug; @@ -21,12 +33,52 @@ public class Spiel implements Serializable { private HashMap spieler = new HashMap<>(); private boolean[] id_check = { false, false, false, false, false, false }; + /*--------------------------------------------------------*/ + // Konstruktoren (default und spezifische) + /*--------------------------------------------------------*/ + public Spiel() { this.istGestartet = false; this.istBeendet = false; this.spielerAmZug = null; this.runde = 0; }; + /*--------------------------------------------------------*/ + // statische Methoden + /*--------------------------------------------------------*/ + + /*--------------------------------------------------------*/ + // Getter und Setter + /*--------------------------------------------------------*/ + + public void setSpielGestartet(boolean gestarted) { + this.istGestartet = gestarted; + } + + public void setSpielBeendet(boolean beendet) { + this.istBeendet = beendet; + } + + public void setRunde(int runde) { + this.runde = runde; + } + + public void setSpielerAmZug(Spieler spieler) { + this.spielerAmZug = spieler; + } + + /*--------------------------------------------------------*/ + // @Overrides + /*--------------------------------------------------------*/ + + @Override + public String toString() { + return ""; + } + + /*--------------------------------------------------------*/ + // öffentliche Methodes + /*--------------------------------------------------------*/ public void addSpieler(String name, Geschlecht geschlecht) { int id = 1; @@ -78,7 +130,7 @@ public class Spiel implements Serializable { return this.runde; } - public void mischer() { + public void mischen() { } @@ -94,4 +146,8 @@ public class Spiel implements Serializable { } + /*--------------------------------------------------------*/ + // Hilfsmethoden (privat) + /*--------------------------------------------------------*/ + } \ No newline at end of file From 8e7ccb941ff7896e510e88e5ce7a9d7c711b0f02 Mon Sep 17 00:00:00 2001 From: Philipp Kotte Date: Wed, 11 Oct 2023 11:06:39 +0200 Subject: [PATCH 3/5] =?UTF-8?q?Kartenstapel=20und=20Block=20zu=20Spiel=20h?= =?UTF-8?q?inzugef=C3=BCgt?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Facade/Spiel.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Facade/Spiel.java b/Facade/Spiel.java index 7e0a9a5..dd48df3 100644 --- a/Facade/Spiel.java +++ b/Facade/Spiel.java @@ -9,7 +9,9 @@ package Facade; import java.io.Serializable; import java.util.HashMap; +import Domain.Kartenstapel; import Domain.Spieler; +import Domain.Block.Block; import Domain.Enums.Geschlecht; public class Spiel implements Serializable { @@ -32,6 +34,8 @@ public class Spiel implements Serializable { private int runde; private HashMap spieler = new HashMap<>(); private boolean[] id_check = { false, false, false, false, false, false }; + private Kartenstapel kartenstapel; + private Block block; /*--------------------------------------------------------*/ // Konstruktoren (default und spezifische) From 605d8c803da489e0a0d9347638143f649245493e Mon Sep 17 00:00:00 2001 From: Philipp Kotte Date: Wed, 11 Oct 2023 11:15:39 +0200 Subject: [PATCH 4/5] =?UTF-8?q?to=20String=20hinzugef=C3=BCgt=20und=20Spie?= =?UTF-8?q?l=20erweitert?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Facade/Spiel.java | 5 +++-- UI/SpielCLI.java | 6 +++++- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/Facade/Spiel.java b/Facade/Spiel.java index dd48df3..3925d13 100644 --- a/Facade/Spiel.java +++ b/Facade/Spiel.java @@ -77,7 +77,8 @@ public class Spiel implements Serializable { @Override 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() { - return new String[0]; + return new String[1]; } public boolean istSpielGestartet() { diff --git a/UI/SpielCLI.java b/UI/SpielCLI.java index 0052481..d1cb015 100644 --- a/UI/SpielCLI.java +++ b/UI/SpielCLI.java @@ -27,7 +27,8 @@ public class SpielCLI { System.out.println("Was sillst du tun"); System.out.println("--------Hauptmenü--------"); 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; @@ -42,6 +43,9 @@ public class SpielCLI { System.out.println("Noch nicht implementiert."); break; case 2: + System.out.println(spiel.toString()); + break; + case 3: break mainloop; case 0: System.out.println("Diese eingabe ist nicht vergeben."); From dbf57e985243704a82ee74fbc103618e8425d7cf Mon Sep 17 00:00:00 2001 From: Philipp Kotte Date: Wed, 11 Oct 2023 13:59:46 +0200 Subject: [PATCH 5/5] =?UTF-8?q?Systemausgabe=20f=C3=BCr=20Laden=20der=20WI?= =?UTF-8?q?ZARD=5FDATA=5FWizard.ser?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Main.java | 1 + 1 file changed, 1 insertion(+) diff --git a/Main.java b/Main.java index 856a560..515b424 100644 --- a/Main.java +++ b/Main.java @@ -13,6 +13,7 @@ public class Main { try { System.out.println("Lade daten"); spiel = (Spiel) Persistenz.ladeDaten(name); + System.out.println("laden erfolgreich"); } catch (IOException e) { System.out.println("Konnte file nicht laden."); System.out.println(e.getLocalizedMessage());