On this page:
ubuf-putchar!
ubuf-update-cell!
pack-ubuf-cell-flags
define-from-ubuf
8.16.0.4

4 Single Cell Handling🔗ℹ

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

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

This module encapsulates the low-level handling of single cell handling with respect to drawing a character to the buffer.

procedure

(ubuf-putchar! ub    
  x0    
  y0    
  [#:char char    
  #:fg fg    
  #:bg bg    
  #:bold bold    
  #:underline underline    
  #:italic italic    
  #:blink blink    
  #:update-dirty update-dirty?])  void?
  ub : ubuf
  x0 : fixnum?
  y0 : fixnum?
  char : char? = #\space
  fg : exact-nonnegative-integer? = 7
  bg : exact-nonnegative-integer? = 0
  bold : boolean? = #f
  underline : (or/c #f 'single 'double) = #f
  italic : boolean? = #f
  blink : (or/c #f 'slow 'fast) = #f
  update-dirty? : boolean? = #t
Puts a character into ub at specified position using given attributes colors. By if update-dirty? is #t it sets modified cell’s dirty bit if the target cell was modified.

The character char can be one or two cells wide and this information is passed on transparently into the underlying cell attributes. If the character is two cells wide, it obscures the next character to the right on the same row if printed onto a terminal.

Both foreground fg and background bg colors can be either indexed or truecolor. See the color support module for details.

The bold and italic attributes can either be #f or #t - disabling or enabling given visual variant.

The underline attribute can be one of #f, 'single or 'double.

The blink attribute can be one of #f, 'slow or 'fast.

procedure

(ubuf-update-cell! cells    
  idx    
  char    
  fg    
  bg    
  flags    
  update-dirty?)  void?
  cells : vector?
  idx : exact-nonnegative-integer?
  char : char?
  fg : fixnum?
  bg : fixnum?
  flags : fixnum?
  update-dirty? : boolean?
Updates cell starting at index idx of the cells vector. If char differs to what is in the cells, it gets updated. The same applies for fg and bg colors and the attributes flags.

If update-dirty? is #t, then this procedure sets the tcf-dirty-true in the flags if anything changed.

procedure

(pack-ubuf-cell-flags bold    
  underline    
  italic    
  blink    
  wide?)  fixnum?
  bold : boolean?
  underline : (or/c #f 'single 'double)
  italic : boolean?
  blink : (or/c #f 'slow 'fast)
  wide? : boolean?
Convenience procedure to pack user interface attributes’ values into a single flags value.

syntax

(define-from-ubuf ub x y maybe-binding ...)

 
maybe-binding = 
  | #:char char-id
  | #:fg fg-id
  | #:bg bg-id
  | #:flags flags-id
  | #:bold bold-id
  | #:underline underline-id
  | #:italic italic-id
  | #:blink blink-id
  | #:dirty dirty-id
  | #:wide wide-id
 
  ub : ubuf?
  x : fixnum?
  y : fixnum?
  char-id : identifier?
  fg-id : identifier?
  bg-id : identifier?
  flags-id : identifier?
  bold-id : identifier?
  underline-id : identifier?
  italic-id : identifier?
  blink-id : identifier?
  dirty-id : identifier?
  wide-id : identifier?
A special form for defining any attributes of any cell in the buffer as new binding. It can be seen as a reverse operation to ubuf-putchar!.

This example retrieves a character at position (1,1) from buffer ub and stores it in a binding ch:

(define-from-ubuf ub 1 1 #:char ch)

The #:char binding binds either a valid char? or #f to the identifier provided. For all bindings, if given coordinates are out of bounds, #f is supplied as value.

The #:fg, #:bg and #:flags all return fixnum? value of given cell attribute.

The #:bold, #:italic, #:dirty and #:wide all return boolean? value.

The #:underline returns one of #f, 'single or 'double.

The #:blink returns one of #f, 'slow or 'fast.