Created
July 4, 2010 06:07
-
-
Save keturn/463199 to your computer and use it in GitHub Desktop.
xwarppointer python script
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
"""Make the X cursor wrap-around. | |
Adapted from http://appdb.winehq.org/objectManager.php?sClass=version&iId=12599 | |
to work around lack of relative mouse movement http://wiki.winehq.org/Bug6971 | |
for Thief: Dark Shadows (and possibly others) | |
This version is a little kinder to your CPU than the shell script with | |
the busy-loop that starts a new process for every pointer query. | |
""" | |
from ctypes import cdll, c_int, c_voidp, byref | |
import time | |
xlib = cdll.LoadLibrary('libX11.so') | |
# Maximum screen width and height | |
MAX_X = 1280 | |
MAX_Y = 1024 | |
# Number of seconds to sleep between polling mouse position. | |
SLEEPTIME = 0.05 | |
def _main(display): | |
root = xlib.XDefaultRootWindow(display) | |
mousex = c_int() | |
mousey = c_int() | |
# pointer for unused return values | |
unused_int = c_int() | |
# likewise, querypointer wants a window pointer to write to. We don't | |
# really want to create a new window, but this was the shortest way I | |
# could think of to get the memory allocated. | |
tmp_win = c_voidp(xlib.XCreateSimpleWindow(display, root, 0, 0, 1, 1, | |
0, 0, 0)) | |
def resetMouse(x, y): | |
xlib.XWarpPointer(display,None,root,0,0,0,0,x,y) | |
def getMouse(): | |
xlib.XQueryPointer(display, root, | |
byref(tmp_win), byref(tmp_win), | |
byref(mousex), byref(mousey), | |
byref(unused_int), | |
byref(unused_int), | |
byref(unused_int)) | |
while 1: | |
getMouse() | |
if (mousex.value < 2): | |
resetMouse(x=MAX_X-2, y = mousey.value) | |
elif (mousex.value > (MAX_X-2)): | |
resetMouse(x=2, y=mousey.value) | |
time.sleep(SLEEPTIME) | |
def main(): | |
try: | |
display = xlib.XOpenDisplay(None) | |
_main(display) | |
finally: | |
xlib.XCloseDisplay(display) | |
if __name__ == '__main__': | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Awesome example! I cleaned it up a little, passed pylint for it and object-oriented it a bit here:
https://gist.github.com/thorsummoner/432893d82b1a8245af4d