_stage
– C-level helpers for animation of sprites on a stage¶
The _stage
module contains native code to speed-up the `stage
Library
<https://github.com/python-ugame/circuitpython-stage>`_.
Available on these boards
- _stage.render(x0: int, y0: int, x1: int, y1: int, layers: List[Layer], buffer: _typing.WriteableBuffer, display: displayio.Display, scale: int, background: int) None ¶
Render and send to the display a fragment of the screen.
- Paramètres:
x0 (int) – Left edge of the fragment.
y0 (int) – Top edge of the fragment.
x1 (int) – Right edge of the fragment.
y1 (int) – Bottom edge of the fragment.
buffer (WriteableBuffer) – A buffer to use for rendering.
display (Display) – The display to use.
scale (int) – How many times should the image be scaled up.
background (int) – What color to display when nothing is there.
There are also no sanity checks, outside of the basic overflow checking. The caller is responsible for making the passed parameters valid.
This function is intended for internal use in the
stage
library and all the necessary checks are performed there.
- class _stage.Layer(width: int, height: int, graphic: _typing.ReadableBuffer, palette: _typing.ReadableBuffer, grid: _typing.ReadableBuffer)¶
Keep information about a single layer of graphics
Keep internal information about a layer of graphics (either a
Grid
or aSprite
) in a format suitable for fast rendering with therender()
function.- Paramètres:
width (int) – The width of the grid in tiles, or 1 for sprites.
height (int) – The height of the grid in tiles, or 1 for sprites.
graphic (ReadableBuffer) – The graphic data of the tiles.
palette (ReadableBuffer) – The color palette to be used.
grid (ReadableBuffer) – The contents of the grid map.
This class is intended for internal use in the
stage
library and it shouldn’t be used on its own.
- class _stage.Text(width: int, height: int, font: _typing.ReadableBuffer, palette: _typing.ReadableBuffer, chars: _typing.ReadableBuffer)¶
Keep information about a single grid of text
Keep internal information about a grid of text in a format suitable for fast rendering with the
render()
function.- Paramètres:
width (int) – The width of the grid in tiles, or 1 for sprites.
height (int) – The height of the grid in tiles, or 1 for sprites.
font (ReadableBuffer) – The font data of the characters.
palette (ReadableBuffer) – The color palette to be used.
chars (ReadableBuffer) – The contents of the character grid.
This class is intended for internal use in the
stage
library and it shouldn’t be used on its own.