Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to create a a mouse wrap within X11 for openGL games/content. The approach I was trying to take is to hide the cursor (which I can do just fine), lock the mouse position in the center of the window and then use the mouse delta positions to detect movement. I cannot find any way however to lock the mouse position other then to keep moving it back to the center every frame.

In windows this can be done with ClipCursor() and in OSX mouse wrap can be done using CGWarpMouseCursorPosition. Does anything similar exist within the XLib libraries?

share|improve this question

1 Answer

up vote 1 down vote accepted

libSDL does almost exactly that and the source code of this might be a good starting point for your own implementation. Alternatively if the goal is cross-platform fullscreen application then just using SDL directly might save you reinventing the wheel here.

The file in question for X11 seems to be src/video/x11/SDL_x11mouse.c, in particular the implementation of X11_WarpWMCursor.

share|improve this answer
This code helped me out. Since I wanted to avoid adding a dependency on libSDL what I ended up doing is each time the mouse came within 5 ticks of the edge of the window I used XWarpMouse to center it and ignore the very next Mouse move event. – Kulidan Nov 8 '10 at 23:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.