Skip to content
SashaCrofter edited this page Jul 24, 2012 · 3 revisions

dview is CubeOS's windowing system.

Framework

dview.init (LEM1802port, GenericKeyboardPort)

Reserves 32 words of memory on the stack for containing screen object locations, the first of which is a pointer to the currently active screen. Screens are added and removed as a "stack."

returns dview memory location

dview.newScreen ()

Initializes a new screen mapping for the currently running process, adjusts the dview pointers to work with this new screen, and remaps the screen.

returns the screen location

dview.close ()

Closes the latest window for the currently running process, remapping to the one opened before that.

Screen Handling

dview.getLoc (xCoord, yCoord)

Gets the memory location for the current screen at point (xCoord, yCoord).

modifies A, B
returns literal memory location of that point on the current screen

dview.litWrite (x, y, inputPointer)

Copies the null-terminated string from inputPointer to x and y onscreen.

returns the screen location following the written text

dview.write (outputPointer, inputPointer)

Writes ASCII to the current screen using special characters to act as directives (see below.) (This does not perform preprocessing such as translating normal ASCII into those special characters.) Special characters are as follows. returns the screen location following the written text

Color 0x01

Substitutes the first nine bits of every word following this with the first nine bits of this word. syntax 0b ffff bbbb B000 0001, where ffff is the foreground nibble, bbbb is the background nibble, and B is the flashing bit

Tab 0x09

documentation pending (defaults to tab 4) syntax 0x ll 09`` where ll` is the number which the new screen location must be divisible by (for alignment)

New Line 0x0a

Jumps to the beginning of the next line, leaving NUL characters, and resumes writing.

Substitute 0x1a

Substitutes the value following the directive as either a literal value, represented in ASCII, or a pointer to another ASCII string to be copied literally, obeying past color directives, according to the formatting implied by the leftmost 9 bits. syntax 0x ff 1a, where ff are the formatting ASCII code

Formatting ASCII codes

0b0000 0000 m000 0000, where m is the "memory" bit, implying that the next word is a pointer to the actual word to be interpreted

decimal 64 as referring to d; literal
packed string 70 as referring to p; pointer
string 73 as referring to s; pointer
hexidecimal 78 as referring to x; literal

dview.prompt (screenOutputPointer, inputPointer, userTextOutput)

Uses dview.write to write a prompt (from inputPointer) to screenOutputPointer.

returns the screen location following the last user-entered key

Clone this wiki locally