Minor bug fixes and improvements

* Color help text a bit
* Split lines for buffer so padding works - may need to do elsewhere also
* Fix a couple crashes
This commit is contained in:
Bryan Ashby 2019-06-07 23:23:06 -06:00
parent c79e2bc971
commit 094385a150
No known key found for this signature in database
GPG Key ID: B49EB437951D2542
1 changed files with 69 additions and 47 deletions

View File

@ -32,7 +32,7 @@ const FormIds = {
mrcChat : 0, mrcChat : 0,
}; };
var MciViewIds = { const MciViewIds = {
mrcChat : { mrcChat : {
chatLog : 1, chatLog : 1,
inputArea : 2, inputArea : 2,
@ -48,19 +48,20 @@ var MciViewIds = {
// TODO: this is a bit shit, could maybe do it with an ansi instead // TODO: this is a bit shit, could maybe do it with an ansi instead
const helpText = ` const helpText = `
General Chat: |15General Chat|08:
/rooms & /join <ro - List all or join a room |03/|11rooms |08& |03/|11join |03<room> |08- |07List all or join a room
/pm <user> <message> - Send a private message |03/|11pm |03<user> <message> |08- |07Send a private message
---- ----
/whoon - Who's on what BBS |03/|11whoon |08- |07Who's on what BBS
/chatters - Who's in what room |03/|11chatters |08- |07Who's in what room
/topic <message> - Set the room topic |03/|11clear |08- |07Clear back buffer
/bbses & /info <id> - Info about BBS's connected |03/|11topic <message> |08- |07Set the room topic
/meetups - Info about MRC MeetUps |03/|11bbses & |03/|11info <id> |08- |07Info about BBS's connected
|03/|11meetups |08- |07Info about MRC MeetUps
--- ---
/l33t <your message> - l337 5p34k |03/|11l33t <your message> |08- |07l337 5p34k
/kewl <your message> - BBS KeWL SPeaK |03/|11kewl <your message> |08- |07BBS KeWL SPeaK
/rainbow <your message> - Crazy rainbow text |03/|11rainbow <your message> |08- |07Crazy rainbow text
`; `;
@ -94,7 +95,7 @@ exports.getModule = class mrcModule extends MenuModule {
}, },
movementKeyPressed : (formData, extraArgs, cb) => { movementKeyPressed : (formData, extraArgs, cb) => {
const bodyView = this.viewControllers.mrcChat.getView(MciViewIds.mrcChat.chatLog); // :TODO: use const here vs magic # const bodyView = this.viewControllers.mrcChat.getView(MciViewIds.mrcChat.chatLog);
switch(formData.key.name) { switch(formData.key.name) {
case 'down arrow' : bodyView.scrollDocumentUp(); break; case 'down arrow' : bodyView.scrollDocumentUp(); break;
case 'up arrow' : bodyView.scrollDocumentDown(); break; case 'up arrow' : bodyView.scrollDocumentDown(); break;
@ -108,9 +109,6 @@ exports.getModule = class mrcModule extends MenuModule {
}, },
quit : (formData, extraArgs, cb) => { quit : (formData, extraArgs, cb) => {
this.sendServerMessage('LOGOFF');
clearInterval(this.heartbeat);
this.state.socket.destroy();
return this.prevMenu(cb); return this.prevMenu(cb);
} }
}; };
@ -138,16 +136,19 @@ exports.getModule = class mrcModule extends MenuModule {
// connect to multiplexer // connect to multiplexer
this.state.socket = net.createConnection(connectOpts, () => { this.state.socket = net.createConnection(connectOpts, () => {
const self = this; this.client.once('end', () => {
// handshake with multiplexer this.quitServer();
self.state.socket.write(`--DUDE-ITS--|${self.state.alias}\n`); });
self.clientConnect(); // handshake with multiplexer
this.state.socket.write(`--DUDE-ITS--|${this.state.alias}\n`);
this.clientConnect();
// send register to central MRC and get stats every 60s // send register to central MRC and get stats every 60s
self.heartbeat = setInterval(function () { this.heartbeat = setInterval( () => {
self.sendHeartbeat(); this.sendHeartbeat();
self.sendServerMessage('STATS'); this.sendServerMessage('STATS');
}, 60000); }, 60000);
}); });
@ -167,26 +168,46 @@ exports.getModule = class mrcModule extends MenuModule {
}); });
} }
leave() {
this.quitServer();
return super.leave();
}
quitServer() {
clearInterval(this.heartbeat);
if(this.state.socket) {
this.sendServerMessage('LOGOFF');
this.state.socket.destroy();
}
}
/** /**
* Adds a message to the chat log on screen * Adds a message to the chat log on screen
*/ */
addMessageToChatLog(message) { addMessageToChatLog(message) {
const chatLogView = this.viewControllers.mrcChat.getView(MciViewIds.mrcChat.chatLog); if(!Array.isArray(message)) {
const messageLength = stripMciColorCodes(message).length; message = [ message ];
const chatWidth = chatLogView.dimens.width;
let padAmount = 0;
let spaces = 2;
if (messageLength > chatWidth) {
padAmount = chatWidth - (messageLength % chatWidth) - spaces;
} else {
padAmount = chatWidth - messageLength - spaces ;
} }
if (padAmount < 0) padAmount = 0; message.forEach(msg => {
const chatLogView = this.viewControllers.mrcChat.getView(MciViewIds.mrcChat.chatLog);
const messageLength = stripMciColorCodes(msg).length;
const chatWidth = chatLogView.dimens.width;
let padAmount = 0;
let spaces = 2;
const padding = ' |00' + ' '.repeat(padAmount); if (messageLength > chatWidth) {
chatLogView.addText(pipeToAnsi(message + padding)); padAmount = chatWidth - (messageLength % chatWidth) - spaces;
} else {
padAmount = chatWidth - messageLength - spaces;
}
if (padAmount < 0) padAmount = 0;
const padding = ' |00' + ' '.repeat(padAmount);
chatLogView.addText(pipeToAnsi(msg + padding));
});
} }
/** /**
@ -267,7 +288,7 @@ exports.getModule = class mrcModule extends MenuModule {
const messageFormat = const messageFormat =
this.config.messageFormat || this.config.messageFormat ||
'|00|10<|02{fromUserName}|10>|00 |03{message}|00'; '|00|10<|02{fromUserName}|10>|00 |03{message}|00';
const privateMessageFormat = const privateMessageFormat =
this.config.outgoingPrivateMessageFormat || this.config.outgoingPrivateMessageFormat ||
'|00|10<|02{fromUserName}|10|14->|02{toUserName}>|00 |03{message}|00'; '|00|10<|02{fromUserName}|10|14->|02{toUserName}>|00 |03{message}|00';
@ -280,7 +301,7 @@ exports.getModule = class mrcModule extends MenuModule {
// pm // pm
formattedMessage = stringFormat(privateMessageFormat, textFormatObj); formattedMessage = stringFormat(privateMessageFormat, textFormatObj);
} }
try { try {
this.sendMessageToMultiplexer(to_user || '', '', this.state.room, formattedMessage); this.sendMessageToMultiplexer(to_user || '', '', this.state.room, formattedMessage);
} catch(e) { } catch(e) {
@ -366,7 +387,7 @@ exports.getModule = class mrcModule extends MenuModule {
break; break;
case '?': case '?':
this.addMessageToChatLog(helpText); this.addMessageToChatLog(helpText.split(/\n/g));
break; break;
default: default:
@ -385,16 +406,17 @@ exports.getModule = class mrcModule extends MenuModule {
sendMessageToMultiplexer(to_user, to_site, to_room, body) { sendMessageToMultiplexer(to_user, to_site, to_room, body) {
const message = { const message = {
from_user: this.state.alias, to_user,
from_room: this.state.room, to_site,
to_user: to_user, to_room,
to_site: to_site, body,
to_room: to_room, from_user : this.state.alias,
body: body from_room : this.state.room,
}; };
// TODO: check socket still exists here if(this.state.socket) {
this.state.socket.write(JSON.stringify(message) + '\n'); this.state.socket.write(JSON.stringify(message) + '\n');
}
} }
/** /**