Merge branch 'patch-1' of https://gitlab.imn.htwk-leipzig.de/weicker/inb1-a-jaujau.git into patch-1
This commit is contained in:
@@ -1,127 +1,12 @@
|
|||||||
package de.jaujau.daten;
|
package de.jaujau.daten;
|
||||||
|
|
||||||
import java.util.*;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Karte
|
* Class Karte
|
||||||
*/
|
*/
|
||||||
public class Karte {
|
public class Karte {
|
||||||
|
|
||||||
//
|
|
||||||
// Fields
|
|
||||||
//
|
|
||||||
|
|
||||||
private farbe FARBE;
|
|
||||||
private wert WERT;
|
|
||||||
private ablageort ablageort;
|
|
||||||
|
|
||||||
//
|
|
||||||
// Constructors
|
|
||||||
//
|
|
||||||
public Karte () { };
|
|
||||||
|
|
||||||
//
|
|
||||||
// Methods
|
|
||||||
//
|
|
||||||
|
|
||||||
|
|
||||||
//
|
|
||||||
// Accessor methods
|
|
||||||
//
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set the value of FARBE
|
|
||||||
* @param newVar the new value of FARBE
|
|
||||||
*/
|
|
||||||
public void setFARBE (farbe newVar) {
|
|
||||||
FARBE = newVar;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the value of FARBE
|
|
||||||
* @return the value of FARBE
|
|
||||||
*/
|
|
||||||
public farbe getFARBE () {
|
|
||||||
return FARBE;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set the value of WERT
|
|
||||||
* @param newVar the new value of WERT
|
|
||||||
*/
|
|
||||||
public void setWERT (wert newVar) {
|
|
||||||
WERT = newVar;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the value of WERT
|
|
||||||
* @return the value of WERT
|
|
||||||
*/
|
|
||||||
public wert getWERT () {
|
|
||||||
return WERT;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set the value of ablageort
|
|
||||||
* @param newVar the new value of ablageort
|
|
||||||
*/
|
|
||||||
public void setAblageort (ablageort newVar) {
|
|
||||||
ablageort = newVar;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the value of ablageort
|
|
||||||
* @return the value of ablageort
|
|
||||||
*/
|
|
||||||
public ablageort getAblageort () {
|
|
||||||
return ablageort;
|
|
||||||
}
|
|
||||||
|
|
||||||
//
|
|
||||||
// Other methods
|
|
||||||
//
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Erstellt eine neue Karte mit farbe und wert und ablageort = ziehstapel
|
|
||||||
* @param farbe
|
|
||||||
* @param wert
|
|
||||||
*/
|
|
||||||
public void karte(farbe farbe, wert wert)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return farbe
|
|
||||||
*/
|
|
||||||
public farbe getFarbe()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return wert
|
|
||||||
*/
|
|
||||||
public wert getWert()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return ablageort
|
|
||||||
*/
|
|
||||||
public ablageort getAblageort()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return ablageort
|
|
||||||
*/
|
|
||||||
public ablageort setAblageort()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -1,126 +1,12 @@
|
|||||||
package de.jaujau.daten;
|
package de.jaujau.daten;
|
||||||
|
|
||||||
import java.util.*;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Kartensatz
|
* Class Kartensatz
|
||||||
*/
|
*/
|
||||||
public class Kartensatz {
|
public class Kartensatz {
|
||||||
|
|
||||||
//
|
|
||||||
// Fields
|
|
||||||
//
|
|
||||||
|
|
||||||
private [Karte] kartensatz;
|
|
||||||
/**
|
|
||||||
* Speicherung der letzten Ablagestapelkarte als id aus dem kartensatz Array
|
|
||||||
*/
|
|
||||||
private unsigned int letztekarte;
|
|
||||||
|
|
||||||
//
|
|
||||||
// Constructors
|
|
||||||
//
|
|
||||||
public Kartensatz () { };
|
|
||||||
|
|
||||||
//
|
|
||||||
// Methods
|
|
||||||
//
|
|
||||||
|
|
||||||
|
|
||||||
//
|
|
||||||
// Accessor methods
|
|
||||||
//
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set the value of kartensatz
|
|
||||||
* @param newVar the new value of kartensatz
|
|
||||||
*/
|
|
||||||
public void setKartensatz ([Karte] newVar) {
|
|
||||||
kartensatz = newVar;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the value of kartensatz
|
|
||||||
* @return the value of kartensatz
|
|
||||||
*/
|
|
||||||
public [Karte] getKartensatz () {
|
|
||||||
return kartensatz;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set the value of letztekarte
|
|
||||||
* Speicherung der letzten Ablagestapelkarte als id aus dem kartensatz Array
|
|
||||||
* @param newVar the new value of letztekarte
|
|
||||||
*/
|
|
||||||
public void setLetztekarte (unsigned int newVar) {
|
|
||||||
letztekarte = newVar;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the value of letztekarte
|
|
||||||
* Speicherung der letzten Ablagestapelkarte als id aus dem kartensatz Array
|
|
||||||
* @return the value of letztekarte
|
|
||||||
*/
|
|
||||||
public unsigned int getLetztekarte () {
|
|
||||||
return letztekarte;
|
|
||||||
}
|
|
||||||
|
|
||||||
//
|
|
||||||
// Other methods
|
|
||||||
//
|
|
||||||
|
|
||||||
/**
|
|
||||||
* w<>hlt eine zuf<75>llige Karte mit Ablageort Ziehstapel und <20>ndert den Ablageort
|
|
||||||
* einer Karte auf den jeweiligen Spieler
|
|
||||||
* @param spieler
|
|
||||||
*/
|
|
||||||
public void ziehen(spieler spieler)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param spieler
|
|
||||||
* @param karte Array Index des Kartenstapels der abzulegenden Karte
|
|
||||||
*/
|
|
||||||
public void ablegen(Spieler spieler, unsigned int karte)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return unsigned int
|
|
||||||
*/
|
|
||||||
public unsigned int getletzteKarte()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param spieler
|
|
||||||
*/
|
|
||||||
public void getHand(Spieler spieler)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return Karte
|
|
||||||
* @param Kartenindex
|
|
||||||
*/
|
|
||||||
public Karte getKarte(unsigned int Kartenindex)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* <20>ndert Farbe der letzten Karte
|
|
||||||
* @param farbe
|
|
||||||
*/
|
|
||||||
public void setWunschfarbe(farbe farbe)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@@ -1,129 +1,12 @@
|
|||||||
package de.jaujau.daten;
|
package de.jaujau.daten;
|
||||||
|
|
||||||
import java.util.*;
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class Texturenpakete
|
* Class Texturenpakete
|
||||||
*/
|
*/
|
||||||
public class Texturenpakete {
|
public class Texturenpakete {
|
||||||
|
|
||||||
//
|
|
||||||
// Fields
|
|
||||||
//
|
|
||||||
/**
|
|
||||||
|
|
||||||
* Arrayliste mit folgenden Spalten
|
|
||||||
*
|
|
||||||
* level: unsigned int | name: String | pfad: Path */
|
|
||||||
|
|
||||||
private arraylist texturenliste;
|
|
||||||
private unsigned int aktiveTextur;
|
|
||||||
|
|
||||||
//
|
|
||||||
// Constructors
|
|
||||||
//
|
|
||||||
public Texturenpakete () { };
|
|
||||||
|
|
||||||
//
|
|
||||||
// Methods
|
|
||||||
//
|
|
||||||
|
|
||||||
|
|
||||||
//
|
|
||||||
// Accessor methods
|
|
||||||
//
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set the value of texturenliste
|
|
||||||
* Arrayliste mit folgenden Spalten
|
|
||||||
*
|
|
||||||
* level: unsigned int | name: String | pfad: Path
|
|
||||||
* @param newVar the new value of texturenliste
|
|
||||||
*/
|
|
||||||
public void setTexturenliste (arraylist newVar) {
|
|
||||||
texturenliste = newVar;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the value of texturenliste
|
|
||||||
* Arrayliste mit folgenden Spalten
|
|
||||||
*
|
|
||||||
* level: unsigned int | name: String | pfad: Path
|
|
||||||
* @return the value of texturenliste
|
|
||||||
*/
|
|
||||||
public arraylist getTexturenliste () {
|
|
||||||
return texturenliste;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Set the value of aktiveTextur
|
|
||||||
* @param newVar the new value of aktiveTextur
|
|
||||||
*/
|
|
||||||
public void setAktiveTextur (unsigned int newVar) {
|
|
||||||
aktiveTextur = newVar;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Get the value of aktiveTextur
|
|
||||||
* @return the value of aktiveTextur
|
|
||||||
*/
|
|
||||||
public unsigned int getAktiveTextur () {
|
|
||||||
return aktiveTextur;
|
|
||||||
}
|
|
||||||
|
|
||||||
//
|
|
||||||
// Other methods
|
|
||||||
//
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param wert
|
|
||||||
* @param farbe
|
|
||||||
*/
|
|
||||||
public void getTextur(wert wert, farbe farbe)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return boolean
|
|
||||||
* @param pfad
|
|
||||||
*/
|
|
||||||
public boolean pruefe(Path pfad)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return Path
|
|
||||||
*/
|
|
||||||
public Path dateiauswahl()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param indexNr
|
|
||||||
*/
|
|
||||||
public void setPaket(int indexNr)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return list
|
|
||||||
*/
|
|
||||||
public list getListe()
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param pfad
|
|
||||||
*/
|
|
||||||
private void einlesen(Path pfad)
|
|
||||||
{
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user