X-Git-Url: https://jfr.im/git/irc/evilnet/x3.git/blobdiff_plain/e1443247659571abb0df8836d770a0bcf7272a75..fa3c07bbce89332ed1f96313aad55bbea81f9718:/src/helpfile.c diff --git a/src/helpfile.c b/src/helpfile.c index 907449c..b46d24a 100644 --- a/src/helpfile.c +++ b/src/helpfile.c @@ -5,7 +5,7 @@ * * x3 is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or + * the Free Software Foundation; either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, @@ -276,7 +276,7 @@ table_send(struct userNode *from, const char *to, unsigned int size, irc_send_fu char line[MAX_LINE_SIZE+1]; struct handle_info *hi; char *sepstr = NULL; - int sepsize = 0; + unsigned int sepsize = 0; if (IsChannelName(to) || *to == '$') { message_dest = NULL; @@ -308,10 +308,18 @@ table_send(struct userNode *from, const char *to, unsigned int size, irc_send_fu if (irc_send) {} /* use that function */ - else if (hi) + else if(IsChannelName(to)) { + irc_send = irc_privmsg; + } + else if (message_dest->no_notice) { + irc_send = irc_privmsg; + } + else if (hi) { irc_send = HANDLE_FLAGGED(hi, USE_PRIVMSG) ? irc_privmsg : irc_notice; - else - irc_send = IsChannelName(to) ? irc_privmsg : irc_notice; + } + else { + irc_send = irc_notice; + } /* Limit size to how much we can show at once */ if (size > sizeof(line)) @@ -363,23 +371,31 @@ table_send(struct userNode *from, const char *to, unsigned int size, irc_send_fu line[pos++] = ' '; } line[pos] = 0; - sepsize = strlen_vis(line); - sepstr = malloc(sepsize + 1); - memset(sepstr, '-', sepsize); - sepstr[sepsize] = 0; - if(hi && hi->userlist_style != HI_STYLE_CLEAN) + + /* Dont show ---- bars in 'clean' style. */ + if(!(hi && hi->userlist_style == HI_STYLE_CLEAN)) { + //sepsize = strlen_vis(line); + sepsize = tot_width * nreps; + sepstr = malloc(sepsize + 1); + memset(sepstr, '-', sepsize); + sepstr[sepsize] = 0; irc_send(from, to, sepstr); /* ----------------- */ - irc_send(from, to, line); /* alpha beta roe */ - if(hi && hi->userlist_style != HI_STYLE_CLEAN) + } + irc_send(from, to, line); /* alpha beta roe */ + if(!(hi && hi->userlist_style == HI_STYLE_CLEAN)) irc_send(from, to, sepstr); /* ----------------- */ ii = 1; } /* Send the table. */ for (jj=0, pos=0, reps=0; ii 5) + /* Send end bar */ + if (!(table.flags & TABLE_NO_HEADERS) && + !(table.flags & TABLE_NO_FOOTER) && + !(hi && hi->userlist_style == HI_STYLE_CLEAN)) { + char endstr[MAX_LINE_SIZE+1]; + sprintf(endstr, "End (%d rows)", table.length-1); + + /* Copy above into the sepstr, centered */ + if(sepsize > strlen(endstr)+2) { - sepstr[sepsize/2-1] = 'E'; - sepstr[sepsize/2] = 'n'; - sepstr[sepsize/2+1]= 'd'; + char* eptr = endstr; + char* sptr = sepstr+(sepsize/2) - (strlen(endstr)+2)/2; + while(*eptr) + *sptr++ = *eptr++; } - - if(hi && hi->userlist_style != HI_STYLE_CLEAN) - irc_send(from, to, sepstr); - free(sepstr); + irc_send(from, to, sepstr); } + if(!(hi && hi->userlist_style == HI_STYLE_CLEAN)) + free(sepstr); + if (!(table.flags & TABLE_NO_FREE)) { /* Deallocate table memory (but not the string memory). */ for (ii=0; iino_notice) + irc_send = irc_privmsg; + else + irc_send = irc_notice; break; case 2: irc_send = irc_wallchops; @@ -483,7 +512,7 @@ vsend_message(const char *dest, struct userNode *src, struct handle_info *handle expand_pos = pos = 0; chars_sent = 0; while (input.list[ipos]) { - char ch, *value, *free_value; + char ch, *value = NULL, *free_value; while ((ch = input.list[ipos]) && (ch != '$') && (ch != '\n') && (pos < size)) { line[pos++] = ch; @@ -537,6 +566,9 @@ vsend_message(const char *dest, struct userNode *src, struct handle_info *handle case 'b': value = use_color ? "\002" : ""; break; + case 'k': + value = use_color ? "\003" : ""; + break; case 'o': value = use_color ? "\017" : ""; break; @@ -568,9 +600,23 @@ vsend_message(const char *dest, struct userNode *src, struct handle_info *handle case 's': value = self->name; break; +#ifdef HAVE_HELPSERV + case 'i': + value = strdup(get_helpserv_id(dest, src)); + break; +#endif case 'H': value = handle ? handle->handle : "Account"; break; + case '!': /* Command Char for chanserv */ + if(!trigger) + trigger = calloc(sizeof(*trigger), 2); + if(chanserv && (service = service_find(chanserv->nick))) + trigger[0] = service->trigger; + else + trigger[0] = '!'; + value = trigger; + break; #define SEND_LINE(TRUNCED) do { \ line[pos] = 0; \ if (pos > 0) { \