From 55dd68ab81c9ca0b9ba2c24cca43df429de5a6cb Mon Sep 17 00:00:00 2001 From: ekresse Date: Tue, 15 Dec 2020 14:46:29 +0100 Subject: [PATCH] =?UTF-8?q?GUI=20Update=20-=20Kartenanzeige=20und=20Men?= =?UTF-8?q?=C3=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/de/jaujau/gui/GUI.java | 124 +++++++++-- src/de/jaujau/gui/Hilfe_GUI.java | 61 +++--- src/de/jaujau/gui/Menue_GUI.java | 305 ++++++++------------------ src/de/jaujau/gui/Navigation_GUI.java | 5 - src/de/jaujau/gui/Spiel_GUI.java | 83 ++++--- 5 files changed, 289 insertions(+), 289 deletions(-) diff --git a/src/de/jaujau/gui/GUI.java b/src/de/jaujau/gui/GUI.java index 9c95836..1ac4851 100644 --- a/src/de/jaujau/gui/GUI.java +++ b/src/de/jaujau/gui/GUI.java @@ -1,45 +1,131 @@ package de.jaujau.gui; -import java.awt.event.ActionEvent; -import java.awt.event.ActionListener; import javax.swing.JFrame; +import javax.swing.JPanel; +import de.jaujau.daten.Spielerverwaltung; +import de.jaujau.daten.Texturenpakete; + +import java.awt.BorderLayout; +import java.awt.Color; +import java.awt.Dimension; +import javax.swing.JLabel; +import javax.swing.ImageIcon; +import javax.swing.SwingConstants; +import java.awt.event.MouseAdapter; +import java.awt.event.MouseEvent; +import java.awt.FlowLayout; +import javax.swing.BoxLayout; /** * Class GUI */ -public class GUI extends JFrame implements ActionListener{ +public class GUI extends JFrame{ // // Fields // private static final long serialVersionUID = 1L; + private Spielerverwaltung spielerverwaltung; + private boolean menuehidden = false; + Hilfe_GUI frame = new Hilfe_GUI(); // // Constructors // - public GUI () { } - -@Override -public void actionPerformed(ActionEvent e) { - // TODO Auto-generated method stub - -} + public GUI (Spielerverwaltung speicherung) { + setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); + setTitle("JauJau"); + setPreferredSize(new Dimension(800, 500)); + setSize(982, 642); + this.spielerverwaltung = speicherung; + getContentPane().setLayout(new BorderLayout(0, 0)); + + JPanel Menue = new JPanel(); + Menue.setPreferredSize(new Dimension(270, 450)); + getContentPane().add(Menue, BorderLayout.WEST); + Menue.setLayout(new BoxLayout(Menue, BoxLayout.X_AXIS)); + + JPanel MenueIcon = new JPanel(); + MenueIcon.setPreferredSize(new Dimension(50, 450)); + MenueIcon.setBackground(new Color(15, 19, 52)); + Menue.add(MenueIcon); + MenueIcon.setLayout(null); + + JPanel help = new JPanel(); + help.setBounds(0, 0, 50, 50); + help.setBackground(new Color(15, 19, 52)); + MenueIcon.add(help); + + JLabel helplable = new JLabel(""); + helplable.setHorizontalTextPosition(SwingConstants.CENTER); + helplable.setHorizontalAlignment(SwingConstants.CENTER); + helplable.setIcon(new ImageIcon(GUI.class.getResource("/img/help.png"))); + help.add(helplable); + + JPanel menuebtn = new JPanel(); + menuebtn.setBounds(0, 50, 50, 50); + MenueIcon.add(menuebtn); + menuebtn.setLayout(new BorderLayout(0, 0)); + + JLabel menuelabel = new JLabel(""); + menuelabel.setHorizontalTextPosition(SwingConstants.CENTER); + menuelabel.setHorizontalAlignment(SwingConstants.CENTER); + menuelabel.setIcon(new ImageIcon(GUI.class.getResource("/img/menue.png"))); + menuebtn.add(menuelabel); + menuebtn.setBackground(new Color(15, 19, 52)); + + JPanel menuhide = new JPanel(); + menuhide.setPreferredSize(new Dimension(220, 200)); + menuhide.setBackground(new Color(25, 29, 74)); + Menue.add(menuhide); + menuhide.setLayout(new BorderLayout(0, 0)); + + JPanel dashboard = new JPanel(); + dashboard.setBackground(new Color(73, 128, 242)); + getContentPane().add(dashboard, BorderLayout.CENTER); + dashboard.setLayout(new BorderLayout(0, 0)); + + Spiel_GUI Spiel_GUI = new Spiel_GUI(); + dashboard.add(Spiel_GUI); + + + menuebtn.addMouseListener(new MouseAdapter() { + @Override + public void mouseClicked(MouseEvent e) { + if(menuehidden == true) { + menuhide.setVisible(false); + Menue.setPreferredSize(new Dimension(50, Menue.getHeight())); + menuehidden = false; + }else{ + menuhide.setVisible(true); + Menue.setPreferredSize(new Dimension(270, Menue.getHeight())); + menuehidden = true; + } + + } + }); + + + help.addMouseListener(new MouseAdapter() { + public void mouseClicked(MouseEvent e) { + if(frame.isShowing() == true) { + frame.setVisible(false); + }else{ + frame.setVisible(true); + } + + } + }); + + } // // Methods // - - // - // Accessor methods - // - - // - // Other methods - // - + } diff --git a/src/de/jaujau/gui/Hilfe_GUI.java b/src/de/jaujau/gui/Hilfe_GUI.java index 34db5d8..a1ea6c1 100644 --- a/src/de/jaujau/gui/Hilfe_GUI.java +++ b/src/de/jaujau/gui/Hilfe_GUI.java @@ -1,34 +1,43 @@ package de.jaujau.gui; -import java.util.*; +import java.awt.BorderLayout; +import java.awt.EventQueue; +import javax.swing.JFrame; +import javax.swing.JPanel; +import javax.swing.border.EmptyBorder; +import javax.swing.JLabel; +import javax.swing.SwingConstants; +import java.awt.Font; +import javax.swing.JScrollPane; +import javax.swing.JTextArea; -/** - * Class Hilfe_GUI - */ -public class Hilfe_GUI { +public class Hilfe_GUI extends JFrame { - // - // Fields - // + private JPanel contentPane; - - // - // Constructors - // - public Hilfe_GUI () { }; - - // - // Methods - // - - - // - // Accessor methods - // - - // - // Other methods - // + /** + * Create the frame. + */ + public Hilfe_GUI() { + setBounds(100, 100, 588, 382); + contentPane = new JPanel(); + contentPane.setBorder(new EmptyBorder(5, 5, 5, 5)); + contentPane.setLayout(new BorderLayout(0, 0)); + setContentPane(contentPane); + + JLabel lblNewLabel = new JLabel("Hilfe"); + lblNewLabel.setFont(new Font("Tahoma", Font.PLAIN, 20)); + lblNewLabel.setHorizontalAlignment(SwingConstants.CENTER); + contentPane.add(lblNewLabel, BorderLayout.NORTH); + + JScrollPane scrollPane = new JScrollPane(); + contentPane.add(scrollPane, BorderLayout.CENTER); + + JTextArea txtrJaujauJaujauIst = new JTextArea(); + txtrJaujauJaujauIst.setEditable(false); + txtrJaujauJaujauIst.setText("JauJau\r\nJauJau ist ein Java basiertes Spiel was nach auf dem Spielprinzip von MauMau aufbaut.\r\n\r\nProduktvision\r\nJauJau - \"Java-MauMau\" Interaktives Spieldesign, welches die traditionellen\r\nSpielmechaniken von MauMau digitalisiert und es m\u00F6glich macht auch alleine den\r\nbeliebten Klassiker zu spielen. Individuell - durch Spielerfolg Freischaltung\r\nneuer Kartendesigns.\r\n\r\nSpielidee\r\n\r\nKartenspiel auf Basis von MauMau.\r\nEin Spieler spielt gegen eine Computer Spieler\r\nDie Punktest\u00E4nde der Spieler werden Gespeichert\r\nMit h\u00F6heren Punktestand werden zus\u00E4tzliche Kartentexturenpakete freigeschaltete\r\n\r\n\r\nSpielregeln\r\nAkionskarten:\r\n\r\n7 - zwei ziehen\r\n8 - Aussetzen\r\nBube - W\u00FCnscher\r\n\r\nZusatzregeln:\r\n\r\n9 - Richtungswechsel\r\n8 - Stopper hebt Aktionskarte 7 \"zwei ziehen\" auf\r\n10 - Allesleger (darf auf jede Karte gelegt werden)\r\n\r\n\r\nFeatures\r\n\r\nAutomatischer \"Jau\" Ausruf bei letzter Karte und \"JauJau\" beim Ablegen der letzten\r\nverschiedene Texturenpackete f\u00FCr Kartens\u00E4tze\r\n\r\n\r\nAnforderungen\r\n\r\nKompatibel mit verschieden Betriebssystemen\r\nSkalierung der GUI\r\nJava 11 Support"); + scrollPane.setViewportView(txtrJaujauJaujauIst); + } } diff --git a/src/de/jaujau/gui/Menue_GUI.java b/src/de/jaujau/gui/Menue_GUI.java index bc40257..788820e 100644 --- a/src/de/jaujau/gui/Menue_GUI.java +++ b/src/de/jaujau/gui/Menue_GUI.java @@ -1,240 +1,119 @@ package de.jaujau.gui; - -import java.awt.EventQueue; -import java.awt.Image; - -import javax.swing.JFrame; -import javax.swing.JButton; -import java.awt.BorderLayout; -import javax.swing.JPanel; -import javax.imageio.ImageIO; -import javax.swing.BoxLayout; -import javax.swing.Icon; - +import java.awt.CardLayout; import java.awt.Color; -import java.awt.Dimension; + import javax.swing.JLabel; -import javax.swing.ImageIcon; -import javax.swing.SwingConstants; -import javax.swing.SwingUtilities; +import javax.swing.JPanel; +import javax.swing.JScrollPane; +import javax.swing.JTable; import de.jaujau.daten.Spielerverwaltung; - -import java.awt.event.ActionEvent; -import java.awt.event.ActionListener; -import java.awt.event.MouseAdapter; -import java.awt.event.MouseEvent; -import java.awt.image.BufferedImage; -import java.io.File; -import java.io.IOException; -import java.net.URL; +import javax.swing.GroupLayout; +import javax.swing.GroupLayout.Alignment; +import java.awt.BorderLayout; import java.awt.Component; +import java.awt.FlowLayout; +import javax.swing.SwingConstants; +import javax.swing.table.DefaultTableModel; + import java.awt.Font; -public class Menue_GUI extends GUI implements ActionListener { - /** - * - */ - private static final long serialVersionUID = 1L; - private Spielerverwaltung spielerverwaltung; - private JPanel contentPane; - private boolean shown = true; - - +public class Menue_GUI +extends JPanel { - /** - * Create the application. - * @param speicherung - */ + private CardLayout cardLayout; + + private JPanel panel1, panel2, panel3; + private int sizemenu = 270; + + + // Konstruktor public Menue_GUI(Spielerverwaltung speicherung) { - this.spielerverwaltung = speicherung; - speicherung.getSpieler(); - System.out.println("Menü-GUI aufgerufen"); - initialize(this.spielerverwaltung); - } - /** - * Initialize the contents of the frame. - */ - - //Test GUI für JauJau - - private void initialize(Spielerverwaltung speicherung) { - this.spielerverwaltung = speicherung; - setBounds(100, 100, 963, 762); - setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); - getContentPane().setLayout(new BorderLayout(0, 0)); - setVisible(true); - - JPanel panel_top = new JPanel(); - panel_top.setPreferredSize(new Dimension(200, 100)); - panel_top.setBackground(new Color(0, 0, 128)); - this.getContentPane().add(panel_top, BorderLayout.NORTH); - panel_top.setLayout(new BorderLayout(0, 0)); - - JLabel lblNewLabel_1 = new JLabel("JauJau"); - lblNewLabel_1.setForeground(Color.WHITE); - lblNewLabel_1.setHorizontalAlignment(SwingConstants.CENTER); - lblNewLabel_1.setInheritsPopupMenu(false); - lblNewLabel_1.setIgnoreRepaint(false); - lblNewLabel_1.setFont(new Font("Tahoma", Font.BOLD, 40)); - lblNewLabel_1.setVerticalAlignment(SwingConstants.CENTER); - panel_top.add(lblNewLabel_1, BorderLayout.CENTER); - - JPanel panel_side = new JPanel(); - panel_side.setBackground(new Color(0, 51, 153)); - panel_side.setPreferredSize(new Dimension(270, 400)); - this.getContentPane().add(panel_side, BorderLayout.WEST); - panel_side.setLayout(new BorderLayout(0, 0)); - - JPanel panel_buttons = new JPanel(); - panel_buttons.setBackground(new Color(0, 0, 128)); - panel_buttons.setPreferredSize(new Dimension(50, 200)); - panel_side.add(panel_buttons, BorderLayout.WEST); - panel_buttons.setLayout(null); - - JPanel panel = new JPanel(); - panel.setBounds(0, 0, 50, 50); - panel.setBackground(new Color(0, 0, 153)); - panel.setPreferredSize(new Dimension(50, 50)); - panel_buttons.add(panel); - panel.setLayout(new BorderLayout(0, 0)); + setBorder(javax.swing.BorderFactory.createTitledBorder("Content")); + cardLayout = new CardLayout(); - JLabel minimize = new JLabel(""); - minimize.addMouseListener(new MouseAdapter() { - @Override - public void mouseClicked(MouseEvent e) { - if(shown == true) { - panel_side.setPreferredSize(new Dimension(50, panel_side.getHeight())); - System.out.println("Update GUI 50"); - panel_side.revalidate(); - panel_side.repaint(); - shown = false; - }else{ - panel_side.setPreferredSize(new Dimension(270, panel_side.getHeight())); - System.out.println("Update GUI 270"); - panel_side.revalidate(); - panel_side.repaint(); - shown = true; - } - } - }); - minimize.setPreferredSize(new Dimension(50, 50)); - minimize.setAlignmentX(Component.CENTER_ALIGNMENT); - minimize.setHorizontalTextPosition(SwingConstants.CENTER); - minimize.setHorizontalAlignment(SwingConstants.CENTER); - ImageIcon imageIcon = new ImageIcon(new ImageIcon("C:\\Users\\Elmar\\Pictures\\exit.png").getImage().getScaledInstance(40, 40, Image.SCALE_DEFAULT)); - minimize.setIcon(imageIcon); - panel.add(minimize, BorderLayout.CENTER); + this.setLayout(cardLayout); - JPanel buttons = new JPanel(); - buttons.setBackground(new Color(51, 51, 153)); - panel_side.add(buttons, BorderLayout.CENTER); - buttons.setLayout(new BorderLayout(0, 0)); + // Objekte der Panel erzeugen, die angezeigt werden sollen + panel1 = new JPanel(); + panel1.setName("panel1"); + panel2 = new JPanel(); + panel2.setName("panel2"); + panel3 = new JPanel(); + panel3.setName("panel3"); - JPanel panel_4 = new JPanel(); - panel_4.setBackground(new Color(0, 51, 153)); - buttons.add(panel_4, BorderLayout.CENTER); - panel_4.setLayout(null); + panel1.setBackground(Color.YELLOW); + panel2.setBackground(Color.WHITE); + panel3.setBackground(Color.GREEN); - JLabel start = new JLabel("Spiel starten"); - start.addMouseListener(new MouseAdapter() { - @Override - public void mouseClicked(MouseEvent e) { - //Spiel starten Spiel_GUI und schließe Menue_GUI (wechsel) und Spiellogikaufrufen - System.out.println("Start Game"); - } - }); - start.setBackground(Color.WHITE); - start.setForeground(Color.WHITE); - start.setFont(new Font("Segoe UI", Font.PLAIN, 26)); - start.setHorizontalAlignment(SwingConstants.CENTER); - start.setAlignmentX(Component.CENTER_ALIGNMENT); - start.setBounds(0, 0, 220, 31); - panel_4.add(start); + JLabel label1 = new JLabel("Startseite"); + label1.setAlignmentX(Component.CENTER_ALIGNMENT); + JLabel label2 = new JLabel("Highscore"); + label2.setFont(new Font("Tahoma", Font.PLAIN, 18)); + label2.setHorizontalAlignment(SwingConstants.CENTER); + label2.setAlignmentX(Component.CENTER_ALIGNMENT); - JLabel score = new JLabel("Highscore"); - score.addMouseListener(new MouseAdapter() { - @Override - public void mouseClicked(MouseEvent e) { - //Rechtes Panel ändern und Highscore aus jaujaudaten abrufen. - System.out.println("Highscore"); - } - }); - score.setBackground(Color.WHITE); - score.setForeground(Color.WHITE); - score.setFont(new Font("Segoe UI", Font.PLAIN, 26)); - score.setHorizontalAlignment(SwingConstants.CENTER); - score.setAlignmentX(Component.CENTER_ALIGNMENT); - score.setBounds(0, 42, 220, 31); - panel_4.add(score); - JLabel settings = new JLabel("Einstellungen"); - settings.addMouseListener(new MouseAdapter() { - @Override - public void mouseClicked(MouseEvent e) { - //Rechtes Panel ändern und Einstellungen aufrufen - System.out.println("Highscore"); - } - }); - settings.setBackground(Color.WHITE); - settings.setForeground(Color.WHITE); - settings.setFont(new Font("Segoe UI", Font.PLAIN, 26)); - settings.setHorizontalAlignment(SwingConstants.CENTER); - settings.setAlignmentX(Component.CENTER_ALIGNMENT); - settings.setBounds(0, 84, 220, 31); - panel_4.add(settings); + renderHighscore(); //Highscore Tabelle wird geladen + panel2.setVisible( true ); + - JLabel help = new JLabel("Hilfe"); - help.addMouseListener(new MouseAdapter() { - @Override - public void mouseClicked(MouseEvent e) { - //Starte Hilfe GUI Menue_GUI bleibt geöffnet - System.out.println("Hilfe"); - } - }); - help.setBackground(Color.WHITE); - help.setForeground(Color.WHITE); - help.setFont(new Font("Segoe UI", Font.PLAIN, 26)); - help.setHorizontalAlignment(SwingConstants.CENTER); - help.setAlignmentX(Component.CENTER_ALIGNMENT); - help.setBounds(0, 126, 220, 31); - panel_4.add(help); - JPanel panel_main = new JPanel(); - panel_main.setPreferredSize(new Dimension(600, 600)); - this.getContentPane().add(panel_main, BorderLayout.CENTER); - panel_main.setLayout(new BoxLayout(panel_main, BoxLayout.X_AXIS)); + JLabel label3 = new JLabel("Panel 3: Spiel"); + panel2.add(label2, BorderLayout.NORTH); + panel3.add(label3); - JPanel panel_1 = new JPanel(); - panel_1.setBackground(new Color(102, 153, 255)); - panel_main.add(panel_1); - panel_1.setLayout(new BorderLayout(0, 0)); + this.add(panel1, "Start"); + panel1.setLayout(new FlowLayout(FlowLayout.CENTER, 5, 5)); + panel1.add(label1); - JPanel panel_2 = new JPanel(); - panel_2.setBackground(new Color(51, 153, 204)); - panel_1.add(panel_2, BorderLayout.CENTER); - panel_2.setLayout(new BorderLayout(0, 0)); + JLabel lblNewLabel_1 = new JLabel("New label"); + panel1.add(lblNewLabel_1); + this.add(panel2, "Highscore"); + this.add(panel3, "Spiel"); + + JPanel panel4 = new JPanel(); + panel4.setBackground(Color.LIGHT_GRAY); + this.add(panel4, "Einstellungen"); + + JLabel lblNewLabel = new JLabel("Einstellungen"); + panel4.add(lblNewLabel); + + } + + + public void showPanel(String panel) { + + cardLayout.show(this, panel); + + } + + + public void renderHighscore() { + + String[][] rowData = {{ "Seb", "245" }, { "Elmo", "240" }, { "Moritz","220" }, { "Alaa Aldin", "217" }, {"Fabian", "215"}}; //Bsp. Datensatz muss noch entfernt werden. + + String[] columnNames = {"Name", "Punkte"}; + panel2.setLayout(new BorderLayout(0, 0)); + JTable table = new JTable(); //Leere Tabelle + DefaultTableModel tableModel = new DefaultTableModel(rowData, columnNames) { //Tabelle formatieren und Zellen nicht bearbeitbar machen + private static final long serialVersionUID = 838285314713L; + public boolean isCellEditable(int row, int column) { + //all cells false + return false; + } + }; + table.setAutoCreateRowSorter(true); //Tabelle Sortierbar durch Tabellenkopf + table.getTableHeader().setReorderingAllowed(false); //Tabelle nicht mehr drag and drop + table.setModel(tableModel); + + + panel2.add( new JScrollPane( table ) ); - JLabel lblNewLabel_2 = new JLabel("Name: "); - lblNewLabel_2.setForeground(Color.WHITE); - lblNewLabel_2.setFont(new Font("Segoe UI", Font.PLAIN, 26)); - lblNewLabel_2.setBackground(new Color(51, 153, 204)); - panel_2.add(lblNewLabel_2, BorderLayout.NORTH); - lblNewLabel_2.setHorizontalAlignment(SwingConstants.CENTER); - lblNewLabel_2.setVerticalAlignment(SwingConstants.TOP); - lblNewLabel_2.setText("Name: " + speicherung.getName()); - JPanel panel_3 = new JPanel(); - panel_3.setBackground(new Color(51, 153, 204)); - panel_2.add(panel_3, BorderLayout.CENTER); } - @Override - public void actionPerformed(ActionEvent e) { - // TODO Auto-generated method stub - - } -} +} \ No newline at end of file diff --git a/src/de/jaujau/gui/Navigation_GUI.java b/src/de/jaujau/gui/Navigation_GUI.java index 127914a..35f487a 100644 --- a/src/de/jaujau/gui/Navigation_GUI.java +++ b/src/de/jaujau/gui/Navigation_GUI.java @@ -28,11 +28,6 @@ import java.awt.GridLayout; import java.awt.GridBagLayout; import java.awt.GridBagConstraints; import java.awt.Insets; -import net.miginfocom.swing.MigLayout; -import com.jgoodies.forms.layout.FormLayout; -import com.jgoodies.forms.layout.ColumnSpec; -import com.jgoodies.forms.layout.FormSpecs; -import com.jgoodies.forms.layout.RowSpec; public class Navigation_GUI diff --git a/src/de/jaujau/gui/Spiel_GUI.java b/src/de/jaujau/gui/Spiel_GUI.java index 8622e81..ced118d 100644 --- a/src/de/jaujau/gui/Spiel_GUI.java +++ b/src/de/jaujau/gui/Spiel_GUI.java @@ -1,34 +1,65 @@ package de.jaujau.gui; +import java.awt.Image; +import javax.swing.JPanel; +import javax.swing.BoxLayout; +import java.awt.Dimension; +import java.awt.Graphics; -import java.util.*; +import javax.swing.ImageIcon; +import de.jaujau.daten.Kartensatz; +import de.jaujau.daten.Spielerverwaltung; +import de.jaujau.daten.Texturenpakete; -/** - * Class Spiel_GUI - */ -public class Spiel_GUI { +import java.awt.event.ActionEvent; +import java.awt.event.ActionListener; - // - // Fields - // +public class Spiel_GUI extends JPanel implements ActionListener { - - // - // Constructors - // - public Spiel_GUI () { }; - - // - // Methods - // - - - // - // Accessor methods - // - - // - // Other methods - // + /** + * + */ + private static final long serialVersionUID = 1L; + private Spielerverwaltung spielerverwaltung; + Texturenpakete texturen = new Texturenpakete(); + /** + * Create the application. + * @param speicherung + */ + public Spiel_GUI() { + setLayout(null); + System.out.println("Spiel_GUI: Spiel-GUI aufgerufen"); + initialize(spielerverwaltung); + } + /** + * Initialize the contents of the frame. + */ + + //Test GUI für JauJau + + private void initialize(Spielerverwaltung speicherung) { + this.spielerverwaltung = speicherung; + setBounds(100, 100, 963, 762); + JPanel panel_main = new JPanel(); + panel_main.setPreferredSize(new Dimension(600, 600));; + panel_main.setLayout(new BoxLayout(panel_main, BoxLayout.X_AXIS)); + + + texturen.addPaket("C:\\Users\\Elmar\\Downloads\\StandartTexturenBeta2.zip"); + texturen.setAktivesPaket(0); + + + } + + public void actionPerformed(ActionEvent e) { + // TODO Auto-generated method stub + + } + + public void paint(Graphics g) { + g.drawImage(texturen.getTextur(31), 50, 50, null); + + + } }