enigma-bbs/core/connect.js

155 lines
3.7 KiB
JavaScript
Raw Normal View History

2014-10-17 02:21:06 +00:00
/* jslint node: true */
'use strict';
var ansi = require('./ansi_term.js');
2015-06-30 19:04:58 +00:00
var colorCodes = require('./color_codes.js');
var theme = require('./theme.js');
var moduleUtil = require('./module_util.js');
var Config = require('./config.js').config;
2015-06-30 19:04:58 +00:00
2014-10-17 02:21:06 +00:00
var packageJson = require('../package.json');
var assert = require('assert');
2014-10-17 02:21:06 +00:00
var util = require('util');
exports.connectEntry = connectEntry;
2014-10-17 02:21:06 +00:00
function ansiQueryTermSizeIfNeeded(client, cb) {
if(client.term.termHeight > 0 || client.term.termWidth > 0) {
cb(true);
return;
}
var done = function(res) {
client.removeListener('cursor position report', cprListener);
clearTimeout(giveUpTimer);
cb(res);
};
var cprListener = function(pos) {
//
// If we've already found out, disregard
//
if(client.term.termHeight > 0 || client.term.termWidth > 0) {
done(true);
return;
}
assert(2 === pos.length);
var h = pos[0];
var w = pos[1];
//
// Netrunner for example gives us 1x1 here. Not really useful. Ignore
// values that seem obviously bad.
//
if(h < 10 || w < 10) {
client.log.warn(
{ height : h, width : w },
'Ignoring ANSI CPR screen size query response due to very small values');
done(false);
return;
}
client.term.termHeight = h;
client.term.termWidth = w;
client.log.debug(
{
termWidth : client.term.termWidth,
termHeight : client.term.termHeight,
source : 'ANSI CPR'
},
'Window size updated'
);
done(true);
};
client.once('cursor position report', cprListener);
// give up after 2s
var giveUpTimer = setTimeout(function onTimeout() {
done(false);
}, 2000);
2014-10-17 02:21:06 +00:00
// This causes
client.term.write(ansi.queryScreenSize());
}
function prepareTerminal(term) {
2014-10-17 02:21:06 +00:00
term.write(ansi.normal());
term.write(ansi.disableVT100LineWrapping());
// :TODO: set xterm stuff -- see x84/others
}
2014-10-17 02:21:06 +00:00
function displayBanner(term) {
// :TODO: add URL(s) to banner
2015-06-30 19:04:58 +00:00
term.write(colorCodes.pipeToAnsi(util.format(
'|33Conected to |32EN|33|01i|00|32|22GMA|32|01½|00 |33BBS version|31|01 %s\n' +
'|00|33Copyright (c) 2014-2015 Bryan Ashby\n' +
2014-10-17 02:21:06 +00:00
'|00', packageJson.version)));
}
function connectEntry(client) {
var term = client.term;
/*
theme.displayThemeArt({client : client, name : 'DM-ENIG.ANS'}, function onArt() {
return;
});
*/
/*
var iconv = require('iconv-lite');
var art1 = require('fs').readFileSync('/home/nuskooler/dev/enigma-bbs/mods/art/DM-ENIG.ANS');
console.log(typeof art1);
art1 = iconv.decode(art1, 'cp437');
console.log(typeof art1)
term.output.write(art1);
//term.output.write(require('iconv-lite').encode(art1, 'CP437'));
return;
*/
2015-07-04 22:03:44 +00:00
// :TODO: Enthral for example queries cursor position & checks if it worked. This might be good
// :TODO: How to detect e.g. if show/hide cursor can work? Probably can if CPR is avail
//
// Some terminal clients can be detected using a nonstandard ANSI DSR
//
term.rawWrite(ansi.queryDeviceAttributes(0));
// :TODO: PuTTY will apparently respond with "PuTTY" if a CTRL-E is sent to it
//
// If we don't yet know the client term width/height,
// try with a nonstandard ANSI DSR type request.
//
ansiQueryTermSizeIfNeeded(client, function ansiCprResult(result) {
if(!result) {
//
// We still don't have something good for term height/width.
// Default to DOS size 80x25.
//
// :TODO: Netrunner is currenting hitting this and it feels wrong. Why is NAWS/ENV/CPR all failing???
client.log.warn('Failed to negotiate term size; Defaulting to 80x25!');
term.termHeight = 25;
term.termWidth = 80;
}
prepareTerminal(term);
//
// Always show a ENiGMA½ banner
//
displayBanner(term);
2014-10-17 02:21:06 +00:00
setTimeout(function onTimeout() {
client.gotoMenuModule( { name : Config.firstMenu });
}, 500);
});
2014-10-17 02:21:06 +00:00
}