'''This runs in a separate thread'''
global wiiuse
import PyWiiUse as wiiuse # import here to avoid thread problems on windows
- self.wiimotes = wiiuse.init(self.nmotes, range(self.nmotes), self.event_cb,
- self.control_cb, self.disconnect_cb)
+ self.wiimotes = wiiuse.init(self.nmotes)
found = wiiuse.find(self.wiimotes, self.nmotes, self.timeout)
self.actual_nmotes = wiiuse.connect(self.wiimotes, self.nmotes)
self.startup.put(self.go)
while self.go:
- try:
- wiiuse.poll(self.wiimotes, self.nmotes)
- except:
+ 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)
+ except :
pass
# allow executing functions in this thread
time=time.time(),
id=wm.unid))
- if wiiuse.using_acc(wm):
+ if True:
pygame.event.post(pygame.event.Event(WIIMOTE_ACCEL,
orient=(wm.orient.roll, wm.orient.pitch,
wm.orient.yaw),
accel=(wm.gforce.x, wm.gforce.y, wm.gforce.z),
time=time.time(),
id=wm.unid))
- if wiiuse.using_ir(wm):
+ if True:
dots = [ (wm.ir.dot[i].visible, wm.ir.dot[i].x, wm.ir.dot[i].y) for i in range(4) ]
pygame.event.post(pygame.event.Event(WIIMOTE_IR,
dots=dots,