From 15a5422dd2ba18d10c598f91b8cdae86269b2af1 Mon Sep 17 00:00:00 2001 From: wm4 Date: Mon, 8 Jul 2013 19:27:45 +0200 Subject: input: allow binding multiple commands to a key Separate the commands with ';'. --- core/input/input.c | 59 +++++++++++++++++++++++++++++++++++++++++++++++++----- 1 file changed, 54 insertions(+), 5 deletions(-) (limited to 'core/input/input.c') diff --git a/core/input/input.c b/core/input/input.c index 4a52b3f9c9..73ac5bc698 100644 --- a/core/input/input.c +++ b/core/input/input.c @@ -808,7 +808,7 @@ static bool read_token(bstr str, bstr *out_rest, bstr *out_token) bstr t = bstr_lstrip(str); int next = bstrcspn(t, WHITESPACE "#"); // Handle comments - if (t.start[next] == '#') + if (t.len && t.start[next] == '#') t = bstr_splice(t, 0, next); if (!t.len) return false; @@ -852,13 +852,16 @@ error: return false; } -mp_cmd_t *mp_input_parse_cmd(bstr str, const char *loc) +// If dest is non-NULL when calling this function, append the command to the +// list formed by dest->queue_next, otherwise just set *dest = new_cmd; +static int parse_cmd(struct mp_cmd **dest, bstr str, const char *loc) { int pausing = 0; int on_osd = MP_ON_OSD_AUTO; bool raw_args = false; struct mp_cmd *cmd = NULL; bstr start = str; + bstr next = {0}; void *tmp = talloc_new(NULL); str = bstr_lstrip(str); @@ -929,8 +932,13 @@ mp_cmd_t *mp_input_parse_cmd(bstr str, const char *loc) struct mp_cmd_arg *cmdarg = &cmd->args[i]; if (!cmdarg->type.type) break; - cmd->nargs++; str = bstr_lstrip(str); + if (eat_token(&str, ";")) { + next = str; + str.len = 0; + break; + } + cmd->nargs++; bstr arg = {0}; if (bstr_eatstart0(&str, "\"")) { if (!read_escaped_string(tmp, &str, &arg)) { @@ -962,6 +970,11 @@ mp_cmd_t *mp_input_parse_cmd(bstr str, const char *loc) cmdarg->v.s = talloc_steal(cmd, cmdarg->v.s); } + if (eat_token(&str, ";")) { + next = str; + str.len = 0; + } + bstr dummy; if (read_token(str, &dummy, &dummy)) { mp_tmsg(MSGT_INPUT, MSGL_ERR, "Command %s has trailing unused " @@ -986,14 +999,50 @@ mp_cmd_t *mp_input_parse_cmd(bstr str, const char *loc) bstr orig = (bstr) {start.start, str.start - start.start}; cmd->original = bstrdup(cmd, bstr_strip(orig)); + while (*dest) + dest = &(*dest)->queue_next; + *dest = cmd; + + next = bstr_strip(next); + if (next.len) { + if (parse_cmd(dest, next, loc) < 0) { + *dest = NULL; + goto error; + } + } + talloc_free(tmp); - return cmd; + return 1; error: mp_tmsg(MSGT_INPUT, MSGL_ERR, "Command was defined at %s.\n", loc); talloc_free(cmd); talloc_free(tmp); - return NULL; + return -1; +} + +mp_cmd_t *mp_input_parse_cmd(bstr str, const char *loc) +{ + struct mp_cmd *cmd = NULL; + if (parse_cmd(&cmd, str, loc) < 0) { + assert(!cmd); + } + // Other input.c code uses queue_next for its own purposes, so explicitly + // wrap lists in a pseudo-command. + if (cmd && cmd->queue_next) { + struct mp_cmd *list = talloc_ptrtype(NULL, list); + *list = (struct mp_cmd) { + .id = MP_CMD_COMMAND_LIST, + .name = "list", + }; + list->args[0].v.p = cmd; + while (cmd) { + talloc_steal(list, cmd); + cmd = cmd->queue_next; + } + cmd = list; + } + return cmd; } #define MP_CMD_MAX_SIZE 4096 -- cgit v1.2.3 From 0bb41524f0a9ed89559b50bd7407de9d8b8aee40 Mon Sep 17 00:00:00 2001 From: wm4 Date: Mon, 8 Jul 2013 19:44:46 +0200 Subject: input: actually copy sub commands This was missing from the previous commit. It worked by luck, because the sub-commands weren't freed either (as long as the original command was around), but this is proper. Also, set the original string for command lists (needed for input-test only). --- core/input/input.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'core/input/input.c') diff --git a/core/input/input.c b/core/input/input.c index 73ac5bc698..ce7b868c02 100644 --- a/core/input/input.c +++ b/core/input/input.c @@ -1034,6 +1034,7 @@ mp_cmd_t *mp_input_parse_cmd(bstr str, const char *loc) *list = (struct mp_cmd) { .id = MP_CMD_COMMAND_LIST, .name = "list", + .original = bstrdup(list, str), }; list->args[0].v.p = cmd; while (cmd) { @@ -1775,6 +1776,17 @@ mp_cmd_t *mp_cmd_clone(mp_cmd_t *cmd) ret->args[i].v.s = talloc_strdup(ret, cmd->args[i].v.s); } + if (cmd->id == MP_CMD_COMMAND_LIST) { + bool first = true; + for (struct mp_cmd *sub = cmd->args[0].v.p; sub; sub = sub->queue_next) { + sub = mp_cmd_clone(sub); + talloc_steal(cmd, sub); + if (first) + cmd->args[0].v.p = sub; + first = false; + } + } + return ret; } -- cgit v1.2.3 From c460258f5a85d8d65261b524f23a3608185e58e4 Mon Sep 17 00:00:00 2001 From: wm4 Date: Mon, 8 Jul 2013 20:34:26 +0200 Subject: command: add screenshot_to_file command --- core/input/input.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'core/input/input.c') diff --git a/core/input/input.c b/core/input/input.c index ce7b868c02..e87d9bb560 100644 --- a/core/input/input.c +++ b/core/input/input.c @@ -171,6 +171,12 @@ static const mp_cmd_t mp_cmds[] = { OARG_CHOICE(0, ({"single", 0}, {"each-frame", 1})), }}, + { MP_CMD_SCREENSHOT_TO_FILE, "screenshot_to_file", { + ARG_STRING, + OARG_CHOICE(2, ({"video", 0}, + {"window", 1}, + {"subtitles", 2})), + }}, { MP_CMD_LOADFILE, "loadfile", { ARG_STRING, OARG_CHOICE(0, ({"replace", 0}, {"0", 0}, -- cgit v1.2.3