int error = HandleEvents(lua_State *L, ULONG flags, struct hwTagList *t);
HandleEvents()
has the potential to
slow down your script's execution significantly if polling for events is too expensive
and you do not implement a throttle. Be sure to benchmark raw performance of scripts
with your display adapter and compare them to the performance of Hollywood's inbuilt
display handler to see if your adapter needs optimizing.
The following flags may be passed in the second parameter:
HWHEFLAGS_LINEHOOK:
HandleEvents()
has been called from the Lua line hook.
HWHEFLAGS_MODAL:
HandleEvents()
has been called from a modal loop that Hollywood
is currently running. A modal loop is a temporary event loop set up by functions that
block the script execution until certain events happen, e.g. WaitLeftMouse()
or InKeyStr()
.
HWHEFLAGS_CHECKEVENT:
HandleEvents()
has been called as a result of the script calling
Hollywood's CheckEvent()
command.
HWHEFLAGS_WAITEVENT:
HandleEvents()
has been called because WaitEvents()
has triggered.
Your HandleEvents()
function should always call hw_MasterServer()
with the HWMSFLAGS_DRAWVIDEOS
flag set so that Hollywood can update any videos that are
currently playing. If you don't do that, video playback won't work correctly.
The third parameter is a tag list which is currently always NULL
. This might change
in the future, though.
HandleEvents()
must return an error code or 0 for success. A special return value is
ERR_USERABORT
. If your HandleEvents()
returns ERR_USERABORT
, Hollywood will quit.
Thus, it is suggested that you return ERR_USERABORT
if the user has clicked your
display's close widget, pressed the escape key, etc. Note that you should not return
ERR_USERABORT
in case the HWDISPSATAG_USERCLOSE
attribute has been set to True
using SetDisplayAttributes(). See SetDisplayAttributes for details.
Please note that this function must handle events on all displays that have currently
been opened by OpenDisplay(). Additionally, it could also happen
that no display is open at all and your HandleEvents()
function is called. Be prepared to
deal with these cases.
All standard window events like sizing a window, moving a window, key presses and mouse events, etc. should be forwarded to Hollywood using hw_PostEventEx() so that Hollywood is able to notify any handlers that might listen to these events.
lua_State
ERR_USERABORT
tells Hollywood to quit