Karten Eigenschaften final gesetzet
This commit is contained in:
@@ -7,8 +7,8 @@ package de.jaujau.daten;
|
||||
* @author Sebastian Kacza
|
||||
*/
|
||||
public class Karte {
|
||||
private Farbe FARBE;
|
||||
private Wert WERT;
|
||||
private final Farbe FARBE;
|
||||
private final Wert WERT;
|
||||
private Ablageort Ablageort;
|
||||
|
||||
/**
|
||||
|
@@ -68,8 +68,8 @@ public class Kartensatz {
|
||||
public boolean ziehen(Spieler spieler) {
|
||||
//System.out.println("Start Ziehen");
|
||||
//Ziehstapel Prüfen
|
||||
int ZiehstapelAnzahl = getZiehstapelAnzahl();
|
||||
if(ZiehstapelAnzahl < 1) {
|
||||
int ZiehstapelAnzahl = getZiehstapelAnzahl(); //ZiehstapelAnzahl könte durch direckten Medoden aufruf ersetzt werden????
|
||||
if(ZiehstapelAnzahl < 1) { //ZiehstapelAnzahl könte durch direckten Medoden aufruf ersetzt werden????
|
||||
//Alle Karten vom Ablagestapel ausßer letze auf den Ziehstapel verschieben
|
||||
for(int i = 0; i < 32; i++) {
|
||||
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);
|
||||
if(ZiehstapelAnzahl > 0) {
|
||||
if(ZiehstapelAnzahl > 0) { //ZiehstapelAnzahl könte durch direckten Medoden aufruf ersetzt werden????
|
||||
//Ziekarte bestimmen und
|
||||
//Zienummer auswählen
|
||||
//System.out.println("Nummer wählen");
|
||||
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);
|
||||
|
||||
//Wenn Karten auf dem Ziehspabel verfügbar sind
|
||||
|
Reference in New Issue
Block a user