Merge branch 'patch-1' of https://gitlab.imn.htwk-leipzig.de/weicker/inb1-a-jaujau.git into patch-1
This commit is contained in:
@@ -7,8 +7,8 @@ package de.jaujau.daten;
|
|||||||
* @author Sebastian Kacza
|
* @author Sebastian Kacza
|
||||||
*/
|
*/
|
||||||
public class Karte {
|
public class Karte {
|
||||||
private Farbe FARBE;
|
private final Farbe FARBE;
|
||||||
private Wert WERT;
|
private final Wert WERT;
|
||||||
private Ablageort Ablageort;
|
private Ablageort Ablageort;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@@ -68,8 +68,8 @@ public class Kartensatz {
|
|||||||
public boolean ziehen(Spieler spieler) {
|
public boolean ziehen(Spieler spieler) {
|
||||||
//System.out.println("Start Ziehen");
|
//System.out.println("Start Ziehen");
|
||||||
//Ziehstapel Prüfen
|
//Ziehstapel Prüfen
|
||||||
int ZiehstapelAnzahl = getZiehstapelAnzahl();
|
int ZiehstapelAnzahl = getZiehstapelAnzahl(); //ZiehstapelAnzahl könte durch direckten Medoden aufruf ersetzt werden????
|
||||||
if(ZiehstapelAnzahl < 1) {
|
if(ZiehstapelAnzahl < 1) { //ZiehstapelAnzahl könte durch direckten Medoden aufruf ersetzt werden????
|
||||||
//Alle Karten vom Ablagestapel ausßer letze auf den Ziehstapel verschieben
|
//Alle Karten vom Ablagestapel ausßer letze auf den Ziehstapel verschieben
|
||||||
for(int i = 0; i < 32; i++) {
|
for(int i = 0; i < 32; i++) {
|
||||||
if((kartensatz[i].getAblageort() == Ablageort.ABLAGESTAPEL) && (i != letztekarte)) {
|
if((kartensatz[i].getAblageort() == Ablageort.ABLAGESTAPEL) && (i != letztekarte)) {
|
||||||
@@ -78,14 +78,14 @@ public class Kartensatz {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
ZiehstapelAnzahl = getZiehstapelAnzahl();
|
ZiehstapelAnzahl = getZiehstapelAnzahl(); //ZiehstapelAnzahl könte durch direckten Medoden aufruf ersetzt werden????
|
||||||
//System.out.println("ZiehStapel Anzahl " + ZiehstapelAnzahl);
|
//System.out.println("ZiehStapel Anzahl " + ZiehstapelAnzahl);
|
||||||
if(ZiehstapelAnzahl > 0) {
|
if(ZiehstapelAnzahl > 0) { //ZiehstapelAnzahl könte durch direckten Medoden aufruf ersetzt werden????
|
||||||
//Ziekarte bestimmen und
|
//Ziekarte bestimmen und
|
||||||
//Zienummer auswählen
|
//Zienummer auswählen
|
||||||
//System.out.println("Nummer wählen");
|
//System.out.println("Nummer wählen");
|
||||||
Random random = new Random();
|
Random random = new Random();
|
||||||
int auswahl = random.nextInt(ZiehstapelAnzahl);
|
int auswahl = random.nextInt(ZiehstapelAnzahl); //ZiehstapelAnzahl könte durch direckten Medoden aufruf ersetzt werden????
|
||||||
//System.out.println("Karte Ziehen " + auswahl);
|
//System.out.println("Karte Ziehen " + auswahl);
|
||||||
|
|
||||||
//Wenn Karten auf dem Ziehspabel verfügbar sind
|
//Wenn Karten auf dem Ziehspabel verfügbar sind
|
||||||
|
Reference in New Issue
Block a user