初学者简单的8车比赛

时间:2012-03-07 17:39:57

标签: java mouseevent

嗨,我是java的新手,我想我会尝试制作一个用户实际上尝试自己解决8个皇后问题的游戏。然而,它开始8个车的难度增加,最多14个主教,然后是8个皇后。

我已经成功创建了棋盘。我的mouselistener有问题...板上的每个方块都是一个按钮,当点击时我的意图是该方块将改变颜色以指示它被点击,然后所有不能再次点击的方块也将改变为指示在比赛中出局。

单击方框时,似乎不执行任何操作。 对不起,我知道它的琐碎。 感谢。

import javax.swing.*;
import java.awt.*;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;


public class rooks extends JFrame implements MouseListener{

    private final int BOARD_SIZE = 8;
    private final int BOARD_SIZE_COLS = 8;
    private final int BOARD_SIZE_ROWS = 8;
    // private JTextField bottom = new JTextField("")                                                   ");
    // private JLabel bannerl = new JLabel("The game");
    // private JButton queens = new JButton(" Play Queens ");
    private JButton rooks = new JButton(" Play Rooks ");
    // private JButton bishops = new JButton(" Play Knights ");
    private JButton[][] cboard = new JButton[BOARD_SIZE][BOARD_SIZE];
    private JTextArea bottomtextarea = new JTextArea();




    // constructor creating the chessboard
    public rooks(){
        this.setSize(500, 500);
        this.setTitle("rooks");
        // this.setIconImage();

        // create JPanels and add JComponents
        JPanel main = new JPanel(new BorderLayout());
        this.setContentPane(main);

        JPanel north = new JPanel();
        north.setLayout(new GridLayout(1,3));
        main.add(north, BorderLayout.NORTH);
        // north.add(queens);
        north.add(rooks);
        // north.add(bishops);

        JPanel south = new JPanel();
        main.add(south, BorderLayout.SOUTH);
        south.add(bottomtextarea);
        bottomtextarea.setEditable(false);
        bottomtextarea.setVisible(true);

        // create grid (actual chessboard) and initialise each button with no char
        JPanel chessBoard = new JPanel(new GridLayout(BOARD_SIZE, BOARD_SIZE));
        main.add(chessBoard, BorderLayout.CENTER);
        for (int i=0; i<BOARD_SIZE_ROWS; i++){
            for(int j=0; j<BOARD_SIZE_COLS; j++){
                cboard[i][j] = new JButton("");
                chessBoard.add(cboard[i][j]);

                // as it loops add colour to the board, if (i+j=even then white, otherwise black)
                 if ((i + j) % 2 == 0) {
                            cboard[i][j].setBackground(Color.black);
                        } 
                 else {
                            cboard[i][j].setBackground(Color.white);
                        }   
            }
        }

        cboard[7][7].addMouseListener(this);


        this.setResizable(false);
        this.setVisible(true);
        this.setDefaultCloseOperation(EXIT_ON_CLOSE);

        }

    public void mousePressed(MouseEvent e){

    }
    public void mouseReleased(MouseEvent e) {

     }

     public void mouseEntered(MouseEvent e) {

     }

     public void mouseExited(MouseEvent e) {

     }

     public void mouseClicked(MouseEvent e) {
        System.out.print("it has been clicked");
     }

     void saySomething(String eventDescription, MouseEvent e) {

    }





}

2 个答案:

答案 0 :(得分:1)

您的代码正常运行。我运行它,当我点击7-7广场(这是右下角的那个)时,我收到消息:“它已被点击”。

由于您已将鼠标侦听器仅添加到此方块,因此代码的行为符合预期。

但是你应该重构一些事情:

  • 为什么要定义BOARD_SIZE,BOARD_SIZE_COLS,BOARD_SIZE_ROWS?如果您只使用二次游戏板,则只需要BOARD_SIZE,如果没有,则不需要BOARD_SIZE。
  • 以大写形式编写类的第一个字母的约定。所以这是Rooks而不是rooks
  • 您需要将听众添加到主板的每个方块而不是只有一个

这应该足够开始了。

答案 1 :(得分:0)

您只将MouseListener添加到最后一个按钮,即JButton at cboard [7] [7]。

  • 为什么使用MouseListener而不是JButtons的ActionListener?这毫无意义。
  • 为什么不在for循环中添加一个ActionListener到所有 JButtons?