如何有效地使主线程等待JavaFX鼠标点击。

huangapple 未分类评论46阅读模式
英文:

How do I effectively make the main thread wait for Javafx Mouse Click

问题

我正在使用JavaFx开发一个国际象棋游戏我已经进入了玩家互动的第一部分其中我必须检测玩家选择的是哪个棋子
经过3-4天的研究我发现如何在JavaFx中处理鼠标点击的解决方案类似于以下代码

scene.addEventHandler(MouseEvent.MOUSE_CLICKED, new EventHandler<MouseEvent>() {
    public void handle(MouseEvent event) {
        // 在这里编写代码
    }
});

虽然这段代码块可以用于检测鼠标点击并进行处理但我的程序并不完全按照我的意图运行
如上面照片中的程序输出所示println "Passed" 在程序等待鼠标点击事件之前被调用而这会打印出鼠标的x坐标

因此我想知道如何使程序的其余部分等待鼠标事件

我的尝试
我尝试了使用while循环其中我循环监听addEventHandler直到getX值达到某个值但是当我实现了while循环后场景将无法渲染场景会变成白色

对于任何帮助我都表示感谢
英文:

I am working on a Chess game in JavaFx and I have gotten to the first part of player interaction where I must detect which chess 'piece' the player selects.
After researching for 3-4 days on how to handle mouse click in Javafx I have found the solution to be akin to the sort of,

scene.addEventHandler(MouseEvent.MOUSE_CLICKED, new EventHandler&lt;MouseEvent&gt;() {
    public void handle(MouseEvent event) {
        //code here
    }
});

Although this block of code works for detecting mouse click and handling it, my program does not run exactly as I intend.
如何有效地使主线程等待JavaFX鼠标点击。https://i.stack.imgur.com/3Zslt.jpg)

As you can see from the output of the program in the photo above, the println "Passed" gets called before the program waits for the mouseclick event, which prints out the x location of the mouse.

So I was wondering, how can I make the rest of the program wait for a user for a mouse event?

My attempts:
I have tried a while loop where I looped the addEventHandler listener until the getX value was of a certain value, but when I had implemented the while loop my scene would not render, the scene would just be white.

Any help is appreciated

huangapple
  • 本文由 发表于 2020年4月6日 00:04:38
  • 转载请务必保留本文链接:https://java.coder-hub.com/61045446.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定