X-Git-Url: https://scm.cri.ensmp.fr/git/minwii.git/blobdiff_plain/3b16ad256b097d7e910682bf7708bb4f2f135ebe..30e36fe2e442924342ce39d3217002ff0d222f35:/src/pywiiuse/pygame_wiimouse.py diff --git a/src/pywiiuse/pygame_wiimouse.py b/src/pywiiuse/pygame_wiimouse.py index c57cad8..8a4f6e0 100755 --- a/src/pywiiuse/pygame_wiimouse.py +++ b/src/pywiiuse/pygame_wiimouse.py @@ -22,6 +22,7 @@ class wiimote_thread(Thread): self.queue = Queue() self.startup = Queue() self.nmotes = nmotes + self.selectedWiimoteIndex = 0 self.timeout = timeout self.setDaemon(1) self._paused = False @@ -48,10 +49,9 @@ class wiimote_thread(Thread): if self._paused : continue try : if wiiuse.poll(self.wiimotes, self.nmotes) : - for i in range(self.nmotes): - m = self.wiimotes[i] - if m[0].event == wiiuse.EVENT: - self.event_cb(m) + m = self.wiimotes[self.selectedWiimoteIndex] + if m[0].event == wiiuse.EVENT: + self.event_cb(m) except : pass @@ -68,6 +68,9 @@ class wiimote_thread(Thread): def resume(self) : self._paused = False + + def selectWiimote(self, wiimoteIndex) : + self.selectedWiimoteIndex = wiimoteIndex def do(self, func, *args): '''Run the function in the thread handling the wiimote''' @@ -76,7 +79,26 @@ class wiimote_thread(Thread): def event_cb(self, wmp): '''Called when the library has some data for the user.''' wm = wmp[0] - pygame.mouse.set_pos((wm.ir.x, wm.ir.y)) + pos = (wm.ir.x, wm.ir.y) + pygame.mouse.set_pos(pos) + + eventType = None + + if wm.btns and \ + wiiuse.is_just_pressed(wm, wiiuse.button['B']) : + event = pygame.event.Event(pygame.MOUSEBUTTONDOWN, + pos = pos, + button = 1) + pygame.event.post(event) + + if wm.btns_released and \ + wiiuse.is_released(wm, wiiuse.button['B']): + event = pygame.event.Event(pygame.MOUSEBUTTONUP, + pos = pos, + button = 1) + pygame.event.post(event) + + def control_cb(self, wmp, attachment, speaker, ir, led, battery): '''Could check the battery level and such here''' @@ -102,12 +124,19 @@ class wiimote_thread(Thread): WT = None -def init(nmotes, timeout): +def init(nmotes, timeout, screenResolution=(660, 370)): '''Initialize the module.''' global WT if WT: return WT = wiimote_thread(nmotes, timeout) + + nmotes = get_count() + for i in range(nmotes) : + wm = Wiimote(i) # access the wiimote object + wm.enable_accels(0) # turn off acceleration reporting + wm.enable_ir(1, vres = screenResolution, position=wiiuse.IR_BELOW) + def get_count(): '''How many Wiimotes were found?'''