Skip to content
Snippets Groups Projects
textedit.js 11.27 KiB
require("key_defs.js", "KEY_UP");

const a = "\x01";
var msg = 1;
var msgstr = '';
var tnames = ["None"];
var last_entry = 0;
var pos = 0;
var len = 0;
var msglens = [];
var displaywith = 0;
var inprow = (console.screen_columns < 80) ? 18 : 17;
var ch;
var modified = {};

// TODO: This should be in a separate (JSON) file...
var details = {
	'AutoMsg': {
		'displaywith': 1,
	},
	'DirLibOrAll': {
		'displaywith': 1,
	},
	'DoYouMeanThisUserQ': {
		'displaywith': 1,
	},
	'ExtractFilesPrompt': {
		'displaywith': 1,
	},
	'FileInfoEditPrompt': {
		'displaywith': 1,
	},
	'FileInfoPrompt': {
		'displaywith': 1,
	},
	'JoinWhichDir': {
		'displaywith': 1,
	},
	'JoinWhichGrp': {
		'displaywith': 1,
	},
	'JoinWhichLib': {
		'displaywith': 1,
	},
	'JoinWhichSub': {
		'displaywith': 1,
	},
	'MsgAttr': {
		'args': ['Private  ', 'SPAM  ', 'Read  ', 'Deleted  ', 'Kill  ', 'Anonymous  ', 'Locked  ', 'Permanent  ', 'Moderated  ', 'Validated  ', 'Replied  ', 'NoReply  ', 'Poll  ', '(Closed)  ', '', '', ''],
	},
	'MsgSubj': {
		'args': ['Example message subject (up to 70 characters).........................'],
	},
	'NodeToPrivateChat': {
		'displaywith': 1,
	},
	'NScanCfgWhichGrp': {
		'displaywith': 1,
	},
	'NScanCfgWhichSub': {
		'displaywith': 1,
	},
	'PrivateChatSeparator': {
		'args': [88, '01:02:03', 88],
	},
	'PrivateMsgPrompt': {
		'displaywith': 1,
	},
	'ProtocolBatchOrQuit': {
		'displaywith': 1,
	},
	'ProtocolBatchQuitOrNext': {
		'displaywith': 1,
	},
	'ProtocolOrQuit': {
		'displaywith': 1,
	},
	'QuitOrNext': {
		'displaywith': 1,
	},
	'QuoteLinesPrompt': {
		'displaywith': 1,
	},
	'QWKCtrlACodes': {
		'displaywith': 1,
	},
	'RExemptRemoveFilePrompt': {
		'displaywith': 1,
	},
	'SetMsgPtrPrompt': {
		'displaywith': 1,
	},
	'SScanCfgWhichGrp': {
		'displaywith': 1,
	},
	'SScanCfgWhichSub': {
		'displaywith': 1,
	},
	'SubGroupOrAll': {
		'displaywith': 1,
	},
	'SysopChatSeparator': {
		'args': [88, '01:02:03', 88],
	},
	'SysopRemoveFilePrompt': {
		'displaywith': 1,
	},
	'TelnetGatewayPrompt': {
		'displaywith': 1,
	},
	'UserRemoveFilePrompt': {
		'displaywith': 1,
	},
	'VoteInThisPollNow': {
		'displaywith': 1,
	},
	'VoteMsgUpDownOrQuit': {
		'displaywith': 1,
	},
	'WhichOrAll': {
		'displaywith': 1,
	},
	'WhichTextFile': {
		'displaywith': 1,
	},
	'WhichTextFileSysop': {
		'displaywith': 1,
	},
	'WhichTextSection': {
		'displaywith': 1,
	},
}

function format_entry(str)
{
	return str.replace(/[\x00-\x1F\x80-\x9F\\]/g, function(match) {
		switch(match) {
			case '\n':
				return "\\n";
			case '\r':
				return "\\r";
			case '\v':
				return "\\v";
			case '\t':
				return "\\v";
			case '\b':
				return "\\b";
			case '\f':
				return "\\f";
			case '\\':
				return "\\\\";
			default:
				if (match < ' ')
					return '\x01'+'7\x01'+'B^' + String.fromCharCode(match.charCodeAt(0)+64) + "\x01"+'0\x01'+'w';
				return '\x01'+'7\x01'+'B' + format("%02X", match.charCodeAt(0)) + "\x01"+'0\x01'+'w';
		}
	});
}

