################################################################################
# This program is free software: you can redistribute it and/or modify #
# it under the terms of the GNU General Public License as published by #
# the Free Software Foundation, either version 3 of the License, or #
# (at your option) any later version. #
# This program is distributed in the hope that it will be useful, #
# but WITHOUT ANY WARRANTY; without even the implied warranty of #
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
# GNU General Public License for more details. #
# You should have received a copy of the GNU General Public License #
# along with this program. If not, see <http://www.gnu.org/licenses/>. #
################################################################################
wiimote_hwaddr = '' # Use your address to speed up the connection proccess
#wiimote_hwaddr = '00:19:1D:5D:5D:DC'
'''Wiimote callback managing method
Recieves a message list, each element is different, see the libcwiid docs'''
global btA, btB, last_point
#print "wiimote callback"
if msg[0] == cwiid.MESG_IR:
# msg is of the form (cwiid.MESG_IR, (((x, y), size) or None * 4))
pos = p['pos'][0], p['pos'][1] # point is mirrored
#print "last_point",last_point
elif msg[0] == cwiid.MESG_BTN:
# msg is of the form (cwiid.MESG_BTN, cwiid.BTN_*)
#elif msg[0] == cwiid.MESG_STATUS:
# # msg is of the form (cwiid.MESG_BTN, { 'status' : value, ... })
wm = cwiid.Wiimote(wiimote_hwaddr)
# each message will contain info about ir and buttons
wm.rpt_mode = cwiid.RPT_IR | cwiid.RPT_BTN # | cwiid.RPT_STATUS
# tell cwiid to use the callback interface and allways send button events
wm.enable(cwiid.FLAG_MESG_IFC
# specify wich function will manage messages AFTER the other settings
# quick check on the wiimote
print str(e).ljust(8), ">", st[e]
print "Error with wiimote " + str(wiimote_hwaddr)
print "_runtime_cleanup() Called"