class wiimote_thread(Thread):
'''Manage the wiiuse interface'''
- def __init__(self, nmotes=1, timeout=5):
+
+ def __init__(self, nmotes=1, timeout=5, screenResolution=(660, 370), position='ABOVE'):
Thread.__init__(self, name='wiimote')
self.queue = Queue()
self.startup = Queue()
self.nmotes = nmotes
- self.selectedWiimoteIndex = 0
self.timeout = timeout
+ self.screenResolution = screenResolution
+ self.position = position
+ self.selectedWiimoteIndex = 0
self.setDaemon(1)
self._paused = False
self.start()
found = wiiuse.find(self.wiimotes, self.nmotes, self.timeout)
self.actual_nmotes = wiiuse.connect(self.wiimotes, self.nmotes)
-
- for i in range(self.nmotes):
- wiiuse.set_leds(self.wiimotes[i], wiiuse.LED[i])
+
+ if self.nmotes <= 4 :
+ for i in range(self.nmotes):
+ wiiuse.set_leds(self.wiimotes[i], wiiuse.LED[i])
+ else :
+ for i in range(4):
+ wiiuse.set_leds(self.wiimotes[i], wiiuse.LED[i])
+
+ if self.nmotes == 5 :
+ wiiuse.set_leds(self.wiimotes[4], wiiuse.LED_1 | wiiuse.LED_4)
+ if self.nmotes == 6 :
+ wiiuse.set_leds(self.wiimotes[4], wiiuse.LED_1 | wiiuse.LED_4)
+ wiiuse.set_leds(self.wiimotes[5], wiiuse.LED_1 | wiiuse.LED_2 | wiiuse.LED_3 | wiiuse.LED_4)
self.go = self.actual_nmotes != 0
def quit(self):
'''Go away.'''
- for i in range(self.nmotes):
- wiiuse.set_leds(self.wiimotes[i], 0)
- wiiuse.disconnect(self.wiimotes[i])
+ # TODO will crash if self.nmotes > 4
+ # for i in range(self.nmotes):
+ # wiiuse.set_leds(self.wiimotes[i], 0)
+ # wiiuse.disconnect(self.wiimotes[i])
self.go = False
def get_count(self):
if button :
event = pygame.event.Event(pygame.MOUSEBUTTONUP,
pos = pos,
- button = 1)
+ button = button)
pygame.event.post(event)
global WT
if WT:
return
- WT = wiimote_thread(nmotes, timeout)
-
- if position == 'ABOVE' :
- position = wiiuse.IR_ABOVE
- elif position == 'BELOW' :
- position = wiiuse.IR_BELOW
- else :
- position = wiiuse.IR_ABOVE
+ WT = wiimote_thread(nmotes, timeout, screenResolution, position)
nmotes = get_count()
for i in range(nmotes) :