summaryrefslogtreecommitdiffstats
path: root/apps/plugins/lua/rockaux.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/rockaux.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/rockaux.c')
-rw-r--r--apps/plugins/lua/rockaux.c19
1 files changed, 19 insertions, 0 deletions
diff --git a/apps/plugins/lua/rockaux.c b/apps/plugins/lua/rockaux.c
index 562d1654a7..734b6a8324 100644
--- a/apps/plugins/lua/rockaux.c
+++ b/apps/plugins/lua/rockaux.c
@@ -24,6 +24,7 @@
#include "plugin.h"
#define _ROCKCONF_H_ /* Protect against unwanted include */
#include "lua.h"
+#include "lib/pluginlib_actions.h"
extern long strtol(const char *nptr, char **endptr, int base);
@@ -164,3 +165,21 @@ int filetol(int fd, long *num)
return retn;
}
+int get_plugin_action(int timeout, bool with_remote)
+{
+ static const struct button_mapping *m1[] = { pla_main_ctx };
+ int btn;
+
+#ifndef HAVE_REMOTE_LCD
+ (void) with_remote;
+#else
+ static const struct button_mapping *m2[] = { pla_main_ctx, pla_remote_ctx };
+
+ if (with_remote)
+ btn = pluginlib_getaction(timeout, m2, 2);
+ else
+#endif
+ btn = pluginlib_getaction(timeout, m1, 1);
+
+ return btn;
+}