Added width marker for chat input and fixed linelength
This commit is contained in:
parent
8338e5fdaf
commit
807a6b8f5d
@ -19,9 +19,11 @@ v0.83.11 28-Jan-2006
|
|||||||
mbmon:
|
mbmon:
|
||||||
In chat beeps are heared for system messages.
|
In chat beeps are heared for system messages.
|
||||||
Removed most debug logging in chat.
|
Removed most debug logging in chat.
|
||||||
|
Added width marker for chat input and fixed linelength.
|
||||||
|
|
||||||
mbsebbs:
|
mbsebbs:
|
||||||
Removed most debug logging in chat.
|
Removed most debug logging in chat.
|
||||||
|
Added width marker for chat input and fixed linelength.
|
||||||
|
|
||||||
|
|
||||||
v0.83.10 25-Jan-2006 - 28-Jan-2006
|
v0.83.10 25-Jan-2006 - 28-Jan-2006
|
||||||
|
@ -46,7 +46,7 @@ extern pid_t mypid;
|
|||||||
struct sysconfig CFG;
|
struct sysconfig CFG;
|
||||||
|
|
||||||
|
|
||||||
char rbuf[50][80]; /* Chat receive buffer */ /* FIXME: must be a dynamic buffer */
|
char rbuf[50][81]; /* Chat receive buffer */ /* FIXME: must be a dynamic buffer */
|
||||||
int rpointer = 0; /* Chat receive pointer */
|
int rpointer = 0; /* Chat receive pointer */
|
||||||
int rsize = 5; /* Chat receive size */
|
int rsize = 5; /* Chat receive size */
|
||||||
|
|
||||||
@ -528,7 +528,7 @@ void DispMsg(char *msg)
|
|||||||
if ((msg[0] == '*') && (msg[1] != '*'))
|
if ((msg[0] == '*') && (msg[1] != '*'))
|
||||||
putchar('\007');
|
putchar('\007');
|
||||||
|
|
||||||
strncpy(rbuf[rpointer], msg, 80);
|
strncpy(rbuf[rpointer], msg, 81);
|
||||||
Showline(4+rpointer, 1, rbuf[rpointer]);
|
Showline(4+rpointer, 1, rbuf[rpointer]);
|
||||||
if (rpointer == rsize) {
|
if (rpointer == rsize) {
|
||||||
/*
|
/*
|
||||||
@ -537,7 +537,7 @@ void DispMsg(char *msg)
|
|||||||
for (i = 0; i <= rsize; i++) {
|
for (i = 0; i <= rsize; i++) {
|
||||||
mbse_locate(i+4,1);
|
mbse_locate(i+4,1);
|
||||||
clrtoeol();
|
clrtoeol();
|
||||||
snprintf(rbuf[i], 80, "%s", rbuf[i+1]);
|
snprintf(rbuf[i], 81, "%s", rbuf[i+1]);
|
||||||
Showline(i+4, 1, rbuf[i]);
|
Showline(i+4, 1, rbuf[i]);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
@ -554,7 +554,7 @@ void DispMsg(char *msg)
|
|||||||
*/
|
*/
|
||||||
void Chat(int sysop)
|
void Chat(int sysop)
|
||||||
{
|
{
|
||||||
int curpos = 0, stop = FALSE, data, rc;
|
int curpos = 0, width, stop = FALSE, data, rc;
|
||||||
unsigned char ch = 0;
|
unsigned char ch = 0;
|
||||||
char sbuf[81], resp[128], *sysop_name, *name;
|
char sbuf[81], resp[128], *sysop_name, *name;
|
||||||
static char buf[200];
|
static char buf[200];
|
||||||
@ -565,14 +565,13 @@ void Chat(int sysop)
|
|||||||
|
|
||||||
sysop_name = xstrcpy(clencode(CFG.sysop_name));
|
sysop_name = xstrcpy(clencode(CFG.sysop_name));
|
||||||
name = xstrcpy(clencode(CFG.sysop));
|
name = xstrcpy(clencode(CFG.sysop));
|
||||||
|
width = cols - (strlen(name) + 3);
|
||||||
snprintf(buf, 200, "CCON,4,%d,%s,%s,%s;", mypid, sysop_name, name, sysop ? "1":"0");
|
snprintf(buf, 200, "CCON,4,%d,%s,%s,%s;", mypid, sysop_name, name, sysop ? "1":"0");
|
||||||
free(sysop_name);
|
free(sysop_name);
|
||||||
free(name);
|
free(name);
|
||||||
// Syslog('-', "> %s", buf);
|
|
||||||
|
|
||||||
if (socket_send(buf) == 0) {
|
if (socket_send(buf) == 0) {
|
||||||
strcpy(buf, socket_receive());
|
strcpy(buf, socket_receive());
|
||||||
// Syslog('-', "< %s", buf);
|
|
||||||
if (strncmp(buf, "200:1,", 6) == 0) {
|
if (strncmp(buf, "200:1,", 6) == 0) {
|
||||||
set_color(LIGHTRED, BLACK);
|
set_color(LIGHTRED, BLACK);
|
||||||
mbse_mvprintw(4, 1, (char *)"Add \"fido 60179/udp # Chatserver\" to /etc/services");
|
mbse_mvprintw(4, 1, (char *)"Add \"fido 60179/udp # Chatserver\" to /etc/services");
|
||||||
@ -592,6 +591,7 @@ void Chat(int sysop)
|
|||||||
|
|
||||||
set_color(WHITE, BLACK);
|
set_color(WHITE, BLACK);
|
||||||
mbse_mvprintw(rows - 1, 1, ">");
|
mbse_mvprintw(rows - 1, 1, ">");
|
||||||
|
mbse_mvprintw(rows - 1, width + 2, "<");
|
||||||
memset(&sbuf, 0, sizeof(sbuf));
|
memset(&sbuf, 0, sizeof(sbuf));
|
||||||
memset(&rbuf, 0, sizeof(rbuf));
|
memset(&rbuf, 0, sizeof(rbuf));
|
||||||
|
|
||||||
@ -605,8 +605,6 @@ void Chat(int sysop)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Syslog('-', "Start loop");
|
|
||||||
|
|
||||||
while (stop == FALSE) {
|
while (stop == FALSE) {
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -619,14 +617,12 @@ void Chat(int sysop)
|
|||||||
memset(&buf, 0, sizeof(buf));
|
memset(&buf, 0, sizeof(buf));
|
||||||
strncpy(buf, socket_receive(), sizeof(buf)-1);
|
strncpy(buf, socket_receive(), sizeof(buf)-1);
|
||||||
if (strncmp(buf, "100:2,", 6) == 0) {
|
if (strncmp(buf, "100:2,", 6) == 0) {
|
||||||
// Syslog('-', "> CGET:1,%d;", mypid);
|
|
||||||
// Syslog('-', "< %s", buf);
|
|
||||||
strncpy(resp, strtok(buf, ":"), 10); /* Should be 100 */
|
strncpy(resp, strtok(buf, ":"), 10); /* Should be 100 */
|
||||||
strncpy(resp, strtok(NULL, ","), 5); /* Should be 2 */
|
strncpy(resp, strtok(NULL, ","), 5); /* Should be 2 */
|
||||||
strncpy(resp, strtok(NULL, ","), 5); /* 1= fatal error */
|
strncpy(resp, strtok(NULL, ","), 5); /* 1= fatal error */
|
||||||
rc = atoi(resp);
|
rc = atoi(resp);
|
||||||
memset(&resp, 0, sizeof(resp));
|
memset(&resp, 0, sizeof(resp));
|
||||||
strncpy(resp, cldecode(strtok(NULL, ";")), 80); /* The message */
|
strncpy(resp, cldecode(strtok(NULL, ";")), 81); /* The message */
|
||||||
DispMsg(resp);
|
DispMsg(resp);
|
||||||
if (rc == 1) {
|
if (rc == 1) {
|
||||||
Syslog('+', "Chat server error: %s", resp);
|
Syslog('+', "Chat server error: %s", resp);
|
||||||
@ -653,7 +649,7 @@ void Chat(int sysop)
|
|||||||
ch = testkey(rows -1, curpos + 2);
|
ch = testkey(rows -1, curpos + 2);
|
||||||
if (isprint(ch)) {
|
if (isprint(ch)) {
|
||||||
set_color(CYAN, BLACK);
|
set_color(CYAN, BLACK);
|
||||||
if (curpos < 77) {
|
if (curpos < width) {
|
||||||
putchar(ch);
|
putchar(ch);
|
||||||
fflush(stdout);
|
fflush(stdout);
|
||||||
sbuf[curpos] = ch;
|
sbuf[curpos] = ch;
|
||||||
@ -672,16 +668,14 @@ void Chat(int sysop)
|
|||||||
}
|
}
|
||||||
} else if ((ch == '\r') && curpos) {
|
} else if ((ch == '\r') && curpos) {
|
||||||
snprintf(buf, 200, "CPUT:2,%d,%s;", mypid, clencode(sbuf));
|
snprintf(buf, 200, "CPUT:2,%d,%s;", mypid, clencode(sbuf));
|
||||||
// Syslog('-', "> %s", buf);
|
|
||||||
if (socket_send(buf) == 0) {
|
if (socket_send(buf) == 0) {
|
||||||
strcpy(buf, socket_receive());
|
strcpy(buf, socket_receive());
|
||||||
// Syslog('-', "< %s", buf);
|
|
||||||
if (strncmp(buf, "100:2,", 6) == 0) {
|
if (strncmp(buf, "100:2,", 6) == 0) {
|
||||||
strncpy(resp, strtok(buf, ":"), 10); /* Should be 100 */
|
strncpy(resp, strtok(buf, ":"), 10); /* Should be 100 */
|
||||||
strncpy(resp, strtok(NULL, ","), 5); /* Should be 2 */
|
strncpy(resp, strtok(NULL, ","), 5); /* Should be 2 */
|
||||||
strncpy(resp, strtok(NULL, ","), 5); /* 1= fatal error, end chat */
|
strncpy(resp, strtok(NULL, ","), 5); /* 1= fatal error, end chat */
|
||||||
rc = atoi(resp);
|
rc = atoi(resp);
|
||||||
strncpy(resp, cldecode(strtok(NULL, ";")), 80); /* The message */
|
strncpy(resp, cldecode(strtok(NULL, ";")), 81); /* The message */
|
||||||
DispMsg(resp);
|
DispMsg(resp);
|
||||||
if (rc == 1) {
|
if (rc == 1) {
|
||||||
Syslog('+', "Chat server error: %s", resp);
|
Syslog('+', "Chat server error: %s", resp);
|
||||||
@ -695,6 +689,7 @@ void Chat(int sysop)
|
|||||||
clrtoeol();
|
clrtoeol();
|
||||||
set_color(WHITE, BLACK);
|
set_color(WHITE, BLACK);
|
||||||
mbse_mvprintw(rows - 1, 1, ">");
|
mbse_mvprintw(rows - 1, 1, ">");
|
||||||
|
mbse_mvprintw(rows - 1, width + 2, "<");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -707,8 +702,6 @@ void Chat(int sysop)
|
|||||||
if (socket_send(buf) == 0) {
|
if (socket_send(buf) == 0) {
|
||||||
strncpy(buf, socket_receive(), sizeof(buf)-1);
|
strncpy(buf, socket_receive(), sizeof(buf)-1);
|
||||||
if (strncmp(buf, "100:2,", 6) == 0) {
|
if (strncmp(buf, "100:2,", 6) == 0) {
|
||||||
// Syslog('-', "> CGET:1,%d;", mypid);
|
|
||||||
// Syslog('-', "< %s", buf);
|
|
||||||
strncpy(resp, strtok(buf, ":"), 10); /* Should be 100 */
|
strncpy(resp, strtok(buf, ":"), 10); /* Should be 100 */
|
||||||
strncpy(resp, strtok(NULL, ","), 5); /* Should be 2 */
|
strncpy(resp, strtok(NULL, ","), 5); /* Should be 2 */
|
||||||
strncpy(resp, strtok(NULL, ","), 5); /* 1= fatal error */
|
strncpy(resp, strtok(NULL, ","), 5); /* 1= fatal error */
|
||||||
@ -730,10 +723,8 @@ void Chat(int sysop)
|
|||||||
* Close server connection
|
* Close server connection
|
||||||
*/
|
*/
|
||||||
snprintf(buf, 200, "CCLO,1,%d;", mypid);
|
snprintf(buf, 200, "CCLO,1,%d;", mypid);
|
||||||
// Syslog('-', "> %s", buf);
|
|
||||||
if (socket_send(buf) == 0) {
|
if (socket_send(buf) == 0) {
|
||||||
strcpy(buf, socket_receive());
|
strcpy(buf, socket_receive());
|
||||||
// Syslog('-', "< %s", buf);
|
|
||||||
}
|
}
|
||||||
sleep(1);
|
sleep(1);
|
||||||
}
|
}
|
||||||
|
@ -176,7 +176,7 @@ void clrtoeol(void)
|
|||||||
*/
|
*/
|
||||||
void Chat(char *username, char *channel)
|
void Chat(char *username, char *channel)
|
||||||
{
|
{
|
||||||
int curpos = 0, stop = FALSE, data, rc;
|
int width, curpos = 0, stop = FALSE, data, rc;
|
||||||
unsigned char ch;
|
unsigned char ch;
|
||||||
char sbuf[81], resp[128], *name, *mname;
|
char sbuf[81], resp[128], *name, *mname;
|
||||||
static char buf[200];
|
static char buf[200];
|
||||||
@ -220,19 +220,17 @@ void Chat(char *username, char *channel)
|
|||||||
clear();
|
clear();
|
||||||
locate(1, 1);
|
locate(1, 1);
|
||||||
colour(WHITE, BLUE);
|
colour(WHITE, BLUE);
|
||||||
clrtoeol();
|
snprintf(buf, 200, "%-*s", cols, " MBSE BBS Chat Server");
|
||||||
snprintf(buf, 200, "%-*s", cols -1, " MBSE BBS Chat Server");
|
|
||||||
mvprintw(1, 1, buf);
|
mvprintw(1, 1, buf);
|
||||||
|
|
||||||
mname = xstrcpy(clencode(exitinfo.sUserName));
|
mname = xstrcpy(clencode(exitinfo.sUserName));
|
||||||
name = xstrcpy(clencode(exitinfo.Name));
|
name = xstrcpy(clencode(exitinfo.Name));
|
||||||
|
width = cols - (strlen(name) + 3);
|
||||||
snprintf(buf, 200, "CCON,4,%d,%s,%s,0;", mypid, mname, name);
|
snprintf(buf, 200, "CCON,4,%d,%s,%s,0;", mypid, mname, name);
|
||||||
free(mname);
|
free(mname);
|
||||||
free(name);
|
free(name);
|
||||||
// Syslog('c', "> %s", buf);
|
|
||||||
if (socket_send(buf) == 0) {
|
if (socket_send(buf) == 0) {
|
||||||
strncpy(buf, socket_receive(), sizeof(buf)-1);
|
strncpy(buf, socket_receive(), sizeof(buf)-1);
|
||||||
// Syslog('c', "< %s", buf);
|
|
||||||
if (strncmp(buf, "200:1,", 6) == 0) {
|
if (strncmp(buf, "200:1,", 6) == 0) {
|
||||||
Syslog('!', "Chatsever is not available");
|
Syslog('!', "Chatsever is not available");
|
||||||
colour(LIGHTRED, BLACK);
|
colour(LIGHTRED, BLACK);
|
||||||
@ -246,14 +244,15 @@ void Chat(char *username, char *channel)
|
|||||||
|
|
||||||
locate(rows - 2, 1);
|
locate(rows - 2, 1);
|
||||||
colour(WHITE, BLUE);
|
colour(WHITE, BLUE);
|
||||||
clrtoeol();
|
snprintf(buf, 200, "%-*s", cols, " Chat, type \"/EXIT\" to exit or \"/HELP\" for help");
|
||||||
snprintf(buf, 200, "%-*s", cols -1, " Chat, type \"/EXIT\" to exit or \"/HELP\" for help");
|
|
||||||
mvprintw(rows - 2, 1, buf);
|
mvprintw(rows - 2, 1, buf);
|
||||||
|
|
||||||
colour(LIGHTGRAY, BLACK);
|
colour(WHITE, BLACK);
|
||||||
mvprintw(rows - 1, 1, ">");
|
mvprintw(rows - 1, 1, ">");
|
||||||
|
mvprintw(rows - 1, width + 2, "<");
|
||||||
memset(&sbuf, 0, sizeof(sbuf));
|
memset(&sbuf, 0, sizeof(sbuf));
|
||||||
memset(&rbuf, 0, sizeof(rbuf));
|
memset(&rbuf, 0, sizeof(rbuf));
|
||||||
|
colour(LIGHTGRAY, BLACK);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* If username and channelname are given, send the /nick and /join
|
* If username and channelname are given, send the /nick and /join
|
||||||
@ -268,7 +267,6 @@ void Chat(char *username, char *channel)
|
|||||||
strcpy(buf, socket_receive());
|
strcpy(buf, socket_receive());
|
||||||
}
|
}
|
||||||
|
|
||||||
// Syslog('c', "Start loop");
|
|
||||||
chatting = TRUE;
|
chatting = TRUE;
|
||||||
|
|
||||||
while (stop == FALSE) {
|
while (stop == FALSE) {
|
||||||
@ -282,8 +280,6 @@ void Chat(char *username, char *channel)
|
|||||||
if (socket_send(buf) == 0) {
|
if (socket_send(buf) == 0) {
|
||||||
strncpy(buf, socket_receive(), sizeof(buf)-1);
|
strncpy(buf, socket_receive(), sizeof(buf)-1);
|
||||||
if (strncmp(buf, "100:2,", 6) == 0) {
|
if (strncmp(buf, "100:2,", 6) == 0) {
|
||||||
// Syslog('c', "> CGET:1,%d;", mypid);
|
|
||||||
// Syslog('c', "< %s", buf);
|
|
||||||
strncpy(resp, strtok(buf, ":"), 10); /* Should be 100 */
|
strncpy(resp, strtok(buf, ":"), 10); /* Should be 100 */
|
||||||
strncpy(resp, strtok(NULL, ","), 5); /* Should be 2 */
|
strncpy(resp, strtok(NULL, ","), 5); /* Should be 2 */
|
||||||
strncpy(resp, strtok(NULL, ","), 5); /* 1= fatal, chat ended */
|
strncpy(resp, strtok(NULL, ","), 5); /* 1= fatal, chat ended */
|
||||||
@ -322,7 +318,7 @@ void Chat(char *username, char *channel)
|
|||||||
/* if KEY_DEL isprint, do no output again */
|
/* if KEY_DEL isprint, do no output again */
|
||||||
} else if (isprint(ch) || traduce(&ch)) {
|
} else if (isprint(ch) || traduce(&ch)) {
|
||||||
alarm_on();
|
alarm_on();
|
||||||
if (curpos < 77) {
|
if (curpos < width) {
|
||||||
PUTCHAR(ch);
|
PUTCHAR(ch);
|
||||||
sbuf[curpos] = ch;
|
sbuf[curpos] = ch;
|
||||||
curpos++;
|
curpos++;
|
||||||
@ -332,10 +328,8 @@ void Chat(char *username, char *channel)
|
|||||||
} else if ((ch == '\r') && curpos) {
|
} else if ((ch == '\r') && curpos) {
|
||||||
alarm_on();
|
alarm_on();
|
||||||
snprintf(buf, 200, "CPUT:2,%d,%s;", mypid, clencode(sbuf));
|
snprintf(buf, 200, "CPUT:2,%d,%s;", mypid, clencode(sbuf));
|
||||||
// Syslog('c', "> %s", clencode(buf));
|
|
||||||
if (socket_send(buf) == 0) {
|
if (socket_send(buf) == 0) {
|
||||||
strcpy(buf, socket_receive());
|
strcpy(buf, socket_receive());
|
||||||
// Syslog('c', "< %s", buf);
|
|
||||||
if (strncmp(buf, "100:2,", 6) == 0) {
|
if (strncmp(buf, "100:2,", 6) == 0) {
|
||||||
strncpy(resp, strtok(buf, ":"), 10); /* Should be 100 */
|
strncpy(resp, strtok(buf, ":"), 10); /* Should be 100 */
|
||||||
strncpy(resp, strtok(NULL, ","), 5); /* Should be 2 */
|
strncpy(resp, strtok(NULL, ","), 5); /* Should be 2 */
|
||||||
@ -353,7 +347,10 @@ void Chat(char *username, char *channel)
|
|||||||
memset(&sbuf, 0, sizeof(sbuf));
|
memset(&sbuf, 0, sizeof(sbuf));
|
||||||
locate(rows - 1, 2);
|
locate(rows - 1, 2);
|
||||||
clrtoeol();
|
clrtoeol();
|
||||||
|
colour(WHITE, BLACK);
|
||||||
mvprintw(rows - 1, 1, ">");
|
mvprintw(rows - 1, 1, ">");
|
||||||
|
mvprintw(rows - 1, width + 2, "<");
|
||||||
|
colour(LIGHTGRAY, BLACK);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
chatting = FALSE;
|
chatting = FALSE;
|
||||||
@ -367,8 +364,6 @@ void Chat(char *username, char *channel)
|
|||||||
if (socket_send(buf) == 0) {
|
if (socket_send(buf) == 0) {
|
||||||
strncpy(buf, socket_receive(), sizeof(buf)-1);
|
strncpy(buf, socket_receive(), sizeof(buf)-1);
|
||||||
if (strncmp(buf, "100:2,", 6) == 0) {
|
if (strncmp(buf, "100:2,", 6) == 0) {
|
||||||
// Syslog('c', "> CGET:1,%d;", mypid);
|
|
||||||
// Syslog('c', "< %s", buf);
|
|
||||||
strncpy(resp, strtok(buf, ":"), 10); /* Should be 100 */
|
strncpy(resp, strtok(buf, ":"), 10); /* Should be 100 */
|
||||||
strncpy(resp, strtok(NULL, ","), 5); /* Should be 2 */
|
strncpy(resp, strtok(NULL, ","), 5); /* Should be 2 */
|
||||||
strncpy(resp, strtok(NULL, ","), 5); /* 1= fatal error */
|
strncpy(resp, strtok(NULL, ","), 5); /* 1= fatal error */
|
||||||
@ -404,10 +399,8 @@ void Chat(char *username, char *channel)
|
|||||||
* Close server connection
|
* Close server connection
|
||||||
*/
|
*/
|
||||||
snprintf(buf, 200, "CCLO,1,%d;", mypid);
|
snprintf(buf, 200, "CCLO,1,%d;", mypid);
|
||||||
// Syslog('c', "> %s", buf);
|
|
||||||
if (socket_send(buf) == 0) {
|
if (socket_send(buf) == 0) {
|
||||||
strcpy(buf, socket_receive());
|
strcpy(buf, socket_receive());
|
||||||
// Syslog('c', "< %s", buf);
|
|
||||||
}
|
}
|
||||||
sleep(2);
|
sleep(2);
|
||||||
clear();
|
clear();
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
* Purpose ...............: Input functions, also for some utils.
|
* Purpose ...............: Input functions, also for some utils.
|
||||||
*
|
*
|
||||||
*****************************************************************************
|
*****************************************************************************
|
||||||
* Copyright (C) 1997-2005
|
* Copyright (C) 1997-2006
|
||||||
*
|
*
|
||||||
* Michiel Broek FIDO: 2:280/2802
|
* Michiel Broek FIDO: 2:280/2802
|
||||||
* Beekmansbos 10
|
* Beekmansbos 10
|
||||||
@ -50,6 +50,10 @@ void CheckScreen(void)
|
|||||||
struct winsize ws;
|
struct winsize ws;
|
||||||
|
|
||||||
if (ioctl(1, TIOCGWINSZ, &ws) != -1 && (ws.ws_col > 0) && (ws.ws_row > 0)) {
|
if (ioctl(1, TIOCGWINSZ, &ws) != -1 && (ws.ws_col > 0) && (ws.ws_row > 0)) {
|
||||||
|
if (ws.ws_col != 80)
|
||||||
|
ws.ws_col = 80;
|
||||||
|
if (ws.ws_row < 24)
|
||||||
|
ws.ws_row = 24;
|
||||||
if ((ws.ws_col != cols) || (ws.ws_row != rows)) {
|
if ((ws.ws_col != cols) || (ws.ws_row != rows)) {
|
||||||
cols = ws.ws_col;
|
cols = ws.ws_col;
|
||||||
rows = ws.ws_row;
|
rows = ws.ws_row;
|
||||||
|
@ -110,7 +110,7 @@ int main(int argc, char **argv)
|
|||||||
if (getenv("LINES") != NULL) {
|
if (getenv("LINES") != NULL) {
|
||||||
rows = atoi(getenv("LINES"));
|
rows = atoi(getenv("LINES"));
|
||||||
} else {
|
} else {
|
||||||
Syslog('b', "Could net get screensize from environment too");
|
Syslog('b', "Could not get screensize from environment too");
|
||||||
}
|
}
|
||||||
/* use linux/vt.h + ioctl VT_RESIZE */
|
/* use linux/vt.h + ioctl VT_RESIZE */
|
||||||
}
|
}
|
||||||
@ -195,6 +195,12 @@ int main(int argc, char **argv)
|
|||||||
poutCR(YELLOW, BLACK, temp);
|
poutCR(YELLOW, BLACK, temp);
|
||||||
pout(WHITE, BLACK, (char *)COPYRIGHT);
|
pout(WHITE, BLACK, (char *)COPYRIGHT);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Use 80 wide screens
|
||||||
|
*/
|
||||||
|
if (cols > 80)
|
||||||
|
cols = 80;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Check and report screens that are too small
|
* Check and report screens that are too small
|
||||||
*/
|
*/
|
||||||
|
@ -376,13 +376,13 @@ void chat_cleanuser(pid_t pid)
|
|||||||
*/
|
*/
|
||||||
void chat_msg(char *channel, char *nick, char *msg)
|
void chat_msg(char *channel, char *nick, char *msg)
|
||||||
{
|
{
|
||||||
char buf[79];
|
char buf[81];
|
||||||
usr_list *tmpu;
|
usr_list *tmpu;
|
||||||
|
|
||||||
if (nick == NULL)
|
if (nick == NULL)
|
||||||
snprintf(buf, 79, "%s", msg);
|
snprintf(buf, 81, "%s", msg);
|
||||||
else
|
else
|
||||||
snprintf(buf, 79, "<%s> %s", nick, msg);
|
snprintf(buf, 81, "<%s> %s", nick, msg);
|
||||||
Chatlog((char *)"+", channel, buf);
|
Chatlog((char *)"+", channel, buf);
|
||||||
|
|
||||||
for (tmpu = users; tmpu; tmpu = tmpu->next) {
|
for (tmpu = users; tmpu; tmpu = tmpu->next) {
|
||||||
@ -721,6 +721,10 @@ void chat_put_r(char *data, char *buf)
|
|||||||
goto ack;
|
goto ack;
|
||||||
} else {
|
} else {
|
||||||
chat_msg(tmpu->channel, tmpu->nick, msg);
|
chat_msg(tmpu->channel, tmpu->nick, msg);
|
||||||
|
/*
|
||||||
|
* Send message to all links but not the #sysop channel
|
||||||
|
*/
|
||||||
|
if (strcmp(tmpu->channel, "#sysop"))
|
||||||
send_all("PRIVMSG %s <%s> %s\r\n", tmpu->channel, tmpu->nick, msg);
|
send_all("PRIVMSG %s <%s> %s\r\n", tmpu->channel, tmpu->nick, msg);
|
||||||
}
|
}
|
||||||
goto ack;
|
goto ack;
|
||||||
|
Reference in New Issue
Block a user