diff options
author | June McEnroe <june@causal.agency> | 2020-02-01 19:37:48 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-02-01 19:37:55 -0500 |
commit | e5363bcae0f726455fb4198cd21d46721ad5e39a (patch) | |
tree | a4f191af1fe34b16663247fad0784476311dde8c /handle.c | |
parent | Add term stuff (diff) | |
download | catgirl-e5363bcae0f726455fb4198cd21d46721ad5e39a.tar.gz catgirl-e5363bcae0f726455fb4198cd21d46721ad5e39a.zip |
Implement the beginnings of UI
It takes so much code to do anything in curses...
Diffstat (limited to 'handle.c')
-rw-r--r-- | handle.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/handle.c b/handle.c index 96bd2a2..b2b2b8d 100644 --- a/handle.c +++ b/handle.c @@ -136,11 +136,32 @@ static void handleReplyWelcome(struct Message *msg) { if (self.join) ircFormat("JOIN :%s\r\n", self.join); } +static void handleReplyISupport(struct Message *msg) { + // TODO: Extract CHANTYPES and PREFIX for future use. + for (size_t i = 1; i < ParamCap; ++i) { + if (!msg->params[i]) break; + char *key = strsep(&msg->params[i], "="); + if (!msg->params[i]) continue; + if (!strcmp(key, "NETWORK")) { + uiFormat(Network, Cold, NULL, "You arrive in %s", msg->params[i]); + } + } +} + +static void handleReplyMOTD(struct Message *msg) { + require(msg, false, 2); + char *line = msg->params[1]; + if (!strncmp(line, "- ", 2)) line += 2; + uiFormat(Network, Cold, NULL, "%s", line); +} + static const struct Handler { const char *cmd; Handler *fn; } Handlers[] = { { "001", handleReplyWelcome }, + { "005", handleReplyISupport }, + { "372", handleReplyMOTD }, { "900", handleReplyLoggedIn }, { "904", handleErrorSASLFail }, { "905", handleErrorSASLFail }, |