From d223a63bc5de423bca7337795fe165678cf6d236 Mon Sep 17 00:00:00 2001 From: "Avi Halachmi (:avih)" Date: Sat, 13 Dec 2014 18:27:47 +0200 Subject: js: add javascript scripting support using MuJS Implements JS with almost identical API to the Lua support. Key differences from Lua: - The global mp, mp.msg and mp.utils are always available. - Instead of returning x, error, return x and expose mp.last_error(). - Timers are JS standard set/clear Timeout/Interval. - Supports CommonJS modules/require. - Added at mp.utils: getenv, read_file, write_file and few more. - Global print and dump (expand objects) functions. - mp.options currently not supported. See DOCS/man/javascript.rst for more details. --- player/scripting.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'player/scripting.c') diff --git a/player/scripting.c b/player/scripting.c index 46379b4151..dc8e7d5b2b 100644 --- a/player/scripting.c +++ b/player/scripting.c @@ -38,6 +38,7 @@ extern const struct mp_scripting mp_scripting_lua; extern const struct mp_scripting mp_scripting_cplugin; +extern const struct mp_scripting mp_scripting_js; static const struct mp_scripting *const scripting_backends[] = { #if HAVE_LUA @@ -45,6 +46,9 @@ static const struct mp_scripting *const scripting_backends[] = { #endif #if HAVE_CPLUGINS &mp_scripting_cplugin, +#endif +#if HAVE_JAVASCRIPT + &mp_scripting_js, #endif NULL }; -- cgit v1.2.3