在java中跟踪鼠标移动

Posted

技术标签:

【中文标题】在java中跟踪鼠标移动【英文标题】:Tracking mouse movement in java 【发布时间】:2013-08-21 17:26:21 【问题描述】:

我一直在开发一个基本的塔防游戏,并希望跟踪鼠标的移动。我不需要它在拖动时跟踪鼠标移动,而只是在将鼠标悬停在屏幕上时,以便用户可以看到要放置塔的位置。我已扩展 MouseAdapter 以制作控制器并单击以放置塔,但我不知道如何跟踪鼠标移动。覆盖 mouseMoved 应该这样做吗?我试过了,但收效甚微。发表打印声明后,我可以看到事件没有触发。这是我目前拥有的:

public class MouseController extends MouseAdapter 

    private final Board my_board;

    private final int square_size;

    public MouseController(final Board the_board, final int the_square_size) 
        my_board = the_board;
        square_size = square_size;
    

    @Override
    public void mouseClicked(final MouseEvent e) 
        super.mouseClicked(e);
        Point p = e.getPoint();
        my_board.placeTower(p.x / square_size, p.y / square_size - 1);
    

    @Override
    public void mouseMoved(final MouseEvent e) 
        super.mouseMoved(e);
        Point p = e.getPoint();
        my_board.placeCursor(p.x / square_size, p.y / square_size - 1);
    

感谢任何帮助。谢谢!

【问题讨论】:

尝试取出最终的 MouseEvent e。它应该只是 MouseEvent e @user2277872 不应该有所作为,事实上,可以说它更正确(拥有最终),因为对象的引用永远不会改变 我的一位教授实际上告诉我,final 几乎总是应该用于方法参数。无论如何,我没有将控制器添加为 mouseListener 和 MouseMotionListener。我以前犯过这个错误。无论如何,谢谢。 【参考方案1】:

这是一个官方教程,可以完全按照您的要求进行操作:http://docs.oracle.com/javase/tutorial/uiswing/events/mousemotionlistener.html

这是相关的内联sn-p:

public class MouseMotionEventDemo extends JPanel 
                                  implements MouseMotionListener 
    //...in initialization code:
        //Register for mouse events on blankArea and panel.
        blankArea.addMouseMotionListener(this);
        addMouseMotionListener(this);
        ...
    

    public void mouseMoved(MouseEvent e) 
       saySomething("Mouse moved", e);
    

    public void mouseDragged(MouseEvent e) 
       saySomething("Mouse dragged", e);
    

    void saySomething(String eventDescription, MouseEvent e) 
        textArea.append(eventDescription 
                        + " (" + e.getX() + "," + e.getY() + ")"
                        + " detected on "
                        + e.getComponent().getClass().getName()
                        + newline);
    

【讨论】:

【参考方案2】:

如何将 MouseController 添加到代码中?我认为 MouseAdaptor 实现了 MouseListener 和 MouseMotionListener。确保也致电component.addMouseMotionListener(myMouseController) 而不仅仅是component.addMouseListener(myMouseController)。 如果只调用了mouseClicked 而没有调用mouseMoved,听起来您只是将鼠标控制器添加为鼠标侦听器,但尚未添加为鼠标运动侦听器。

【讨论】:

以上是关于在java中跟踪鼠标移动的主要内容,如果未能解决你的问题,请参考以下文章

图形化编程娱乐于教,Kittenblock scratch实例,瞄准器,跟踪鼠标移动

使用 Python 在 Selenium 中模拟鼠标移动

嵌入场景时 A 帧鼠标跟踪发生变化

鼠标事件 滚轮事件

MFC鼠标移动/离开,悬停在按钮上[关闭]

鼠标指针操作