X-Git-Url: https://scm.cri.mines-paristech.fr/git/minwii.git/blobdiff_plain/d6f0f1bc75a5e81a24d0b1a2bec08bd2a15e7352..41abf9e9670bd4ccd60c07ee7464509080bb7f8d:/src/pywiiuse/pygame_wiimouse.py?ds=sidebyside diff --git a/src/pywiiuse/pygame_wiimouse.py b/src/pywiiuse/pygame_wiimouse.py index 7680581..3328eff 100755 --- a/src/pywiiuse/pygame_wiimouse.py +++ b/src/pywiiuse/pygame_wiimouse.py @@ -57,8 +57,8 @@ class wiimote_thread(Thread): m = self.wiimotes[i] if m[0].event == wiiuse.EVENT: self.eventCallBack(self, i, m) - except : - pass + except Exception, e: + print e while True: try: @@ -107,7 +107,7 @@ class wiimote_thread(Thread): def _default_event_cb(self, id, wmp): - '''Called when the library has some data for the user.''' + ''' default callback that emulate a one button mouse ''' if id != self.selectedWiimoteIndex : return wm = wmp[0] pos = (wm.ir.x, wm.ir.y) @@ -129,6 +129,48 @@ def _default_event_cb(self, id, wmp): button = 1) pygame.event.post(event) +def _full_mouse_event_cb(self, id, wmp): + ''' callback that emulate a 2 buttons mouse with wheel ''' + if id != self.selectedWiimoteIndex : return + wm = wmp[0] + pos = (wm.ir.x, wm.ir.y) + pygame.mouse.set_pos(pos) + + eventType = None + + if wm.btns : + button = 0 + if wiiuse.is_just_pressed(wm, wiiuse.button['B']) : + button = 1 + elif wiiuse.is_just_pressed(wm, wiiuse.button['A']) : + button = 2 + elif wiiuse.is_just_pressed(wm, wiiuse.button['Up']) : + button = 4 + elif wiiuse.is_just_pressed(wm, wiiuse.button['Down']) : + button = 5 + + if button : + event = pygame.event.Event(pygame.MOUSEBUTTONDOWN, + pos = pos, + button = button) + pygame.event.post(event) + + if wm.btns_released : + button = 0 + if wiiuse.is_released(wm, wiiuse.button['B']) : + button = 1 + elif wiiuse.is_released(wm, wiiuse.button['A']) : + button = 2 + elif wiiuse.is_released(wm, wiiuse.button['Up']) : + button = 4 + elif wiiuse.is_released(wm, wiiuse.button['Down']) : + button = 5 + + if button : + event = pygame.event.Event(pygame.MOUSEBUTTONUP, + pos = pos, + button = button) + pygame.event.post(event) WT = None