On this page:
ubuf
make-ubuf
clip-ubuf
move-ubuf
unclip-ubuf
ubuf-size
8.16.0.4

3 Universal Buffer Struct🔗ℹ

Dominik Pantůček <dominik.pantucek@trustica.cz>

 (require tui/ubuf/ubuf-struct) package: tui-ubuf

This module provides the universal buffer struct and its constructors.

struct

(struct ubuf (stride
    rows
    cells
    outbuf
    org-x
    org-y
    clip-x
    clip-y
    clip-w
    clip-h))
  stride : exact-positive-integer?
  rows : exact-positive-integer?
  cells : fxvector?
  outbuf : bytes?
  org-x : fixnum?
  org-y : fixnum?
  clip-x : exact-nonnegative-integer?
  clip-y : exact-nonnegative-integer?
  clip-w : exact-nonnegative-integer?
  clip-h : exact-nonnegative-integer?
Represents the universal terminal buffer.

The following illustration shows the various fields of the buffer with org-x=2, org-y=1, clip-x=5, clip-y=3, clip-w=10 and clip-h=4.

image

The stride is the number of character cell columns and the rows represents the number of character cell lines of the whole buffer.

The cells contains all the attributes and characters for all cells in one fxvector?.

The output is a bytes? for constructing the output bytes before being sent to output port.

The relative coordinates of the origin are stored in the org-x and org-y fields.

The clipping rectangle starts at clip-x and clip-y with width in clip-w and height in clip-h fields.

procedure

(make-ubuf w h)  ubuf?

  w : exact-nonnegative-integer?
  h : exact-nonnegative-integer?
Creates new ubuf? of given size w x h.

procedure

(clip-ubuf ub x y w h how)  ubuf?

  ub : ubuf?
  x : fixnum?
  y : fixnum?
  w : exact-nonnegative-integer?
  h : exact-nonnegative-integer?
  how : (or/c 'origin 'clip 'absolute)
Creates a new universal terminal buffer backed by region of an existing one.

If how is 'origin the origin coordinates are added to given new clip point given in x and y arguments. For 'clip the clip origin is used and for 'absolute the underlying buffer’s top-left corner is used.

procedure

(move-ubuf ub x y)  ubuf?

  ub : ubuf?
  x : fixnum?
  y : fixnum?
Creates a new universal terminal buffer backed by an existing one with origin translated by given x and y.

procedure

(unclip-ubuf ub)  ubuf?

  ub : ubuf?
Returns a new universal terminal buffer that spans the original one without any clipping and translation.

Returns the size of given ub as two values.