screen-buffer

0.4.0 • Public • Published

ScreenBuffer ok, travis

A ScreenBuffer represents a visible portion of a terminal in a screen. A ScreenBuffer contains a lot of cells. Each cell contains a character and attributes, such as color and boldness. It also keeps track of cursor position.

Usage in Node.js

var ScreenBuffer = require('screen-buffer')

Usage in Browser

<script src="path/to/screen-buffer.js"></script>
<script src="path/to/diff.js"></script><!-- if you need .diff -->
<script src="path/to/patch.js"></script><!-- if you need .patch -->

Cell Attributes

Currently the attributes is a 21-bit integer. From MSB:

  • 1 bit - inverse video flag
  • 1 bit - underline flag
  • 1 bit - bold flag
  • 9 bits - foreground color (according to xterm-256)
  • 9 bits - background color (according to xterm-256)

There are two special values for colors:

  • 257 - default foreground color
  • 256 - default background color

API

ScreenBuffer.EMPTY_CELL

An empty cell: default background and foreground with space character.

ondirty : function(row) { }

Override this function to be notified when changes are made to the buffer.

cursorX : Number

The X position of the cursor (0 = leftmost)

cursorY : Number

The Y position of the cursor (0 = topmost)

update(y, [ [attr, char], [attr, char], ... ])

Set one line of data in the ScreenBuffer. y is the row in the screen and data array looks like this: [ [attribute, character], ... ]

toString()

Returns the string in the display buffer.

setCursor(x, y)

Sets the cursor position.

cursorX

The X position of the cursor.

cursorY

The Y position of the cursor.

getRows()

Returns the number of rows in the buffer.

getCols(row)

Returns the number of characters in this row.

setRows(rows)

Resizes the number of rows.

setCols(row, cols)

Resizes the number of columns in the specified row.

getCell(row, col)

Returns the cell at (row, col). Returned value is in form of [ attributes, ch ].

setCell(row, col, cell)

Sets the cell at (row, col). A cell is in form of [ attributes, ch ].

resize(rows, cols)

Resizes the screen buffer.

clone()

Returns a clone of the screen buffer.

getRow(row)

Returns a row data array. Don't modify it!

ScreenBuffer Diff and Patch

Sometimes, you may want to stream the content of a screen buffer over the network.

You can use ScreenBuffer.diff and ScreenBuffer.patch for this.

Suppose that you have two ScreenBuffer objects, a and b,

var operations = ScreenBuffer.diff(b, a)

This will compute the operations that needs to be done on b to make its contents equal to a. The returned result is an array of operations, which can be sent over the wire to another user.

At the other side, when they received the operations, they can apply it to their own buffer like this:

ScreenBuffer.patch(b, operations)

ScreenBuffer.diff(source, destination)

Computes the list of operation to be applied on the source to make it match the target.

A returned result will have this structure:

[OPERATION, ...]

An OPERATION represents an operation:

  • ROWS (resize number of rows)
  • [X, Y] (set cursor position)
  • [row, 0, COLUMNS] (resize column)
  • [row, 1, SOURCE ROW INDEX] (copy)
  • [row, column, "TEXT", "COMPRESSED ATTRIBUTE,..."] (draw text)

A COMPRESSED ATTRIBUTE has the form:

  • VALUE
  • VALUE*MULTIPLICITY

ScreenBuffer.patch(screenbuffer, operations)

Applies the operations from the diff array onto the screenbuffer.

Dependents (4)

Package Sidebar

Install

npm i screen-buffer

Weekly Downloads

8

Version

0.4.0

License

MIT

Last publish

Collaborators

  • dtinth