gpt4 book ai didi

Java Swing : Waiting for Mouse Clicked event before returning an Int

转载 作者:行者123 更新时间:2023-12-02 07:51:32 25 4
gpt4 key购买 nike

我有一个纸牌游戏,它是基于使用 ArrayLists 将纸牌存储在人们手中而构建的。我有一个 main 方法,它可以玩游戏并使用主类中使用 InvokeLater 调用的线程更新 GUI 类

目前,我正在控制台上玩游戏,并将 int 输入到扫描仪中,以从玩家手中选择卡片。我想要做的是运行一个线程,可能带有调用和等待,该线程在玩家必须做出选择时运行。然后等待玩家在GUI中点击相应的卡片并返回该卡片位置的相应int。然后这个选择由我的游戏处理。

我目前如何更新我的 GUI。

      public static void Play(ArrayList<Card> ...){
UpdateHand(player1, deck, deckused);

SwingUtilities.invokeLater(new Runnable() {
public void run() {
GUI.getInstance().UpdateHand();

}
});

将听众附加到卡片上,并将他们的名字设置为手中相应位置的整数。

   public void PlayerSelection()
{
selection = -1;
Information = new JLabel("Please Select Your Card");
ButtonDisplay.add(Information);
ButtonDisplay.updateUI();
for (int i = 0; i < (HumanHand.size()); i++)
{
Card card = HumanHand.get(i);

BufferedImage cardImage = null;

try {

cardImage = ImageIO.read(new File("card/" + card + ".jpg"));
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
JLabel picLabel = new JLabel(new ImageIcon( cardImage ));
String name = "" + i;
picLabel.setName(name);
picLabel.addMouseListener((MouseListener) this);
HumanHandDisplay.add(picLabel);
}
}

存储单击鼠标时选择的int。

    public void mouseClicked(MouseEvent e) {
String name = ((JLabel)e.getSource()).getName();
System.out.println("Working " + name);
selection = Integer.parseInt(name);
}

我想将此 int 返回到我的主类 Play() 方法,以便在其余计算中使用。我不知道如何做到这一点,特别是等待做出选择。我听说这是可以做到的,但我不确定如何在我的工作中实现这一点。如果有人能提供帮助那就太好了。

最佳答案

不,您不想在此处暂停线程或任何此类内容。相反,您将根据用户在程序中的位置以及用户的响应来更改程序的状态,并且程序的行为将根据该状态而变化。

例如,如果用户需要等待用户打牌,则可以为主类提供一个 currentPlayer 变量,并在轮到用户时将其分配给用户。然后对程序进行编码,使其不响应任何用户输入,除了适合轮到他的有效输入。

然后主 GameEngine 类会将 currentPlayer 变量推进到下一个玩家并等待他们的响应。

编辑 1
您声明:

I'm not sure I really understand. I've already implemented the game and all it's rules and AI players to play against, which I do on the console for now. I just need to extend where I'm making selections using a scanner out on to the GUI to wait for a Mouse Clicked event.

请理解,您正在进行重大转变,从基于控制台的线性程序转向基于 GUI事件的程序,关键是新程序是基于事件的。如果您当前的代码是使用行为良好的 OOP 兼容类编写的,具有最少的静态变量和方法,并且具有定义良好的状态的类,那么转换应该会顺利进行。另一方面,如果您当前的代码库只有很少的类,并且大多数都以线性控制台用户界面为中心,那么您可能需要从头开始重新编写代码。

您可能希望向我们展示您当前的一些代码并描述其设计。

接下来你说:

How would I go about makeing sure that the program doesn't respond to anything other than an int?

请澄清让程序仅响应 int 的含义。一个 int 在哪里?在 JTextField 中?别的地方?我认为这可能需要某种类型的输入验证。

关于Java Swing : Waiting for Mouse Clicked event before returning an Int,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10167685/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com