84PCSE:BCALLs:47CE

From WikiTI
Revision as of 11:18, 20 October 2013 by FloppusMaximus (Talk | contribs)

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

Synopsis

Hypothesized Official Name: IPoint

BCALL Address: 47CEh

Draw, erase, invert, test, or restore a pixel.

Inputs

Outputs

  • If input A = 3:
    • A = color index (1-15, or 0 for transparent)
    • Zero flag set (Z) if pixel is either white or transparent
  • (A5FCh) = input pixel operation
  • (A59Eh) = input color index
  • (A5BAh) = LCD X coordinate of pixel
  • (A5BCh) = LCD Y coordinate of pixel

Destroys

Comments

This article is missing some information (namely details of "g_style_active" modes). You can help WikiTI by filling in the missing information.


The various pixel operations are somewhat more complicated than they are on the TI-83+/84+, since there are more than two possible states for each pixel.

The operations may be subdivided into "graph" operations (the default, when neither fullScrnDraw nor plotLoc is set) and "non-graph" operations (where one or both of those flags is set.)

A = 0 ("erase" pixel)

Non-graph: The pixel is set to white.

Graph: The pixel is set to transparent (showing the background color or image.)

A = 1 ("draw" pixel)

Non-graph: The pixel is set to (penFGColor).

Graph: The pixel is set to (penFGColor), and the value (penFGColorIndex) is stored in the graph buffer. (You may want to use SetPenFGIndex to set both variables at once.)

A = 2 ("invert" pixel)

Non-graph: If the pixel is currently black, it is set to white (like A = 0); otherwise it is set to the current foregound color (like A = 1.)

Graph: If the pixel is currently transparent, it is set to the current foreground color (like A = 1); otherwise it is set to transparent (like A = 0.)

A = 3 ("test" pixel)

This mode operates on the graph buffer only. A is set to the pixel's color index (zero for transparent), and the zero flag is set if A is either 00h or 0Bh.

A = 4 (restore pixel from graph buffer)

The color index from the graph buffer is converted into an RGB value and drawn to the LCD. If the pixel is transparent, the current background color or image is used instead.