summaryrefslogtreecommitdiff
path: root/apps/plugins/lua/rocklib.c
diff options
context:
space:
mode:
authorWilliam Wilgus <me.theuser@yahoo.com>2019-06-27 11:28:34 -0500
committerWilliam Wilgus <me.theuser@yahoo.com>2019-07-19 20:48:34 -0500
commit3e2b50ed3b58daa5e3be5ea336d276b1655565f1 (patch)
treea56ba215a934ab60c0be0ffcb73f0c193c5c7e38 /apps/plugins/lua/rocklib.c
parentb0de98ad3b1391ec0dfe4f8eced0a6833490cd8f (diff)
downloadrockbox-3e2b50ed3b58daa5e3be5ea336d276b1655565f1.tar.gz
rockbox-3e2b50ed3b58daa5e3be5ea336d276b1655565f1.zip
lua events from rockbox
This library allows events to be subscribed / recieved within a lua script most events in rb are synchronous so flags are set and later checked by a secondary thread to make them (semi?) asynchronous. There are a few caveats to be aware of: FIRST, The main lua state is halted till the lua callback(s) are finished Yielding will not return control to your script from within a callback Also, subsequent callbacks may be delayed by the code in your lua callback SECOND, You must store the value returned from the event_register function you might get away with it for a bit but gc will destroy your callback eventually if you do not store the event THIRD, You only get one cb per event type ["action", "button", "custom", "playback", "timer"] (Re-registration of an event overwrites the previous one) Usage: possible events =["action", "button", "custom", "playback", "timer"] local evX = rockev.register("event", cb_function, [timeout / flags]) cb_function([id] [, data]) ... end rockev.suspend(["event"/nil][true/false]) passing nil affects all events stops event from executing, any but the last event before re-enabling will be lost, passing false, unregistering or re-registering an event will clear the suspend rockev.trigger("event", [true/false], [id]) sets an event to triggered, NOTE!, CUSTOM_EVENT must be unset manually id is only passed to callback by custom and playback events rockev.unregister(evX) Use unregister(evX) to remove an event Unregistering is not necessary before script end, it will be cleaned up on script exit Change-Id: Iea12a5cc0c0295b955dcc1cdf2eec835ca7e354d
Diffstat (limited to 'apps/plugins/lua/rocklib.c')
-rw-r--r--apps/plugins/lua/rocklib.c21
1 files changed, 9 insertions, 12 deletions
diff --git a/apps/plugins/lua/rocklib.c b/apps/plugins/lua/rocklib.c
index 1d20989009..9518fe955b 100644
--- a/apps/plugins/lua/rocklib.c
+++ b/apps/plugins/lua/rocklib.c
@@ -30,7 +30,6 @@
30#include "lauxlib.h" 30#include "lauxlib.h"
31#include "rocklib.h" 31#include "rocklib.h"
32#include "lib/helper.h" 32#include "lib/helper.h"
33#include "lib/pluginlib_actions.h"
34 33
35/* 34/*
36 * http://www.lua.org/manual/5.1/manual.html#lua_CFunction 35 * http://www.lua.org/manual/5.1/manual.html#lua_CFunction
@@ -88,19 +87,9 @@ RB_WRAP(current_path)
88 87
89RB_WRAP(get_plugin_action) 88RB_WRAP(get_plugin_action)
90{ 89{
91 static const struct button_mapping *m1[] = { pla_main_ctx };
92 int timeout = luaL_checkint(L, 1); 90 int timeout = luaL_checkint(L, 1);
93 int btn;
94
95#ifdef HAVE_REMOTE_LCD
96 static const struct button_mapping *m2[] = { pla_main_ctx, pla_remote_ctx };
97 bool with_remote = luaL_optint(L, 2, 0); 91 bool with_remote = luaL_optint(L, 2, 0);
98 if (with_remote) 92 int btn = get_plugin_action(timeout, with_remote);
99 btn = pluginlib_getaction(timeout, m2, 2);
100 else
101#endif
102 btn = pluginlib_getaction(timeout, m1, 1);
103
104 lua_pushinteger(L, btn); 93 lua_pushinteger(L, btn);
105 return 1; 94 return 1;
106} 95}
@@ -829,6 +818,14 @@ LUALIB_API int luaopen_rock(lua_State *L)
829 RB_CONSTANT(PLAYLIST_PREPEND), 818 RB_CONSTANT(PLAYLIST_PREPEND),
830 RB_CONSTANT(PLAYLIST_REPLACE), 819 RB_CONSTANT(PLAYLIST_REPLACE),
831 820
821/* queue sys events */
822 RB_CONSTANT(SYS_USB_CONNECTED),
823 RB_CONSTANT(SYS_USB_DISCONNECTED),
824 RB_CONSTANT(SYS_TIMEOUT),
825 RB_CONSTANT(SYS_POWEROFF),
826 RB_CONSTANT(SYS_CHARGER_CONNECTED),
827 RB_CONSTANT(SYS_CHARGER_DISCONNECTED),
828
832#ifdef HAVE_TOUCHSCREEN 829#ifdef HAVE_TOUCHSCREEN
833 RB_CONSTANT(TOUCHSCREEN_POINT), 830 RB_CONSTANT(TOUCHSCREEN_POINT),
834 RB_CONSTANT(TOUCHSCREEN_BUTTON), 831 RB_CONSTANT(TOUCHSCREEN_BUTTON),