]> git.proxmox.com Git - mirror_xterm.js.git/blame - src/xterm.js
Merge pull request #272 from Tyriar/271_setOption
[mirror_xterm.js.git] / src / xterm.js
CommitLineData
8bc844c0 1/**
5af18f8e 2 * xterm.js: xterm, in the browser
749ed637 3 * Copyright (c) 2014, SourceLair Limited <www.sourcelair.com> (MIT License)
6cc8b3cd
CJ
4 * Copyright (c) 2012-2013, Christopher Jeffrey (MIT License)
5 * https://github.com/chjj/term.js
8bc844c0
CJ
6 *
7 * Permission is hereby granted, free of charge, to any person obtaining a copy
8 * of this software and associated documentation files (the "Software"), to deal
9 * in the Software without restriction, including without limitation the rights
10 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 * copies of the Software, and to permit persons to whom the Software is
12 * furnished to do so, subject to the following conditions:
13 *
14 * The above copyright notice and this permission notice shall be included in
15 * all copies or substantial portions of the Software.
16 *
17 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
22 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
23 * THE SOFTWARE.
24 *
25 * Originally forked from (with the author's permission):
26 * Fabrice Bellard's javascript vt100 for jslinux:
27 * http://bellard.org/jslinux/
28 * Copyright (c) 2011 Fabrice Bellard
29 * The original design remains. The terminal itself
30 * has been extended to include xterm CSI codes, among
31 * other features.
32 */
33
28c3a202 34import { CompositionHelper } from './CompositionHelper.js';
ed1a31d1 35import { EventEmitter } from './EventEmitter.js';
7ff03bb4 36import { Viewport } from './Viewport.js';
ed1a31d1 37
db76868c
PK
38/**
39 * Terminal Emulation References:
40 * http://vt100.net/
41 * http://invisible-island.net/xterm/ctlseqs/ctlseqs.txt
42 * http://invisible-island.net/xterm/ctlseqs/ctlseqs.html
43 * http://invisible-island.net/vttest/
44 * http://www.inwap.com/pdp10/ansicode.txt
45 * http://linux.die.net/man/4/console_codes
46 * http://linux.die.net/man/7/urxvt
47 */
8bc844c0 48
db76868c
PK
49// Let it work inside Node.js for automated testing purposes.
50var document = (typeof window != 'undefined') ? window.document : null;
8bc844c0 51
db76868c
PK
52/**
53 * States
54 */
55var normal = 0, escaped = 1, csi = 2, osc = 3, charset = 4, dcs = 5, ignore = 6;
8bc844c0 56
db76868c
PK
57/**
58 * Terminal
59 */
8bc844c0 60
db76868c
PK
61/**
62 * Creates a new `Terminal` object.
63 *
64 * @param {object} options An object containing a set of options, the available options are:
65 * - cursorBlink (boolean): Whether the terminal cursor blinks
66 *
67 * @public
68 * @class Xterm Xterm
69 * @alias module:xterm/src/xterm
70 */
71function Terminal(options) {
72 var self = this;
8bc844c0 73
db76868c
PK
74 if (!(this instanceof Terminal)) {
75 return new Terminal(arguments[0], arguments[1], arguments[2]);
76 }
8bc844c0 77
db76868c 78 self.cancel = Terminal.cancel;
8bc844c0 79
db76868c 80 EventEmitter.call(this);
5fd1948b 81
db76868c
PK
82 if (typeof options === 'number') {
83 options = {
84 cols: arguments[0],
85 rows: arguments[1],
86 handler: arguments[2]
87 };
88 }
8bc844c0 89
db76868c 90 options = options || {};
8bc844c0 91
86dad1b0 92
db76868c
PK
93 Object.keys(Terminal.defaults).forEach(function(key) {
94 if (options[key] == null) {
95 options[key] = Terminal.options[key];
91273161 96
db76868c
PK
97 if (Terminal[key] !== Terminal.defaults[key]) {
98 options[key] = Terminal[key];
3f455f90 99 }
db76868c
PK
100 }
101 self[key] = options[key];
102 });
103
104 if (options.colors.length === 8) {
105 options.colors = options.colors.concat(Terminal._colors.slice(8));
106 } else if (options.colors.length === 16) {
107 options.colors = options.colors.concat(Terminal._colors.slice(16));
108 } else if (options.colors.length === 10) {
109 options.colors = options.colors.slice(0, -2).concat(
110 Terminal._colors.slice(8, -2), options.colors.slice(-2));
111 } else if (options.colors.length === 18) {
112 options.colors = options.colors.concat(
113 Terminal._colors.slice(16, -2), options.colors.slice(-2));
114 }
115 this.colors = options.colors;
116
117 this.options = options;
118
119 // this.context = options.context || window;
120 // this.document = options.document || document;
121 this.parent = options.body || options.parent || (
122 document ? document.getElementsByTagName('body')[0] : null
123 );
124
125 this.cols = options.cols || options.geometry[0];
126 this.rows = options.rows || options.geometry[1];
127
128 if (options.handler) {
129 this.on('data', options.handler);
130 }
131
132 /**
133 * The scroll position of the y cursor, ie. ybase + y = the y position within the entire
134 * buffer
135 */
136 this.ybase = 0;
137
138 /**
139 * The scroll position of the viewport
140 */
141 this.ydisp = 0;
142
143 /**
144 * The cursor's x position after ybase
145 */
146 this.x = 0;
147
148 /**
149 * The cursor's y position after ybase
150 */
151 this.y = 0;
152
153 /**
154 * Used to debounce the refresh function
155 */
156 this.isRefreshing = false;
157
158 /**
159 * Whether there is a full terminal refresh queued
160 */
161
162 this.cursorState = 0;
163 this.cursorHidden = false;
164 this.convertEol;
165 this.state = 0;
166 this.queue = '';
167 this.scrollTop = 0;
168 this.scrollBottom = this.rows - 1;
169 this.customKeydownHandler = null;
170
171 // modes
172 this.applicationKeypad = false;
173 this.applicationCursor = false;
174 this.originMode = false;
175 this.insertMode = false;
176 this.wraparoundMode = true; // defaults: xterm - true, vt100 - false
177 this.normal = null;
178
179 // charset
180 this.charset = null;
181 this.gcharset = null;
182 this.glevel = 0;
183 this.charsets = [null];
184
185 // mouse properties
186 this.decLocator;
187 this.x10Mouse;
188 this.vt200Mouse;
189 this.vt300Mouse;
190 this.normalMouse;
191 this.mouseEvents;
192 this.sendFocus;
193 this.utfMouse;
194 this.sgrMouse;
195 this.urxvtMouse;
196
197 // misc
198 this.element;
199 this.children;
200 this.refreshStart;
201 this.refreshEnd;
202 this.savedX;
203 this.savedY;
204 this.savedCols;
205
206 // stream
207 this.readable = true;
208 this.writable = true;
209
210 this.defAttr = (0 << 18) | (257 << 9) | (256 << 0);
211 this.curAttr = this.defAttr;
212
213 this.params = [];
214 this.currentParam = 0;
215 this.prefix = '';
216 this.postfix = '';
217
218 // leftover surrogate high from previous write invocation
219 this.surrogate_high = '';
220
221 /**
222 * An array of all lines in the entire buffer, including the prompt. The lines are array of
223 * characters which are 2-length arrays where [0] is an attribute and [1] is the character.
224 */
225 this.lines = [];
226 var i = this.rows;
227 while (i--) {
228 this.lines.push(this.blankLine());
229 }
230
231 this.tabs;
232 this.setupStops();
233}
234
235inherits(Terminal, EventEmitter);
236
237/**
238 * back_color_erase feature for xterm.
239 */
240Terminal.prototype.eraseAttr = function() {
241 // if (this.is('screen')) return this.defAttr;
242 return (this.defAttr & ~0x1ff) | (this.curAttr & 0x1ff);
243};
8bc844c0 244
db76868c
PK
245/**
246 * Colors
247 */
91273161 248
db76868c
PK
249// Colors 0-15
250Terminal.tangoColors = [
251 // dark:
252 '#2e3436',
253 '#cc0000',
254 '#4e9a06',
255 '#c4a000',
256 '#3465a4',
257 '#75507b',
258 '#06989a',
259 '#d3d7cf',
260 // bright:
261 '#555753',
262 '#ef2929',
263 '#8ae234',
264 '#fce94f',
265 '#729fcf',
266 '#ad7fa8',
267 '#34e2e2',
268 '#eeeeec'
269];
270
271// Colors 0-15 + 16-255
272// Much thanks to TooTallNate for writing this.
273Terminal.colors = (function() {
274 var colors = Terminal.tangoColors.slice()
275 , r = [0x00, 0x5f, 0x87, 0xaf, 0xd7, 0xff]
276 , i;
277
278 // 16-231
279 i = 0;
280 for (; i < 216; i++) {
281 out(r[(i / 36) % 6 | 0], r[(i / 6) % 6 | 0], r[i % 6]);
282 }
283
284 // 232-255 (grey)
285 i = 0;
286 for (; i < 24; i++) {
287 r = 8 + i * 10;
288 out(r, r, r);
289 }
290
291 function out(r, g, b) {
292 colors.push('#' + hex(r) + hex(g) + hex(b));
293 }
294
295 function hex(c) {
296 c = c.toString(16);
297 return c.length < 2 ? '0' + c : c;
298 }
299
300 return colors;
301})();
302
303Terminal._colors = Terminal.colors.slice();
304
305Terminal.vcolors = (function() {
306 var out = []
307 , colors = Terminal.colors
308 , i = 0
309 , color;
310
311 for (; i < 256; i++) {
312 color = parseInt(colors[i].substring(1), 16);
313 out.push([
314 (color >> 16) & 0xff,
315 (color >> 8) & 0xff,
316 color & 0xff
317 ]);
318 }
319
320 return out;
321})();
5fd1948b 322
db76868c
PK
323/**
324 * Options
325 */
3f455f90 326
db76868c
PK
327Terminal.defaults = {
328 colors: Terminal.colors,
329 theme: 'default',
330 convertEol: false,
331 termName: 'xterm',
332 geometry: [80, 24],
333 cursorBlink: false,
334 visualBell: false,
335 popOnBell: false,
336 scrollback: 1000,
337 screenKeys: false,
338 debug: false,
339 cancelEvents: false
340 // programFeatures: false,
341 // focusKeys: false,
342};
343
344Terminal.options = {};
345
346Terminal.focus = null;
347
348each(keys(Terminal.defaults), function(key) {
349 Terminal[key] = Terminal.defaults[key];
350 Terminal.options[key] = Terminal.defaults[key];
351});
3f455f90 352
db76868c
PK
353/**
354 * Focus the terminal. Delegates focus handling to the terminal's DOM element.
355 */
356Terminal.prototype.focus = function() {
357 return this.textarea.focus();
358};
3f455f90 359
ab5cc0ad
DI
360/**
361 * Sets an option on the terminal.
15e56bd8
DI
362 * @param {string} key The option key.
363 * @param {string} value The option value.
ab5cc0ad
DI
364 */
365Terminal.prototype.setOption = function(key, value) {
366 if (!(key in Terminal.defaults)) {
367 throw new Error('No option with key "' + key + '"');
368 }
369 this[key] = value;
370 this.options[key] = value;
371};
372
db76868c
PK
373/**
374 * Binds the desired focus behavior on a given terminal object.
375 *
376 * @static
377 */
378Terminal.bindFocus = function (term) {
379 on(term.textarea, 'focus', function (ev) {
380 if (term.sendFocus) {
381 term.send('\x1b[I');
86dad1b0 382 }
db76868c
PK
383 term.element.classList.add('focus');
384 term.showCursor();
385 Terminal.focus = term;
386 term.emit('focus', {terminal: term});
387 });
388};
8bc844c0 389
db76868c
PK
390/**
391 * Blur the terminal. Delegates blur handling to the terminal's DOM element.
392 */
393Terminal.prototype.blur = function() {
394 return this.textarea.blur();
395};
8bc844c0 396
db76868c
PK
397/**
398 * Binds the desired blur behavior on a given terminal object.
399 *
400 * @static
401 */
402Terminal.bindBlur = function (term) {
403 on(term.textarea, 'blur', function (ev) {
404 term.refresh(term.y, term.y);
405 if (term.sendFocus) {
406 term.send('\x1b[O');
407 }
408 term.element.classList.remove('focus');
409 Terminal.focus = null;
410 term.emit('blur', {terminal: term});
411 });
412};
a68c8336 413
db76868c
PK
414/**
415 * Initialize default behavior
416 */
417Terminal.prototype.initGlobal = function() {
418 Terminal.bindPaste(this);
419 Terminal.bindKeys(this);
420 Terminal.bindCopy(this);
421 Terminal.bindFocus(this);
422 Terminal.bindBlur(this);
423};
3f455f90 424
db76868c
PK
425/**
426 * Bind to paste event and allow both keyboard and right-click pasting, without having the
427 * contentEditable value set to true.
428 */
429Terminal.bindPaste = function(term) {
430 on([term.textarea, term.element], 'paste', function(ev) {
431 ev.stopPropagation();
432 if (ev.clipboardData) {
433 var text = ev.clipboardData.getData('text/plain');
434 term.handler(text);
435 term.textarea.value = '';
436 return term.cancel(ev);
437 }
438 });
439};
8bc844c0 440
db76868c
PK
441/**
442 * Prepares text copied from terminal selection, to be saved in the clipboard by:
443 * 1. stripping all trailing white spaces
444 * 2. converting all non-breaking spaces to regular spaces
445 * @param {string} text The copied text that needs processing for storing in clipboard
446 * @returns {string}
447 * @static
448 */
449Terminal.prepareCopiedTextForClipboard = function (text) {
450 var space = String.fromCharCode(32),
451 nonBreakingSpace = String.fromCharCode(160),
452 allNonBreakingSpaces = new RegExp(nonBreakingSpace, 'g'),
453 processedText = text.split('\n').map(function (line) {
454 /**
455 * Strip all trailing white spaces and convert all non-breaking spaces to regular
456 * spaces.
457 */
458 var processedLine = line.replace(/\s+$/g, '').replace(allNonBreakingSpaces, space);
459
460 return processedLine;
461 }).join('\n');
462
463 return processedText;
464};
8bc844c0 465
db76868c
PK
466/**
467 * Apply key handling to the terminal
468 */
469Terminal.bindKeys = function(term) {
470 on(term.element, 'keydown', function(ev) {
471 if (document.activeElement != this) {
472 return;
473 }
474 term.keyDown(ev);
475 }, true);
8bc844c0 476
db76868c
PK
477 on(term.element, 'keypress', function(ev) {
478 if (document.activeElement != this) {
479 return;
480 }
481 term.keyPress(ev);
482 }, true);
8bc844c0 483
db76868c 484 on(term.element, 'keyup', term.focus.bind(term));
3b322929 485
db76868c
PK
486 on(term.textarea, 'keydown', function(ev) {
487 term.keyDown(ev);
488 }, true);
31161ffe 489
db76868c
PK
490 on(term.textarea, 'keypress', function(ev) {
491 term.keyPress(ev);
492 // Truncate the textarea's value, since it is not needed
493 this.value = '';
494 }, true);
8bc844c0 495
db76868c
PK
496 on(term.textarea, 'compositionstart', term.compositionHelper.compositionstart.bind(term.compositionHelper));
497 on(term.textarea, 'compositionupdate', term.compositionHelper.compositionupdate.bind(term.compositionHelper));
498 on(term.textarea, 'compositionend', term.compositionHelper.compositionend.bind(term.compositionHelper));
499 term.on('refresh', term.compositionHelper.updateCompositionElements.bind(term.compositionHelper));
500};
5fd1948b 501
db76868c
PK
502/**
503 * Binds copy functionality to the given terminal.
504 * @static
505 */
506Terminal.bindCopy = function(term) {
507 on(term.element, 'copy', function(ev) {
508 return; // temporary
509 });
510};
3f455f90 511
3f455f90 512
db76868c
PK
513/**
514 * Insert the given row to the terminal or produce a new one
515 * if no row argument is passed. Return the inserted row.
516 * @param {HTMLElement} row (optional) The row to append to the terminal.
517 */
518Terminal.prototype.insertRow = function (row) {
519 if (typeof row != 'object') {
520 row = document.createElement('div');
521 }
cc7f4d0d 522
db76868c
PK
523 this.rowContainer.appendChild(row);
524 this.children.push(row);
cd956bca 525
db76868c
PK
526 return row;
527};
7988f634 528
db76868c
PK
529/**
530 * Opens the terminal within an element.
531 *
532 * @param {HTMLElement} parent The element to create the terminal within.
533 */
534Terminal.prototype.open = function(parent) {
535 var self=this, i=0, div;
536
537 this.parent = parent || this.parent;
538
539 if (!this.parent) {
540 throw new Error('Terminal requires a parent element.');
541 }
542
543 // Grab global elements
544 this.context = this.parent.ownerDocument.defaultView;
545 this.document = this.parent.ownerDocument;
546 this.body = this.document.getElementsByTagName('body')[0];
547
548 // Parse User-Agent
549 if (this.context.navigator && this.context.navigator.userAgent) {
550 this.isMSIE = !!~this.context.navigator.userAgent.indexOf('MSIE');
551 }
552
553 // Find the users platform. We use this to interpret the meta key
554 // and ISO third level shifts.
555 // http://stackoverflow.com/q/19877924/577598
556 if (this.context.navigator && this.context.navigator.platform) {
557 this.isMac = contains(
558 this.context.navigator.platform,
559 ['Macintosh', 'MacIntel', 'MacPPC', 'Mac68K']
560 );
561 this.isIpad = this.context.navigator.platform === 'iPad';
562 this.isIphone = this.context.navigator.platform === 'iPhone';
563 this.isMSWindows = contains(
564 this.context.navigator.platform,
565 ['Windows', 'Win16', 'Win32', 'WinCE']
566 );
567 }
568
569 //Create main element container
570 this.element = this.document.createElement('div');
571 this.element.classList.add('terminal');
572 this.element.classList.add('xterm');
573 this.element.classList.add('xterm-theme-' + this.theme);
574
575 this.element.style.height
576 this.element.setAttribute('tabindex', 0);
577
578 this.viewportElement = document.createElement('div');
579 this.viewportElement.classList.add('xterm-viewport');
580 this.element.appendChild(this.viewportElement);
581 this.viewportScrollArea = document.createElement('div');
582 this.viewportScrollArea.classList.add('xterm-scroll-area');
583 this.viewportElement.appendChild(this.viewportScrollArea);
584
585 // Create the container that will hold the lines of the terminal and then
586 // produce the lines the lines.
587 this.rowContainer = document.createElement('div');
588 this.rowContainer.classList.add('xterm-rows');
589 this.element.appendChild(this.rowContainer);
590 this.children = [];
591
592 // Create the container that will hold helpers like the textarea for
593 // capturing DOM Events. Then produce the helpers.
594 this.helperContainer = document.createElement('div');
595 this.helperContainer.classList.add('xterm-helpers');
596 // TODO: This should probably be inserted once it's filled to prevent an additional layout
597 this.element.appendChild(this.helperContainer);
598 this.textarea = document.createElement('textarea');
599 this.textarea.classList.add('xterm-helper-textarea');
600 this.textarea.setAttribute('autocorrect', 'off');
601 this.textarea.setAttribute('autocapitalize', 'off');
602 this.textarea.setAttribute('spellcheck', 'false');
603 this.textarea.tabIndex = 0;
604 this.textarea.addEventListener('focus', function() {
605 self.emit('focus', {terminal: self});
606 });
607 this.textarea.addEventListener('blur', function() {
608 self.emit('blur', {terminal: self});
609 });
610 this.helperContainer.appendChild(this.textarea);
611
612 this.compositionView = document.createElement('div');
613 this.compositionView.classList.add('composition-view');
614 this.compositionHelper = new CompositionHelper(this.textarea, this.compositionView, this);
615 this.helperContainer.appendChild(this.compositionView);
616
617 this.charMeasureElement = document.createElement('div');
618 this.charMeasureElement.classList.add('xterm-char-measure-element');
619 this.charMeasureElement.innerHTML = 'W';
620 this.helperContainer.appendChild(this.charMeasureElement);
621
622 for (; i < this.rows; i++) {
623 this.insertRow();
624 }
625 this.parent.appendChild(this.element);
626
627 this.viewport = new Viewport(this, this.viewportElement, this.viewportScrollArea, this.charMeasureElement);
628
629 // Draw the screen.
630 this.refresh(0, this.rows - 1);
631
632 // Initialize global actions that
633 // need to be taken on the document.
634 this.initGlobal();
635
636 // Ensure there is a Terminal.focus.
637 this.focus();
638
4e1bbee6 639 on(this.element, 'click', function() {
db76868c
PK
640 var selection = document.getSelection(),
641 collapsed = selection.isCollapsed,
642 isRange = typeof collapsed == 'boolean' ? !collapsed : selection.type == 'Range';
643 if (!isRange) {
644 self.focus();
645 }
646 });
3f455f90 647
db76868c
PK
648 // Listen for mouse events and translate
649 // them into terminal mouse protocols.
650 this.bindMouse();
8bc844c0 651
db76868c
PK
652 // Figure out whether boldness affects
653 // the character width of monospace fonts.
654 if (Terminal.brokenBold == null) {
655 Terminal.brokenBold = isBoldBroken(this.document);
656 }
8bc844c0 657
db76868c
PK
658 this.emit('open');
659};
8bc844c0 660
8bc844c0 661
db76868c
PK
662/**
663 * Attempts to load an add-on using CommonJS or RequireJS (whichever is available).
664 * @param {string} addon The name of the addon to load
665 * @static
666 */
667Terminal.loadAddon = function(addon, callback) {
668 if (typeof exports === 'object' && typeof module === 'object') {
669 // CommonJS
670 return require(__dirname + '/../addons/' + addon);
671 } else if (typeof define == 'function') {
672 // RequireJS
673 return require(['../addons/' + addon + '/' + addon], callback);
674 } else {
675 console.error('Cannot load a module without a CommonJS or RequireJS environment.');
676 return false;
677 }
678};
8bc844c0 679
8bc844c0 680
db76868c
PK
681/**
682 * XTerm mouse events
683 * http://invisible-island.net/xterm/ctlseqs/ctlseqs.html#Mouse%20Tracking
684 * To better understand these
685 * the xterm code is very helpful:
686 * Relevant files:
687 * button.c, charproc.c, misc.c
688 * Relevant functions in xterm/button.c:
689 * BtnCode, EmitButtonCode, EditorButton, SendMousePosition
690 */
691Terminal.prototype.bindMouse = function() {
692 var el = this.element, self = this, pressed = 32;
693
694 // mouseup, mousedown, wheel
695 // left click: ^[[M 3<^[[M#3<
696 // wheel up: ^[[M`3>
697 function sendButton(ev) {
698 var button
699 , pos;
700
701 // get the xterm-style button
702 button = getButton(ev);
703
704 // get mouse coordinates
705 pos = getCoords(ev);
706 if (!pos) return;
707
708 sendEvent(button, pos);
709
710 switch (ev.overrideType || ev.type) {
711 case 'mousedown':
712 pressed = button;
713 break;
714 case 'mouseup':
715 // keep it at the left
716 // button, just in case.
717 pressed = 32;
718 break;
719 case 'wheel':
720 // nothing. don't
721 // interfere with
722 // `pressed`.
723 break;
724 }
725 }
726
727 // motion example of a left click:
728 // ^[[M 3<^[[M@4<^[[M@5<^[[M@6<^[[M@7<^[[M#7<
729 function sendMove(ev) {
730 var button = pressed
731 , pos;
732
733 pos = getCoords(ev);
734 if (!pos) return;
735
736 // buttons marked as motions
737 // are incremented by 32
738 button += 32;
739
740 sendEvent(button, pos);
741 }
742
743 // encode button and
744 // position to characters
745 function encode(data, ch) {
746 if (!self.utfMouse) {
747 if (ch === 255) return data.push(0);
748 if (ch > 127) ch = 127;
749 data.push(ch);
750 } else {
751 if (ch === 2047) return data.push(0);
752 if (ch < 127) {
753 data.push(ch);
754 } else {
755 if (ch > 2047) ch = 2047;
756 data.push(0xC0 | (ch >> 6));
757 data.push(0x80 | (ch & 0x3F));
758 }
759 }
760 }
761
762 // send a mouse event:
763 // regular/utf8: ^[[M Cb Cx Cy
764 // urxvt: ^[[ Cb ; Cx ; Cy M
765 // sgr: ^[[ Cb ; Cx ; Cy M/m
766 // vt300: ^[[ 24(1/3/5)~ [ Cx , Cy ] \r
767 // locator: CSI P e ; P b ; P r ; P c ; P p & w
768 function sendEvent(button, pos) {
769 // self.emit('mouse', {
770 // x: pos.x - 32,
771 // y: pos.x - 32,
772 // button: button
773 // });
774
775 if (self.vt300Mouse) {
776 // NOTE: Unstable.
777 // http://www.vt100.net/docs/vt3xx-gp/chapter15.html
778 button &= 3;
779 pos.x -= 32;
780 pos.y -= 32;
781 var data = '\x1b[24';
782 if (button === 0) data += '1';
783 else if (button === 1) data += '3';
784 else if (button === 2) data += '5';
785 else if (button === 3) return;
786 else data += '0';
787 data += '~[' + pos.x + ',' + pos.y + ']\r';
788 self.send(data);
789 return;
790 }
00f4232e 791
db76868c
PK
792 if (self.decLocator) {
793 // NOTE: Unstable.
794 button &= 3;
795 pos.x -= 32;
796 pos.y -= 32;
797 if (button === 0) button = 2;
798 else if (button === 1) button = 4;
799 else if (button === 2) button = 6;
800 else if (button === 3) button = 3;
801 self.send('\x1b['
802 + button
803 + ';'
804 + (button === 3 ? 4 : 0)
805 + ';'
806 + pos.y
807 + ';'
808 + pos.x
809 + ';'
810 + (pos.page || 0)
811 + '&w');
812 return;
813 }
00f4232e 814
db76868c
PK
815 if (self.urxvtMouse) {
816 pos.x -= 32;
817 pos.y -= 32;
818 pos.x++;
819 pos.y++;
820 self.send('\x1b[' + button + ';' + pos.x + ';' + pos.y + 'M');
821 return;
822 }
8bc844c0 823
db76868c
PK
824 if (self.sgrMouse) {
825 pos.x -= 32;
826 pos.y -= 32;
827 self.send('\x1b[<'
828 + ((button & 3) === 3 ? button & ~3 : button)
829 + ';'
830 + pos.x
831 + ';'
832 + pos.y
833 + ((button & 3) === 3 ? 'm' : 'M'));
834 return;
835 }
8bc844c0 836
db76868c
PK
837 var data = [];
838
839 encode(data, button);
840 encode(data, pos.x);
841 encode(data, pos.y);
842
843 self.send('\x1b[M' + String.fromCharCode.apply(String, data));
844 }
845
846 function getButton(ev) {
847 var button
848 , shift
849 , meta
850 , ctrl
851 , mod;
852
853 // two low bits:
854 // 0 = left
855 // 1 = middle
856 // 2 = right
857 // 3 = release
858 // wheel up/down:
859 // 1, and 2 - with 64 added
860 switch (ev.overrideType || ev.type) {
861 case 'mousedown':
862 button = ev.button != null
863 ? +ev.button
864 : ev.which != null
865 ? ev.which - 1
866 : null;
867
868 if (self.isMSIE) {
869 button = button === 1 ? 0 : button === 4 ? 1 : button;
870 }
871 break;
872 case 'mouseup':
873 button = 3;
874 break;
875 case 'DOMMouseScroll':
876 button = ev.detail < 0
877 ? 64
878 : 65;
879 break;
880 case 'wheel':
881 button = ev.wheelDeltaY > 0
882 ? 64
883 : 65;
884 break;
885 }
8bc844c0 886
db76868c
PK
887 // next three bits are the modifiers:
888 // 4 = shift, 8 = meta, 16 = control
889 shift = ev.shiftKey ? 4 : 0;
890 meta = ev.metaKey ? 8 : 0;
891 ctrl = ev.ctrlKey ? 16 : 0;
892 mod = shift | meta | ctrl;
893
894 // no mods
895 if (self.vt200Mouse) {
896 // ctrl only
897 mod &= ctrl;
898 } else if (!self.normalMouse) {
899 mod = 0;
900 }
8bc844c0 901
db76868c
PK
902 // increment to SP
903 button = (32 + (mod << 2)) + button;
a52b7e7a 904
db76868c
PK
905 return button;
906 }
8bc844c0 907
db76868c
PK
908 // mouse coordinates measured in cols/rows
909 function getCoords(ev) {
910 var x, y, w, h, el;
8bc844c0 911
db76868c
PK
912 // ignore browsers without pageX for now
913 if (ev.pageX == null) return;
8bc844c0 914
db76868c
PK
915 x = ev.pageX;
916 y = ev.pageY;
917 el = self.element;
8bc844c0 918
db76868c
PK
919 // should probably check offsetParent
920 // but this is more portable
921 while (el && el !== self.document.documentElement) {
922 x -= el.offsetLeft;
923 y -= el.offsetTop;
924 el = 'offsetParent' in el
925 ? el.offsetParent
926 : el.parentNode;
927 }
3f455f90 928
db76868c
PK
929 // convert to cols/rows
930 w = self.element.clientWidth;
931 h = self.element.clientHeight;
932 x = Math.ceil((x / w) * self.cols);
933 y = Math.ceil((y / h) * self.rows);
934
935 // be sure to avoid sending
936 // bad positions to the program
937 if (x < 0) x = 0;
938 if (x > self.cols) x = self.cols;
939 if (y < 0) y = 0;
940 if (y > self.rows) y = self.rows;
941
942 // xterm sends raw bytes and
943 // starts at 32 (SP) for each.
944 x += 32;
945 y += 32;
946
947 return {
948 x: x,
949 y: y,
950 type: 'wheel'
f3bd6145 951 };
db76868c 952 }
8bc844c0 953
db76868c
PK
954 on(el, 'mousedown', function(ev) {
955 if (!self.mouseEvents) return;
8bc844c0 956
db76868c
PK
957 // send the button
958 sendButton(ev);
8bc844c0 959
db76868c
PK
960 // ensure focus
961 self.focus();
8bc844c0 962
db76868c
PK
963 // fix for odd bug
964 //if (self.vt200Mouse && !self.normalMouse) {
965 if (self.vt200Mouse) {
966 ev.overrideType = 'mouseup';
967 sendButton(ev);
968 return self.cancel(ev);
969 }
8bc844c0 970
db76868c
PK
971 // bind events
972 if (self.normalMouse) on(self.document, 'mousemove', sendMove);
b01165c1 973
db76868c
PK
974 // x10 compatibility mode can't send button releases
975 if (!self.x10Mouse) {
976 on(self.document, 'mouseup', function up(ev) {
977 sendButton(ev);
978 if (self.normalMouse) off(self.document, 'mousemove', sendMove);
979 off(self.document, 'mouseup', up);
980 return self.cancel(ev);
4595a181 981 });
db76868c 982 }
29000fb7 983
db76868c
PK
984 return self.cancel(ev);
985 });
986
987 //if (self.normalMouse) {
988 // on(self.document, 'mousemove', sendMove);
989 //}
990
991 on(el, 'wheel', function(ev) {
992 if (!self.mouseEvents) return;
993 if (self.x10Mouse
994 || self.vt300Mouse
995 || self.decLocator) return;
996 sendButton(ev);
997 return self.cancel(ev);
998 });
999
1000 // allow wheel scrolling in
1001 // the shell for example
1002 on(el, 'wheel', function(ev) {
1003 if (self.mouseEvents) return;
1004 if (self.applicationKeypad) return;
1005 self.viewport.onWheel(ev);
1006 return self.cancel(ev);
1007 });
1008};
fc7b22dc 1009
db76868c
PK
1010/**
1011 * Destroys the terminal.
1012 */
1013Terminal.prototype.destroy = function() {
1014 this.readable = false;
1015 this.writable = false;
1016 this._events = {};
1017 this.handler = function() {};
1018 this.write = function() {};
1019 if (this.element.parentNode) {
1020 this.element.parentNode.removeChild(this.element);
1021 }
1022 //this.emit('close');
1023};
670b0d58 1024
8bc844c0 1025
db76868c
PK
1026/**
1027 * Flags used to render terminal text properly
1028 */
1029Terminal.flags = {
1030 BOLD: 1,
1031 UNDERLINE: 2,
1032 BLINK: 4,
1033 INVERSE: 8,
1034 INVISIBLE: 16
1035}
26af6ffd 1036
db76868c
PK
1037/**
1038 * Refreshes (re-renders) terminal content within two rows (inclusive)
1039 *
1040 * Rendering Engine:
1041 *
1042 * In the screen buffer, each character is stored as a an array with a character
1043 * and a 32-bit integer:
1044 * - First value: a utf-16 character.
1045 * - Second value:
1046 * - Next 9 bits: background color (0-511).
1047 * - Next 9 bits: foreground color (0-511).
1048 * - Next 14 bits: a mask for misc. flags:
1049 * - 1=bold
1050 * - 2=underline
1051 * - 4=blink
1052 * - 8=inverse
1053 * - 16=invisible
1054 *
1055 * @param {number} start The row to start from (between 0 and terminal's height terminal - 1)
1056 * @param {number} end The row to end at (between fromRow and terminal's height terminal - 1)
1057 * @param {boolean} queue Whether the refresh should ran right now or be queued
1058 */
1059Terminal.prototype.refresh = function(start, end, queue) {
1060 var self = this;
1061
1062 // queue defaults to true
1063 queue = (typeof queue == 'undefined') ? true : queue;
1064
1065 /**
1066 * The refresh queue allows refresh to execute only approximately 30 times a second. For
1067 * commands that pass a significant amount of output to the write function, this prevents the
1068 * terminal from maxing out the CPU and making the UI unresponsive. While commands can still
1069 * run beyond what they do on the terminal, it is far better with a debounce in place as
1070 * every single terminal manipulation does not need to be constructed in the DOM.
1071 *
1072 * A side-effect of this is that it makes ^C to interrupt a process seem more responsive.
1073 */
1074 if (queue) {
1075 // If refresh should be queued, order the refresh and return.
1076 if (this._refreshIsQueued) {
1077 // If a refresh has already been queued, just order a full refresh next
1078 this._fullRefreshNext = true;
1079 } else {
1080 setTimeout(function () {
1081 self.refresh(start, end, false);
1082 }, 34)
1083 this._refreshIsQueued = true;
1084 }
1085 return;
1086 }
1087
1088 // If refresh should be run right now (not be queued), release the lock
1089 this._refreshIsQueued = false;
1090
1091 // If multiple refreshes were requested, make a full refresh.
1092 if (this._fullRefreshNext) {
1093 start = 0;
1094 end = this.rows - 1;
1095 this._fullRefreshNext = false // reset lock
1096 }
1097
1098 var x, y, i, line, out, ch, ch_width, width, data, attr, bg, fg, flags, row, parent, focused = document.activeElement;
1099
1100 // If this is a big refresh, remove the terminal rows from the DOM for faster calculations
1101 if (end - start >= this.rows / 2) {
1102 parent = this.element.parentNode;
1103 if (parent) {
1104 this.element.removeChild(this.rowContainer);
1105 }
1106 }
8bc844c0 1107
db76868c
PK
1108 width = this.cols;
1109 y = start;
15f68335 1110
db76868c
PK
1111 if (end >= this.rows.length) {
1112 this.log('`end` is too large. Most likely a bad CSR.');
1113 end = this.rows.length - 1;
1114 }
15f68335 1115
db76868c
PK
1116 for (; y <= end; y++) {
1117 row = y + this.ydisp;
8bc844c0 1118
db76868c
PK
1119 line = this.lines[row];
1120 out = '';
8bc844c0 1121
db76868c
PK
1122 if (this.y === y - (this.ybase - this.ydisp)
1123 && this.cursorState
1124 && !this.cursorHidden) {
1125 x = this.x;
1126 } else {
1127 x = -1;
1128 }
8bc844c0 1129
db76868c
PK
1130 attr = this.defAttr;
1131 i = 0;
8bc844c0 1132
db76868c
PK
1133 for (; i < width; i++) {
1134 data = line[i][0];
1135 ch = line[i][1];
1136 ch_width = line[i][2];
1137 if (!ch_width)
1138 continue;
57300f51 1139
db76868c 1140 if (i === x) data = -1;
57300f51 1141
db76868c
PK
1142 if (data !== attr) {
1143 if (attr !== this.defAttr) {
1144 out += '</span>';
1145 }
1146 if (data !== this.defAttr) {
1147 if (data === -1) {
1148 out += '<span class="reverse-video terminal-cursor';
1149 if (this.cursorBlink) {
1150 out += ' blinking';
1151 }
1152 out += '">';
1153 } else {
1154 var classNames = [];
57300f51 1155
db76868c
PK
1156 bg = data & 0x1ff;
1157 fg = (data >> 9) & 0x1ff;
1158 flags = data >> 18;
8bc844c0 1159
db76868c
PK
1160 if (flags & Terminal.flags.BOLD) {
1161 if (!Terminal.brokenBold) {
1162 classNames.push('xterm-bold');
1163 }
1164 // See: XTerm*boldColors
1165 if (fg < 8) fg += 8;
1166 }
8bc844c0 1167
db76868c
PK
1168 if (flags & Terminal.flags.UNDERLINE) {
1169 classNames.push('xterm-underline');
1170 }
8bc844c0 1171
db76868c
PK
1172 if (flags & Terminal.flags.BLINK) {
1173 classNames.push('xterm-blink');
1174 }
8bc844c0 1175
db76868c
PK
1176 // If inverse flag is on, then swap the foreground and background variables.
1177 if (flags & Terminal.flags.INVERSE) {
1178 /* One-line variable swap in JavaScript: http://stackoverflow.com/a/16201730 */
1179 bg = [fg, fg = bg][0];
1180 // Should inverse just be before the
1181 // above boldColors effect instead?
1182 if ((flags & 1) && fg < 8) fg += 8;
1183 }
8bc844c0 1184
db76868c
PK
1185 if (flags & Terminal.flags.INVISIBLE) {
1186 classNames.push('xterm-hidden');
1187 }
8bc844c0 1188
db76868c
PK
1189 /**
1190 * Weird situation: Invert flag used black foreground and white background results
1191 * in invalid background color, positioned at the 256 index of the 256 terminal
1192 * color map. Pin the colors manually in such a case.
1193 *
1194 * Source: https://github.com/sourcelair/xterm.js/issues/57
1195 */
1196 if (flags & Terminal.flags.INVERSE) {
1197 if (bg == 257) {
1198 bg = 15;
1199 }
1200 if (fg == 256) {
1201 fg = 0;
1202 }
1203 }
8bc844c0 1204
db76868c
PK
1205 if (bg < 256) {
1206 classNames.push('xterm-bg-color-' + bg);
1207 }
a7f50531 1208
db76868c
PK
1209 if (fg < 256) {
1210 classNames.push('xterm-color-' + fg);
1211 }
a7f50531 1212
db76868c
PK
1213 out += '<span';
1214 if (classNames.length) {
1215 out += ' class="' + classNames.join(' ') + '"';
1216 }
1217 out += '>';
1218 }
1219 }
3f455f90 1220 }
efa0e3c1 1221
db76868c
PK
1222 switch (ch) {
1223 case '&':
1224 out += '&amp;';
1225 break;
1226 case '<':
1227 out += '&lt;';
1228 break;
1229 case '>':
1230 out += '&gt;';
1231 break;
1232 default:
1233 if (ch <= ' ') {
1234 out += '&nbsp;';
3f455f90 1235 } else {
db76868c 1236 out += ch;
3f455f90 1237 }
db76868c 1238 break;
3f455f90 1239 }
8bc844c0 1240
db76868c
PK
1241 attr = data;
1242 }
8bc844c0 1243
db76868c
PK
1244 if (attr !== this.defAttr) {
1245 out += '</span>';
1246 }
8bc844c0 1247
db76868c
PK
1248 this.children[y].innerHTML = out;
1249 }
8bc844c0 1250
db76868c
PK
1251 if (parent) {
1252 this.element.appendChild(this.rowContainer);
1253 }
8bc844c0 1254
db76868c
PK
1255 this.emit('refresh', {element: this.element, start: start, end: end});
1256};
8bc844c0 1257
db76868c
PK
1258/**
1259 * Display the cursor element
1260 */
1261Terminal.prototype.showCursor = function() {
1262 if (!this.cursorState) {
1263 this.cursorState = 1;
1264 this.refresh(this.y, this.y);
1265 }
1266};
8bc844c0 1267
db76868c
PK
1268/**
1269 * Scroll the terminal
1270 */
1271Terminal.prototype.scroll = function() {
1272 var row;
1273
1274 if (++this.ybase === this.scrollback) {
1275 this.ybase = this.ybase / 2 | 0;
1276 this.lines = this.lines.slice(-(this.ybase + this.rows) + 1);
1277 }
1278
1279 this.ydisp = this.ybase;
1280
1281 // last line
1282 row = this.ybase + this.rows - 1;
1283
1284 // subtract the bottom scroll region
1285 row -= this.rows - 1 - this.scrollBottom;
1286
1287 if (row === this.lines.length) {
1288 // potential optimization:
1289 // pushing is faster than splicing
1290 // when they amount to the same
1291 // behavior.
1292 this.lines.push(this.blankLine());
1293 } else {
1294 // add our new line
1295 this.lines.splice(row, 0, this.blankLine());
1296 }
1297
1298 if (this.scrollTop !== 0) {
1299 if (this.ybase !== 0) {
1300 this.ybase--;
1301 this.ydisp = this.ybase;
1302 }
1303 this.lines.splice(this.ybase + this.scrollTop, 1);
1304 }
8bc844c0 1305
db76868c
PK
1306 // this.maxRange();
1307 this.updateRange(this.scrollTop);
1308 this.updateRange(this.scrollBottom);
8bc844c0 1309
db76868c
PK
1310 this.emit('scroll', this.ydisp);
1311};
1312
1313/**
1314 * Scroll the display of the terminal
1315 * @param {number} disp The number of lines to scroll down (negatives scroll up).
1316 * @param {boolean} suppressScrollEvent Don't emit the scroll event as scrollDisp. This is used
1317 * to avoid unwanted events being handled by the veiwport when the event was triggered from the
1318 * viewport originally.
1319 */
1320Terminal.prototype.scrollDisp = function(disp, suppressScrollEvent) {
1321 this.ydisp += disp;
8bc844c0 1322
db76868c
PK
1323 if (this.ydisp > this.ybase) {
1324 this.ydisp = this.ybase;
1325 } else if (this.ydisp < 0) {
1326 this.ydisp = 0;
1327 }
8bc844c0 1328
db76868c
PK
1329 if (!suppressScrollEvent) {
1330 this.emit('scroll', this.ydisp);
1331 }
8bc844c0 1332
db76868c
PK
1333 this.refresh(0, this.rows - 1);
1334};
8bc844c0 1335
db76868c
PK
1336/**
1337 * Writes text to the terminal.
1338 * @param {string} text The text to write to the terminal.
1339 */
1340Terminal.prototype.write = function(data) {
1341 var l = data.length, i = 0, j, cs, ch, code, low, ch_width, row;
1342
1343 this.refreshStart = this.y;
1344 this.refreshEnd = this.y;
1345
1346 if (this.ybase !== this.ydisp) {
1347 this.ydisp = this.ybase;
1348 this.emit('scroll', this.ydisp);
1349 this.maxRange();
1350 }
1351
1352 // apply leftover surrogate high from last write
1353 if (this.surrogate_high) {
1354 data = this.surrogate_high + data;
1355 this.surrogate_high = '';
1356 }
1357
1358 for (; i < l; i++) {
1359 ch = data[i];
1360
1361 // FIXME: higher chars than 0xa0 are not allowed in escape sequences
1362 // --> maybe move to default
1363 code = data.charCodeAt(i);
1364 if (0xD800 <= code && code <= 0xDBFF) {
1365 // we got a surrogate high
1366 // get surrogate low (next 2 bytes)
1367 low = data.charCodeAt(i+1);
1368 if (isNaN(low)) {
1369 // end of data stream, save surrogate high
1370 this.surrogate_high = ch;
1371 continue;
3f455f90 1372 }
db76868c
PK
1373 code = ((code - 0xD800) * 0x400) + (low - 0xDC00) + 0x10000;
1374 ch += data.charAt(i+1);
1375 }
1376 // surrogate low - already handled above
1377 if (0xDC00 <= code && code <= 0xDFFF)
1378 continue;
1379
1380 switch (this.state) {
1381 case normal:
1382 switch (ch) {
1383 case '\x07':
1384 this.bell();
1385 break;
8bc844c0 1386
db76868c
PK
1387 // '\n', '\v', '\f'
1388 case '\n':
1389 case '\x0b':
1390 case '\x0c':
1391 if (this.convertEol) {
1392 this.x = 0;
1393 }
1394 this.y++;
1395 if (this.y > this.scrollBottom) {
1396 this.y--;
1397 this.scroll();
1398 }
1399 break;
8bc844c0 1400
db76868c
PK
1401 // '\r'
1402 case '\r':
1403 this.x = 0;
1404 break;
3f455f90 1405
db76868c
PK
1406 // '\b'
1407 case '\x08':
1408 if (this.x > 0) {
1409 this.x--;
1410 }
1411 break;
3f455f90 1412
db76868c
PK
1413 // '\t'
1414 case '\t':
1415 this.x = this.nextStop();
1416 break;
8bc844c0 1417
db76868c
PK
1418 // shift out
1419 case '\x0e':
1420 this.setgLevel(1);
1421 break;
3f455f90 1422
db76868c
PK
1423 // shift in
1424 case '\x0f':
1425 this.setgLevel(0);
1426 break;
3f455f90 1427
db76868c
PK
1428 // '\e'
1429 case '\x1b':
1430 this.state = escaped;
1431 break;
3f455f90 1432
db76868c
PK
1433 default:
1434 // ' '
1435 // calculate print space
1436 // expensive call, therefore we save width in line buffer
1437 ch_width = wcwidth(code);
3f455f90 1438
db76868c
PK
1439 if (ch >= ' ') {
1440 if (this.charset && this.charset[ch]) {
1441 ch = this.charset[ch];
1442 }
3f455f90 1443
db76868c 1444 row = this.y + this.ybase;
3f455f90 1445
db76868c
PK
1446 // insert combining char in last cell
1447 // FIXME: needs handling after cursor jumps
1448 if (!ch_width && this.x) {
3f455f90 1449
db76868c
PK
1450 // dont overflow left
1451 if (this.lines[row][this.x-1]) {
1452 if (!this.lines[row][this.x-1][2]) {
1a384616 1453
db76868c
PK
1454 // found empty cell after fullwidth, need to go 2 cells back
1455 if (this.lines[row][this.x-2])
1456 this.lines[row][this.x-2][1] += ch;
a6e85ad5 1457
db76868c
PK
1458 } else {
1459 this.lines[row][this.x-1][1] += ch;
1460 }
1461 this.updateRange(this.y);
1462 }
1463 break;
1464 }
a6e85ad5 1465
db76868c
PK
1466 // goto next line if ch would overflow
1467 // TODO: needs a global min terminal width of 2
1468 if (this.x+ch_width-1 >= this.cols) {
1469 // autowrap - DECAWM
1470 if (this.wraparoundMode) {
1471 this.x = 0;
1472 this.y++;
1473 if (this.y > this.scrollBottom) {
1474 this.y--;
1475 this.scroll();
1476 }
1477 } else {
1478 this.x = this.cols-1;
1479 if(ch_width===2) // FIXME: check for xterm behavior
1480 continue;
1481 }
1482 }
1483 row = this.y + this.ybase;
1484
1485 // insert mode: move characters to right
1486 if (this.insertMode) {
1487 // do this twice for a fullwidth char
1488 for (var moves=0; moves<ch_width; ++moves) {
1489 // remove last cell, if it's width is 0
1490 // we have to adjust the second last cell as well
1491 var removed = this.lines[this.y + this.ybase].pop();
1492 if (removed[2]===0
1493 && this.lines[row][this.cols-2]
1494 && this.lines[row][this.cols-2][2]===2)
1495 this.lines[row][this.cols-2] = [this.curAttr, ' ', 1];
1496
1497 // insert empty cell at cursor
1498 this.lines[row].splice(this.x, 0, [this.curAttr, ' ', 1]);
1499 }
1500 }
a6e85ad5 1501
db76868c
PK
1502 this.lines[row][this.x] = [this.curAttr, ch, ch_width];
1503 this.x++;
1504 this.updateRange(this.y);
af29effb 1505
db76868c
PK
1506 // fullwidth char - set next cell width to zero and advance cursor
1507 if (ch_width===2) {
1508 this.lines[row][this.x] = [this.curAttr, '', 0];
1509 this.x++;
1510 }
1511 }
1512 break;
1513 }
1514 break;
1515 case escaped:
1516 switch (ch) {
1517 // ESC [ Control Sequence Introducer ( CSI is 0x9b).
1518 case '[':
1519 this.params = [];
1520 this.currentParam = 0;
1521 this.state = csi;
1522 break;
3f455f90 1523
db76868c
PK
1524 // ESC ] Operating System Command ( OSC is 0x9d).
1525 case ']':
1526 this.params = [];
1527 this.currentParam = 0;
1528 this.state = osc;
1529 break;
3f455f90 1530
db76868c
PK
1531 // ESC P Device Control String ( DCS is 0x90).
1532 case 'P':
1533 this.params = [];
1534 this.currentParam = 0;
1535 this.state = dcs;
1536 break;
3f455f90 1537
db76868c
PK
1538 // ESC _ Application Program Command ( APC is 0x9f).
1539 case '_':
1540 this.state = ignore;
1541 break;
3f455f90 1542
db76868c
PK
1543 // ESC ^ Privacy Message ( PM is 0x9e).
1544 case '^':
1545 this.state = ignore;
1546 break;
3f455f90 1547
db76868c
PK
1548 // ESC c Full Reset (RIS).
1549 case 'c':
1550 this.reset();
1551 break;
3f455f90 1552
db76868c
PK
1553 // ESC E Next Line ( NEL is 0x85).
1554 // ESC D Index ( IND is 0x84).
1555 case 'E':
1556 this.x = 0;
1557 ;
1558 case 'D':
1559 this.index();
1560 break;
3f455f90 1561
db76868c
PK
1562 // ESC M Reverse Index ( RI is 0x8d).
1563 case 'M':
1564 this.reverseIndex();
1565 break;
3f455f90 1566
db76868c
PK
1567 // ESC % Select default/utf-8 character set.
1568 // @ = default, G = utf-8
1569 case '%':
1570 //this.charset = null;
1571 this.setgLevel(0);
1572 this.setgCharset(0, Terminal.charsets.US);
1573 this.state = normal;
1574 i++;
1575 break;
3f455f90 1576
db76868c
PK
1577 // ESC (,),*,+,-,. Designate G0-G2 Character Set.
1578 case '(': // <-- this seems to get all the attention
1579 case ')':
1580 case '*':
1581 case '+':
1582 case '-':
1583 case '.':
1584 switch (ch) {
1585 case '(':
1586 this.gcharset = 0;
1587 break;
1588 case ')':
1589 this.gcharset = 1;
1590 break;
1591 case '*':
1592 this.gcharset = 2;
1593 break;
1594 case '+':
1595 this.gcharset = 3;
1596 break;
1597 case '-':
1598 this.gcharset = 1;
1599 break;
1600 case '.':
1601 this.gcharset = 2;
1602 break;
3f455f90 1603 }
db76868c
PK
1604 this.state = charset;
1605 break;
3f455f90 1606
db76868c
PK
1607 // Designate G3 Character Set (VT300).
1608 // A = ISO Latin-1 Supplemental.
1609 // Not implemented.
1610 case '/':
1611 this.gcharset = 3;
1612 this.state = charset;
1613 i--;
1614 break;
3f455f90 1615
db76868c
PK
1616 // ESC N
1617 // Single Shift Select of G2 Character Set
1618 // ( SS2 is 0x8e). This affects next character only.
1619 case 'N':
1620 break;
1621 // ESC O
1622 // Single Shift Select of G3 Character Set
1623 // ( SS3 is 0x8f). This affects next character only.
1624 case 'O':
1625 break;
1626 // ESC n
1627 // Invoke the G2 Character Set as GL (LS2).
1628 case 'n':
1629 this.setgLevel(2);
1630 break;
1631 // ESC o
1632 // Invoke the G3 Character Set as GL (LS3).
1633 case 'o':
1634 this.setgLevel(3);
1635 break;
1636 // ESC |
1637 // Invoke the G3 Character Set as GR (LS3R).
1638 case '|':
1639 this.setgLevel(3);
1640 break;
1641 // ESC }
1642 // Invoke the G2 Character Set as GR (LS2R).
1643 case '}':
1644 this.setgLevel(2);
1645 break;
1646 // ESC ~
1647 // Invoke the G1 Character Set as GR (LS1R).
1648 case '~':
1649 this.setgLevel(1);
1650 break;
3f455f90 1651
db76868c
PK
1652 // ESC 7 Save Cursor (DECSC).
1653 case '7':
1654 this.saveCursor();
1655 this.state = normal;
1656 break;
3f455f90 1657
db76868c
PK
1658 // ESC 8 Restore Cursor (DECRC).
1659 case '8':
1660 this.restoreCursor();
1661 this.state = normal;
1662 break;
3f455f90 1663
db76868c
PK
1664 // ESC # 3 DEC line height/width
1665 case '#':
1666 this.state = normal;
1667 i++;
1668 break;
3f455f90 1669
db76868c
PK
1670 // ESC H Tab Set (HTS is 0x88).
1671 case 'H':
1672 this.tabSet();
1673 break;
3f455f90 1674
db76868c
PK
1675 // ESC = Application Keypad (DECKPAM).
1676 case '=':
1677 this.log('Serial port requested application keypad.');
1678 this.applicationKeypad = true;
1679 this.viewport.setApplicationMode(true);
1680 this.state = normal;
1681 break;
1a384616 1682
db76868c
PK
1683 // ESC > Normal Keypad (DECKPNM).
1684 case '>':
1685 this.log('Switching back to normal keypad.');
1686 this.applicationKeypad = false;
1687 this.viewport.setApplicationMode(false);
1688 this.state = normal;
1689 break;
3f455f90 1690
db76868c
PK
1691 default:
1692 this.state = normal;
1693 this.error('Unknown ESC control: %s.', ch);
1694 break;
1695 }
1696 break;
3f455f90 1697
db76868c
PK
1698 case charset:
1699 switch (ch) {
1700 case '0': // DEC Special Character and Line Drawing Set.
1701 cs = Terminal.charsets.SCLD;
1702 break;
1703 case 'A': // UK
1704 cs = Terminal.charsets.UK;
1705 break;
1706 case 'B': // United States (USASCII).
1707 cs = Terminal.charsets.US;
1708 break;
1709 case '4': // Dutch
1710 cs = Terminal.charsets.Dutch;
1711 break;
1712 case 'C': // Finnish
1713 case '5':
1714 cs = Terminal.charsets.Finnish;
1715 break;
1716 case 'R': // French
1717 cs = Terminal.charsets.French;
1718 break;
1719 case 'Q': // FrenchCanadian
1720 cs = Terminal.charsets.FrenchCanadian;
1721 break;
1722 case 'K': // German
1723 cs = Terminal.charsets.German;
1724 break;
1725 case 'Y': // Italian
1726 cs = Terminal.charsets.Italian;
1727 break;
1728 case 'E': // NorwegianDanish
1729 case '6':
1730 cs = Terminal.charsets.NorwegianDanish;
1731 break;
1732 case 'Z': // Spanish
1733 cs = Terminal.charsets.Spanish;
1734 break;
1735 case 'H': // Swedish
1736 case '7':
1737 cs = Terminal.charsets.Swedish;
1738 break;
1739 case '=': // Swiss
1740 cs = Terminal.charsets.Swiss;
1741 break;
1742 case '/': // ISOLatin (actually /A)
1743 cs = Terminal.charsets.ISOLatin;
1744 i++;
1745 break;
1746 default: // Default
1747 cs = Terminal.charsets.US;
1748 break;
1749 }
1750 this.setgCharset(this.gcharset, cs);
1751 this.gcharset = null;
1752 this.state = normal;
1753 break;
1754
1755 case osc:
1756 // OSC Ps ; Pt ST
1757 // OSC Ps ; Pt BEL
1758 // Set Text Parameters.
1759 if (ch === '\x1b' || ch === '\x07') {
1760 if (ch === '\x1b') i++;
1761
1762 this.params.push(this.currentParam);
1763
1764 switch (this.params[0]) {
1765 case 0:
1766 case 1:
1767 case 2:
1768 if (this.params[1]) {
1769 this.title = this.params[1];
1770 this.handleTitle(this.title);
8bc844c0
CJ
1771 }
1772 break;
db76868c
PK
1773 case 3:
1774 // set X property
8bc844c0 1775 break;
db76868c
PK
1776 case 4:
1777 case 5:
1778 // change dynamic colors
8bc844c0 1779 break;
db76868c
PK
1780 case 10:
1781 case 11:
1782 case 12:
1783 case 13:
1784 case 14:
1785 case 15:
1786 case 16:
1787 case 17:
1788 case 18:
1789 case 19:
1790 // change dynamic ui colors
1791 break;
1792 case 46:
1793 // change log file
1794 break;
1795 case 50:
1796 // dynamic font
1797 break;
1798 case 51:
1799 // emacs shell
1800 break;
1801 case 52:
1802 // manipulate selection data
1803 break;
1804 case 104:
1805 case 105:
1806 case 110:
1807 case 111:
1808 case 112:
1809 case 113:
1810 case 114:
1811 case 115:
1812 case 116:
1813 case 117:
1814 case 118:
1815 // reset colors
8bc844c0
CJ
1816 break;
1817 }
1818
db76868c
PK
1819 this.params = [];
1820 this.currentParam = 0;
1821 this.state = normal;
1822 } else {
1823 if (!this.params.length) {
1824 if (ch >= '0' && ch <= '9') {
1825 this.currentParam =
1826 this.currentParam * 10 + ch.charCodeAt(0) - 48;
1827 } else if (ch === ';') {
1828 this.params.push(this.currentParam);
1829 this.currentParam = '';
1830 }
1831 } else {
1832 this.currentParam += ch;
1833 }
8bc844c0 1834 }
db76868c 1835 break;
8bc844c0 1836
db76868c
PK
1837 case csi:
1838 // '?', '>', '!'
1839 if (ch === '?' || ch === '>' || ch === '!') {
1840 this.prefix = ch;
1841 break;
8bc844c0
CJ
1842 }
1843
db76868c
PK
1844 // 0 - 9
1845 if (ch >= '0' && ch <= '9') {
1846 this.currentParam = this.currentParam * 10 + ch.charCodeAt(0) - 48;
1847 break;
1848 }
3f455f90 1849
db76868c
PK
1850 // '$', '"', ' ', '\''
1851 if (ch === '$' || ch === '"' || ch === ' ' || ch === '\'') {
1852 this.postfix = ch;
1853 break;
1854 }
3f455f90 1855
db76868c
PK
1856 this.params.push(this.currentParam);
1857 this.currentParam = 0;
3f455f90 1858
db76868c
PK
1859 // ';'
1860 if (ch === ';') break;
3f455f90 1861
db76868c 1862 this.state = normal;
3f455f90 1863
db76868c
PK
1864 switch (ch) {
1865 // CSI Ps A
1866 // Cursor Up Ps Times (default = 1) (CUU).
1867 case 'A':
1868 this.cursorUp(this.params);
1869 break;
3f455f90 1870
db76868c
PK
1871 // CSI Ps B
1872 // Cursor Down Ps Times (default = 1) (CUD).
1873 case 'B':
1874 this.cursorDown(this.params);
1875 break;
3f455f90 1876
db76868c
PK
1877 // CSI Ps C
1878 // Cursor Forward Ps Times (default = 1) (CUF).
1879 case 'C':
1880 this.cursorForward(this.params);
1881 break;
3f455f90 1882
db76868c
PK
1883 // CSI Ps D
1884 // Cursor Backward Ps Times (default = 1) (CUB).
1885 case 'D':
1886 this.cursorBackward(this.params);
1887 break;
8bc844c0 1888
db76868c
PK
1889 // CSI Ps ; Ps H
1890 // Cursor Position [row;column] (default = [1,1]) (CUP).
1891 case 'H':
1892 this.cursorPos(this.params);
1893 break;
ff927b8e 1894
db76868c
PK
1895 // CSI Ps J Erase in Display (ED).
1896 case 'J':
1897 this.eraseInDisplay(this.params);
1898 break;
8bc844c0 1899
db76868c
PK
1900 // CSI Ps K Erase in Line (EL).
1901 case 'K':
1902 this.eraseInLine(this.params);
1903 break;
8bc844c0 1904
db76868c
PK
1905 // CSI Pm m Character Attributes (SGR).
1906 case 'm':
1907 if (!this.prefix) {
1908 this.charAttributes(this.params);
1909 }
1910 break;
8bc844c0 1911
db76868c
PK
1912 // CSI Ps n Device Status Report (DSR).
1913 case 'n':
1914 if (!this.prefix) {
1915 this.deviceStatus(this.params);
1916 }
1917 break;
363c647a 1918
db76868c
PK
1919 /**
1920 * Additions
1921 */
8bc844c0 1922
db76868c
PK
1923 // CSI Ps @
1924 // Insert Ps (Blank) Character(s) (default = 1) (ICH).
1925 case '@':
1926 this.insertChars(this.params);
1927 break;
8bc844c0 1928
db76868c
PK
1929 // CSI Ps E
1930 // Cursor Next Line Ps Times (default = 1) (CNL).
1931 case 'E':
1932 this.cursorNextLine(this.params);
1933 break;
8bc844c0 1934
db76868c
PK
1935 // CSI Ps F
1936 // Cursor Preceding Line Ps Times (default = 1) (CNL).
1937 case 'F':
1938 this.cursorPrecedingLine(this.params);
1939 break;
8bc844c0 1940
db76868c
PK
1941 // CSI Ps G
1942 // Cursor Character Absolute [column] (default = [row,1]) (CHA).
1943 case 'G':
1944 this.cursorCharAbsolute(this.params);
1945 break;
874ba72f 1946
db76868c
PK
1947 // CSI Ps L
1948 // Insert Ps Line(s) (default = 1) (IL).
1949 case 'L':
1950 this.insertLines(this.params);
1951 break;
874ba72f 1952
db76868c
PK
1953 // CSI Ps M
1954 // Delete Ps Line(s) (default = 1) (DL).
1955 case 'M':
1956 this.deleteLines(this.params);
1957 break;
8bc844c0 1958
db76868c
PK
1959 // CSI Ps P
1960 // Delete Ps Character(s) (default = 1) (DCH).
1961 case 'P':
1962 this.deleteChars(this.params);
1963 break;
8bc844c0 1964
db76868c
PK
1965 // CSI Ps X
1966 // Erase Ps Character(s) (default = 1) (ECH).
1967 case 'X':
1968 this.eraseChars(this.params);
1969 break;
8bc844c0 1970
db76868c
PK
1971 // CSI Pm ` Character Position Absolute
1972 // [column] (default = [row,1]) (HPA).
1973 case '`':
1974 this.charPosAbsolute(this.params);
1975 break;
3f455f90 1976
db76868c
PK
1977 // 141 61 a * HPR -
1978 // Horizontal Position Relative
1979 case 'a':
1980 this.HPositionRelative(this.params);
1981 break;
8bc844c0 1982
db76868c
PK
1983 // CSI P s c
1984 // Send Device Attributes (Primary DA).
1985 // CSI > P s c
1986 // Send Device Attributes (Secondary DA)
1987 case 'c':
1988 this.sendDeviceAttributes(this.params);
1989 break;
3f455f90 1990
db76868c
PK
1991 // CSI Pm d
1992 // Line Position Absolute [row] (default = [1,column]) (VPA).
1993 case 'd':
1994 this.linePosAbsolute(this.params);
1995 break;
3f455f90 1996
db76868c
PK
1997 // 145 65 e * VPR - Vertical Position Relative
1998 case 'e':
1999 this.VPositionRelative(this.params);
2000 break;
3f455f90 2001
db76868c
PK
2002 // CSI Ps ; Ps f
2003 // Horizontal and Vertical Position [row;column] (default =
2004 // [1,1]) (HVP).
2005 case 'f':
2006 this.HVPosition(this.params);
2007 break;
f951abb7 2008
db76868c
PK
2009 // CSI Pm h Set Mode (SM).
2010 // CSI ? Pm h - mouse escape codes, cursor escape codes
2011 case 'h':
2012 this.setMode(this.params);
2013 break;
3f455f90 2014
db76868c
PK
2015 // CSI Pm l Reset Mode (RM).
2016 // CSI ? Pm l
2017 case 'l':
2018 this.resetMode(this.params);
2019 break;
4afa08da 2020
db76868c
PK
2021 // CSI Ps ; Ps r
2022 // Set Scrolling Region [top;bottom] (default = full size of win-
2023 // dow) (DECSTBM).
2024 // CSI ? Pm r
2025 case 'r':
2026 this.setScrollRegion(this.params);
2027 break;
0b018fd4 2028
db76868c
PK
2029 // CSI s
2030 // Save cursor (ANSI.SYS).
2031 case 's':
2032 this.saveCursor(this.params);
2033 break;
c3bc59b5 2034
db76868c
PK
2035 // CSI u
2036 // Restore cursor (ANSI.SYS).
2037 case 'u':
2038 this.restoreCursor(this.params);
2039 break;
c3bc59b5 2040
db76868c
PK
2041 /**
2042 * Lesser Used
2043 */
874ba72f 2044
db76868c
PK
2045 // CSI Ps I
2046 // Cursor Forward Tabulation Ps tab stops (default = 1) (CHT).
2047 case 'I':
2048 this.cursorForwardTab(this.params);
2049 break;
3f455f90 2050
db76868c
PK
2051 // CSI Ps S Scroll up Ps lines (default = 1) (SU).
2052 case 'S':
2053 this.scrollUp(this.params);
2054 break;
3f455f90 2055
db76868c
PK
2056 // CSI Ps T Scroll down Ps lines (default = 1) (SD).
2057 // CSI Ps ; Ps ; Ps ; Ps ; Ps T
2058 // CSI > Ps; Ps T
2059 case 'T':
2060 // if (this.prefix === '>') {
2061 // this.resetTitleModes(this.params);
2062 // break;
2063 // }
2064 // if (this.params.length > 2) {
2065 // this.initMouseTracking(this.params);
2066 // break;
2067 // }
2068 if (this.params.length < 2 && !this.prefix) {
2069 this.scrollDown(this.params);
a4607f90 2070 }
8bc844c0
CJ
2071 break;
2072
db76868c
PK
2073 // CSI Ps Z
2074 // Cursor Backward Tabulation Ps tab stops (default = 1) (CBT).
2075 case 'Z':
2076 this.cursorBackwardTab(this.params);
2077 break;
8bc844c0 2078
db76868c
PK
2079 // CSI Ps b Repeat the preceding graphic character Ps times (REP).
2080 case 'b':
2081 this.repeatPrecedingCharacter(this.params);
2082 break;
8bc844c0 2083
db76868c
PK
2084 // CSI Ps g Tab Clear (TBC).
2085 case 'g':
2086 this.tabClear(this.params);
2087 break;
8bc844c0 2088
db76868c
PK
2089 // CSI Pm i Media Copy (MC).
2090 // CSI ? Pm i
2091 // case 'i':
2092 // this.mediaCopy(this.params);
2093 // break;
2094
2095 // CSI Pm m Character Attributes (SGR).
2096 // CSI > Ps; Ps m
2097 // case 'm': // duplicate
2098 // if (this.prefix === '>') {
2099 // this.setResources(this.params);
2100 // } else {
2101 // this.charAttributes(this.params);
2102 // }
2103 // break;
2104
2105 // CSI Ps n Device Status Report (DSR).
2106 // CSI > Ps n
2107 // case 'n': // duplicate
2108 // if (this.prefix === '>') {
2109 // this.disableModifiers(this.params);
2110 // } else {
2111 // this.deviceStatus(this.params);
2112 // }
2113 // break;
2114
2115 // CSI > Ps p Set pointer mode.
2116 // CSI ! p Soft terminal reset (DECSTR).
2117 // CSI Ps$ p
2118 // Request ANSI mode (DECRQM).
2119 // CSI ? Ps$ p
2120 // Request DEC private mode (DECRQM).
2121 // CSI Ps ; Ps " p
2122 case 'p':
2123 switch (this.prefix) {
2124 // case '>':
2125 // this.setPointerMode(this.params);
2126 // break;
2127 case '!':
2128 this.softReset(this.params);
3f455f90 2129 break;
db76868c
PK
2130 // case '?':
2131 // if (this.postfix === '$') {
2132 // this.requestPrivateMode(this.params);
2133 // }
2134 // break;
2135 // default:
2136 // if (this.postfix === '"') {
2137 // this.setConformanceLevel(this.params);
2138 // } else if (this.postfix === '$') {
2139 // this.requestAnsiMode(this.params);
2140 // }
2141 // break;
2142 }
2143 break;
8bc844c0 2144
db76868c
PK
2145 // CSI Ps q Load LEDs (DECLL).
2146 // CSI Ps SP q
2147 // CSI Ps " q
2148 // case 'q':
2149 // if (this.postfix === ' ') {
2150 // this.setCursorStyle(this.params);
2151 // break;
2152 // }
2153 // if (this.postfix === '"') {
2154 // this.setCharProtectionAttr(this.params);
2155 // break;
2156 // }
2157 // this.loadLEDs(this.params);
2158 // break;
2159
2160 // CSI Ps ; Ps r
2161 // Set Scrolling Region [top;bottom] (default = full size of win-
2162 // dow) (DECSTBM).
2163 // CSI ? Pm r
2164 // CSI Pt; Pl; Pb; Pr; Ps$ r
2165 // case 'r': // duplicate
2166 // if (this.prefix === '?') {
2167 // this.restorePrivateValues(this.params);
2168 // } else if (this.postfix === '$') {
2169 // this.setAttrInRectangle(this.params);
2170 // } else {
2171 // this.setScrollRegion(this.params);
2172 // }
2173 // break;
2174
2175 // CSI s Save cursor (ANSI.SYS).
2176 // CSI ? Pm s
2177 // case 's': // duplicate
2178 // if (this.prefix === '?') {
2179 // this.savePrivateValues(this.params);
2180 // } else {
2181 // this.saveCursor(this.params);
2182 // }
2183 // break;
2184
2185 // CSI Ps ; Ps ; Ps t
2186 // CSI Pt; Pl; Pb; Pr; Ps$ t
2187 // CSI > Ps; Ps t
2188 // CSI Ps SP t
2189 // case 't':
2190 // if (this.postfix === '$') {
2191 // this.reverseAttrInRectangle(this.params);
2192 // } else if (this.postfix === ' ') {
2193 // this.setWarningBellVolume(this.params);
2194 // } else {
2195 // if (this.prefix === '>') {
2196 // this.setTitleModeFeature(this.params);
2197 // } else {
2198 // this.manipulateWindow(this.params);
2199 // }
2200 // }
2201 // break;
2202
2203 // CSI u Restore cursor (ANSI.SYS).
2204 // CSI Ps SP u
2205 // case 'u': // duplicate
2206 // if (this.postfix === ' ') {
2207 // this.setMarginBellVolume(this.params);
2208 // } else {
2209 // this.restoreCursor(this.params);
2210 // }
2211 // break;
2212
2213 // CSI Pt; Pl; Pb; Pr; Pp; Pt; Pl; Pp$ v
2214 // case 'v':
2215 // if (this.postfix === '$') {
2216 // this.copyRectagle(this.params);
2217 // }
2218 // break;
2219
2220 // CSI Pt ; Pl ; Pb ; Pr ' w
2221 // case 'w':
2222 // if (this.postfix === '\'') {
2223 // this.enableFilterRectangle(this.params);
2224 // }
2225 // break;
2226
2227 // CSI Ps x Request Terminal Parameters (DECREQTPARM).
2228 // CSI Ps x Select Attribute Change Extent (DECSACE).
2229 // CSI Pc; Pt; Pl; Pb; Pr$ x
2230 // case 'x':
2231 // if (this.postfix === '$') {
2232 // this.fillRectangle(this.params);
2233 // } else {
2234 // this.requestParameters(this.params);
2235 // //this.__(this.params);
2236 // }
2237 // break;
2238
2239 // CSI Ps ; Pu ' z
2240 // CSI Pt; Pl; Pb; Pr$ z
2241 // case 'z':
2242 // if (this.postfix === '\'') {
2243 // this.enableLocatorReporting(this.params);
2244 // } else if (this.postfix === '$') {
2245 // this.eraseRectangle(this.params);
2246 // }
2247 // break;
2248
2249 // CSI Pm ' {
2250 // CSI Pt; Pl; Pb; Pr$ {
2251 // case '{':
2252 // if (this.postfix === '\'') {
2253 // this.setLocatorEvents(this.params);
2254 // } else if (this.postfix === '$') {
2255 // this.selectiveEraseRectangle(this.params);
2256 // }
2257 // break;
2258
2259 // CSI Ps ' |
2260 // case '|':
2261 // if (this.postfix === '\'') {
2262 // this.requestLocatorPosition(this.params);
2263 // }
2264 // break;
2265
2266 // CSI P m SP }
2267 // Insert P s Column(s) (default = 1) (DECIC), VT420 and up.
2268 // case '}':
2269 // if (this.postfix === ' ') {
2270 // this.insertColumns(this.params);
2271 // }
2272 // break;
2273
2274 // CSI P m SP ~
2275 // Delete P s Column(s) (default = 1) (DECDC), VT420 and up
2276 // case '~':
2277 // if (this.postfix === ' ') {
2278 // this.deleteColumns(this.params);
2279 // }
2280 // break;
2281
2282 default:
2283 this.error('Unknown CSI code: %s.', ch);
2284 break;
2285 }
8bc844c0 2286
db76868c
PK
2287 this.prefix = '';
2288 this.postfix = '';
2289 break;
8bc844c0 2290
db76868c
PK
2291 case dcs:
2292 if (ch === '\x1b' || ch === '\x07') {
2293 if (ch === '\x1b') i++;
8bc844c0 2294
db76868c
PK
2295 switch (this.prefix) {
2296 // User-Defined Keys (DECUDK).
2297 case '':
2298 break;
8bc844c0 2299
db76868c
PK
2300 // Request Status String (DECRQSS).
2301 // test: echo -e '\eP$q"p\e\\'
2302 case '$q':
2303 var pt = this.currentParam
2304 , valid = false;
8bc844c0 2305
db76868c
PK
2306 switch (pt) {
2307 // DECSCA
2308 case '"q':
2309 pt = '0"q';
2310 break;
8bc844c0 2311
db76868c
PK
2312 // DECSCL
2313 case '"p':
2314 pt = '61"p';
2315 break;
8bc844c0 2316
db76868c
PK
2317 // DECSTBM
2318 case 'r':
2319 pt = ''
2320 + (this.scrollTop + 1)
2321 + ';'
2322 + (this.scrollBottom + 1)
2323 + 'r';
2324 break;
8bc844c0 2325
db76868c
PK
2326 // SGR
2327 case 'm':
2328 pt = '0m';
2329 break;
8bc844c0 2330
db76868c
PK
2331 default:
2332 this.error('Unknown DCS Pt: %s.', pt);
2333 pt = '';
2334 break;
2335 }
8bc844c0 2336
db76868c
PK
2337 this.send('\x1bP' + +valid + '$r' + pt + '\x1b\\');
2338 break;
8bc844c0 2339
db76868c
PK
2340 // Set Termcap/Terminfo Data (xterm, experimental).
2341 case '+p':
2342 break;
8bc844c0 2343
db76868c
PK
2344 // Request Termcap/Terminfo String (xterm, experimental)
2345 // Regular xterm does not even respond to this sequence.
2346 // This can cause a small glitch in vim.
2347 // test: echo -ne '\eP+q6b64\e\\'
2348 case '+q':
2349 var pt = this.currentParam
2350 , valid = false;
8bc844c0 2351
db76868c
PK
2352 this.send('\x1bP' + +valid + '+r' + pt + '\x1b\\');
2353 break;
8bc844c0 2354
db76868c
PK
2355 default:
2356 this.error('Unknown DCS prefix: %s.', this.prefix);
3f455f90 2357 break;
db76868c 2358 }
3f455f90 2359
db76868c
PK
2360 this.currentParam = 0;
2361 this.prefix = '';
2362 this.state = normal;
2363 } else if (!this.currentParam) {
2364 if (!this.prefix && ch !== '$' && ch !== '+') {
2365 this.currentParam = ch;
2366 } else if (this.prefix.length === 2) {
2367 this.currentParam = ch;
2368 } else {
2369 this.prefix += ch;
2370 }
2371 } else {
2372 this.currentParam += ch;
2373 }
2374 break;
3f455f90 2375
db76868c
PK
2376 case ignore:
2377 // For PM and APC.
2378 if (ch === '\x1b' || ch === '\x07') {
2379 if (ch === '\x1b') i++;
2380 this.state = normal;
2381 }
2382 break;
2383 }
2384 }
3f455f90 2385
db76868c
PK
2386 this.updateRange(this.y);
2387 this.refresh(this.refreshStart, this.refreshEnd);
2388};
3f455f90 2389
db76868c
PK
2390/**
2391 * Writes text to the terminal, followed by a break line character (\n).
2392 * @param {string} text The text to write to the terminal.
2393 */
2394Terminal.prototype.writeln = function(data) {
2395 this.write(data + '\r\n');
2396};
3f455f90 2397
db76868c
PK
2398/**
2399 * Attaches a custom keydown handler which is run before keys are processed, giving consumers of
2400 * xterm.js ultimate control as to what keys should be processed by the terminal and what keys
2401 * should not.
2402 * @param {function} customKeydownHandler The custom KeyboardEvent handler to attach. This is a
2403 * function that takes a KeyboardEvent, allowing consumers to stop propogation and/or prevent
2404 * the default action. The function returns whether the event should be processed by xterm.js.
2405 */
2406Terminal.prototype.attachCustomKeydownHandler = function(customKeydownHandler) {
2407 this.customKeydownHandler = customKeydownHandler;
2408}
3f455f90 2409
db76868c
PK
2410/**
2411 * Handle a keydown event
2412 * Key Resources:
2413 * - https://developer.mozilla.org/en-US/docs/DOM/KeyboardEvent
2414 * @param {KeyboardEvent} ev The keydown event to be handled.
2415 */
2416Terminal.prototype.keyDown = function(ev) {
2417 if (this.customKeydownHandler && this.customKeydownHandler(ev) === false) {
2418 return false;
2419 }
3f455f90 2420
db76868c
PK
2421 if (!this.compositionHelper.keydown.bind(this.compositionHelper)(ev)) {
2422 return false;
2423 }
3f455f90 2424
db76868c
PK
2425 var self = this;
2426 var result = this.evaluateKeyEscapeSequence(ev);
3f455f90 2427
db76868c
PK
2428 if (result.scrollDisp) {
2429 this.scrollDisp(result.scrollDisp);
2430 return this.cancel(ev);
2431 }
3f455f90 2432
db76868c
PK
2433 if (isThirdLevelShift(this, ev)) {
2434 return true;
2435 }
3f455f90 2436
db76868c
PK
2437 if (result.cancel ) {
2438 // The event is canceled at the end already, is this necessary?
2439 this.cancel(ev, true);
2440 }
3f455f90 2441
db76868c
PK
2442 if (!result.key) {
2443 return true;
2444 }
3f455f90 2445
db76868c
PK
2446 this.emit('keydown', ev);
2447 this.emit('key', result.key, ev);
2448 this.showCursor();
2449 this.handler(result.key);
3f455f90 2450
db76868c
PK
2451 return this.cancel(ev, true);
2452};
3f455f90 2453
db76868c
PK
2454/**
2455 * Returns an object that determines how a KeyboardEvent should be handled. The key of the
2456 * returned value is the new key code to pass to the PTY.
2457 *
2458 * Reference: http://invisible-island.net/xterm/ctlseqs/ctlseqs.html
2459 * @param {KeyboardEvent} ev The keyboard event to be translated to key escape sequence.
2460 */
2461Terminal.prototype.evaluateKeyEscapeSequence = function(ev) {
2462 var result = {
2463 // Whether to cancel event propogation (NOTE: this may not be needed since the event is
2464 // canceled at the end of keyDown
2465 cancel: false,
2466 // The new key even to emit
2467 key: undefined,
2468 // The number of characters to scroll, if this is defined it will cancel the event
2469 scrollDisp: undefined
2470 };
2471 var modifiers = ev.shiftKey << 0 | ev.altKey << 1 | ev.ctrlKey << 2 | ev.metaKey << 3;
2472 switch (ev.keyCode) {
2473 // backspace
2474 case 8:
2475 if (ev.shiftKey) {
2476 result.key = '\x08'; // ^H
2477 break;
2478 }
2479 result.key = '\x7f'; // ^?
2480 break;
2481 // tab
2482 case 9:
2483 if (ev.shiftKey) {
2484 result.key = '\x1b[Z';
2485 break;
2486 }
2487 result.key = '\t';
2488 result.cancel = true;
2489 break;
2490 // return/enter
2491 case 13:
2492 result.key = '\r';
2493 result.cancel = true;
2494 break;
2495 // escape
2496 case 27:
2497 result.key = '\x1b';
2498 result.cancel = true;
2499 break;
2500 // left-arrow
2501 case 37:
2502 if (modifiers) {
2503 result.key = '\x1b[1;' + (modifiers + 1) + 'D';
2504 // HACK: Make Alt + left-arrow behave like Ctrl + left-arrow: move one word backwards
2505 // http://unix.stackexchange.com/a/108106
2506 if (result.key == '\x1b[1;3D') {
2507 result.key = '\x1b[1;5D';
3f455f90 2508 }
db76868c
PK
2509 } else if (this.applicationCursor) {
2510 result.key = '\x1bOD';
2511 } else {
2512 result.key = '\x1b[D';
3f455f90 2513 }
db76868c
PK
2514 break;
2515 // right-arrow
2516 case 39:
2517 if (modifiers) {
2518 result.key = '\x1b[1;' + (modifiers + 1) + 'C';
2519 // HACK: Make Alt + right-arrow behave like Ctrl + right-arrow: move one word forward
2520 // http://unix.stackexchange.com/a/108106
2521 if (result.key == '\x1b[1;3C') {
2522 result.key = '\x1b[1;5C';
2523 }
2524 } else if (this.applicationCursor) {
2525 result.key = '\x1bOC';
2526 } else {
2527 result.key = '\x1b[C';
d4e9d34d 2528 }
db76868c
PK
2529 break;
2530 // up-arrow
2531 case 38:
2532 if (modifiers) {
2533 result.key = '\x1b[1;' + (modifiers + 1) + 'A';
2534 // HACK: Make Alt + up-arrow behave like Ctrl + up-arrow
2535 // http://unix.stackexchange.com/a/108106
2536 if (result.key == '\x1b[1;3A') {
2537 result.key = '\x1b[1;5A';
2538 }
2539 } else if (this.applicationCursor) {
2540 result.key = '\x1bOA';
2541 } else {
2542 result.key = '\x1b[A';
8faea59e 2543 }
db76868c
PK
2544 break;
2545 // down-arrow
2546 case 40:
2547 if (modifiers) {
2548 result.key = '\x1b[1;' + (modifiers + 1) + 'B';
2549 // HACK: Make Alt + down-arrow behave like Ctrl + down-arrow
2550 // http://unix.stackexchange.com/a/108106
2551 if (result.key == '\x1b[1;3B') {
2552 result.key = '\x1b[1;5B';
2553 }
2554 } else if (this.applicationCursor) {
2555 result.key = '\x1bOB';
2556 } else {
2557 result.key = '\x1b[B';
3a866cf2 2558 }
db76868c
PK
2559 break;
2560 // insert
2561 case 45:
2562 if (!ev.shiftKey && !ev.ctrlKey) {
2563 // <Ctrl> or <Shift> + <Insert> are used to
2564 // copy-paste on some systems.
2565 result.key = '\x1b[2~';
b01165c1 2566 }
db76868c
PK
2567 break;
2568 // delete
2569 case 46:
2570 if (modifiers) {
2571 result.key = '\x1b[3;' + (modifiers + 1) + '~';
2572 } else {
2573 result.key = '\x1b[3~';
3a866cf2 2574 }
db76868c
PK
2575 break;
2576 // home
2577 case 36:
2578 if (modifiers)
2579 result.key = '\x1b[1;' + (modifiers + 1) + 'H';
2580 else if (this.applicationCursor)
2581 result.key = '\x1bOH';
2582 else
2583 result.key = '\x1b[H';
2584 break;
2585 // end
2586 case 35:
2587 if (modifiers)
2588 result.key = '\x1b[1;' + (modifiers + 1) + 'F';
2589 else if (this.applicationCursor)
2590 result.key = '\x1bOF';
2591 else
2592 result.key = '\x1b[F';
2593 break;
2594 // page up
2595 case 33:
2596 if (ev.shiftKey) {
2597 result.scrollDisp = -(this.rows - 1);
2598 } else {
2599 result.key = '\x1b[5~';
3a866cf2 2600 }
db76868c
PK
2601 break;
2602 // page down
2603 case 34:
2604 if (ev.shiftKey) {
2605 result.scrollDisp = this.rows - 1;
2606 } else {
2607 result.key = '\x1b[6~';
3f455f90 2608 }
db76868c
PK
2609 break;
2610 // F1-F12
2611 case 112:
2612 if (modifiers) {
2613 result.key = '\x1b[1;' + (modifiers + 1) + 'P';
2614 } else {
2615 result.key = '\x1bOP';
3f455f90 2616 }
db76868c
PK
2617 break;
2618 case 113:
2619 if (modifiers) {
2620 result.key = '\x1b[1;' + (modifiers + 1) + 'Q';
3f455f90 2621 } else {
db76868c 2622 result.key = '\x1bOQ';
3f455f90 2623 }
db76868c
PK
2624 break;
2625 case 114:
2626 if (modifiers) {
2627 result.key = '\x1b[1;' + (modifiers + 1) + 'R';
2628 } else {
2629 result.key = '\x1bOR';
3f455f90 2630 }
db76868c
PK
2631 break;
2632 case 115:
2633 if (modifiers) {
2634 result.key = '\x1b[1;' + (modifiers + 1) + 'S';
2635 } else {
2636 result.key = '\x1bOS';
3f455f90 2637 }
db76868c
PK
2638 break;
2639 case 116:
2640 if (modifiers) {
2641 result.key = '\x1b[15;' + (modifiers + 1) + '~';
2642 } else {
2643 result.key = '\x1b[15~';
e721bdc9 2644 }
db76868c
PK
2645 break;
2646 case 117:
2647 if (modifiers) {
2648 result.key = '\x1b[17;' + (modifiers + 1) + '~';
2649 } else {
2650 result.key = '\x1b[17~';
3f455f90 2651 }
db76868c
PK
2652 break;
2653 case 118:
2654 if (modifiers) {
2655 result.key = '\x1b[18;' + (modifiers + 1) + '~';
2656 } else {
2657 result.key = '\x1b[18~';
3f455f90 2658 }
db76868c
PK
2659 break;
2660 case 119:
2661 if (modifiers) {
2662 result.key = '\x1b[19;' + (modifiers + 1) + '~';
2663 } else {
2664 result.key = '\x1b[19~';
3f455f90 2665 }
db76868c
PK
2666 break;
2667 case 120:
2668 if (modifiers) {
2669 result.key = '\x1b[20;' + (modifiers + 1) + '~';
2670 } else {
2671 result.key = '\x1b[20~';
eee99f62 2672 }
db76868c
PK
2673 break;
2674 case 121:
2675 if (modifiers) {
2676 result.key = '\x1b[21;' + (modifiers + 1) + '~';
2677 } else {
2678 result.key = '\x1b[21~';
3f455f90 2679 }
db76868c
PK
2680 break;
2681 case 122:
2682 if (modifiers) {
2683 result.key = '\x1b[23;' + (modifiers + 1) + '~';
3f455f90 2684 } else {
db76868c 2685 result.key = '\x1b[23~';
3f455f90 2686 }
db76868c
PK
2687 break;
2688 case 123:
2689 if (modifiers) {
2690 result.key = '\x1b[24;' + (modifiers + 1) + '~';
2691 } else {
2692 result.key = '\x1b[24~';
3f455f90 2693 }
db76868c
PK
2694 break;
2695 default:
2696 // a-z and space
2697 if (ev.ctrlKey && !ev.shiftKey && !ev.altKey && !ev.metaKey) {
2698 if (ev.keyCode >= 65 && ev.keyCode <= 90) {
2699 result.key = String.fromCharCode(ev.keyCode - 64);
2700 } else if (ev.keyCode === 32) {
2701 // NUL
2702 result.key = String.fromCharCode(0);
2703 } else if (ev.keyCode >= 51 && ev.keyCode <= 55) {
2704 // escape, file sep, group sep, record sep, unit sep
2705 result.key = String.fromCharCode(ev.keyCode - 51 + 27);
2706 } else if (ev.keyCode === 56) {
2707 // delete
2708 result.key = String.fromCharCode(127);
2709 } else if (ev.keyCode === 219) {
2710 // ^[ - escape
2711 result.key = String.fromCharCode(27);
2712 } else if (ev.keyCode === 221) {
2713 // ^] - group sep
2714 result.key = String.fromCharCode(29);
2715 }
2716 } else if (!this.isMac && ev.altKey && !ev.ctrlKey && !ev.metaKey) {
2717 // On Mac this is a third level shift. Use <Esc> instead.
2718 if (ev.keyCode >= 65 && ev.keyCode <= 90) {
2719 result.key = '\x1b' + String.fromCharCode(ev.keyCode + 32);
2720 } else if (ev.keyCode === 192) {
2721 result.key = '\x1b`';
2722 } else if (ev.keyCode >= 48 && ev.keyCode <= 57) {
2723 result.key = '\x1b' + (ev.keyCode - 48);
2724 }
3f455f90 2725 }
db76868c
PK
2726 break;
2727 }
2728 return result;
2729};
3f455f90 2730
db76868c
PK
2731/**
2732 * Set the G level of the terminal
2733 * @param g
2734 */
2735Terminal.prototype.setgLevel = function(g) {
2736 this.glevel = g;
2737 this.charset = this.charsets[g];
2738};
12a150a4 2739
db76868c
PK
2740/**
2741 * Set the charset for the given G level of the terminal
2742 * @param g
2743 * @param charset
2744 */
2745Terminal.prototype.setgCharset = function(g, charset) {
2746 this.charsets[g] = charset;
2747 if (this.glevel === g) {
2748 this.charset = charset;
2749 }
2750};
12a150a4 2751
db76868c
PK
2752/**
2753 * Handle a keypress event.
2754 * Key Resources:
2755 * - https://developer.mozilla.org/en-US/docs/DOM/KeyboardEvent
2756 * @param {KeyboardEvent} ev The keypress event to be handled.
2757 */
2758Terminal.prototype.keyPress = function(ev) {
2759 var key;
3f455f90 2760
db76868c 2761 this.cancel(ev);
3f455f90 2762
db76868c
PK
2763 if (ev.charCode) {
2764 key = ev.charCode;
2765 } else if (ev.which == null) {
2766 key = ev.keyCode;
2767 } else if (ev.which !== 0 && ev.charCode !== 0) {
2768 key = ev.which;
2769 } else {
2770 return false;
2771 }
3f455f90 2772
db76868c
PK
2773 if (!key || (
2774 (ev.altKey || ev.ctrlKey || ev.metaKey) && !isThirdLevelShift(this, ev)
2775 )) {
2776 return false;
2777 }
12a150a4 2778
db76868c 2779 key = String.fromCharCode(key);
3f455f90 2780
db76868c
PK
2781 this.emit('keypress', key, ev);
2782 this.emit('key', key, ev);
2783 this.showCursor();
2784 this.handler(key);
12a150a4 2785
db76868c
PK
2786 return false;
2787};
3f455f90 2788
db76868c
PK
2789/**
2790 * Send data for handling to the terminal
2791 * @param {string} data
2792 */
2793Terminal.prototype.send = function(data) {
2794 var self = this;
3f455f90 2795
db76868c
PK
2796 if (!this.queue) {
2797 setTimeout(function() {
2798 self.handler(self.queue);
2799 self.queue = '';
2800 }, 1);
2801 }
3f455f90 2802
db76868c
PK
2803 this.queue += data;
2804};
3f455f90 2805
db76868c
PK
2806/**
2807 * Ring the bell.
2808 * Note: We could do sweet things with webaudio here
2809 */
2810Terminal.prototype.bell = function() {
2811 if (!this.visualBell) return;
2812 var self = this;
2813 this.element.style.borderColor = 'white';
2814 setTimeout(function() {
2815 self.element.style.borderColor = '';
2816 }, 10);
2817 if (this.popOnBell) this.focus();
2818};
c3cf6a22 2819
db76868c
PK
2820/**
2821 * Log the current state to the console.
2822 */
2823Terminal.prototype.log = function() {
2824 if (!this.debug) return;
2825 if (!this.context.console || !this.context.console.log) return;
2826 var args = Array.prototype.slice.call(arguments);
2827 this.context.console.log.apply(this.context.console, args);
2828};
3f455f90 2829
db76868c
PK
2830/**
2831 * Log the current state as error to the console.
2832 */
2833Terminal.prototype.error = function() {
2834 if (!this.debug) return;
2835 if (!this.context.console || !this.context.console.error) return;
2836 var args = Array.prototype.slice.call(arguments);
2837 this.context.console.error.apply(this.context.console, args);
2838};
c3cf6a22 2839
db76868c
PK
2840/**
2841 * Resizes the terminal.
2842 *
2843 * @param {number} x The number of columns to resize to.
2844 * @param {number} y The number of rows to resize to.
2845 */
2846Terminal.prototype.resize = function(x, y) {
2847 var line
2848 , el
2849 , i
2850 , j
2851 , ch
2852 , addToY;
2853
2854 if (x === this.cols && y === this.rows) {
2855 return;
2856 }
2857
2858 if (x < 1) x = 1;
2859 if (y < 1) y = 1;
2860
2861 // resize cols
2862 j = this.cols;
2863 if (j < x) {
2864 ch = [this.defAttr, ' ', 1]; // does xterm use the default attr?
2865 i = this.lines.length;
2866 while (i--) {
2867 while (this.lines[i].length < x) {
2868 this.lines[i].push(ch);
2869 }
2870 }
2871 } else { // (j > x)
2872 i = this.lines.length;
2873 while (i--) {
2874 while (this.lines[i].length > x) {
2875 this.lines[i].pop();
2876 }
2877 }
2878 }
2879 this.setupStops(j);
2880 this.cols = x;
2881
2882 // resize rows
2883 j = this.rows;
2884 addToY = 0;
2885 if (j < y) {
2886 el = this.element;
2887 while (j++ < y) {
2888 // y is rows, not this.y
2889 if (this.lines.length < y + this.ybase) {
2890 if (this.ybase > 0 && this.lines.length <= this.ybase + this.y + addToY + 1) {
2891 // There is room above the buffer and there are no empty elements below the line,
2892 // scroll up
2893 this.ybase--;
2894 addToY++
2895 if (this.ydisp > 0) {
2896 // Viewport is at the top of the buffer, must increase downwards
2897 this.ydisp--;
2898 }
2899 } else {
2900 // Add a blank line if there is no buffer left at the top to scroll to, or if there
2901 // are blank lines after the cursor
2902 this.lines.push(this.blankLine());
2903 }
2904 }
2905 if (this.children.length < y) {
2906 this.insertRow();
2907 }
2908 }
2909 } else { // (j > y)
2910 while (j-- > y) {
2911 if (this.lines.length > y + this.ybase) {
2912 if (this.lines.length > this.ybase + this.y + 1) {
2913 // The line is a blank line below the cursor, remove it
2914 this.lines.pop();
2915 } else {
2916 // The line is the cursor, scroll down
2917 this.ybase++;
2918 this.ydisp++;
2919 }
2920 }
2921 if (this.children.length > y) {
2922 el = this.children.shift();
2923 if (!el) continue;
2924 el.parentNode.removeChild(el);
2925 }
2926 }
2927 }
2928 this.rows = y;
3f455f90 2929
db76868c
PK
2930 // Make sure that the cursor stays on screen
2931 if (this.y >= y) {
2932 this.y = y - 1;
2933 }
2934 if (addToY) {
2935 this.y += addToY;
2936 }
12a150a4 2937
db76868c
PK
2938 if (this.x >= x) {
2939 this.x = x - 1;
2940 }
3f455f90 2941
db76868c
PK
2942 this.scrollTop = 0;
2943 this.scrollBottom = y - 1;
12a150a4 2944
db76868c 2945 this.refresh(0, this.rows - 1);
3f455f90 2946
db76868c 2947 this.normal = null;
12a150a4 2948
db76868c
PK
2949 this.emit('resize', {terminal: this, cols: x, rows: y});
2950};
3f455f90 2951
db76868c
PK
2952/**
2953 * Updates the range of rows to refresh
2954 * @param {number} y The number of rows to refresh next.
2955 */
2956Terminal.prototype.updateRange = function(y) {
2957 if (y < this.refreshStart) this.refreshStart = y;
2958 if (y > this.refreshEnd) this.refreshEnd = y;
2959 // if (y > this.refreshEnd) {
2960 // this.refreshEnd = y;
2961 // if (y > this.rows - 1) {
2962 // this.refreshEnd = this.rows - 1;
2963 // }
2964 // }
2965};
3f455f90 2966
db76868c
PK
2967/**
2968 * Set the range of refreshing to the maximyum value
2969 */
2970Terminal.prototype.maxRange = function() {
2971 this.refreshStart = 0;
2972 this.refreshEnd = this.rows - 1;
2973};
12a150a4 2974
3f455f90 2975
12a150a4 2976
db76868c
PK
2977/**
2978 * Setup the tab stops.
2979 * @param {number} i
2980 */
2981Terminal.prototype.setupStops = function(i) {
2982 if (i != null) {
2983 if (!this.tabs[i]) {
2984 i = this.prevStop(i);
2985 }
2986 } else {
2987 this.tabs = {};
2988 i = 0;
2989 }
3f455f90 2990
db76868c
PK
2991 for (; i < this.cols; i += 8) {
2992 this.tabs[i] = true;
2993 }
2994};
12a150a4 2995
3f455f90 2996
db76868c
PK
2997/**
2998 * Move the cursor to the previous tab stop from the given position (default is current).
2999 * @param {number} x The position to move the cursor to the previous tab stop.
3000 */
3001Terminal.prototype.prevStop = function(x) {
3002 if (x == null) x = this.x;
3003 while (!this.tabs[--x] && x > 0);
3004 return x >= this.cols
3005 ? this.cols - 1
3006 : x < 0 ? 0 : x;
3007};
12a150a4 3008
3f455f90 3009
db76868c
PK
3010/**
3011 * Move the cursor one tab stop forward from the given position (default is current).
3012 * @param {number} x The position to move the cursor one tab stop forward.
3013 */
3014Terminal.prototype.nextStop = function(x) {
3015 if (x == null) x = this.x;
3016 while (!this.tabs[++x] && x < this.cols);
3017 return x >= this.cols
3018 ? this.cols - 1
3019 : x < 0 ? 0 : x;
3020};
3f455f90 3021
12a150a4 3022
db76868c
PK
3023/**
3024 * Erase in the identified line everything from "x" to the end of the line (right).
3025 * @param {number} x The column from which to start erasing to the end of the line.
3026 * @param {number} y The line in which to operate.
3027 */
3028Terminal.prototype.eraseRight = function(x, y) {
3029 var line = this.lines[this.ybase + y]
3030 , ch = [this.eraseAttr(), ' ', 1]; // xterm
3f455f90 3031
12a150a4 3032
db76868c
PK
3033 for (; x < this.cols; x++) {
3034 line[x] = ch;
3035 }
3f455f90 3036
db76868c
PK
3037 this.updateRange(y);
3038};
12a150a4 3039
3f455f90 3040
12a150a4 3041
db76868c
PK
3042/**
3043 * Erase in the identified line everything from "x" to the start of the line (left).
3044 * @param {number} x The column from which to start erasing to the start of the line.
3045 * @param {number} y The line in which to operate.
3046 */
3047Terminal.prototype.eraseLeft = function(x, y) {
3048 var line = this.lines[this.ybase + y]
3049 , ch = [this.eraseAttr(), ' ', 1]; // xterm
3f455f90 3050
db76868c
PK
3051 x++;
3052 while (x--) line[x] = ch;
3f455f90 3053
db76868c
PK
3054 this.updateRange(y);
3055};
3f455f90 3056
3f455f90 3057
db76868c
PK
3058/**
3059 * Erase all content in the given line
3060 * @param {number} y The line to erase all of its contents.
3061 */
3062Terminal.prototype.eraseLine = function(y) {
3063 this.eraseRight(0, y);
3064};
3f455f90 3065
3f455f90 3066
db76868c
PK
3067/**
3068 * Return the data array of a blank line/
3069 * @param {number} cur First bunch of data for each "blank" character.
3070 */
3071Terminal.prototype.blankLine = function(cur) {
3072 var attr = cur
3073 ? this.eraseAttr()
3074 : this.defAttr;
12a150a4 3075
db76868c
PK
3076 var ch = [attr, ' ', 1] // width defaults to 1 halfwidth character
3077 , line = []
3078 , i = 0;
3f455f90 3079
db76868c
PK
3080 for (; i < this.cols; i++) {
3081 line[i] = ch;
3082 }
12a150a4 3083
db76868c
PK
3084 return line;
3085};
3f455f90 3086
12a150a4 3087
db76868c
PK
3088/**
3089 * If cur return the back color xterm feature attribute. Else return defAttr.
3090 * @param {object} cur
3091 */
3092Terminal.prototype.ch = function(cur) {
3093 return cur
3094 ? [this.eraseAttr(), ' ', 1]
3095 : [this.defAttr, ' ', 1];
3096};
3f455f90 3097
3f455f90 3098
db76868c
PK
3099/**
3100 * Evaluate if the current erminal is the given argument.
3101 * @param {object} term The terminal to evaluate
3102 */
3103Terminal.prototype.is = function(term) {
3104 var name = this.termName;
3105 return (name + '').indexOf(term) === 0;
3106};
3f455f90 3107
12a150a4 3108
db76868c
PK
3109/**
3110 * Emit the 'data' event and populate the given data.
3111 * @param {string} data The data to populate in the event.
12a150a4 3112 */
db76868c
PK
3113Terminal.prototype.handler = function(data) {
3114 this.emit('data', data);
3115};
3f455f90 3116
12a150a4 3117
db76868c
PK
3118/**
3119 * Emit the 'title' event and populate the given title.
3120 * @param {string} title The title to populate in the event.
3121 */
3122Terminal.prototype.handleTitle = function(title) {
3123 this.emit('title', title);
3124};
3f455f90 3125
3f455f90 3126
db76868c
PK
3127/**
3128 * ESC
3129 */
3f455f90 3130
db76868c
PK
3131/**
3132 * ESC D Index (IND is 0x84).
3133 */
3134Terminal.prototype.index = function() {
3135 this.y++;
3136 if (this.y > this.scrollBottom) {
3137 this.y--;
3138 this.scroll();
3139 }
3140 this.state = normal;
3141};
3f455f90 3142
3f455f90 3143
db76868c
PK
3144/**
3145 * ESC M Reverse Index (RI is 0x8d).
3146 */
3147Terminal.prototype.reverseIndex = function() {
3148 var j;
3149 this.y--;
3150 if (this.y < this.scrollTop) {
3151 this.y++;
3152 // possibly move the code below to term.reverseScroll();
3153 // test: echo -ne '\e[1;1H\e[44m\eM\e[0m'
3154 // blankLine(true) is xterm/linux behavior
3155 this.lines.splice(this.y + this.ybase, 0, this.blankLine(true));
3156 j = this.rows - 1 - this.scrollBottom;
3157 this.lines.splice(this.rows - 1 + this.ybase - j + 1, 1);
3158 // this.maxRange();
3159 this.updateRange(this.scrollTop);
3160 this.updateRange(this.scrollBottom);
3161 }
3162 this.state = normal;
3163};
3f455f90 3164
12a150a4 3165
db76868c
PK
3166/**
3167 * ESC c Full Reset (RIS).
3168 */
3169Terminal.prototype.reset = function() {
3170 this.options.rows = this.rows;
3171 this.options.cols = this.cols;
3172 var customKeydownHandler = this.customKeydownHandler;
3173 Terminal.call(this, this.options);
3174 this.customKeydownHandler = customKeydownHandler;
3175 this.refresh(0, this.rows - 1);
3176};
3f455f90 3177
12a150a4 3178
db76868c
PK
3179/**
3180 * ESC H Tab Set (HTS is 0x88).
3181 */
3182Terminal.prototype.tabSet = function() {
3183 this.tabs[this.x] = true;
3184 this.state = normal;
3185};
3f455f90 3186
12a150a4 3187
db76868c
PK
3188/**
3189 * CSI
3190 */
3f455f90 3191
db76868c
PK
3192/**
3193 * CSI Ps A
3194 * Cursor Up Ps Times (default = 1) (CUU).
3195 */
3196Terminal.prototype.cursorUp = function(params) {
3197 var param = params[0];
3198 if (param < 1) param = 1;
3199 this.y -= param;
3200 if (this.y < 0) this.y = 0;
3201};
3f455f90 3202
3f455f90 3203
db76868c
PK
3204/**
3205 * CSI Ps B
3206 * Cursor Down Ps Times (default = 1) (CUD).
3207 */
3208Terminal.prototype.cursorDown = function(params) {
3209 var param = params[0];
3210 if (param < 1) param = 1;
3211 this.y += param;
3212 if (this.y >= this.rows) {
3213 this.y = this.rows - 1;
3214 }
3215};
3f455f90 3216
db76868c
PK
3217
3218/**
3219 * CSI Ps C
3220 * Cursor Forward Ps Times (default = 1) (CUF).
3221 */
3222Terminal.prototype.cursorForward = function(params) {
3223 var param = params[0];
3224 if (param < 1) param = 1;
3225 this.x += param;
3226 if (this.x >= this.cols) {
3227 this.x = this.cols - 1;
3228 }
3229};
3f455f90 3230
12a150a4 3231
db76868c
PK
3232/**
3233 * CSI Ps D
3234 * Cursor Backward Ps Times (default = 1) (CUB).
3235 */
3236Terminal.prototype.cursorBackward = function(params) {
3237 var param = params[0];
3238 if (param < 1) param = 1;
3239 this.x -= param;
3240 if (this.x < 0) this.x = 0;
3241};
3f455f90 3242
3f455f90 3243
db76868c
PK
3244/**
3245 * CSI Ps ; Ps H
3246 * Cursor Position [row;column] (default = [1,1]) (CUP).
3247 */
3248Terminal.prototype.cursorPos = function(params) {
3249 var row, col;
3f455f90 3250
db76868c 3251 row = params[0] - 1;
3f455f90 3252
db76868c
PK
3253 if (params.length >= 2) {
3254 col = params[1] - 1;
3255 } else {
3256 col = 0;
3257 }
3f455f90 3258
db76868c
PK
3259 if (row < 0) {
3260 row = 0;
3261 } else if (row >= this.rows) {
3262 row = this.rows - 1;
3263 }
12a150a4 3264
db76868c
PK
3265 if (col < 0) {
3266 col = 0;
3267 } else if (col >= this.cols) {
3268 col = this.cols - 1;
3269 }
3f455f90 3270
db76868c
PK
3271 this.x = col;
3272 this.y = row;
3273};
3f455f90 3274
3f455f90 3275
db76868c
PK
3276/**
3277 * CSI Ps J Erase in Display (ED).
3278 * Ps = 0 -> Erase Below (default).
3279 * Ps = 1 -> Erase Above.
3280 * Ps = 2 -> Erase All.
3281 * Ps = 3 -> Erase Saved Lines (xterm).
3282 * CSI ? Ps J
3283 * Erase in Display (DECSED).
3284 * Ps = 0 -> Selective Erase Below (default).
3285 * Ps = 1 -> Selective Erase Above.
3286 * Ps = 2 -> Selective Erase All.
3287 */
3288Terminal.prototype.eraseInDisplay = function(params) {
3289 var j;
3290 switch (params[0]) {
3291 case 0:
3292 this.eraseRight(this.x, this.y);
3293 j = this.y + 1;
3294 for (; j < this.rows; j++) {
3295 this.eraseLine(j);
3f455f90 3296 }
db76868c
PK
3297 break;
3298 case 1:
3299 this.eraseLeft(this.x, this.y);
3300 j = this.y;
3301 while (j--) {
3302 this.eraseLine(j);
3303 }
3304 break;
3305 case 2:
3306 j = this.rows;
3307 while (j--) this.eraseLine(j);
3308 break;
3309 case 3:
3310 ; // no saved lines
3311 break;
3312 }
3313};
3f455f90 3314
3f455f90 3315
db76868c
PK
3316/**
3317 * CSI Ps K Erase in Line (EL).
3318 * Ps = 0 -> Erase to Right (default).
3319 * Ps = 1 -> Erase to Left.
3320 * Ps = 2 -> Erase All.
3321 * CSI ? Ps K
3322 * Erase in Line (DECSEL).
3323 * Ps = 0 -> Selective Erase to Right (default).
3324 * Ps = 1 -> Selective Erase to Left.
3325 * Ps = 2 -> Selective Erase All.
3326 */
3327Terminal.prototype.eraseInLine = function(params) {
3328 switch (params[0]) {
3329 case 0:
3330 this.eraseRight(this.x, this.y);
3331 break;
3332 case 1:
3333 this.eraseLeft(this.x, this.y);
3334 break;
3335 case 2:
3336 this.eraseLine(this.y);
3337 break;
3338 }
3339};
3f455f90 3340
3f455f90 3341
db76868c
PK
3342/**
3343 * CSI Pm m Character Attributes (SGR).
3344 * Ps = 0 -> Normal (default).
3345 * Ps = 1 -> Bold.
3346 * Ps = 4 -> Underlined.
3347 * Ps = 5 -> Blink (appears as Bold).
3348 * Ps = 7 -> Inverse.
3349 * Ps = 8 -> Invisible, i.e., hidden (VT300).
3350 * Ps = 2 2 -> Normal (neither bold nor faint).
3351 * Ps = 2 4 -> Not underlined.
3352 * Ps = 2 5 -> Steady (not blinking).
3353 * Ps = 2 7 -> Positive (not inverse).
3354 * Ps = 2 8 -> Visible, i.e., not hidden (VT300).
3355 * Ps = 3 0 -> Set foreground color to Black.
3356 * Ps = 3 1 -> Set foreground color to Red.
3357 * Ps = 3 2 -> Set foreground color to Green.
3358 * Ps = 3 3 -> Set foreground color to Yellow.
3359 * Ps = 3 4 -> Set foreground color to Blue.
3360 * Ps = 3 5 -> Set foreground color to Magenta.
3361 * Ps = 3 6 -> Set foreground color to Cyan.
3362 * Ps = 3 7 -> Set foreground color to White.
3363 * Ps = 3 9 -> Set foreground color to default (original).
3364 * Ps = 4 0 -> Set background color to Black.
3365 * Ps = 4 1 -> Set background color to Red.
3366 * Ps = 4 2 -> Set background color to Green.
3367 * Ps = 4 3 -> Set background color to Yellow.
3368 * Ps = 4 4 -> Set background color to Blue.
3369 * Ps = 4 5 -> Set background color to Magenta.
3370 * Ps = 4 6 -> Set background color to Cyan.
3371 * Ps = 4 7 -> Set background color to White.
3372 * Ps = 4 9 -> Set background color to default (original).
3373 *
3374 * If 16-color support is compiled, the following apply. Assume
3375 * that xterm's resources are set so that the ISO color codes are
3376 * the first 8 of a set of 16. Then the aixterm colors are the
3377 * bright versions of the ISO colors:
3378 * Ps = 9 0 -> Set foreground color to Black.
3379 * Ps = 9 1 -> Set foreground color to Red.
3380 * Ps = 9 2 -> Set foreground color to Green.
3381 * Ps = 9 3 -> Set foreground color to Yellow.
3382 * Ps = 9 4 -> Set foreground color to Blue.
3383 * Ps = 9 5 -> Set foreground color to Magenta.
3384 * Ps = 9 6 -> Set foreground color to Cyan.
3385 * Ps = 9 7 -> Set foreground color to White.
3386 * Ps = 1 0 0 -> Set background color to Black.
3387 * Ps = 1 0 1 -> Set background color to Red.
3388 * Ps = 1 0 2 -> Set background color to Green.
3389 * Ps = 1 0 3 -> Set background color to Yellow.
3390 * Ps = 1 0 4 -> Set background color to Blue.
3391 * Ps = 1 0 5 -> Set background color to Magenta.
3392 * Ps = 1 0 6 -> Set background color to Cyan.
3393 * Ps = 1 0 7 -> Set background color to White.
3394 *
3395 * If xterm is compiled with the 16-color support disabled, it
3396 * supports the following, from rxvt:
3397 * Ps = 1 0 0 -> Set foreground and background color to
3398 * default.
3399 *
3400 * If 88- or 256-color support is compiled, the following apply.
3401 * Ps = 3 8 ; 5 ; Ps -> Set foreground color to the second
3402 * Ps.
3403 * Ps = 4 8 ; 5 ; Ps -> Set background color to the second
3404 * Ps.
3405 */
3406Terminal.prototype.charAttributes = function(params) {
3407 // Optimize a single SGR0.
3408 if (params.length === 1 && params[0] === 0) {
3409 this.curAttr = this.defAttr;
3410 return;
3411 }
3412
3413 var l = params.length
3414 , i = 0
3415 , flags = this.curAttr >> 18
3416 , fg = (this.curAttr >> 9) & 0x1ff
3417 , bg = this.curAttr & 0x1ff
3418 , p;
3419
3420 for (; i < l; i++) {
3421 p = params[i];
3422 if (p >= 30 && p <= 37) {
3423 // fg color 8
3424 fg = p - 30;
3425 } else if (p >= 40 && p <= 47) {
3426 // bg color 8
3427 bg = p - 40;
3428 } else if (p >= 90 && p <= 97) {
3429 // fg color 16
3430 p += 8;
3431 fg = p - 90;
3432 } else if (p >= 100 && p <= 107) {
3433 // bg color 16
3434 p += 8;
3435 bg = p - 100;
3436 } else if (p === 0) {
3437 // default
3438 flags = this.defAttr >> 18;
3439 fg = (this.defAttr >> 9) & 0x1ff;
3440 bg = this.defAttr & 0x1ff;
3441 // flags = 0;
3442 // fg = 0x1ff;
3443 // bg = 0x1ff;
3444 } else if (p === 1) {
3445 // bold text
3446 flags |= 1;
3447 } else if (p === 4) {
3448 // underlined text
3449 flags |= 2;
3450 } else if (p === 5) {
3451 // blink
3452 flags |= 4;
3453 } else if (p === 7) {
3454 // inverse and positive
3455 // test with: echo -e '\e[31m\e[42mhello\e[7mworld\e[27mhi\e[m'
3456 flags |= 8;
3457 } else if (p === 8) {
3458 // invisible
3459 flags |= 16;
3460 } else if (p === 22) {
3461 // not bold
3462 flags &= ~1;
3463 } else if (p === 24) {
3464 // not underlined
3465 flags &= ~2;
3466 } else if (p === 25) {
3467 // not blink
3468 flags &= ~4;
3469 } else if (p === 27) {
3470 // not inverse
3471 flags &= ~8;
3472 } else if (p === 28) {
3473 // not invisible
3474 flags &= ~16;
3475 } else if (p === 39) {
3476 // reset fg
3477 fg = (this.defAttr >> 9) & 0x1ff;
3478 } else if (p === 49) {
3479 // reset bg
3480 bg = this.defAttr & 0x1ff;
3481 } else if (p === 38) {
3482 // fg color 256
3483 if (params[i + 1] === 2) {
3484 i += 2;
3485 fg = matchColor(
3486 params[i] & 0xff,
3487 params[i + 1] & 0xff,
3488 params[i + 2] & 0xff);
3489 if (fg === -1) fg = 0x1ff;
3490 i += 2;
3491 } else if (params[i + 1] === 5) {
3492 i += 2;
3493 p = params[i] & 0xff;
3494 fg = p;
3f455f90 3495 }
db76868c
PK
3496 } else if (p === 48) {
3497 // bg color 256
3498 if (params[i + 1] === 2) {
3499 i += 2;
3500 bg = matchColor(
3501 params[i] & 0xff,
3502 params[i + 1] & 0xff,
3503 params[i + 2] & 0xff);
3504 if (bg === -1) bg = 0x1ff;
3505 i += 2;
3506 } else if (params[i + 1] === 5) {
3507 i += 2;
3508 p = params[i] & 0xff;
3509 bg = p;
3f455f90 3510 }
db76868c
PK
3511 } else if (p === 100) {
3512 // reset fg/bg
3513 fg = (this.defAttr >> 9) & 0x1ff;
3514 bg = this.defAttr & 0x1ff;
3515 } else {
3516 this.error('Unknown SGR attribute: %d.', p);
3517 }
3518 }
3f455f90 3519
db76868c
PK
3520 this.curAttr = (flags << 18) | (fg << 9) | bg;
3521};
12a150a4 3522
3f455f90 3523
db76868c
PK
3524/**
3525 * CSI Ps n Device Status Report (DSR).
3526 * Ps = 5 -> Status Report. Result (``OK'') is
3527 * CSI 0 n
3528 * Ps = 6 -> Report Cursor Position (CPR) [row;column].
3529 * Result is
3530 * CSI r ; c R
3531 * CSI ? Ps n
3532 * Device Status Report (DSR, DEC-specific).
3533 * Ps = 6 -> Report Cursor Position (CPR) [row;column] as CSI
3534 * ? r ; c R (assumes page is zero).
3535 * Ps = 1 5 -> Report Printer status as CSI ? 1 0 n (ready).
3536 * or CSI ? 1 1 n (not ready).
3537 * Ps = 2 5 -> Report UDK status as CSI ? 2 0 n (unlocked)
3538 * or CSI ? 2 1 n (locked).
3539 * Ps = 2 6 -> Report Keyboard status as
3540 * CSI ? 2 7 ; 1 ; 0 ; 0 n (North American).
3541 * The last two parameters apply to VT400 & up, and denote key-
3542 * board ready and LK01 respectively.
3543 * Ps = 5 3 -> Report Locator status as
3544 * CSI ? 5 3 n Locator available, if compiled-in, or
3545 * CSI ? 5 0 n No Locator, if not.
3546 */
3547Terminal.prototype.deviceStatus = function(params) {
3548 if (!this.prefix) {
3549 switch (params[0]) {
3550 case 5:
3551 // status report
3552 this.send('\x1b[0n');
3553 break;
3554 case 6:
3555 // cursor position
3556 this.send('\x1b['
3557 + (this.y + 1)
3558 + ';'
3559 + (this.x + 1)
3560 + 'R');
3561 break;
3562 }
3563 } else if (this.prefix === '?') {
3564 // modern xterm doesnt seem to
3565 // respond to any of these except ?6, 6, and 5
3566 switch (params[0]) {
3567 case 6:
3568 // cursor position
3569 this.send('\x1b[?'
3570 + (this.y + 1)
3571 + ';'
3572 + (this.x + 1)
3573 + 'R');
3574 break;
3575 case 15:
3576 // no printer
3577 // this.send('\x1b[?11n');
3578 break;
3579 case 25:
3580 // dont support user defined keys
3581 // this.send('\x1b[?21n');
3582 break;
3583 case 26:
3584 // north american keyboard
3585 // this.send('\x1b[?27;1;0;0n');
3586 break;
3587 case 53:
3588 // no dec locator/mouse
3589 // this.send('\x1b[?50n');
3590 break;
3591 }
3592 }
3593};
12a150a4 3594
3f455f90 3595
db76868c
PK
3596/**
3597 * Additions
3598 */
12a150a4 3599
db76868c
PK
3600/**
3601 * CSI Ps @
3602 * Insert Ps (Blank) Character(s) (default = 1) (ICH).
3603 */
3604Terminal.prototype.insertChars = function(params) {
3605 var param, row, j, ch;
3f455f90 3606
db76868c
PK
3607 param = params[0];
3608 if (param < 1) param = 1;
12a150a4 3609
db76868c
PK
3610 row = this.y + this.ybase;
3611 j = this.x;
3612 ch = [this.eraseAttr(), ' ', 1]; // xterm
3f455f90 3613
db76868c
PK
3614 while (param-- && j < this.cols) {
3615 this.lines[row].splice(j++, 0, ch);
3616 this.lines[row].pop();
3617 }
3618};
12a150a4 3619
db76868c
PK
3620/**
3621 * CSI Ps E
3622 * Cursor Next Line Ps Times (default = 1) (CNL).
3623 * same as CSI Ps B ?
3624 */
3625Terminal.prototype.cursorNextLine = function(params) {
3626 var param = params[0];
3627 if (param < 1) param = 1;
3628 this.y += param;
3629 if (this.y >= this.rows) {
3630 this.y = this.rows - 1;
3631 }
3632 this.x = 0;
3633};
3f455f90 3634
3f455f90 3635
db76868c
PK
3636/**
3637 * CSI Ps F
3638 * Cursor Preceding Line Ps Times (default = 1) (CNL).
3639 * reuse CSI Ps A ?
3640 */
3641Terminal.prototype.cursorPrecedingLine = function(params) {
3642 var param = params[0];
3643 if (param < 1) param = 1;
3644 this.y -= param;
3645 if (this.y < 0) this.y = 0;
3646 this.x = 0;
3647};
3f455f90 3648
12a150a4 3649
db76868c
PK
3650/**
3651 * CSI Ps G
3652 * Cursor Character Absolute [column] (default = [row,1]) (CHA).
3653 */
3654Terminal.prototype.cursorCharAbsolute = function(params) {
3655 var param = params[0];
3656 if (param < 1) param = 1;
3657 this.x = param - 1;
3658};
3f455f90 3659
3f455f90 3660
db76868c
PK
3661/**
3662 * CSI Ps L
3663 * Insert Ps Line(s) (default = 1) (IL).
3664 */
3665Terminal.prototype.insertLines = function(params) {
3666 var param, row, j;
3f455f90 3667
db76868c
PK
3668 param = params[0];
3669 if (param < 1) param = 1;
3670 row = this.y + this.ybase;
3671
3672 j = this.rows - 1 - this.scrollBottom;
3673 j = this.rows - 1 + this.ybase - j + 1;
3674
3675 while (param--) {
3676 // test: echo -e '\e[44m\e[1L\e[0m'
3677 // blankLine(true) - xterm/linux behavior
3678 this.lines.splice(row, 0, this.blankLine(true));
3679 this.lines.splice(j, 1);
3680 }
3681
3682 // this.maxRange();
3683 this.updateRange(this.y);
3684 this.updateRange(this.scrollBottom);
3685};
3f455f90 3686
3f455f90 3687
db76868c
PK
3688/**
3689 * CSI Ps M
3690 * Delete Ps Line(s) (default = 1) (DL).
3691 */
3692Terminal.prototype.deleteLines = function(params) {
3693 var param, row, j;
3f455f90 3694
db76868c
PK
3695 param = params[0];
3696 if (param < 1) param = 1;
3697 row = this.y + this.ybase;
3f455f90 3698
db76868c
PK
3699 j = this.rows - 1 - this.scrollBottom;
3700 j = this.rows - 1 + this.ybase - j;
3f455f90 3701
db76868c
PK
3702 while (param--) {
3703 // test: echo -e '\e[44m\e[1M\e[0m'
3704 // blankLine(true) - xterm/linux behavior
3705 this.lines.splice(j + 1, 0, this.blankLine(true));
3706 this.lines.splice(row, 1);
3707 }
12a150a4 3708
db76868c
PK
3709 // this.maxRange();
3710 this.updateRange(this.y);
3711 this.updateRange(this.scrollBottom);
3712};
3f455f90 3713
12a150a4 3714
db76868c
PK
3715/**
3716 * CSI Ps P
3717 * Delete Ps Character(s) (default = 1) (DCH).
3718 */
3719Terminal.prototype.deleteChars = function(params) {
3720 var param, row, ch;
3f455f90 3721
db76868c
PK
3722 param = params[0];
3723 if (param < 1) param = 1;
12a150a4 3724
db76868c
PK
3725 row = this.y + this.ybase;
3726 ch = [this.eraseAttr(), ' ', 1]; // xterm
3f455f90 3727
db76868c
PK
3728 while (param--) {
3729 this.lines[row].splice(this.x, 1);
3730 this.lines[row].push(ch);
3731 }
3732};
12a150a4 3733
db76868c
PK
3734/**
3735 * CSI Ps X
3736 * Erase Ps Character(s) (default = 1) (ECH).
3737 */
3738Terminal.prototype.eraseChars = function(params) {
3739 var param, row, j, ch;
3f455f90 3740
db76868c
PK
3741 param = params[0];
3742 if (param < 1) param = 1;
3f455f90 3743
db76868c
PK
3744 row = this.y + this.ybase;
3745 j = this.x;
3746 ch = [this.eraseAttr(), ' ', 1]; // xterm
12a150a4 3747
db76868c
PK
3748 while (param-- && j < this.cols) {
3749 this.lines[row][j++] = ch;
3750 }
3751};
3f455f90 3752
db76868c
PK
3753/**
3754 * CSI Pm ` Character Position Absolute
3755 * [column] (default = [row,1]) (HPA).
3756 */
3757Terminal.prototype.charPosAbsolute = function(params) {
3758 var param = params[0];
3759 if (param < 1) param = 1;
3760 this.x = param - 1;
3761 if (this.x >= this.cols) {
3762 this.x = this.cols - 1;
3763 }
3764};
12a150a4 3765
3f455f90 3766
db76868c
PK
3767/**
3768 * 141 61 a * HPR -
3769 * Horizontal Position Relative
3770 * reuse CSI Ps C ?
3771 */
3772Terminal.prototype.HPositionRelative = function(params) {
3773 var param = params[0];
3774 if (param < 1) param = 1;
3775 this.x += param;
3776 if (this.x >= this.cols) {
3777 this.x = this.cols - 1;
3778 }
3779};
12a150a4 3780
3f455f90 3781
db76868c
PK
3782/**
3783 * CSI Ps c Send Device Attributes (Primary DA).
3784 * Ps = 0 or omitted -> request attributes from terminal. The
3785 * response depends on the decTerminalID resource setting.
3786 * -> CSI ? 1 ; 2 c (``VT100 with Advanced Video Option'')
3787 * -> CSI ? 1 ; 0 c (``VT101 with No Options'')
3788 * -> CSI ? 6 c (``VT102'')
3789 * -> CSI ? 6 0 ; 1 ; 2 ; 6 ; 8 ; 9 ; 1 5 ; c (``VT220'')
3790 * The VT100-style response parameters do not mean anything by
3791 * themselves. VT220 parameters do, telling the host what fea-
3792 * tures the terminal supports:
3793 * Ps = 1 -> 132-columns.
3794 * Ps = 2 -> Printer.
3795 * Ps = 6 -> Selective erase.
3796 * Ps = 8 -> User-defined keys.
3797 * Ps = 9 -> National replacement character sets.
3798 * Ps = 1 5 -> Technical characters.
3799 * Ps = 2 2 -> ANSI color, e.g., VT525.
3800 * Ps = 2 9 -> ANSI text locator (i.e., DEC Locator mode).
3801 * CSI > Ps c
3802 * Send Device Attributes (Secondary DA).
3803 * Ps = 0 or omitted -> request the terminal's identification
3804 * code. The response depends on the decTerminalID resource set-
3805 * ting. It should apply only to VT220 and up, but xterm extends
3806 * this to VT100.
3807 * -> CSI > Pp ; Pv ; Pc c
3808 * where Pp denotes the terminal type
3809 * Pp = 0 -> ``VT100''.
3810 * Pp = 1 -> ``VT220''.
3811 * and Pv is the firmware version (for xterm, this was originally
3812 * the XFree86 patch number, starting with 95). In a DEC termi-
3813 * nal, Pc indicates the ROM cartridge registration number and is
3814 * always zero.
3815 * More information:
3816 * xterm/charproc.c - line 2012, for more information.
3817 * vim responds with ^[[?0c or ^[[?1c after the terminal's response (?)
3818 */
3819Terminal.prototype.sendDeviceAttributes = function(params) {
3820 if (params[0] > 0) return;
3821
3822 if (!this.prefix) {
3823 if (this.is('xterm')
3824 || this.is('rxvt-unicode')
3825 || this.is('screen')) {
3826 this.send('\x1b[?1;2c');
3827 } else if (this.is('linux')) {
3828 this.send('\x1b[?6c');
3829 }
3830 } else if (this.prefix === '>') {
3831 // xterm and urxvt
3832 // seem to spit this
3833 // out around ~370 times (?).
3834 if (this.is('xterm')) {
3835 this.send('\x1b[>0;276;0c');
3836 } else if (this.is('rxvt-unicode')) {
3837 this.send('\x1b[>85;95;0c');
3838 } else if (this.is('linux')) {
3839 // not supported by linux console.
3840 // linux console echoes parameters.
3841 this.send(params[0] + 'c');
3842 } else if (this.is('screen')) {
3843 this.send('\x1b[>83;40003;0c');
3844 }
3845 }
3846};
12a150a4 3847
3f455f90 3848
db76868c
PK
3849/**
3850 * CSI Pm d
3851 * Line Position Absolute [row] (default = [1,column]) (VPA).
3852 */
3853Terminal.prototype.linePosAbsolute = function(params) {
3854 var param = params[0];
3855 if (param < 1) param = 1;
3856 this.y = param - 1;
3857 if (this.y >= this.rows) {
3858 this.y = this.rows - 1;
3859 }
3860};
12a150a4 3861
3f455f90 3862
db76868c
PK
3863/**
3864 * 145 65 e * VPR - Vertical Position Relative
3865 * reuse CSI Ps B ?
3866 */
3867Terminal.prototype.VPositionRelative = function(params) {
3868 var param = params[0];
3869 if (param < 1) param = 1;
3870 this.y += param;
3871 if (this.y >= this.rows) {
3872 this.y = this.rows - 1;
3873 }
3874};
12a150a4 3875
3f455f90 3876
db76868c
PK
3877/**
3878 * CSI Ps ; Ps f
3879 * Horizontal and Vertical Position [row;column] (default =
3880 * [1,1]) (HVP).
3881 */
3882Terminal.prototype.HVPosition = function(params) {
3883 if (params[0] < 1) params[0] = 1;
3884 if (params[1] < 1) params[1] = 1;
3f455f90 3885
db76868c
PK
3886 this.y = params[0] - 1;
3887 if (this.y >= this.rows) {
3888 this.y = this.rows - 1;
3889 }
12a150a4 3890
db76868c
PK
3891 this.x = params[1] - 1;
3892 if (this.x >= this.cols) {
3893 this.x = this.cols - 1;
3894 }
3895};
3f455f90 3896
12a150a4 3897
db76868c
PK
3898/**
3899 * CSI Pm h Set Mode (SM).
3900 * Ps = 2 -> Keyboard Action Mode (AM).
3901 * Ps = 4 -> Insert Mode (IRM).
3902 * Ps = 1 2 -> Send/receive (SRM).
3903 * Ps = 2 0 -> Automatic Newline (LNM).
3904 * CSI ? Pm h
3905 * DEC Private Mode Set (DECSET).
3906 * Ps = 1 -> Application Cursor Keys (DECCKM).
3907 * Ps = 2 -> Designate USASCII for character sets G0-G3
3908 * (DECANM), and set VT100 mode.
3909 * Ps = 3 -> 132 Column Mode (DECCOLM).
3910 * Ps = 4 -> Smooth (Slow) Scroll (DECSCLM).
3911 * Ps = 5 -> Reverse Video (DECSCNM).
3912 * Ps = 6 -> Origin Mode (DECOM).
3913 * Ps = 7 -> Wraparound Mode (DECAWM).
3914 * Ps = 8 -> Auto-repeat Keys (DECARM).
3915 * Ps = 9 -> Send Mouse X & Y on button press. See the sec-
3916 * tion Mouse Tracking.
3917 * Ps = 1 0 -> Show toolbar (rxvt).
3918 * Ps = 1 2 -> Start Blinking Cursor (att610).
3919 * Ps = 1 8 -> Print form feed (DECPFF).
3920 * Ps = 1 9 -> Set print extent to full screen (DECPEX).
3921 * Ps = 2 5 -> Show Cursor (DECTCEM).
3922 * Ps = 3 0 -> Show scrollbar (rxvt).
3923 * Ps = 3 5 -> Enable font-shifting functions (rxvt).
3924 * Ps = 3 8 -> Enter Tektronix Mode (DECTEK).
3925 * Ps = 4 0 -> Allow 80 -> 132 Mode.
3926 * Ps = 4 1 -> more(1) fix (see curses resource).
3927 * Ps = 4 2 -> Enable Nation Replacement Character sets (DECN-
3928 * RCM).
3929 * Ps = 4 4 -> Turn On Margin Bell.
3930 * Ps = 4 5 -> Reverse-wraparound Mode.
3931 * Ps = 4 6 -> Start Logging. This is normally disabled by a
3932 * compile-time option.
3933 * Ps = 4 7 -> Use Alternate Screen Buffer. (This may be dis-
3934 * abled by the titeInhibit resource).
3935 * Ps = 6 6 -> Application keypad (DECNKM).
3936 * Ps = 6 7 -> Backarrow key sends backspace (DECBKM).
3937 * Ps = 1 0 0 0 -> Send Mouse X & Y on button press and
3938 * release. See the section Mouse Tracking.
3939 * Ps = 1 0 0 1 -> Use Hilite Mouse Tracking.
3940 * Ps = 1 0 0 2 -> Use Cell Motion Mouse Tracking.
3941 * Ps = 1 0 0 3 -> Use All Motion Mouse Tracking.
3942 * Ps = 1 0 0 4 -> Send FocusIn/FocusOut events.
3943 * Ps = 1 0 0 5 -> Enable Extended Mouse Mode.
3944 * Ps = 1 0 1 0 -> Scroll to bottom on tty output (rxvt).
3945 * Ps = 1 0 1 1 -> Scroll to bottom on key press (rxvt).
3946 * Ps = 1 0 3 4 -> Interpret "meta" key, sets eighth bit.
3947 * (enables the eightBitInput resource).
3948 * Ps = 1 0 3 5 -> Enable special modifiers for Alt and Num-
3949 * Lock keys. (This enables the numLock resource).
3950 * Ps = 1 0 3 6 -> Send ESC when Meta modifies a key. (This
3951 * enables the metaSendsEscape resource).
3952 * Ps = 1 0 3 7 -> Send DEL from the editing-keypad Delete
3953 * key.
3954 * Ps = 1 0 3 9 -> Send ESC when Alt modifies a key. (This
3955 * enables the altSendsEscape resource).
3956 * Ps = 1 0 4 0 -> Keep selection even if not highlighted.
3957 * (This enables the keepSelection resource).
3958 * Ps = 1 0 4 1 -> Use the CLIPBOARD selection. (This enables
3959 * the selectToClipboard resource).
3960 * Ps = 1 0 4 2 -> Enable Urgency window manager hint when
3961 * Control-G is received. (This enables the bellIsUrgent
3962 * resource).
3963 * Ps = 1 0 4 3 -> Enable raising of the window when Control-G
3964 * is received. (enables the popOnBell resource).
3965 * Ps = 1 0 4 7 -> Use Alternate Screen Buffer. (This may be
3966 * disabled by the titeInhibit resource).
3967 * Ps = 1 0 4 8 -> Save cursor as in DECSC. (This may be dis-
3968 * abled by the titeInhibit resource).
3969 * Ps = 1 0 4 9 -> Save cursor as in DECSC and use Alternate
3970 * Screen Buffer, clearing it first. (This may be disabled by
3971 * the titeInhibit resource). This combines the effects of the 1
3972 * 0 4 7 and 1 0 4 8 modes. Use this with terminfo-based
3973 * applications rather than the 4 7 mode.
3974 * Ps = 1 0 5 0 -> Set terminfo/termcap function-key mode.
3975 * Ps = 1 0 5 1 -> Set Sun function-key mode.
3976 * Ps = 1 0 5 2 -> Set HP function-key mode.
3977 * Ps = 1 0 5 3 -> Set SCO function-key mode.
3978 * Ps = 1 0 6 0 -> Set legacy keyboard emulation (X11R6).
3979 * Ps = 1 0 6 1 -> Set VT220 keyboard emulation.
3980 * Ps = 2 0 0 4 -> Set bracketed paste mode.
3981 * Modes:
3982 * http: *vt100.net/docs/vt220-rm/chapter4.html
3983 */
3984Terminal.prototype.setMode = function(params) {
3985 if (typeof params === 'object') {
3986 var l = params.length
3987 , i = 0;
3f455f90 3988
db76868c
PK
3989 for (; i < l; i++) {
3990 this.setMode(params[i]);
3991 }
12a150a4 3992
db76868c
PK
3993 return;
3994 }
3995
3996 if (!this.prefix) {
3997 switch (params) {
3998 case 4:
3999 this.insertMode = true;
4000 break;
4001 case 20:
4002 //this.convertEol = true;
4003 break;
4004 }
4005 } else if (this.prefix === '?') {
4006 switch (params) {
4007 case 1:
4008 this.applicationCursor = true;
4009 break;
4010 case 2:
4011 this.setgCharset(0, Terminal.charsets.US);
4012 this.setgCharset(1, Terminal.charsets.US);
4013 this.setgCharset(2, Terminal.charsets.US);
4014 this.setgCharset(3, Terminal.charsets.US);
4015 // set VT100 mode here
4016 break;
4017 case 3: // 132 col mode
4018 this.savedCols = this.cols;
4019 this.resize(132, this.rows);
4020 break;
4021 case 6:
4022 this.originMode = true;
4023 break;
4024 case 7:
4025 this.wraparoundMode = true;
4026 break;
4027 case 12:
4028 // this.cursorBlink = true;
4029 break;
4030 case 66:
4031 this.log('Serial port requested application keypad.');
4032 this.applicationKeypad = true;
4033 this.viewport.setApplicationMode(true);
4034 break;
4035 case 9: // X10 Mouse
4036 // no release, no motion, no wheel, no modifiers.
4037 case 1000: // vt200 mouse
4038 // no motion.
4039 // no modifiers, except control on the wheel.
4040 case 1002: // button event mouse
4041 case 1003: // any event mouse
4042 // any event - sends motion events,
4043 // even if there is no button held down.
4044 this.x10Mouse = params === 9;
4045 this.vt200Mouse = params === 1000;
4046 this.normalMouse = params > 1000;
4047 this.mouseEvents = true;
4048 this.element.style.cursor = 'default';
4049 this.log('Binding to mouse events.');
4050 break;
4051 case 1004: // send focusin/focusout events
4052 // focusin: ^[[I
4053 // focusout: ^[[O
4054 this.sendFocus = true;
4055 break;
4056 case 1005: // utf8 ext mode mouse
4057 this.utfMouse = true;
4058 // for wide terminals
4059 // simply encodes large values as utf8 characters
4060 break;
4061 case 1006: // sgr ext mode mouse
4062 this.sgrMouse = true;
4063 // for wide terminals
4064 // does not add 32 to fields
4065 // press: ^[[<b;x;yM
4066 // release: ^[[<b;x;ym
4067 break;
4068 case 1015: // urxvt ext mode mouse
4069 this.urxvtMouse = true;
4070 // for wide terminals
4071 // numbers for fields
4072 // press: ^[[b;x;yM
4073 // motion: ^[[b;x;yT
4074 break;
4075 case 25: // show cursor
4076 this.cursorHidden = false;
4077 break;
4078 case 1049: // alt screen buffer cursor
4079 //this.saveCursor();
4080 ; // FALL-THROUGH
4081 case 47: // alt screen buffer
4082 case 1047: // alt screen buffer
4083 if (!this.normal) {
4084 var normal = {
4085 lines: this.lines,
4086 ybase: this.ybase,
4087 ydisp: this.ydisp,
4088 x: this.x,
4089 y: this.y,
4090 scrollTop: this.scrollTop,
4091 scrollBottom: this.scrollBottom,
4092 tabs: this.tabs
4093 // XXX save charset(s) here?
4094 // charset: this.charset,
4095 // glevel: this.glevel,
4096 // charsets: this.charsets
4097 };
4098 this.reset();
4099 this.normal = normal;
4100 this.showCursor();
4101 }
4102 break;
4103 }
4104 }
4105};
3f455f90 4106
db76868c
PK
4107/**
4108 * CSI Pm l Reset Mode (RM).
4109 * Ps = 2 -> Keyboard Action Mode (AM).
4110 * Ps = 4 -> Replace Mode (IRM).
4111 * Ps = 1 2 -> Send/receive (SRM).
4112 * Ps = 2 0 -> Normal Linefeed (LNM).
4113 * CSI ? Pm l
4114 * DEC Private Mode Reset (DECRST).
4115 * Ps = 1 -> Normal Cursor Keys (DECCKM).
4116 * Ps = 2 -> Designate VT52 mode (DECANM).
4117 * Ps = 3 -> 80 Column Mode (DECCOLM).
4118 * Ps = 4 -> Jump (Fast) Scroll (DECSCLM).
4119 * Ps = 5 -> Normal Video (DECSCNM).
4120 * Ps = 6 -> Normal Cursor Mode (DECOM).
4121 * Ps = 7 -> No Wraparound Mode (DECAWM).
4122 * Ps = 8 -> No Auto-repeat Keys (DECARM).
4123 * Ps = 9 -> Don't send Mouse X & Y on button press.
4124 * Ps = 1 0 -> Hide toolbar (rxvt).
4125 * Ps = 1 2 -> Stop Blinking Cursor (att610).
4126 * Ps = 1 8 -> Don't print form feed (DECPFF).
4127 * Ps = 1 9 -> Limit print to scrolling region (DECPEX).
4128 * Ps = 2 5 -> Hide Cursor (DECTCEM).
4129 * Ps = 3 0 -> Don't show scrollbar (rxvt).
4130 * Ps = 3 5 -> Disable font-shifting functions (rxvt).
4131 * Ps = 4 0 -> Disallow 80 -> 132 Mode.
4132 * Ps = 4 1 -> No more(1) fix (see curses resource).
4133 * Ps = 4 2 -> Disable Nation Replacement Character sets (DEC-
4134 * NRCM).
4135 * Ps = 4 4 -> Turn Off Margin Bell.
4136 * Ps = 4 5 -> No Reverse-wraparound Mode.
4137 * Ps = 4 6 -> Stop Logging. (This is normally disabled by a
4138 * compile-time option).
4139 * Ps = 4 7 -> Use Normal Screen Buffer.
4140 * Ps = 6 6 -> Numeric keypad (DECNKM).
4141 * Ps = 6 7 -> Backarrow key sends delete (DECBKM).
4142 * Ps = 1 0 0 0 -> Don't send Mouse X & Y on button press and
4143 * release. See the section Mouse Tracking.
4144 * Ps = 1 0 0 1 -> Don't use Hilite Mouse Tracking.
4145 * Ps = 1 0 0 2 -> Don't use Cell Motion Mouse Tracking.
4146 * Ps = 1 0 0 3 -> Don't use All Motion Mouse Tracking.
4147 * Ps = 1 0 0 4 -> Don't send FocusIn/FocusOut events.
4148 * Ps = 1 0 0 5 -> Disable Extended Mouse Mode.
4149 * Ps = 1 0 1 0 -> Don't scroll to bottom on tty output
4150 * (rxvt).
4151 * Ps = 1 0 1 1 -> Don't scroll to bottom on key press (rxvt).
4152 * Ps = 1 0 3 4 -> Don't interpret "meta" key. (This disables
4153 * the eightBitInput resource).
4154 * Ps = 1 0 3 5 -> Disable special modifiers for Alt and Num-
4155 * Lock keys. (This disables the numLock resource).
4156 * Ps = 1 0 3 6 -> Don't send ESC when Meta modifies a key.
4157 * (This disables the metaSendsEscape resource).
4158 * Ps = 1 0 3 7 -> Send VT220 Remove from the editing-keypad
4159 * Delete key.
4160 * Ps = 1 0 3 9 -> Don't send ESC when Alt modifies a key.
4161 * (This disables the altSendsEscape resource).
4162 * Ps = 1 0 4 0 -> Do not keep selection when not highlighted.
4163 * (This disables the keepSelection resource).
4164 * Ps = 1 0 4 1 -> Use the PRIMARY selection. (This disables
4165 * the selectToClipboard resource).
4166 * Ps = 1 0 4 2 -> Disable Urgency window manager hint when
4167 * Control-G is received. (This disables the bellIsUrgent
4168 * resource).
4169 * Ps = 1 0 4 3 -> Disable raising of the window when Control-
4170 * G is received. (This disables the popOnBell resource).
4171 * Ps = 1 0 4 7 -> Use Normal Screen Buffer, clearing screen
4172 * first if in the Alternate Screen. (This may be disabled by
4173 * the titeInhibit resource).
4174 * Ps = 1 0 4 8 -> Restore cursor as in DECRC. (This may be
4175 * disabled by the titeInhibit resource).
4176 * Ps = 1 0 4 9 -> Use Normal Screen Buffer and restore cursor
4177 * as in DECRC. (This may be disabled by the titeInhibit
4178 * resource). This combines the effects of the 1 0 4 7 and 1 0
4179 * 4 8 modes. Use this with terminfo-based applications rather
4180 * than the 4 7 mode.
4181 * Ps = 1 0 5 0 -> Reset terminfo/termcap function-key mode.
4182 * Ps = 1 0 5 1 -> Reset Sun function-key mode.
4183 * Ps = 1 0 5 2 -> Reset HP function-key mode.
4184 * Ps = 1 0 5 3 -> Reset SCO function-key mode.
4185 * Ps = 1 0 6 0 -> Reset legacy keyboard emulation (X11R6).
4186 * Ps = 1 0 6 1 -> Reset keyboard emulation to Sun/PC style.
4187 * Ps = 2 0 0 4 -> Reset bracketed paste mode.
4188 */
4189Terminal.prototype.resetMode = function(params) {
4190 if (typeof params === 'object') {
4191 var l = params.length
4192 , i = 0;
12a150a4 4193
db76868c
PK
4194 for (; i < l; i++) {
4195 this.resetMode(params[i]);
4196 }
3f455f90 4197
db76868c
PK
4198 return;
4199 }
4200
4201 if (!this.prefix) {
4202 switch (params) {
4203 case 4:
4204 this.insertMode = false;
4205 break;
4206 case 20:
4207 //this.convertEol = false;
4208 break;
4209 }
4210 } else if (this.prefix === '?') {
4211 switch (params) {
4212 case 1:
4213 this.applicationCursor = false;
4214 break;
4215 case 3:
4216 if (this.cols === 132 && this.savedCols) {
4217 this.resize(this.savedCols, this.rows);
4218 }
4219 delete this.savedCols;
4220 break;
4221 case 6:
4222 this.originMode = false;
4223 break;
4224 case 7:
4225 this.wraparoundMode = false;
4226 break;
4227 case 12:
4228 // this.cursorBlink = false;
4229 break;
4230 case 66:
4231 this.log('Switching back to normal keypad.');
4232 this.applicationKeypad = false;
4233 this.viewport.setApplicationMode(false);
4234 break;
4235 case 9: // X10 Mouse
4236 case 1000: // vt200 mouse
4237 case 1002: // button event mouse
4238 case 1003: // any event mouse
4239 this.x10Mouse = false;
4240 this.vt200Mouse = false;
4241 this.normalMouse = false;
4242 this.mouseEvents = false;
4243 this.element.style.cursor = '';
4244 break;
4245 case 1004: // send focusin/focusout events
4246 this.sendFocus = false;
4247 break;
4248 case 1005: // utf8 ext mode mouse
4249 this.utfMouse = false;
4250 break;
4251 case 1006: // sgr ext mode mouse
4252 this.sgrMouse = false;
4253 break;
4254 case 1015: // urxvt ext mode mouse
4255 this.urxvtMouse = false;
4256 break;
4257 case 25: // hide cursor
4258 this.cursorHidden = true;
4259 break;
4260 case 1049: // alt screen buffer cursor
4261 ; // FALL-THROUGH
4262 case 47: // normal screen buffer
4263 case 1047: // normal screen buffer - clearing it first
4264 if (this.normal) {
4265 this.lines = this.normal.lines;
4266 this.ybase = this.normal.ybase;
4267 this.ydisp = this.normal.ydisp;
4268 this.x = this.normal.x;
4269 this.y = this.normal.y;
4270 this.scrollTop = this.normal.scrollTop;
4271 this.scrollBottom = this.normal.scrollBottom;
4272 this.tabs = this.normal.tabs;
4273 this.normal = null;
4274 // if (params === 1049) {
4275 // this.x = this.savedX;
4276 // this.y = this.savedY;
4277 // }
4278 this.refresh(0, this.rows - 1);
4279 this.showCursor();
4280 }
4281 break;
4282 }
4283 }
4284};
12a150a4 4285
3f455f90 4286
db76868c
PK
4287/**
4288 * CSI Ps ; Ps r
4289 * Set Scrolling Region [top;bottom] (default = full size of win-
4290 * dow) (DECSTBM).
4291 * CSI ? Pm r
4292 */
4293Terminal.prototype.setScrollRegion = function(params) {
4294 if (this.prefix) return;
4295 this.scrollTop = (params[0] || 1) - 1;
4296 this.scrollBottom = (params[1] || this.rows) - 1;
4297 this.x = 0;
4298 this.y = 0;
4299};
12a150a4 4300
3f455f90 4301
db76868c
PK
4302/**
4303 * CSI s
4304 * Save cursor (ANSI.SYS).
4305 */
4306Terminal.prototype.saveCursor = function(params) {
4307 this.savedX = this.x;
4308 this.savedY = this.y;
4309};
12a150a4 4310
3f455f90 4311
db76868c
PK
4312/**
4313 * CSI u
4314 * Restore cursor (ANSI.SYS).
4315 */
4316Terminal.prototype.restoreCursor = function(params) {
4317 this.x = this.savedX || 0;
4318 this.y = this.savedY || 0;
4319};
12a150a4 4320
3f455f90 4321
db76868c
PK
4322/**
4323 * Lesser Used
4324 */
12a150a4 4325
db76868c
PK
4326/**
4327 * CSI Ps I
4328 * Cursor Forward Tabulation Ps tab stops (default = 1) (CHT).
4329 */
4330Terminal.prototype.cursorForwardTab = function(params) {
4331 var param = params[0] || 1;
4332 while (param--) {
4333 this.x = this.nextStop();
4334 }
4335};
3f455f90 4336
12a150a4 4337
db76868c
PK
4338/**
4339 * CSI Ps S Scroll up Ps lines (default = 1) (SU).
4340 */
4341Terminal.prototype.scrollUp = function(params) {
4342 var param = params[0] || 1;
4343 while (param--) {
4344 this.lines.splice(this.ybase + this.scrollTop, 1);
4345 this.lines.splice(this.ybase + this.scrollBottom, 0, this.blankLine());
4346 }
4347 // this.maxRange();
4348 this.updateRange(this.scrollTop);
4349 this.updateRange(this.scrollBottom);
4350};
3f455f90 4351
12a150a4 4352
db76868c
PK
4353/**
4354 * CSI Ps T Scroll down Ps lines (default = 1) (SD).
12a150a4 4355 */
db76868c
PK
4356Terminal.prototype.scrollDown = function(params) {
4357 var param = params[0] || 1;
4358 while (param--) {
4359 this.lines.splice(this.ybase + this.scrollBottom, 1);
4360 this.lines.splice(this.ybase + this.scrollTop, 0, this.blankLine());
4361 }
4362 // this.maxRange();
4363 this.updateRange(this.scrollTop);
4364 this.updateRange(this.scrollBottom);
4365};
3f455f90 4366
12a150a4 4367
db76868c
PK
4368/**
4369 * CSI Ps ; Ps ; Ps ; Ps ; Ps T
4370 * Initiate highlight mouse tracking. Parameters are
4371 * [func;startx;starty;firstrow;lastrow]. See the section Mouse
4372 * Tracking.
4373 */
4374Terminal.prototype.initMouseTracking = function(params) {
4375 // Relevant: DECSET 1001
4376};
3f455f90 4377
12a150a4 4378
db76868c
PK
4379/**
4380 * CSI > Ps; Ps T
4381 * Reset one or more features of the title modes to the default
4382 * value. Normally, "reset" disables the feature. It is possi-
4383 * ble to disable the ability to reset features by compiling a
4384 * different default for the title modes into xterm.
4385 * Ps = 0 -> Do not set window/icon labels using hexadecimal.
4386 * Ps = 1 -> Do not query window/icon labels using hexadeci-
4387 * mal.
4388 * Ps = 2 -> Do not set window/icon labels using UTF-8.
4389 * Ps = 3 -> Do not query window/icon labels using UTF-8.
4390 * (See discussion of "Title Modes").
4391 */
4392Terminal.prototype.resetTitleModes = function(params) {
4393 ;
4394};
3f455f90 4395
12a150a4 4396
db76868c
PK
4397/**
4398 * CSI Ps Z Cursor Backward Tabulation Ps tab stops (default = 1) (CBT).
4399 */
4400Terminal.prototype.cursorBackwardTab = function(params) {
4401 var param = params[0] || 1;
4402 while (param--) {
4403 this.x = this.prevStop();
4404 }
4405};
3f455f90 4406
3f455f90 4407
db76868c
PK
4408/**
4409 * CSI Ps b Repeat the preceding graphic character Ps times (REP).
4410 */
4411Terminal.prototype.repeatPrecedingCharacter = function(params) {
4412 var param = params[0] || 1
4413 , line = this.lines[this.ybase + this.y]
4414 , ch = line[this.x - 1] || [this.defAttr, ' ', 1];
3f455f90 4415
db76868c
PK
4416 while (param--) line[this.x++] = ch;
4417};
3f455f90 4418
3f455f90 4419
db76868c
PK
4420/**
4421 * CSI Ps g Tab Clear (TBC).
4422 * Ps = 0 -> Clear Current Column (default).
4423 * Ps = 3 -> Clear All.
4424 * Potentially:
4425 * Ps = 2 -> Clear Stops on Line.
4426 * http://vt100.net/annarbor/aaa-ug/section6.html
4427 */
4428Terminal.prototype.tabClear = function(params) {
4429 var param = params[0];
4430 if (param <= 0) {
4431 delete this.tabs[this.x];
4432 } else if (param === 3) {
4433 this.tabs = {};
4434 }
4435};
12a150a4 4436
3f455f90 4437
db76868c
PK
4438/**
4439 * CSI Pm i Media Copy (MC).
4440 * Ps = 0 -> Print screen (default).
4441 * Ps = 4 -> Turn off printer controller mode.
4442 * Ps = 5 -> Turn on printer controller mode.
4443 * CSI ? Pm i
4444 * Media Copy (MC, DEC-specific).
4445 * Ps = 1 -> Print line containing cursor.
4446 * Ps = 4 -> Turn off autoprint mode.
4447 * Ps = 5 -> Turn on autoprint mode.
4448 * Ps = 1 0 -> Print composed display, ignores DECPEX.
4449 * Ps = 1 1 -> Print all pages.
4450 */
4451Terminal.prototype.mediaCopy = function(params) {
4452 ;
4453};
12a150a4 4454
3f455f90 4455
db76868c
PK
4456/**
4457 * CSI > Ps; Ps m
4458 * Set or reset resource-values used by xterm to decide whether
4459 * to construct escape sequences holding information about the
4460 * modifiers pressed with a given key. The first parameter iden-
4461 * tifies the resource to set/reset. The second parameter is the
4462 * value to assign to the resource. If the second parameter is
4463 * omitted, the resource is reset to its initial value.
4464 * Ps = 1 -> modifyCursorKeys.
4465 * Ps = 2 -> modifyFunctionKeys.
4466 * Ps = 4 -> modifyOtherKeys.
4467 * If no parameters are given, all resources are reset to their
4468 * initial values.
4469 */
4470Terminal.prototype.setResources = function(params) {
4471 ;
4472};
8bc844c0 4473
8bc844c0 4474
db76868c
PK
4475/**
4476 * CSI > Ps n
4477 * Disable modifiers which may be enabled via the CSI > Ps; Ps m
4478 * sequence. This corresponds to a resource value of "-1", which
4479 * cannot be set with the other sequence. The parameter identi-
4480 * fies the resource to be disabled:
4481 * Ps = 1 -> modifyCursorKeys.
4482 * Ps = 2 -> modifyFunctionKeys.
4483 * Ps = 4 -> modifyOtherKeys.
4484 * If the parameter is omitted, modifyFunctionKeys is disabled.
4485 * When modifyFunctionKeys is disabled, xterm uses the modifier
4486 * keys to make an extended sequence of functions rather than
4487 * adding a parameter to each function key to denote the modi-
4488 * fiers.
4489 */
4490Terminal.prototype.disableModifiers = function(params) {
4491 ;
4492};
8bc844c0 4493
8bc844c0 4494
db76868c
PK
4495/**
4496 * CSI > Ps p
4497 * Set resource value pointerMode. This is used by xterm to
4498 * decide whether to hide the pointer cursor as the user types.
4499 * Valid values for the parameter:
4500 * Ps = 0 -> never hide the pointer.
4501 * Ps = 1 -> hide if the mouse tracking mode is not enabled.
4502 * Ps = 2 -> always hide the pointer. If no parameter is
4503 * given, xterm uses the default, which is 1 .
4504 */
4505Terminal.prototype.setPointerMode = function(params) {
4506 ;
4507};
178b611b 4508
8bc844c0 4509
db76868c
PK
4510/**
4511 * CSI ! p Soft terminal reset (DECSTR).
4512 * http://vt100.net/docs/vt220-rm/table4-10.html
4513 */
4514Terminal.prototype.softReset = function(params) {
4515 this.cursorHidden = false;
4516 this.insertMode = false;
4517 this.originMode = false;
4518 this.wraparoundMode = false; // autowrap
4519 this.applicationKeypad = false; // ?
4520 this.viewport.setApplicationMode(false);
4521 this.applicationCursor = false;
4522 this.scrollTop = 0;
4523 this.scrollBottom = this.rows - 1;
4524 this.curAttr = this.defAttr;
4525 this.x = this.y = 0; // ?
4526 this.charset = null;
4527 this.glevel = 0; // ??
4528 this.charsets = [null]; // ??
4529};
8bc844c0 4530
3f455f90 4531
db76868c
PK
4532/**
4533 * CSI Ps$ p
4534 * Request ANSI mode (DECRQM). For VT300 and up, reply is
4535 * CSI Ps; Pm$ y
4536 * where Ps is the mode number as in RM, and Pm is the mode
4537 * value:
4538 * 0 - not recognized
4539 * 1 - set
4540 * 2 - reset
4541 * 3 - permanently set
4542 * 4 - permanently reset
4543 */
4544Terminal.prototype.requestAnsiMode = function(params) {
4545 ;
4546};
3f455f90 4547
3f455f90 4548
db76868c
PK
4549/**
4550 * CSI ? Ps$ p
4551 * Request DEC private mode (DECRQM). For VT300 and up, reply is
4552 * CSI ? Ps; Pm$ p
4553 * where Ps is the mode number as in DECSET, Pm is the mode value
4554 * as in the ANSI DECRQM.
4555 */
4556Terminal.prototype.requestPrivateMode = function(params) {
4557 ;
4558};
b01165c1 4559
8bc844c0 4560
db76868c
PK
4561/**
4562 * CSI Ps ; Ps " p
4563 * Set conformance level (DECSCL). Valid values for the first
4564 * parameter:
4565 * Ps = 6 1 -> VT100.
4566 * Ps = 6 2 -> VT200.
4567 * Ps = 6 3 -> VT300.
4568 * Valid values for the second parameter:
4569 * Ps = 0 -> 8-bit controls.
4570 * Ps = 1 -> 7-bit controls (always set for VT100).
4571 * Ps = 2 -> 8-bit controls.
4572 */
4573Terminal.prototype.setConformanceLevel = function(params) {
4574 ;
4575};
3f455f90 4576
8bc844c0 4577
db76868c
PK
4578/**
4579 * CSI Ps q Load LEDs (DECLL).
4580 * Ps = 0 -> Clear all LEDS (default).
4581 * Ps = 1 -> Light Num Lock.
4582 * Ps = 2 -> Light Caps Lock.
4583 * Ps = 3 -> Light Scroll Lock.
4584 * Ps = 2 1 -> Extinguish Num Lock.
4585 * Ps = 2 2 -> Extinguish Caps Lock.
4586 * Ps = 2 3 -> Extinguish Scroll Lock.
4587 */
4588Terminal.prototype.loadLEDs = function(params) {
4589 ;
4590};
8bc844c0 4591
8bc844c0 4592
db76868c
PK
4593/**
4594 * CSI Ps SP q
4595 * Set cursor style (DECSCUSR, VT520).
4596 * Ps = 0 -> blinking block.
4597 * Ps = 1 -> blinking block (default).
4598 * Ps = 2 -> steady block.
4599 * Ps = 3 -> blinking underline.
4600 * Ps = 4 -> steady underline.
4601 */
4602Terminal.prototype.setCursorStyle = function(params) {
4603 ;
4604};
4605
4606
4607/**
4608 * CSI Ps " q
4609 * Select character protection attribute (DECSCA). Valid values
4610 * for the parameter:
4611 * Ps = 0 -> DECSED and DECSEL can erase (default).
4612 * Ps = 1 -> DECSED and DECSEL cannot erase.
4613 * Ps = 2 -> DECSED and DECSEL can erase.
4614 */
4615Terminal.prototype.setCharProtectionAttr = function(params) {
4616 ;
4617};
4618
4619
4620/**
4621 * CSI ? Pm r
4622 * Restore DEC Private Mode Values. The value of Ps previously
4623 * saved is restored. Ps values are the same as for DECSET.
4624 */
4625Terminal.prototype.restorePrivateValues = function(params) {
4626 ;
4627};
4628
4629
4630/**
4631 * CSI Pt; Pl; Pb; Pr; Ps$ r
4632 * Change Attributes in Rectangular Area (DECCARA), VT400 and up.
4633 * Pt; Pl; Pb; Pr denotes the rectangle.
4634 * Ps denotes the SGR attributes to change: 0, 1, 4, 5, 7.
4635 * NOTE: xterm doesn't enable this code by default.
4636 */
4637Terminal.prototype.setAttrInRectangle = function(params) {
4638 var t = params[0]
4639 , l = params[1]
4640 , b = params[2]
4641 , r = params[3]
4642 , attr = params[4];
4643
4644 var line
4645 , i;
4646
4647 for (; t < b + 1; t++) {
4648 line = this.lines[this.ybase + t];
4649 for (i = l; i < r; i++) {
4650 line[i] = [attr, line[i][1]];
9e6cb6b6 4651 }
db76868c 4652 }
8bc844c0 4653
db76868c
PK
4654 // this.maxRange();
4655 this.updateRange(params[0]);
4656 this.updateRange(params[2]);
4657};
b01165c1 4658
42ec3b49 4659
db76868c
PK
4660/**
4661 * CSI Pc; Pt; Pl; Pb; Pr$ x
4662 * Fill Rectangular Area (DECFRA), VT420 and up.
4663 * Pc is the character to use.
4664 * Pt; Pl; Pb; Pr denotes the rectangle.
4665 * NOTE: xterm doesn't enable this code by default.
4666 */
4667Terminal.prototype.fillRectangle = function(params) {
4668 var ch = params[0]
4669 , t = params[1]
4670 , l = params[2]
4671 , b = params[3]
4672 , r = params[4];
4673
4674 var line
4675 , i;
4676
4677 for (; t < b + 1; t++) {
4678 line = this.lines[this.ybase + t];
4679 for (i = l; i < r; i++) {
4680 line[i] = [line[i][0], String.fromCharCode(ch)];
b01165c1 4681 }
db76868c 4682 }
b01165c1 4683
db76868c
PK
4684 // this.maxRange();
4685 this.updateRange(params[1]);
4686 this.updateRange(params[3]);
4687};
3f455f90 4688
8bc844c0 4689
db76868c
PK
4690/**
4691 * CSI Ps ; Pu ' z
4692 * Enable Locator Reporting (DECELR).
4693 * Valid values for the first parameter:
4694 * Ps = 0 -> Locator disabled (default).
4695 * Ps = 1 -> Locator enabled.
4696 * Ps = 2 -> Locator enabled for one report, then disabled.
4697 * The second parameter specifies the coordinate unit for locator
4698 * reports.
4699 * Valid values for the second parameter:
4700 * Pu = 0 <- or omitted -> default to character cells.
4701 * Pu = 1 <- device physical pixels.
4702 * Pu = 2 <- character cells.
4703 */
4704Terminal.prototype.enableLocatorReporting = function(params) {
4705 var val = params[0] > 0;
4706 //this.mouseEvents = val;
4707 //this.decLocator = val;
4708};
9e6cb6b6 4709
8bc844c0 4710
db76868c
PK
4711/**
4712 * CSI Pt; Pl; Pb; Pr$ z
4713 * Erase Rectangular Area (DECERA), VT400 and up.
4714 * Pt; Pl; Pb; Pr denotes the rectangle.
4715 * NOTE: xterm doesn't enable this code by default.
4716 */
4717Terminal.prototype.eraseRectangle = function(params) {
4718 var t = params[0]
4719 , l = params[1]
4720 , b = params[2]
4721 , r = params[3];
4722
4723 var line
4724 , i
4725 , ch;
4726
4727 ch = [this.eraseAttr(), ' ', 1]; // xterm?
4728
4729 for (; t < b + 1; t++) {
4730 line = this.lines[this.ybase + t];
4731 for (i = l; i < r; i++) {
4732 line[i] = ch;
3f455f90 4733 }
db76868c 4734 }
8bc844c0 4735
db76868c
PK
4736 // this.maxRange();
4737 this.updateRange(params[0]);
4738 this.updateRange(params[2]);
4739};
8bc844c0 4740
8bc844c0 4741
db76868c
PK
4742/**
4743 * CSI P m SP }
4744 * Insert P s Column(s) (default = 1) (DECIC), VT420 and up.
4745 * NOTE: xterm doesn't enable this code by default.
4746 */
4747Terminal.prototype.insertColumns = function() {
4748 var param = params[0]
4749 , l = this.ybase + this.rows
4750 , ch = [this.eraseAttr(), ' ', 1] // xterm?
4751 , i;
4752
4753 while (param--) {
4754 for (i = this.ybase; i < l; i++) {
4755 this.lines[i].splice(this.x + 1, 0, ch);
4756 this.lines[i].pop();
a68c8336 4757 }
db76868c 4758 }
a68c8336 4759
db76868c
PK
4760 this.maxRange();
4761};
4762
4763
4764/**
4765 * CSI P m SP ~
4766 * Delete P s Column(s) (default = 1) (DECDC), VT420 and up
4767 * NOTE: xterm doesn't enable this code by default.
4768 */
4769Terminal.prototype.deleteColumns = function() {
4770 var param = params[0]
4771 , l = this.ybase + this.rows
4772 , ch = [this.eraseAttr(), ' ', 1] // xterm?
4773 , i;
4774
4775 while (param--) {
4776 for (i = this.ybase; i < l; i++) {
4777 this.lines[i].splice(this.x, 1);
4778 this.lines[i].push(ch);
86dad1b0 4779 }
db76868c 4780 }
86dad1b0 4781
db76868c
PK
4782 this.maxRange();
4783};
e3126ba3 4784
db76868c
PK
4785/**
4786 * Character Sets
4787 */
3f455f90 4788
db76868c
PK
4789Terminal.charsets = {};
4790
4791// DEC Special Character and Line Drawing Set.
4792// http://vt100.net/docs/vt102-ug/table5-13.html
4793// A lot of curses apps use this if they see TERM=xterm.
4794// testing: echo -e '\e(0a\e(B'
4795// The xterm output sometimes seems to conflict with the
4796// reference above. xterm seems in line with the reference
4797// when running vttest however.
4798// The table below now uses xterm's output from vttest.
4799Terminal.charsets.SCLD = { // (0
4800 '`': '\u25c6', // '◆'
4801 'a': '\u2592', // '▒'
4802 'b': '\u0009', // '\t'
4803 'c': '\u000c', // '\f'
4804 'd': '\u000d', // '\r'
4805 'e': '\u000a', // '\n'
4806 'f': '\u00b0', // '°'
4807 'g': '\u00b1', // '±'
4808 'h': '\u2424', // '\u2424' (NL)
4809 'i': '\u000b', // '\v'
4810 'j': '\u2518', // '┘'
4811 'k': '\u2510', // '┐'
4812 'l': '\u250c', // '┌'
4813 'm': '\u2514', // '└'
4814 'n': '\u253c', // '┼'
4815 'o': '\u23ba', // '⎺'
4816 'p': '\u23bb', // '⎻'
4817 'q': '\u2500', // '─'
4818 'r': '\u23bc', // '⎼'
4819 's': '\u23bd', // '⎽'
4820 't': '\u251c', // '├'
4821 'u': '\u2524', // '┤'
4822 'v': '\u2534', // '┴'
4823 'w': '\u252c', // '┬'
4824 'x': '\u2502', // '│'
4825 'y': '\u2264', // '≤'
4826 'z': '\u2265', // '≥'
4827 '{': '\u03c0', // 'π'
4828 '|': '\u2260', // '≠'
4829 '}': '\u00a3', // '£'
4830 '~': '\u00b7' // '·'
4831};
4832
4833Terminal.charsets.UK = null; // (A
4834Terminal.charsets.US = null; // (B (USASCII)
4835Terminal.charsets.Dutch = null; // (4
4836Terminal.charsets.Finnish = null; // (C or (5
4837Terminal.charsets.French = null; // (R
4838Terminal.charsets.FrenchCanadian = null; // (Q
4839Terminal.charsets.German = null; // (K
4840Terminal.charsets.Italian = null; // (Y
4841Terminal.charsets.NorwegianDanish = null; // (E or (6
4842Terminal.charsets.Spanish = null; // (Z
4843Terminal.charsets.Swedish = null; // (H or (7
4844Terminal.charsets.Swiss = null; // (=
4845Terminal.charsets.ISOLatin = null; // /A
fd5be55d 4846
db76868c
PK
4847/**
4848 * Helpers
4849 */
4850
4851function contains(el, arr) {
4852 for (var i = 0; i < arr.length; i += 1) {
4853 if (el === arr[i]) {
4854 return true;
4855 }
4856 }
4857 return false;
4858}
4859
4860function on(el, type, handler, capture) {
4861 if (!Array.isArray(el)) {
4862 el = [el];
4863 }
4864 el.forEach(function (element) {
4865 element.addEventListener(type, handler, capture || false);
4866 });
4867}
4868
4869function off(el, type, handler, capture) {
4870 el.removeEventListener(type, handler, capture || false);
4871}
4872
4873function cancel(ev, force) {
4874 if (!this.cancelEvents && !force) {
4875 return;
4876 }
4877 ev.preventDefault();
4878 ev.stopPropagation();
4879 return false;
4880}
4881
4882function inherits(child, parent) {
4883 function f() {
4884 this.constructor = child;
4885 }
4886 f.prototype = parent.prototype;
4887 child.prototype = new f;
4888}
4889
4890// if bold is broken, we can't
4891// use it in the terminal.
4892function isBoldBroken(document) {
4893 var body = document.getElementsByTagName('body')[0];
4894 var el = document.createElement('span');
4895 el.innerHTML = 'hello world';
4896 body.appendChild(el);
4897 var w1 = el.scrollWidth;
4898 el.style.fontWeight = 'bold';
4899 var w2 = el.scrollWidth;
4900 body.removeChild(el);
4901 return w1 !== w2;
4902}
4903
4904function indexOf(obj, el) {
4905 var i = obj.length;
4906 while (i--) {
4907 if (obj[i] === el) return i;
4908 }
4909 return -1;
4910}
4911
4912function isThirdLevelShift(term, ev) {
4913 var thirdLevelKey =
4914 (term.isMac && ev.altKey && !ev.ctrlKey && !ev.metaKey) ||
4915 (term.isMSWindows && ev.altKey && ev.ctrlKey && !ev.metaKey);
4916
4917 if (ev.type == 'keypress') {
4918 return thirdLevelKey;
4919 }
4920
4921 // Don't invoke for arrows, pageDown, home, backspace, etc. (on non-keypress events)
4922 return thirdLevelKey && (!ev.keyCode || ev.keyCode > 47);
4923}
4924
4925function matchColor(r1, g1, b1) {
4926 var hash = (r1 << 16) | (g1 << 8) | b1;
4927
4928 if (matchColor._cache[hash] != null) {
4929 return matchColor._cache[hash];
4930 }
4931
4932 var ldiff = Infinity
4933 , li = -1
4934 , i = 0
4935 , c
4936 , r2
4937 , g2
4938 , b2
4939 , diff;
4940
4941 for (; i < Terminal.vcolors.length; i++) {
4942 c = Terminal.vcolors[i];
4943 r2 = c[0];
4944 g2 = c[1];
4945 b2 = c[2];
4946
4947 diff = matchColor.distance(r1, g1, b1, r2, g2, b2);
4948
4949 if (diff === 0) {
4950 li = i;
4951 break;
4952 }
4953
4954 if (diff < ldiff) {
4955 ldiff = diff;
4956 li = i;
4957 }
4958 }
4959
4960 return matchColor._cache[hash] = li;
4961}
4962
4963matchColor._cache = {};
4964
4965// http://stackoverflow.com/questions/1633828
4966matchColor.distance = function(r1, g1, b1, r2, g2, b2) {
4967 return Math.pow(30 * (r1 - r2), 2)
4968 + Math.pow(59 * (g1 - g2), 2)
4969 + Math.pow(11 * (b1 - b2), 2);
4970};
4971
4972function each(obj, iter, con) {
4973 if (obj.forEach) return obj.forEach(iter, con);
4974 for (var i = 0; i < obj.length; i++) {
4975 iter.call(con, obj[i], i, obj);
4976 }
4977}
4978
4979function keys(obj) {
4980 if (Object.keys) return Object.keys(obj);
4981 var key, keys = [];
4982 for (key in obj) {
4983 if (Object.prototype.hasOwnProperty.call(obj, key)) {
4984 keys.push(key);
4985 }
4986 }
4987 return keys;
4988}
4989
4990var wcwidth = (function(opts) {
4991 // extracted from https://www.cl.cam.ac.uk/%7Emgk25/ucs/wcwidth.c
4992 // combining characters
4993 var COMBINING = [
4994 [0x0300, 0x036F], [0x0483, 0x0486], [0x0488, 0x0489],
4995 [0x0591, 0x05BD], [0x05BF, 0x05BF], [0x05C1, 0x05C2],
4996 [0x05C4, 0x05C5], [0x05C7, 0x05C7], [0x0600, 0x0603],
4997 [0x0610, 0x0615], [0x064B, 0x065E], [0x0670, 0x0670],
4998 [0x06D6, 0x06E4], [0x06E7, 0x06E8], [0x06EA, 0x06ED],
4999 [0x070F, 0x070F], [0x0711, 0x0711], [0x0730, 0x074A],
5000 [0x07A6, 0x07B0], [0x07EB, 0x07F3], [0x0901, 0x0902],
5001 [0x093C, 0x093C], [0x0941, 0x0948], [0x094D, 0x094D],
5002 [0x0951, 0x0954], [0x0962, 0x0963], [0x0981, 0x0981],
5003 [0x09BC, 0x09BC], [0x09C1, 0x09C4], [0x09CD, 0x09CD],
5004 [0x09E2, 0x09E3], [0x0A01, 0x0A02], [0x0A3C, 0x0A3C],
5005 [0x0A41, 0x0A42], [0x0A47, 0x0A48], [0x0A4B, 0x0A4D],
5006 [0x0A70, 0x0A71], [0x0A81, 0x0A82], [0x0ABC, 0x0ABC],
5007 [0x0AC1, 0x0AC5], [0x0AC7, 0x0AC8], [0x0ACD, 0x0ACD],
5008 [0x0AE2, 0x0AE3], [0x0B01, 0x0B01], [0x0B3C, 0x0B3C],
5009 [0x0B3F, 0x0B3F], [0x0B41, 0x0B43], [0x0B4D, 0x0B4D],
5010 [0x0B56, 0x0B56], [0x0B82, 0x0B82], [0x0BC0, 0x0BC0],
5011 [0x0BCD, 0x0BCD], [0x0C3E, 0x0C40], [0x0C46, 0x0C48],
5012 [0x0C4A, 0x0C4D], [0x0C55, 0x0C56], [0x0CBC, 0x0CBC],
5013 [0x0CBF, 0x0CBF], [0x0CC6, 0x0CC6], [0x0CCC, 0x0CCD],
5014 [0x0CE2, 0x0CE3], [0x0D41, 0x0D43], [0x0D4D, 0x0D4D],
5015 [0x0DCA, 0x0DCA], [0x0DD2, 0x0DD4], [0x0DD6, 0x0DD6],
5016 [0x0E31, 0x0E31], [0x0E34, 0x0E3A], [0x0E47, 0x0E4E],
5017 [0x0EB1, 0x0EB1], [0x0EB4, 0x0EB9], [0x0EBB, 0x0EBC],
5018 [0x0EC8, 0x0ECD], [0x0F18, 0x0F19], [0x0F35, 0x0F35],
5019 [0x0F37, 0x0F37], [0x0F39, 0x0F39], [0x0F71, 0x0F7E],
5020 [0x0F80, 0x0F84], [0x0F86, 0x0F87], [0x0F90, 0x0F97],
5021 [0x0F99, 0x0FBC], [0x0FC6, 0x0FC6], [0x102D, 0x1030],
5022 [0x1032, 0x1032], [0x1036, 0x1037], [0x1039, 0x1039],
5023 [0x1058, 0x1059], [0x1160, 0x11FF], [0x135F, 0x135F],
5024 [0x1712, 0x1714], [0x1732, 0x1734], [0x1752, 0x1753],
5025 [0x1772, 0x1773], [0x17B4, 0x17B5], [0x17B7, 0x17BD],
5026 [0x17C6, 0x17C6], [0x17C9, 0x17D3], [0x17DD, 0x17DD],
5027 [0x180B, 0x180D], [0x18A9, 0x18A9], [0x1920, 0x1922],
5028 [0x1927, 0x1928], [0x1932, 0x1932], [0x1939, 0x193B],
5029 [0x1A17, 0x1A18], [0x1B00, 0x1B03], [0x1B34, 0x1B34],
5030 [0x1B36, 0x1B3A], [0x1B3C, 0x1B3C], [0x1B42, 0x1B42],
5031 [0x1B6B, 0x1B73], [0x1DC0, 0x1DCA], [0x1DFE, 0x1DFF],
5032 [0x200B, 0x200F], [0x202A, 0x202E], [0x2060, 0x2063],
5033 [0x206A, 0x206F], [0x20D0, 0x20EF], [0x302A, 0x302F],
5034 [0x3099, 0x309A], [0xA806, 0xA806], [0xA80B, 0xA80B],
5035 [0xA825, 0xA826], [0xFB1E, 0xFB1E], [0xFE00, 0xFE0F],
5036 [0xFE20, 0xFE23], [0xFEFF, 0xFEFF], [0xFFF9, 0xFFFB],
5037 [0x10A01, 0x10A03], [0x10A05, 0x10A06], [0x10A0C, 0x10A0F],
5038 [0x10A38, 0x10A3A], [0x10A3F, 0x10A3F], [0x1D167, 0x1D169],
5039 [0x1D173, 0x1D182], [0x1D185, 0x1D18B], [0x1D1AA, 0x1D1AD],
5040 [0x1D242, 0x1D244], [0xE0001, 0xE0001], [0xE0020, 0xE007F],
5041 [0xE0100, 0xE01EF]
5042 ];
5043 // binary search
5044 function bisearch(ucs) {
5045 var min = 0;
5046 var max = COMBINING.length - 1;
5047 var mid;
5048 if (ucs < COMBINING[0][0] || ucs > COMBINING[max][1])
5049 return false;
5050 while (max >= min) {
5051 mid = Math.floor((min + max) / 2);
5052 if (ucs > COMBINING[mid][1])
5053 min = mid + 1;
5054 else if (ucs < COMBINING[mid][0])
5055 max = mid - 1;
5056 else
5057 return true;
5058 }
5059 return false;
5060 }
5061 function wcwidth(ucs) {
5062 // test for 8-bit control characters
5063 if (ucs === 0)
5064 return opts.nul;
5065 if (ucs < 32 || (ucs >= 0x7f && ucs < 0xa0))
5066 return opts.control;
5067 // binary search in table of non-spacing characters
5068 if (bisearch(ucs))
5069 return 0;
5070 // if we arrive here, ucs is not a combining or C0/C1 control character
5071 return 1 +
5072 (
5073 ucs >= 0x1100 &&
5074 (
5075 ucs <= 0x115f || // Hangul Jamo init. consonants
5076 ucs == 0x2329 ||
5077 ucs == 0x232a ||
5078 (ucs >= 0x2e80 && ucs <= 0xa4cf && ucs != 0x303f) || // CJK..Yi
5079 (ucs >= 0xac00 && ucs <= 0xd7a3) || // Hangul Syllables
5080 (ucs >= 0xf900 && ucs <= 0xfaff) || // CJK Compat Ideographs
5081 (ucs >= 0xfe10 && ucs <= 0xfe19) || // Vertical forms
5082 (ucs >= 0xfe30 && ucs <= 0xfe6f) || // CJK Compat Forms
5083 (ucs >= 0xff00 && ucs <= 0xff60) || // Fullwidth Forms
5084 (ucs >= 0xffe0 && ucs <= 0xffe6) ||
5085 (ucs >= 0x20000 && ucs <= 0x2fffd) ||
5086 (ucs >= 0x30000 && ucs <= 0x3fffd)
5087 )
5088 );
5089 }
5090 return wcwidth;
5091})({nul: 0, control: 0}); // configurable options
5092
5093/**
5094 * Expose
5095 */
5096
5097Terminal.EventEmitter = EventEmitter;
5098Terminal.CompositionHelper = CompositionHelper;
5099Terminal.Viewport = Viewport;
5100Terminal.inherits = inherits;
5101
5102/**
5103 * Adds an event listener to the terminal.
5104 *
5105 * @param {string} event The name of the event. TODO: Document all event types
5106 * @param {function} callback The function to call when the event is triggered.
5107 */
5108Terminal.on = on;
5109Terminal.off = off;
5110Terminal.cancel = cancel;
8bc844c0 5111
ed1a31d1 5112module.exports = Terminal;