From 64ac8cc14003a31ae21d28e7f37a7d9c8ed638fe Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Wed, 28 Sep 2011 19:17:21 +0200 Subject: Support sending TextMessages --- src/commands.c | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/src/commands.c b/src/commands.c index 40908b4..fa2fa23 100644 --- a/src/commands.c +++ b/src/commands.c @@ -64,11 +64,42 @@ help(struct cmumble_context *ctx, ctx->commands[i].name, ctx->commands[i].description); } +static void +msg(struct cmumble_context *ctx, + int argc, char **argv) +{ + MumbleProto__TextMessage message; + + mumble_proto__text_message__init(&message); + message.actor = ctx->session; + + if (argc < 2) { + g_print("usage: msg message\n"); + return; + } + + message.message = argv[argc-1]; + + /* FIXME: cache this in general somehow? */ + if (!ctx->user || !ctx->user->channel) { + g_printerr("No information about current CHannel available\n"); + return; + } + + message.n_channel_id = 1; + message.channel_id = (uint32_t[]) { ctx->user->channel->id }; + message.n_session = 0; + message.n_tree_id = 0; + + cmumble_send_msg(ctx, &message.base); +} + static const struct cmumble_command commands[] = { { "lu", list_users, "list users" }, { "lc", list_channels, "list channels" }, { "clear", clear, "clear screen" }, { "help", help, "show this help" }, + { "msg", msg, "send a text message" }, { "quit", quit, "quit " PACKAGE }, { NULL, NULL , NULL} }; -- cgit