Sous windows, la désactivation du tracking infrarouge des wiimotes inactives ralenti...
authorpin <pin@fe552daf-6dbe-4428-90eb-1537e0879342>
Mon, 11 Jul 2011 13:46:58 +0000 (13:46 +0000)
committerpin <pin@fe552daf-6dbe-4428-90eb-1537e0879342>
Mon, 11 Jul 2011 13:46:58 +0000 (13:46 +0000)
git-svn-id: https://svn.cri.ensmp.fr/svn/minwii/trunk@369 fe552daf-6dbe-4428-90eb-1537e0879342

src/pywiiuse/pygame_wiimouse.py

index 013d91b..b8b4c99 100755 (executable)
@@ -88,23 +88,23 @@ class wiimote_thread(Thread):
     
     def selectWiimote(self, wiimoteIndex) :
         self.selectedWiimoteIndex = wiimoteIndex
-        for i in range(self.actual_nmotes) :
-            wm = self.wiimotes[i]
-            if i == wiimoteIndex :
-                self.do(wiiuse.set_ir, wm, 1)
-                self.do(wiiuse.set_ir_vres, wm, *self.screenResolution)
-                if self.position == 'ABOVE' :
-                    position = wiiuse.IR_ABOVE
-                elif self.position == 'BELOW' :
-                    position = wiiuse.IR_BELOW
-                else :
-                    position = wiiuse.IR_ABOVE
-                self.do(wiiuse.set_ir_position, wm, position)
-                # TODO aspect ratio
-                #self.do(wiiuse.set_aspect_ratio, wm, aspect)
-                
-            else :
-                self.do(wiiuse.set_ir, wm, 0)
+#        for i in range(self.actual_nmotes) :
+#            wm = self.wiimotes[i]
+#            if i == wiimoteIndex :
+#                self.do(wiiuse.set_ir, wm, 1)
+#                self.do(wiiuse.set_ir_vres, wm, *self.screenResolution)
+#                if self.position == 'ABOVE' :
+#                    position = wiiuse.IR_ABOVE
+#                elif self.position == 'BELOW' :
+#                    position = wiiuse.IR_BELOW
+#                else :
+#                    position = wiiuse.IR_ABOVE
+#                self.do(wiiuse.set_ir_position, wm, position)
+#                # TODO aspect ratio
+#                #self.do(wiiuse.set_aspect_ratio, wm, aspect)
+#                
+#            else :
+#                self.do(wiiuse.set_ir, wm, 0)
 
     def do(self, func, *args):
         '''Run the function in the thread handling the wiimote'''
@@ -217,7 +217,7 @@ def init(nmotes, timeout, screenResolution=(660, 370), position='ABOVE'):
     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=position)
+        wm.enable_ir(1, vres = screenResolution, position=position)
 
 
 def get_count():