Toggle pings, remove line-wrapping, unset victim.
authorPete <pete@debu.gs>
Thu, 26 Sep 2024 00:03:49 +0000 (17:03 -0700)
committerPete <pete@debu.gs>
Thu, 26 Sep 2024 00:03:49 +0000 (17:03 -0700)
There's a new option (-P) to hide pings at startup, and a new command (/P)
to toggle ping visibility.  Pings are sometimes useful to know about but
if you don't have a target, they kinda flood.

On startup, target is nil and this lets you see everything coming through.
I'd miss DMs because the target was set to a channel, so I had to annoy
people by telling them that I couldn't see DMs unless they told me that I had
them before I had one.  So I added this option and then got a screen full of
PINGs when I woke up.  (Or half full of PINGs and the balance in PONGs.)
This makes irc7 usable as a general client for me.

Lastly, I removed line-wrapping.  I have no use for it.  If anyone else cares
about this changeset, then maybe it could be an option, but as long as I'm the
only one using it, I don't need an option that I'll never enable.

khm's C code is a fun read.  It has a lot of personality.

irc.c

diff --git a/irc.c b/irc.c
index 4be275a03d77276b48dc09e2df18cd5b3079a09a..d8a77b89018220f360e23eee71259b8ff0e63178 100644 (file)
--- a/irc.c
+++ b/irc.c
@@ -10,6 +10,7 @@ char help[] =
 "/M            mode #chan +nt\n"
 "/j            join #chan\n"
 "/p            part #chan\n"
+"/P            toggle showing PINGs.\n"
 "/q            send parameters raw to the server\n"
 "/l            list #chan\n"
 "/n            nick newnick\n"
@@ -38,6 +39,7 @@ char *victim;
 char *nick;
 int inacme;            /* running in acme? */
 int    linewidth;      /* terminal width in # of characters */
+int showpings = 1;
 
 int replay;            /* just print the log ma'am */
 
@@ -51,12 +53,15 @@ void getwidth(void);        /* establish the width of the terminal, from mc.c */
 int pmsg(int fd, char *time, char *pre, char *cmd, char *par[]);
 int ntc(int fd, char *time, char *pre, char *cmd, char *par[]);
 int generic(int fd, char *time, char *pre, char *cmd, char *par[]);
+int ping(int fd, char *time, char *pre, char *cmd, char *par[]);
 int misc(int fd, char *time, char *pre, char *cmd, char *par[]);
 int numeric(int fd, char *time, char *pre, char *cmd, char *par[]);
 
 Handler handlers[] = {
        {"PRIVMSG", pmsg},
        {"NOTICE", ntc},
+       {"PING", ping},
+       {"PONG", ping},
        {"JOIN", misc},
        {"PART", misc},
        {"MODE", misc},
@@ -81,7 +86,7 @@ int usrparse(char *ln, char *cmd, char *par[], int npar);
 void
 usage(void)
 {
-       char usage[] = "usage: irc [-c charset] [-t victim] [-b lines] [-r file] [/srv/irc [/tmp/irc]]\n";
+       char usage[] = "usage: irc [-c charset] [-t victim] [-b lines] [-r file] [-P] [/srv/irc [/tmp/irc]]\n";
        write(1, usage, sizeof(usage)-1);
        exits("usage");
 }
@@ -153,8 +158,11 @@ usrin(void)
                                }
                                break;
                        case 't':
-                               if(par[0] != nil) {
+                               if(victim) {
                                        free(victim);
+                                       victim = nil;
+                               }
+                               if(par[0] != nil) {
                                        victim = strdup(par[0]);
                                        setwintitle(par[0]);
                                }
@@ -171,6 +179,10 @@ usrin(void)
                        case 'j':
                                fprint(server_out, "JOIN %s\r\n", par[0] == nil ? victim : par[0]);
                                break;
+                       case 'P':
+                               showpings = !showpings;
+                               fprint(scr, "PINGs are now %s.\n", showpings ? "visible" : "hidden");
+                               break;
                        case 'p':
                                fprint(server_out, "PART %s\r\n", par[0] == nil ? victim : par[0]);
                                break;
@@ -363,6 +375,9 @@ main(int argc, char *argv[])
                replay = 1;
                sb = 0;
                break;
+       case 'P':
+               showpings = 0;
+               break;
        default:
                usage();
        } ARGEND;
@@ -542,25 +557,26 @@ pmsg(int, char *time, char *pre, char *, char *par[])
        if(victim) {
                if((cistrncmp(victim, "MSGS", 4) == 0) && *par[0] != '#') {
                        /* catch-all for messages, fall through */
-               
                } else if(cistrcmp(par[0], victim))
                        if(!pre || cistrcmp(pre, victim) || *par[0] == '#')
                                return 0;
        }
 
        if(!pre)
-               buf = smprint("%s (%s) ⇐ %s\n", time, par[0], par[1]);
+               buf = smprint("%s (%s) <⇐ %s\n", time, par[0], par[1]);
        else if(*par[0] != '#')
-               buf = smprint("%s (%s)  %s\n", time, pre, par[1]);
+               buf = smprint("%s (%s)  ⇒> %s\n", time, pre, par[1]);
        else
-               buf = smprint("%s %s → %s\n", time, pre, par[1]);
+               buf = smprint("%s (%s) %s → %s\n", time, par[0], pre, par[1]);
        
        if(!buf)
                sysfatal("failed to allocate space for message: %r\n");
 
        c = buf;
 again:
-       if(strlen(c) >= linewidth) {
+       if(0 && strlen(c) >= linewidth) {
+               /* Line-wrapping is more trouble than it's worth.  Maybe make
+                  this a setting. */
                for(tc = c + linewidth; tc > c; tc--) {
                        switch(*tc) {
                        case ' ':
@@ -594,9 +610,9 @@ ntc(int, char *time, char *pre, char *, char *par[])
                        return 0;
 
        if(!pre)
-               n = fprint(scr, "%s [%s] \t%s\n", time, par[0], par[1]);
+               n = fprint(scr, "%s [%s] «⇐ \t%s\n", time, par[0], par[1]);
        else if(*par[0] != '#')
-               n = fprint(scr, "%s [%s] \t%s\n", time, pre, par[1]);
+               n = fprint(scr, "%s [%s]  ⇒»\t%s\n", time, pre, par[1]);
        else
                n = fprint(scr, "%s [%s] %s →\t%s\n", time, par[0], pre, par[1]);
        return n;
@@ -627,6 +643,14 @@ generic(int, char *time, char *pre, char *cmd, char *par[])
        return r;
 }
 
+int
+ping(int i, char *time, char *pre, char *cmd, char *par[])
+{
+       if(!showpings)
+               return 0;
+       return generic(i, time, pre, cmd, par);
+}
+
 int
 misc(int, char *time, char *pre, char *cmd, char *par[])
 {