2014-10-17 02:21:06 +00:00
|
|
|
/* jslint node: true */
|
|
|
|
'use strict';
|
|
|
|
|
2018-06-23 03:26:46 +00:00
|
|
|
// ENiGMA½
|
2018-12-03 02:33:07 +00:00
|
|
|
const ansi = require('./ansi_term.js');
|
|
|
|
const Events = require('./events.js');
|
|
|
|
const { Errors } = require('./enig_error.js');
|
2014-10-17 02:21:06 +00:00
|
|
|
|
2018-06-23 03:26:46 +00:00
|
|
|
// deps
|
|
|
|
const async = require('async');
|
2016-08-14 17:45:31 +00:00
|
|
|
|
2018-06-23 03:26:46 +00:00
|
|
|
exports.connectEntry = connectEntry;
|
2014-10-17 02:21:06 +00:00
|
|
|
|
2016-08-14 17:45:31 +00:00
|
|
|
function ansiDiscoverHomePosition(client, cb) {
|
2018-06-22 05:15:04 +00:00
|
|
|
//
|
2018-06-23 03:26:46 +00:00
|
|
|
// We want to find the home position. ANSI-BBS and most terminals
|
|
|
|
// utilize 1,1 as home. However, some terminals such as ConnectBot
|
|
|
|
// think of home as 0,0. If this is the case, we need to offset
|
2018-12-03 02:33:07 +00:00
|
|
|
// our positioning to accommodate for such.
|
2018-06-22 05:15:04 +00:00
|
|
|
//
|
|
|
|
const done = function(err) {
|
|
|
|
client.removeListener('cursor position report', cprListener);
|
|
|
|
clearTimeout(giveUpTimer);
|
|
|
|
return cb(err);
|
|
|
|
};
|
|
|
|
|
|
|
|
const cprListener = function(pos) {
|
|
|
|
const h = pos[0];
|
|
|
|
const w = pos[1];
|
|
|
|
|
|
|
|
//
|
2018-06-23 03:26:46 +00:00
|
|
|
// We expect either 0,0, or 1,1. Anything else will be filed as bad data
|
2018-06-22 05:15:04 +00:00
|
|
|
//
|
|
|
|
if(h > 1 || w > 1) {
|
|
|
|
client.log.warn( { height : h, width : w }, 'Ignoring ANSI home position CPR due to unexpected values');
|
2018-12-03 02:33:07 +00:00
|
|
|
return done(Errors.UnexpectedState('Home position CPR expected to be 0,0, or 1,1'));
|
2018-06-22 05:15:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if(0 === h & 0 === w) {
|
|
|
|
//
|
2018-06-23 03:26:46 +00:00
|
|
|
// Store a CPR offset in the client. All CPR's from this point on will offset by this amount
|
2018-06-22 05:15:04 +00:00
|
|
|
//
|
|
|
|
client.log.info('Setting CPR offset to 1');
|
|
|
|
client.cprOffset = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return done(null);
|
|
|
|
};
|
|
|
|
|
|
|
|
client.once('cursor position report', cprListener);
|
|
|
|
|
|
|
|
const giveUpTimer = setTimeout( () => {
|
2018-12-03 02:33:07 +00:00
|
|
|
return done(Errors.General('Giving up on home position CPR'));
|
2018-06-23 03:26:46 +00:00
|
|
|
}, 3000); // 3s
|
2018-06-22 05:15:04 +00:00
|
|
|
|
2018-06-23 03:26:46 +00:00
|
|
|
client.term.write(`${ansi.goHome()}${ansi.queryPos()}`); // go home, query pos
|
2016-08-14 17:45:31 +00:00
|
|
|
}
|
|
|
|
|
2015-05-16 05:02:58 +00:00
|
|
|
function ansiQueryTermSizeIfNeeded(client, cb) {
|
2018-06-22 05:15:04 +00:00
|
|
|
if(client.term.termHeight > 0 || client.term.termWidth > 0) {
|
|
|
|
return cb(null);
|
|
|
|
}
|
|
|
|
|
|
|
|
const done = function(err) {
|
|
|
|
client.removeListener('cursor position report', cprListener);
|
|
|
|
clearTimeout(giveUpTimer);
|
|
|
|
return cb(err);
|
|
|
|
};
|
|
|
|
|
|
|
|
const cprListener = function(pos) {
|
|
|
|
//
|
2018-06-23 03:26:46 +00:00
|
|
|
// If we've already found out, disregard
|
2018-06-22 05:15:04 +00:00
|
|
|
//
|
|
|
|
if(client.term.termHeight > 0 || client.term.termWidth > 0) {
|
|
|
|
return done(null);
|
|
|
|
}
|
|
|
|
|
|
|
|
const h = pos[0];
|
|
|
|
const w = pos[1];
|
|
|
|
|
|
|
|
//
|
2018-12-03 02:33:07 +00:00
|
|
|
// NetRunner for example gives us 1x1 here. Not really useful. Ignore
|
2018-12-31 18:30:40 +00:00
|
|
|
// values that seem obviously bad. Included in the set is the explicit
|
|
|
|
// 999x999 values we asked to move to.
|
2018-06-22 05:15:04 +00:00
|
|
|
//
|
2018-12-31 18:30:40 +00:00
|
|
|
if(h < 10 || h === 999 || w < 10 || w === 999) {
|
2018-06-22 05:15:04 +00:00
|
|
|
client.log.warn(
|
|
|
|
{ height : h, width : w },
|
2018-12-31 18:30:40 +00:00
|
|
|
'Ignoring ANSI CPR screen size query response due to non-sane values');
|
2018-12-03 02:33:07 +00:00
|
|
|
return done(Errors.Invalid('Term size <= 10 considered invalid'));
|
2018-06-22 05:15:04 +00:00
|
|
|
}
|
|
|
|
|
2018-06-23 03:26:46 +00:00
|
|
|
client.term.termHeight = h;
|
|
|
|
client.term.termWidth = w;
|
2018-06-22 05:15:04 +00:00
|
|
|
|
|
|
|
client.log.debug(
|
|
|
|
{
|
2018-06-23 03:26:46 +00:00
|
|
|
termWidth : client.term.termWidth,
|
|
|
|
termHeight : client.term.termHeight,
|
|
|
|
source : 'ANSI CPR'
|
2018-06-22 05:15:04 +00:00
|
|
|
},
|
|
|
|
'Window size updated'
|
|
|
|
);
|
|
|
|
|
|
|
|
return done(null);
|
|
|
|
};
|
|
|
|
|
|
|
|
client.once('cursor position report', cprListener);
|
|
|
|
|
2018-06-23 03:26:46 +00:00
|
|
|
// give up after 2s
|
2018-06-22 05:15:04 +00:00
|
|
|
const giveUpTimer = setTimeout( () => {
|
2018-12-03 02:33:07 +00:00
|
|
|
return done(Errors.General('No term size established by CPR within timeout'));
|
2018-06-22 05:15:04 +00:00
|
|
|
}, 2000);
|
|
|
|
|
2018-12-31 18:30:40 +00:00
|
|
|
// Start the process:
|
|
|
|
// 1 - Ask to goto 999,999 -- a very much "bottom right" (generally 80x25 for example
|
|
|
|
// is the real size)
|
|
|
|
// 2 - Query for screen size with bansi.txt style specialized Device Status Report (DSR)
|
|
|
|
// request. We expect a CPR of:
|
|
|
|
// a - Terms that support bansi.txt style: Screen size
|
|
|
|
// b - Terms that do not support bansi.txt style: Since we moved to the bottom right
|
|
|
|
// we should still be able to determine a screen size.
|
|
|
|
//
|
|
|
|
client.term.rawWrite(`${ansi.goto(999, 999)}${ansi.queryScreenSize()}`);
|
2014-10-29 11:30:20 +00:00
|
|
|
}
|
|
|
|
|
2014-10-31 04:59:21 +00:00
|
|
|
function prepareTerminal(term) {
|
2018-12-31 18:30:40 +00:00
|
|
|
term.rawWrite(`${ansi.normal()}${ansi.clearScreen()}`);
|
2014-10-31 04:59:21 +00:00
|
|
|
}
|
2014-10-17 02:21:06 +00:00
|
|
|
|
2014-10-31 04:59:21 +00:00
|
|
|
function displayBanner(term) {
|
2018-06-23 03:26:46 +00:00
|
|
|
// note: intentional formatting:
|
2018-06-22 05:15:04 +00:00
|
|
|
term.pipeWrite(`
|
2016-08-27 03:28:29 +00:00
|
|
|
|06Connected to |02EN|10i|02GMA|10½ |06BBS version |12|VN
|
2018-02-03 15:20:51 +00:00
|
|
|
|06Copyright (c) 2014-2018 Bryan Ashby |14- |12http://l33t.codes/
|
2016-08-27 03:28:29 +00:00
|
|
|
|06Updates & source |14- |12https://github.com/NuSkooler/enigma-bbs/
|
|
|
|
|00`
|
2018-06-22 05:15:04 +00:00
|
|
|
);
|
2014-10-31 04:59:21 +00:00
|
|
|
}
|
|
|
|
|
2015-10-22 16:36:08 +00:00
|
|
|
function connectEntry(client, nextMenu) {
|
2018-06-22 05:15:04 +00:00
|
|
|
const term = client.term;
|
|
|
|
|
|
|
|
async.series(
|
|
|
|
[
|
|
|
|
function basicPrepWork(callback) {
|
|
|
|
term.rawWrite(ansi.queryDeviceAttributes(0));
|
|
|
|
return callback(null);
|
|
|
|
},
|
|
|
|
function discoverHomePosition(callback) {
|
|
|
|
ansiDiscoverHomePosition(client, () => {
|
2018-06-23 03:26:46 +00:00
|
|
|
// :TODO: If CPR for home fully fails, we should bail out on the connection with an error, e.g. ANSI support required
|
|
|
|
return callback(null); // we try to continue anyway
|
2018-06-22 05:15:04 +00:00
|
|
|
});
|
|
|
|
},
|
|
|
|
function queryTermSizeByNonStandardAnsi(callback) {
|
|
|
|
ansiQueryTermSizeIfNeeded(client, err => {
|
|
|
|
if(err) {
|
|
|
|
//
|
2018-06-23 03:26:46 +00:00
|
|
|
// Check again; We may have got via NAWS/similar before CPR completed.
|
2018-06-22 05:15:04 +00:00
|
|
|
//
|
|
|
|
if(0 === term.termHeight || 0 === term.termWidth) {
|
|
|
|
//
|
2018-06-23 03:26:46 +00:00
|
|
|
// We still don't have something good for term height/width.
|
|
|
|
// Default to DOS size 80x25.
|
2018-06-22 05:15:04 +00:00
|
|
|
//
|
2018-06-23 03:26:46 +00:00
|
|
|
// :TODO: Netrunner is currenting hitting this and it feels wrong. Why is NAWS/ENV/CPR all failing???
|
2018-06-22 05:15:04 +00:00
|
|
|
client.log.warn( { reason : err.message }, 'Failed to negotiate term size; Defaulting to 80x25!');
|
|
|
|
|
2018-06-23 03:26:46 +00:00
|
|
|
term.termHeight = 25;
|
|
|
|
term.termWidth = 80;
|
2018-06-22 05:15:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return callback(null);
|
|
|
|
});
|
|
|
|
},
|
|
|
|
],
|
|
|
|
() => {
|
|
|
|
prepareTerminal(term);
|
|
|
|
|
|
|
|
//
|
2018-06-23 03:26:46 +00:00
|
|
|
// Always show an ENiGMA½ banner
|
2018-06-22 05:15:04 +00:00
|
|
|
//
|
|
|
|
displayBanner(term);
|
|
|
|
|
|
|
|
// fire event
|
|
|
|
Events.emit(Events.getSystemEvents().TermDetected, { client : client } );
|
|
|
|
|
|
|
|
setTimeout( () => {
|
|
|
|
return client.menuStack.goto(nextMenu);
|
|
|
|
}, 500);
|
|
|
|
}
|
|
|
|
);
|
2014-10-17 02:21:06 +00:00
|
|
|
}
|