function scanargs(str)
{
	var arg = 0;
	var ret = [];
	// No patchAll or iterators in for... *sigh*
	var re = /%(?:([1-9][0-9]*)$)?([-#0 +]*)(\*|[0-9]+)?(?:.(\*|[0-9]+))?(hh|h|l|ll|j|t|z|L)?([diouxXDOUeEfFgGaAcCsSPnm%])/g;
	var match;

	while ((match = re.exec(str)) !== null) {
		if (arg >= ret.length)
			ret.push(undefined);
		if (match[1] != undefined)
			arg = parseInt(m[1], 10) - 1;
		if (match[3] == '*') {
			ret[arg] = 'minwidth';
			arg++;
			if (arg >= ret.length)
				ret.push(undefined);
		}
		if (match[3] == '*') {
			ret[arg] = 'precision';
			arg++;
			if (arg >= ret.length)
				ret.push(undefined);
		}
		ret[arg] = match[6];
		arg++;
	}
	return ret;
}

function formatted(str, num)
{
	var args = [str];
	if (details[tnames[num]] !== undefined && details[tnames[num]].args !== undefined)
		args.push.apply(args, details[tnames[num]].args);
	else {
		var types = scanargs(str);
		var type;
		var strs = 0;
		for (type in types) {
			switch (types[type]) {
				case 'D':
				case 'd':
				case 'i':
					args.push(-2147483648);
					break;
				case 'o':
				case 'u':
				case 'x':
				case 'X':
				case 'O':
				case 'U':
					args.push(4294967295);
					break;
				case 'e':
				case 'E':
				case 'f':
				case 'F':
				case 'g':
				case 'G':
				case 'a':
				case 'A':
					args.push("3.14159");
					break;
				case 'c':
				case 'C':
					args.push(88);
					break;
				case 's':
				case 'S':
					strs++;
					args.push("StringVal" + strs);
					break;
				case 'p':
					args.push(0x6734531);
					break;
				case 'n':
					break;
				case 'm':
					break;
				case '%':
					break;
				case 'minwidth':
					args.push(4);
					break;
				case 'precision':
					args.push(5);
					break;
			}
		}
	}
	return format.apply(js.global, args).replace(/\x07/g, '');
}

function runmsg()
{
	var bot = inprow - 1;
	if (console.screen_columns < 80)
		bot--;
	// Would be nice to have a cleartobos() here...
	console.attributes = 7;
	for (i = 0; i < bot; i++) {
		console.gotoxy(0, i);
		console.cleartoeol();
	}
	console.gotoxy(0, 0);
	console.print("Example text\r\nbefore message.\r\n");
	console.question = "Example question";
	var fmtd = formatted(a + 'Q' + msgstr, msg);
	switch (displaywith) {
		case 0:
			console.putmsg(fmtd);
			df = 'putmsg()   ';
			break;
		case 1:
			console.mnemonics(fmtd);
			df = 'mnemonics()';
			break;
		case 2:
			console.print(fmtd);
			df = 'print()    ';
			break;
	}
	console.print("Example text after message.\r\n");
}

// TODO: Message 765 is too big
function redraw(str, num)
{
	var df = 'unknown';
	console.clear();
	console.gotoxy(0,0);
	console.attributes = 7;
	console.print("Example text\r\nbefore message.\r\n");
	console.question = "Example question";
	// Stuff in a CTRL-C for things like @EXEC:yesnobar@
	console.ungetkeys(ctrl('C'), true);
	var fmtd = formatted(a + 'Q' + msgstr, msg);
	switch (displaywith) {
		case 0:
			console.putmsg(fmtd);
			df = 'putmsg()   ';
			break;
		case 1:
			console.mnemonics(fmtd);
			df = 'mnemonics()';
			break;
		case 2:
			console.print(fmtd);
			df = 'print()    ';
			break;
	}
	// Pull out the CTRL-C
	console.inkey();
	console.print("Example text after message.\r\n");
	if (console.screen_columns < 80) {
		console.gotoxy(0, inprow - 2);
		console.print(a + "h" + a + "w" + a + "4" + " " + df + " ^^ As seen on BBS ^^" + a + ">");
		console.gotoxy(0, inprow - 1);
		console.print(a + "h" + a + "w" + a + "4" + " vv " + tnames[num] + " (" + num + ") vv" + a + ">");
		console.gotoxy(0, inprow);
	}
	else {
		console.gotoxy(0, inprow - 1);
		console.print(a + "h" + a + "w" + a + "4" + " " + df + " ^^ As seen on BBS ^^" + "     vv " + tnames[num] + " (" + num + ") vv" + a + ">");
		console.gotoxy(0, inprow);
	}
	console.cleartoeos(7);
	console.print(format_entry(msgstr));
	place_cursor();
}

function get_tvals() {
	var tvals = {};
	load(tvals, "text.js");
	var i;
	for (i in tvals) {
		tnames[tvals[i]] = i;
	}
	last_entry = tvals.TOTAL_TEXT;
}

function newmsg(updpos)
{
	if (updpos === undefined)
		updpos = true;
	msgstr = bbs.text(msg);
	var tpos = 0;
	var spos = 0;
	var i;
	msglens = [];
	for (i = 0; i < msgstr.length; i++) {
		msglens.push({'tpos': tpos, 'spos': spos});
		if (msgstr[i] < ' ')
			tpos++;
		else if (msgstr[i] >= '\x80' && msgstr[i] <= '\x9F')
			tpos++;
		else if (msgstr[i] == '\\')
			tpos++;
		tpos++;
		spos++;
	}
	msglens.push({'tpos': tpos, 'spos': spos});
	len = msglens.length;
	if (updpos)
		pos = len - 1;
	displaywith = 0;
	if (details[tnames[msg]] !== undefined) {
		if (details[tnames[msg]].displaywith !== undefined)
			displaywith = details[tnames[msg]].displaywith;
	}
}

function place_cursor()
{
	console.gotoxy(0, inprow);
	var np = msglens[pos].tpos;
	while (np >= console.screen_columns) {
		console.linefeed();
		np -= console.screen_columns;
	}
	console.right(np);
	console.attributes = 15;
}

function get_msgnum()
{
	if (console.screen_columns < 80)
		console.gotoxy(1, inprow - 1);
	else
		console.gotoxy(42, inprow - 1);
	console.attributes = 0x1F;
	console.cleartoeol();
	var ret = console.getnum(last_entry, msg);
	if (typeof ret === 'number') {
		msg = ret;
		newmsg();
	}
	console.attributes = 7;
}

function track_mod()
{
	if (modified[msg] === undefined) {
		modified[msg] = {original: bbs.text(msg), modified: true};
	}
}

function check_undone()
{
	if (modified[msg] !== undefined && msgstr === modified[msg].original) {
		delete modified[msg];
	}
}

function load_saved()
{
	var sfile = new File("textedit.ini");
	if (!sfile.open('r'))
		return;
	var keys = sfile.iniGetKeys();
	var key;
	var str;
	for (key in keys) {
		str = sfile.iniGetValue(null, keys[key]);
		bbs.replace_text(keys[key], str);
	}
	sfile.close();
}

get_tvals();
newmsg();
load_saved();
var done = false;
var skip_redraw = false;
var forcectrl = false;
var tmp;
var sfile;
while (!done) {
	if (!skip_redraw)
		redraw(msgstr, msg);
	skip_redraw = false;
	forcectrl = false;
	switch ((ch = console.getkey())) {
		case KEY_UP:
			if (msg > 1) {
				msg--;
				newmsg();
			}
			break;
		case KEY_DOWN:
			if (bbs.text(msg + 1) != null) {
				msg++;
				newmsg();
			}
			break;
		case KEY_LEFT:
			if (pos > 0)
				pos--;
			break;
		case KEY_RIGHT:
			if (pos < len - 1)
				pos++;
			break;
		case KEY_PAGEUP:
			displaywith--;
			if (displaywith < 0)
				displaywith = 2;
			break;
		case KEY_PAGEDN:
			displaywith++;
			if (displaywith > 2)
				displaywith = 0;
			break;
		case KEY_HOME:
			pos = 0;
			break;
		case KEY_END:
			pos = msglens.length - 1;
			break;
		case ctrl('G'):
			get_msgnum();
			break;
		case ctrl('R'):
			runmsg();
			skip_redraw = true;
			break;
		case ctrl('Z'):
			bbs.revert_text(msg);
			if (modified[msg] !== undefined)
				delete modified[msg];
			newmsg();
			break;
		case ctrl('Q'):
			done = true;
			break;
		case ctrl('S'):
			sfile = new File("textedit.ini");
			if (!sfile.open(sfile.exists ? 'r+':'w+'))
				break;
			for (tmp in modified)
				sfile.iniSetValue(null, tnames[tmp], bbs.text(tmp));
			sfile.close();
			break;
		case '\b':
			if (pos) {
				track_mod();
				msgstr = msgstr.slice(0, pos - 1) + msgstr.slice(pos);
				bbs.replace_text(msg, msgstr);
				check_undone();
				pos--;
				newmsg(false);
			}
			break;
		case null:
			break;
		case undefined:
			break;
		case '^':
			tmp = console.getkey().charCodeAt(0);
			tmp &= 0x1F;
			ch = String.fromCharCode(tmp);
			forcectrl = true;
			// Fallthrough
		case ctrl('V'):
			if (!forcectrl) {
				tmp = '';
				try {
					tmp += console.getkey();
					tmp += console.getkey();
					tmp = parseInt(tmp, 16);
					if (isNaN(tmp))
						break;
					ch = String.fromCharCode(tmp);
				}
				catch(e) {
					break;
				}
				forcectrl = true;
			}
			// Fallthrough
		case '\\':
			if (!forcectrl) {
				switch (console.getkey().toLowerCase()) {
					case 'r':
						ch = '\r';
						forcectrl = true;
						break;
					case 'n':
						ch = '\n';
						forcectrl = true;
						break;
					case 'v':
						ch = '\v';
						forcectrl = true;
						break;
					case 't':
						ch = '\t';
						forcectrl = true;
						break;
					case 'b':
						ch = '\b';
						forcectrl = true;
						break;
					case '\\':
						ch = '\\';
						forcectrl = true;
						break;
					default:
						ch = undefined;
						forcectrl = true;
						break;
				}
				if (ch === undefined)
					break;
			}
			// Fall-through
		default:
			if (ch < ' ' && !forcectrl)
				break;
			track_mod();
			msgstr = msgstr.slice(0, pos) + ch + msgstr.slice(pos);
			bbs.replace_text(msg, msgstr);
			check_undone();
			pos++;
			newmsg(false);
			break;
	}
}