Klasse gelöscht

currentStatus
Vickvick2002 2025-01-03 13:40:46 +01:00
parent f3481c5b96
commit 12d66335f6
1 changed files with 0 additions and 51 deletions

View File

@ -1,51 +0,0 @@
package PR2.HitoriSpiel.GUI;
import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
public class GameBoardView extends JPanel {
private final JButton[][] cells; // Spielfeld als Buttons
public GameBoardView(int rows, int cols) {
this.setLayout(new GridLayout(rows, cols)); // Grid-Layout für das Spielfeld
cells = new JButton[rows][cols];
// Spielfeld-Buttons initialisieren
for (int row = 0; row < rows; row++) {
for (int col = 0; col < cols; col++) {
cells[row][col] = new JButton();
cells[row][col].setBackground(Color.LIGHT_GRAY);
int finalRow = row;
int finalCol = col;
// ActionListener für Button-Klick
cells[row][col].addActionListener(e -> toggleCellColor(finalRow, finalCol));
this.add(cells[row][col]);
}
}
}
// Methode zum Umschalten der Zellenfarbe
private void toggleCellColor(int row, int col) {
JButton button = cells[row][col];
if (button.getBackground() == Color.LIGHT_GRAY) {
button.setBackground(Color.BLACK);
} else if (button.getBackground() == Color.BLACK) {
button.setBackground(Color.WHITE);
} else {
button.setBackground(Color.LIGHT_GRAY);
}
}
// Methode zum Aktualisieren des Spielfelds (optional)
public void render(int[][] board) {
for (int row = 0; row < board.length; row++) {
for (int col = 0; col < board[row].length; col++) {
cells[row][col].setText(String.valueOf(board[row][col]));
}
}
}
}