about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2019-07-02 22:12:07 -0400
committerJune McEnroe <june@causal.agency>2019-07-02 22:12:07 -0400
commit3d1f7d80658db3b4839febb817c610dd06a7801b (patch)
treed1ef8122288ea121f9698ad8286c134826032ac7
parentDeal with ~users in colorGen (diff)
downloadcatgirl-3d1f7d80658db3b4839febb817c610dd06a7801b.tar.gz
catgirl-3d1f7d80658db3b4839febb817c610dd06a7801b.zip
Add /list
-rw-r--r--catgirl.13
-rw-r--r--handle.c33
-rw-r--r--input.c11
3 files changed, 46 insertions, 1 deletions
diff --git a/catgirl.1 b/catgirl.1
index 95e3ecd..0dbed23 100644
--- a/catgirl.1
+++ b/catgirl.1
@@ -123,6 +123,9 @@ may be used to abbreviate a command.
 .It Ic /join Ar chan Op Ar key
 Join a channel.
 .
+.It Ic /list Op Ar chan
+List channels.
+.
 .It Ic /me Op Ar action
 Send an action message.
 .
diff --git a/handle.c b/handle.c
index e59960b..1364422 100644
--- a/handle.c
+++ b/handle.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 2018  Curtis McEnroe <june@causal.agency>
+/* Copyright (C) 2018, 2019  Curtis McEnroe <june@causal.agency>
  *
  * This program is free software: you can redistribute it and/or modify
  * it under the terms of the GNU Affero General Public License as published by
@@ -157,6 +157,35 @@ static void handleReplyMOTD(char *prefix, char *params) {
 	uiFmt(TagStatus, UICold, "%s", mesg);
 }
 
+static void handleReplyList(char *prefix, char *params) {
+	char *chan, *count, *topic;
+	parse(prefix, NULL, NULL, NULL, params, 4, 0, NULL, &chan, &count, &topic);
+	if (topic[0] == '[') {
+		char *skip = strstr(topic, "] ");
+		if (skip) topic = &skip[2];
+	}
+	const char *people = (strcmp(count, "1") ? "people" : "person");
+	if (topic[0]) {
+		uiFmt(
+			TagStatus, UIWarm,
+			"You see %s %s in \3%d%s\3 under the banner, \"%s\"",
+			count, people, colorGen(chan), chan, topic
+		);
+	} else {
+		uiFmt(
+			TagStatus, UIWarm,
+			"You see %s %s in \3%d%s\3",
+			count, people, colorGen(chan), chan
+		);
+	}
+}
+
+static void handleReplyListEnd(char *prefix, char *params) {
+	(void)prefix;
+	(void)params;
+	uiLog(TagStatus, UICold, L"You don't see anyone else");
+}
+
 static enum IRCColor whoisColor;
 static void handleReplyWhoisUser(char *prefix, char *params) {
 	char *nick, *user, *host, *real;
@@ -499,6 +528,8 @@ static const struct {
 	{ "315", handleReplyEndOfWho },
 	{ "317", handleReplyWhoisIdle },
 	{ "319", handleReplyWhoisChannels },
+	{ "322", handleReplyList },
+	{ "323", handleReplyListEnd },
 	{ "332", handleReplyTopic },
 	{ "352", handleReplyWho },
 	{ "366", handleReplyEndOfNames },
diff --git a/input.c b/input.c
index 81ff1cf..c4f707e 100644
--- a/input.c
+++ b/input.c
@@ -50,6 +50,16 @@ static void inputJoin(struct Tag tag, char *params) {
 	}
 }
 
+static void inputList(struct Tag tag, char *params) {
+	(void)tag;
+	char *chan = strsep(&params, " ");
+	if (chan) {
+		ircFmt("LIST %s\r\n", chan);
+	} else {
+		ircFmt("LIST\r\n");
+	}
+}
+
 static void inputMe(struct Tag tag, char *params) {
 	privmsg(tag, true, params ? params : "");
 }
@@ -189,6 +199,7 @@ static const struct {
 	{ "/close", inputClose },
 	{ "/help", inputMan },
 	{ "/join", inputJoin },
+	{ "/list", inputList },
 	{ "/man", inputMan },
 	{ "/me", inputMe },
 	{ "/move", inputMove },
ight'> Prevents anything weird from happening when tab-completing, which inserts a space. 2019-02-23Add C-n and C-p key bindings to switch windowsJune McEnroe 2019-02-23Change example command to join #ascii.town on freenodeJune McEnroe 2019-02-23Call def_prog_mode after termNoFlowJune McEnroe So that the settings get restored after /url or /man. 2019-02-22Move IRC formatting reset to C-sJune McEnroe Opens C-n for window switching. 2019-02-22Disable terminal flow controlJune McEnroe This opens up C-o, C-q and C-s for key bindings without C-v. 2019-02-22Bind up and down arrows to scrollJune McEnroe Honestly it's kind of weird that IRC clients usually use these for input history. 2019-02-22Remove topic TODOJune McEnroe I played around with it and it doesn't look right unless there is only one channel listed in the status. 2019-02-22Add /znc commandJune McEnroe Only because ZNC tells you to use it and expects it to work. 2019-02-22Update status line after scrolling and term eventsJune McEnroe 2019-02-22Reorganize input.cJune McEnroe 2019-02-22Fix name of <raw> window in man pageJune McEnroe 2019-02-22Rename global tags with angle bracketsJune McEnroe 2019-02-22Show status window while connectingJune McEnroe 2019-02-22Reorganize UI code for the umpteenth timeJune McEnroe It's actually in a good state now, I think. 2019-02-21Replace "view" with "window"June McEnroe I think originally I didn't want to use the same word as curses WINDOW but it's really much clearer for the user if they're just called windows. UI code probably needs yet another rewrite though. Still feels messy. 2019-02-21Remove ROT13June McEnroe It's just not convenient when it can only do the whole line... 2019-02-21Clean up man pageJune McEnroe 2019-01-26Draw UI before connectingJune McEnroe Otherwise the "Traveling" message isn't visible while connecting. 2019-01-25Avoid unused variable warnings with getyxJune McEnroe 2019-01-25Add GNU/Linux build instructionsJune McEnroe