0

次のように設定する必要がある三目並べ GUI を作成しようとしています。

1) フレームは 2 つのペインで構成されるグリッドで、左側のペインにはボードとして機能する 9 つのボタンのグリフがあります。ユーザーがラジオ ボタンを使用して選択した記号に基づいて、ゲームボードをクリックすると、「X」または「O」のいずれかが表示される必要があります。

私のマウス リスナ コードは別のクラスにあるため、ユーザーがクリックしたものを取得する方法がわかりません。

これが私のコードです。この問題を克服するために、正しい方向への微調整をお願いします。

 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
 package samples;

import java.awt.Dimension;
import java.awt.FlowLayout;
import java.awt.GridLayout;
import java.awt.event.MouseAdapter;
import java.awt.event.MouseEvent;
import javax.swing.ButtonGroup;
import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.JLayeredPane;
import javax.swing.JPanel;
import javax.swing.JRadioButton;
import javax.swing.JSplitPane;
import static javax.swing.WindowConstants.DISPOSE_ON_CLOSE;

/**
*
* @author saikrishnan.srivat
*/
public class TicTacToe extends JFrame {

/*declare the components of the window*/
JPanel iconPanel;
JPanel tictactoeBoard;
JPanel emptyPanel;
JLabel chooseLabel;
JRadioButton xButton;
JRadioButton oButton;
ButtonGroup bg;
JButton resetButton;
JButton exitButton;
JButton undoButton;
JSplitPane rightPane;
JSplitPane pane;
MouseAdapterMod mam;

public TicTacToe() {

    iconPanel = new JPanel();
    tictactoeBoard = new JPanel();
    emptyPanel = new JPanel();
    chooseLabel = new JLabel("Choose your symbol :");
    xButton = new JRadioButton("X");
    oButton = new JRadioButton("O");
    bg = new ButtonGroup();
    bg.add(xButton);
    bg.add(oButton);

    /*add the label and the radio buttons too the empty panel*/
    emptyPanel.add(chooseLabel);
    emptyPanel.add(xButton);
    emptyPanel.add(oButton);
    emptyPanel.setLayout(new FlowLayout());
    /*add the exit,undo and reset buttons to the icon panel*/
    iconPanel.setLayout(new GridLayout(3, 1, 3, 3));
    resetButton = new JButton("Reset");
    exitButton = new JButton("Exit");
    undoButton = new JButton("Undo Move");
    iconPanel.add(resetButton);
    iconPanel.add(exitButton);
    iconPanel.add(undoButton);

    /*Set layout of the tictactoe board and add the game buttons to it */
    tictactoeBoard.setLayout(new GridLayout(3, 3));
    /* Mouse adapter object that listens to the buttons in the tic tac toe board */
    mam = new MouseAdapterMod();
    for (int i = 0; i < 9; i++) {
        JButton button = new JButton("");
        button.addMouseListener(mam);
        tictactoeBoard.add(button);     
    }
    /*add the icon panel and the empty panel to the right pane*/
    rightPane = new JSplitPane(JSplitPane.VERTICAL_SPLIT, iconPanel, emptyPanel);

    pane = new JSplitPane(JSplitPane.HORIZONTAL_SPLIT, tictactoeBoard, rightPane);
    add(pane);

    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    setSize(400, 400);
    //setMaximumSize(new Dimension(500, 500));
    setMinimumSize(new Dimension(700, 500));
    setLocationRelativeTo(null);
    pack();
    setTitle("Tic Tac Toe");
    setLocationRelativeTo(null);
    setVisible(true);
 }
}  

class MouseAdapterMod extends MouseAdapter {
/*Set 'X' or 'O' based the selected radio button- how to achieve this? */
    public void mousePressed(MouseEvent e) {
    //JButton button = (JButton)e.getSource();
    //button.setText("");
    }
}
4

2 に答える 2

1

私の提案は、JButton の配列を ActionListener と組み合わせて使用​​することです。先ほど書いた次の簡単な SSCCE を試してみて、良いアイデアが得られるかどうかを確認してください: (9 つのボタンのいずれかをクリックすると、コンソールにボタン番号が書き込まれます)

import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;

import javax.swing.JButton;
import javax.swing.JFrame;

class test extends JFrame implements ActionListener
{
JButton button[] = new JButton[9];
public test()
{
    init();
    initializeAndAddButtons();
}

private void init()
{
    this.setLayout(new GridLayout(3, 1, 3, 3));
    this.setSize(600,600);
    this.setDefaultCloseOperation(EXIT_ON_CLOSE);
    this.setLocationRelativeTo(null);
    this.setTitle("Test");
}

private void initializeAndAddButtons()
{
    for(int i = 0; i < 9;i++)
    {
        button[i] = new JButton(String.valueOf(i));
        button[i].addActionListener(this);
        add(button[i]);
    }
}

public void actionPerformed(ActionEvent e) 
{
    JButton tempButton = (JButton) e.getSource();
    System.out.println(tempButton.getText());
}
}

public class main
{
   public static void main(String args[])
   {
    new test().setVisible(true);
   }
}
于 2013-09-21T19:48:20.900 に答える