Public Member Functions | |
def | __init__ (self, wiiDriver, sloppy=True) |
def | pause (self) |
def | pop (self) |
def | push (self, func) |
def | resume (self, sloppy=True) |
def | setcallback (self, f) |
Private Attributes | |
_paused | |
Static Private Attributes | |
list | _functionStack = [] |
bool | _paused = False |
_singletonInstance = None | |
_wm = None | |
Class organizes installation and removal/restoration of callback functions for the Wii driver to use. Only one instance of this class is allowed. Additional instantiations generate a CallbackStackMultInstError. A stack discipline is imposed. Operations: - push(<callBackFunc>) # New function becomes the active # callback immediately - pop() -> <oldCallBackFunc> # If another function is still on # the stack, it immediately becomes # the active callback. If callback # is paused, resume() is forced. - pause() # Callbacks are temporarily turned off - paused() -> True/False - resume(sloppy=True) # If sloppy=False, resuming when # callbacks are not paused throws an # exception. If sloppy=True, the call is # a no-op
Definition at line 826 of file WIIMote.py.
def wiimote.WIIMote._WiiCallbackStack.__init__ | ( | self, | |
wiiDriver, | |||
sloppy = True |
|||
) |
Definition at line 860 of file WIIMote.py.
def wiimote.WIIMote._WiiCallbackStack.pause | ( | self | ) |
WIIMote callbacks are temporarily stopped.
Definition at line 901 of file WIIMote.py.
def wiimote.WIIMote._WiiCallbackStack.pop | ( | self | ) |
Wiimote callback function is popped off the stack. New top of stack becomes the new callback function. Old function is returned.
Definition at line 885 of file WIIMote.py.
def wiimote.WIIMote._WiiCallbackStack.push | ( | self, | |
func | |||
) |
Given function becomes the new WIImote callback function, shadowing the function that is currently on the stack
Definition at line 873 of file WIIMote.py.
def wiimote.WIIMote._WiiCallbackStack.resume | ( | self, | |
sloppy = True |
|||
) |
Resume the (presumably) previously paused WIIMote callback functions. If sloppy is True, this method won't complain if pause was not called earlier. If sloppy is False, an exception is raised in that case.
Definition at line 911 of file WIIMote.py.
def wiimote.WIIMote._WiiCallbackStack.setcallback | ( | self, | |
f | |||
) |
Tell WIIMote which function to call when reporting status.
Definition at line 934 of file WIIMote.py.
|
staticprivate |
Definition at line 849 of file WIIMote.py.
|
staticprivate |
Definition at line 851 of file WIIMote.py.
|
private |
Definition at line 905 of file WIIMote.py.
|
staticprivate |
Definition at line 850 of file WIIMote.py.
|
staticprivate |
Definition at line 853 of file WIIMote.py.