Jump to content

Simulate Mouse Click in GUI


xoombie

Recommended Posts

On 1.15.2, trying to simulate mouse clicks for a mod for a custom hardware input device.

 

Mouse pointer movement works fine, using 

GLFW.glfwSetCursorPos()

However, none of extensive attempts to simulate a mouse click has worked so far. One way is to use java.awt.Robot, but the mod sees itself in a headless environment, where Robot cannot function. (it appears others have successfully used this, but perhaps on old mc versions? is 1.15.2 fundamentally different in this respect?). Other attempts include:

MinecraftForge.EVENT_BUS.post(new GuiScreenEvent.MouseClickedEvent.Pre(screen, x, y, GLFW.GLFW_MOUSE_BUTTON_1));

Because these mouse clicks are for GUIs, not the main game (click events in the game itself can be simulated by activating a keybinding).

 

Many many hours lost through this so far, any ideas greatly appreciated. Am new to Minecraft modding, although very familiar with java.

Link to comment
Share on other sites

Was a noob mistake. The coordinates used by GLFW for cursor positioning are display pixels, whereas mc renders to a multiple. What worked was:

double s = mc.getMainWindow().getGuiScaleFactor();
mc.currentScreen.mouseClicked(x/s, y/s, 0); // 0 is code for left button
MinecraftForge.EVENT_BUS.post(new GuiScreenEvent.MouseClickedEvent.Pre(mc.currentScreen, x/s, y/s, 0)); // share event with any mouse handlers (optional)

Hope this helps anyone doing something similar

  • Like 1
Link to comment
Share on other sites

  • 3 months later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Announcements



×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.