From 8d4aa295666f4630aebecabb93b4d646c7e4a777 Mon Sep 17 00:00:00 2001 From: Sebastian Kacza Date: Mon, 11 Jan 2021 15:09:23 +0100 Subject: [PATCH] =?UTF-8?q?Spieler=20Level=20pr=C3=BCfung=20bei=20Texturen?= =?UTF-8?q?auswahl=20vorbereitet?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/de/jaujau/gui/texturenauswaehlen_GUI.java | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/src/de/jaujau/gui/texturenauswaehlen_GUI.java b/src/de/jaujau/gui/texturenauswaehlen_GUI.java index a005893..4319eca 100644 --- a/src/de/jaujau/gui/texturenauswaehlen_GUI.java +++ b/src/de/jaujau/gui/texturenauswaehlen_GUI.java @@ -13,6 +13,7 @@ import javax.swing.JPanel; import javax.swing.SwingConstants; import javax.swing.border.EmptyBorder; +import de.jaujau.daten.Spielerverwaltung; import de.jaujau.daten.Texturenpakete; import javax.swing.JComboBox; import javax.swing.JFileChooser; @@ -30,16 +31,18 @@ public class texturenauswaehlen_GUI extends JFrame{ private JComboBox comboBox; private JLabel vorschaubild; private JButton speichern, hinzufuegen, schliessen; + private Spielerverwaltung spielerverwaltung; /** * Konstruktor fpr das Fenster * @param texturenpakete */ - public texturenauswaehlen_GUI (Texturenpakete texturenpakete) { + public texturenauswaehlen_GUI (Texturenpakete texturenpakete, Spielerverwaltung spieler) { pakete = texturenpakete; erstelleFenster(); aktualisiereInhalt(); + spielerverwaltung = spieler; } @@ -130,7 +133,10 @@ public class texturenauswaehlen_GUI extends JFrame{ * Speichert die Auswahl des akutellen Paketes */ private void speichern() { -// if(spielerlevel >= pakete.getLevel(comboBox.getSelectedIndex())) { +// Austauschen sobalt Spielerverwaltung fertig +// if(spieler.getLevel() >= pakete.getLevel(comboBox.getSelectedIndex())) { +// pakete.setAktivesPaket(comboBox.getSelectedIndex()); +// aktualisiereBild(); // // } pakete.setAktivesPaket(comboBox.getSelectedIndex()); @@ -139,7 +145,7 @@ public class texturenauswaehlen_GUI extends JFrame{ /** - * Aktualaiset die Inhalte der ComboBox + * Aktualisiert die Inhalte der ComboBox */ private void aktualisiereInhalt() { comboBox.removeAllItems();