1 # -*- coding: utf-8 -*-
3 wiimote -> mouse interface
9 from threading
import Thread
10 from Queue
import Queue
, Empty
13 # events to use. Is there a way to get ones known to be unused?
16 wiiuse
= None # import within the thread, why do I have to do this?
18 class wiimote_thread(Thread
):
19 '''Manage the wiiuse interface'''
20 def __init__(self
, nmotes
=1, timeout
=5):
21 Thread
.__init
__(self
, name
='wiimote')
23 self
.startup
= Queue()
25 self
.timeout
= timeout
29 self
.startup
.get(True) # wait for the thread to get started and acquire the motes
32 '''This runs in a separate thread'''
34 import PyWiiUse
as wiiuse
# import here to avoid thread problems on windows
35 self
.wiimotes
= wiiuse
.init(self
.nmotes
)
36 found
= wiiuse
.find(self
.wiimotes
, self
.nmotes
, self
.timeout
)
37 self
.actual_nmotes
= wiiuse
.connect(self
.wiimotes
, self
.nmotes
)
40 for i
in range(self
.nmotes
):
41 wiiuse
.set_leds(self
.wiimotes
[i
], wiiuse
.LED
[i
])
43 self
.go
= self
.actual_nmotes
!= 0
45 self
.startup
.put(self
.go
)
48 if self
._paused
: continue
50 if wiiuse
.poll(self
.wiimotes
, self
.nmotes
) :
51 for i
in range(self
.nmotes
):
53 if m
[0].event
== wiiuse
.EVENT
:
60 func
, args
= self
.queue
.get_nowait()
63 print 'do:', func
.__name
__, args
72 def do(self
, func
, *args
):
73 '''Run the function in the thread handling the wiimote'''
74 self
.queue
.put((func
, args
))
76 def event_cb(self
, wmp
):
77 '''Called when the library has some data for the user.'''
79 pygame
.mouse
.set_pos((wm
.ir
.x
, wm
.ir
.y
))
81 def control_cb(self
, wmp
, attachment
, speaker
, ir
, led
, battery
):
82 '''Could check the battery level and such here'''
83 pygame
.event
.post(pygame
.event
.Event(WIIMOTE_STATUS
,
84 attachment
=attachment
,
87 led
=[led
[i
] for i
in range(4)],
91 def disconnect_cb(self
, wmp
):
92 '''What should we do here?'''
93 pygame
.event
.post(pygame
.event
.Event(WIIMOTE_DISCONNECT
,
98 for i
in range(self
.nmotes
):
99 wiiuse
.set_leds(self
.wiimotes
[i
], 0)
100 wiiuse
.disconnect(self
.wiimotes
[i
])
105 def init(nmotes
, timeout
):
106 '''Initialize the module.'''
110 WT
= wiimote_thread(nmotes
, timeout
)
113 '''How many Wiimotes were found?'''
114 return WT
.actual_nmotes
117 '''Gracefully shutdown the connection and turn off the wiimote leds'''
121 class wiimote(object):
122 '''Object representing a Wiimote'''
123 def __init__(self
, n
):
124 self
.wm
= WT
.wiimotes
[n
]
126 def enable_leds(self
, m
):
127 '''Control leds. The lower 4 bits map to the 4 leds'''
128 WT
.do(wiiuse
.set_leds
, self
.wm
, sum([wiiuse
.LED
[i
] for i
in range(4) if m
& (1<<i
)]))
130 def enable_rumble(self
, on
):
132 WT
.do(wiiuse
.rumble
, self
.wm
, on
)
134 def enable_accels(self
, on
):
135 '''Control reporting of accelerometer data.'''
136 WT
.do(wiiuse
.motion_sensing
, self
.wm
, on
)
138 def enable_ir(self
, on
, vres
=None, position
=None, aspect
=None):
139 '''Control reporting IR data.'''
140 WT
.do(wiiuse
.set_ir
, self
.wm
, on
)
142 WT
.do(wiiuse
.set_ir_vres
, self
.wm
, *vres
)
143 if position
is not None:
144 WT
.do(wiiuse
.set_ir_position
, self
.wm
, position
)
145 if aspect
is not None:
146 WT
.do(wiiuse
.set_aspect_ratio
, self
.wm
, aspect
)
148 def set_flags(self
, smoothing
=None, continuous
=None, threshold
=None):
149 '''Set flags SMOOTHING, CONTINUOUS, ORIENT_THRESH'''
151 if smoothing
is not None:
153 enable |
= wiiuse
.SMOOTHING
155 disable |
= wiiuse
.SMOOTHING
156 if continuous
is not None:
158 enable |
= wiiuse
.CONTINUOUS
160 disable |
= wiiuse
.CONTINUOUS
161 if threshold
is not None:
163 enable |
= wiiuse
.ORIENT_THRESH
165 disable |
= wiiuse
.ORIENT_THRESH
166 print enable
, disable
167 WT
.do(wiiuse
.set_flags
, self
.wm
, enable
, disable
)
169 def set_orient_thresh(self
, thresh
):
170 '''Set orientation threshold'''
171 WT
.do(wiiuse
.set_orient_threshold
, self
.wm
, thresh
)
174 '''Trigger a status callback.'''
175 WT
.do(wiiuse
.status
, self
.wm
)
177 def disconnect(self
):
178 '''Disconnect this Wiimote'''
179 WT
.do(wiiuse
.disconnect(self
.wm
))
182 '''Get the object for the nth Wiimote'''