:mod:`_eve` =========== .. py:module:: _eve .. autoapi-nested-parse:: Low-level BridgeTek EVE bindings The `_eve` module provides a class _EVE which contains methods for constructing EVE command buffers and appending basic graphics commands. .. py:class:: _EVE .. py:method:: register(o: object) -> None .. py:method:: flush() -> None Send any queued drawing commands directly to the hardware. :param int width: The width of the grid in tiles, or 1 for sprites. .. py:method:: cc(b: _typing.ReadableBuffer) -> None Append bytes to the command FIFO. :param ~_typing.ReadableBuffer b: The bytes to add .. py:method:: AlphaFunc(func: int, ref: int) -> None Set the alpha test function :param int func: specifies the test function, one of ``NEVER``, ``LESS``, ``LEQUAL``, ``GREATER``, ``GEQUAL``, ``EQUAL``, ``NOTEQUAL``, or ``ALWAYS``. Range 0-7. The initial value is ALWAYS(7) :param int ref: specifies the reference value for the alpha test. Range 0-255. The initial value is 0 These values are part of the graphics context and are saved and restored by :meth:`SaveContext` and :meth:`RestoreContext`. .. py:method:: Begin(prim: int) -> None Begin drawing a graphics primitive :param int prim: graphics primitive. Valid primitives are ``BITMAPS``, ``POINTS``, ``LINES``, ``LINE_STRIP``, ``EDGE_STRIP_R``, ``EDGE_STRIP_L``, ``EDGE_STRIP_A``, ``EDGE_STRIP_B`` and ``RECTS``. .. py:method:: BitmapExtFormat(format: int) -> None Set the bitmap format :param int format: bitmap pixel format. .. py:method:: BitmapHandle(handle: int) -> None Set the bitmap handle :param int handle: bitmap handle. Range 0-31. The initial value is 0 This value is part of the graphics context and is saved and restored by :meth:`SaveContext` and :meth:`RestoreContext`. .. py:method:: BitmapLayoutH(linestride: int, height: int) -> None Set the source bitmap memory format and layout for the current handle. high bits for large bitmaps :param int linestride: high part of bitmap line stride, in bytes. Range 0-7 :param int height: high part of bitmap height, in lines. Range 0-3 .. py:method:: BitmapLayout(format: int, linestride: int, height: int) -> None Set the source bitmap memory format and layout for the current handle :param int format: bitmap pixel format, or GLFORMAT to use BITMAP_EXT_FORMAT instead. Range 0-31 :param int linestride: bitmap line stride, in bytes. Range 0-1023 :param int height: bitmap height, in lines. Range 0-511 .. py:method:: BitmapSizeH(width: int, height: int) -> None Set the screen drawing of bitmaps for the current handle. high bits for large bitmaps :param int width: high part of drawn bitmap width, in pixels. Range 0-3 :param int height: high part of drawn bitmap height, in pixels. Range 0-3 .. py:method:: BitmapSize(filter: int, wrapx: int, wrapy: int, width: int, height: int) -> None Set the screen drawing of bitmaps for the current handle :param int filter: bitmap filtering mode, one of ``NEAREST`` or ``BILINEAR``. Range 0-1 :param int wrapx: bitmap :math:`x` wrap mode, one of ``REPEAT`` or ``BORDER``. Range 0-1 :param int wrapy: bitmap :math:`y` wrap mode, one of ``REPEAT`` or ``BORDER``. Range 0-1 :param int width: drawn bitmap width, in pixels. Range 0-511 :param int height: drawn bitmap height, in pixels. Range 0-511 .. py:method:: BitmapSource(addr: int) -> None Set the source address for bitmap graphics :param int addr: Bitmap start address, pixel-aligned. May be in SRAM or flash. Range 0-16777215 .. py:method:: BitmapSwizzle(r: int, g: int, b: int, a: int) -> None Set the source for the r,g,b and a channels of a bitmap :param int r: red component source channel. Range 0-7 :param int g: green component source channel. Range 0-7 :param int b: blue component source channel. Range 0-7 :param int a: alpha component source channel. Range 0-7 .. py:method:: BitmapTransformA(p: int, v: int) -> None Set the :math:`a` component of the bitmap transform matrix :param int p: precision control: 0 is 8.8, 1 is 1.15. Range 0-1. The initial value is 0 :param int v: The :math:`a` component of the bitmap transform matrix, in signed 8.8 or 1.15 bit fixed-point form. Range 0-131071. The initial value is 256 The initial value is **p** = 0, **v** = 256. This represents the value 1.0. These values are part of the graphics context and are saved and restored by :meth:`SaveContext` and :meth:`RestoreContext`. .. py:method:: BitmapTransformB(p: int, v: int) -> None Set the :math:`b` component of the bitmap transform matrix :param int p: precision control: 0 is 8.8, 1 is 1.15. Range 0-1. The initial value is 0 :param int v: The :math:`b` component of the bitmap transform matrix, in signed 8.8 or 1.15 bit fixed-point form. Range 0-131071. The initial value is 0 The initial value is **p** = 0, **v** = 0. This represents the value 0.0. These values are part of the graphics context and are saved and restored by :meth:`SaveContext` and :meth:`RestoreContext`. .. py:method:: BitmapTransformC(v: int) -> None Set the :math:`c` component of the bitmap transform matrix :param int v: The :math:`c` component of the bitmap transform matrix, in signed 15.8 bit fixed-point form. Range 0-16777215. The initial value is 0 This value is part of the graphics context and is saved and restored by :meth:`SaveContext` and :meth:`RestoreContext`. .. py:method:: BitmapTransformD(p: int, v: int) -> None Set the :math:`d` component of the bitmap transform matrix :param int p: precision control: 0 is 8.8, 1 is 1.15. Range 0-1. The initial value is 0 :param int v: The :math:`d` component of the bitmap transform matrix, in signed 8.8 or 1.15 bit fixed-point form. Range 0-131071. The initial value is 0 The initial value is **p** = 0, **v** = 0. This represents the value 0.0. These values are part of the graphics context and are saved and restored by :meth:`SaveContext` and :meth:`RestoreContext`. .. py:method:: BitmapTransformE(p: int, v: int) -> None Set the :math:`e` component of the bitmap transform matrix :param int p: precision control: 0 is 8.8, 1 is 1.15. Range 0-1. The initial value is 0 :param int v: The :math:`e` component of the bitmap transform matrix, in signed 8.8 or 1.15 bit fixed-point form. Range 0-131071. The initial value is 256 The initial value is **p** = 0, **v** = 256. This represents the value 1.0. These values are part of the graphics context and are saved and restored by :meth:`SaveContext` and :meth:`RestoreContext`. .. py:method:: BitmapTransformF(v: int) -> None Set the :math:`f` component of the bitmap transform matrix :param int v: The :math:`f` component of the bitmap transform matrix, in signed 15.8 bit fixed-point form. Range 0-16777215. The initial value is 0 This value is part of the graphics context and is saved and restored by :meth:`SaveContext` and :meth:`RestoreContext`. .. py:method:: BlendFunc(src: int, dst: int) -> None Set pixel arithmetic :param int src: specifies how the source blending factor is computed. One of ``ZERO``, ``ONE``, ``SRC_ALPHA``, ``DST_ALPHA``, ``ONE_MINUS_SRC_ALPHA`` or ``ONE_MINUS_DST_ALPHA``. Range 0-7. The initial value is SRC_ALPHA(2) :param int dst: specifies how the destination blending factor is computed, one of the same constants as **src**. Range 0-7. The initial value is ONE_MINUS_SRC_ALPHA(4) These values are part of the graphics context and are saved and restored by :meth:`SaveContext` and :meth:`RestoreContext`. .. py:method:: Call(dest: int) -> None Execute a sequence of commands at another location in the display list :param int dest: display list address. Range 0-65535 .. py:method:: Cell(cell: int) -> None Set the bitmap cell number for the vertex2f command :param int cell: bitmap cell number. Range 0-127. The initial value is 0 This value is part of the graphics context and is saved and restored by :meth:`SaveContext` and :meth:`RestoreContext`. .. py:method:: ClearColorA(alpha: int) -> None Set clear value for the alpha channel :param int alpha: alpha value used when the color buffer is cleared. Range 0-255. The initial value is 0 This value is part of the graphics context and is saved and restored by :meth:`SaveContext` and :meth:`RestoreContext`. .. py:method:: ClearColorRGB(red: int, green: int, blue: int) -> None Set clear values for red, green and blue channels :param int red: red value used when the color buffer is cleared. Range 0-255. The initial value is 0 :param int green: green value used when the color buffer is cleared. Range 0-255. The initial value is 0 :param int blue: blue value used when the color buffer is cleared. Range 0-255. The initial value is 0 These values are part of the graphics context and are saved and restored by :meth:`SaveContext` and :meth:`RestoreContext`. .. py:method:: Clear(c: int, s: int, t: int) -> None Clear buffers to preset values :param int c: clear color buffer. Range 0-1 :param int s: clear stencil buffer. Range 0-1 :param int t: clear tag buffer. Range 0-1 .. py:method:: ClearStencil(s: int) -> None Set clear value for the stencil buffer :param int s: value used when the stencil buffer is cleared. Range 0-255. The initial value is 0 This value is part of the graphics context and is saved and restored by :meth:`SaveContext` and :meth:`RestoreContext`. .. py:method:: ClearTag(s: int) -> None Set clear value for the tag buffer :param int s: value used when the tag buffer is cleared. Range 0-255. The initial value is 0 This value is part of the graphics context and is saved and restored by :meth:`SaveContext` and :meth:`RestoreContext`. .. py:method:: ColorA(alpha: int) -> None Set the current color alpha :param int alpha: alpha for the current color. Range 0-255. The initial value is 255 This value is part of the graphics context and is saved and restored by :meth:`SaveContext` and :meth:`RestoreContext`. .. py:method:: ColorMask(r: int, g: int, b: int, a: int) -> None Enable and disable writing of frame buffer color components :param int r: allow updates to the frame buffer red component. Range 0-1. The initial value is 1 :param int g: allow updates to the frame buffer green component. Range 0-1. The initial value is 1 :param int b: allow updates to the frame buffer blue component. Range 0-1. The initial value is 1 :param int a: allow updates to the frame buffer alpha component. Range 0-1. The initial value is 1 These values are part of the graphics context and are saved and restored by :meth:`SaveContext` and :meth:`RestoreContext`. .. py:method:: ColorRGB(red: int, green: int, blue: int) -> None Set the drawing color :param int red: red value for the current color. Range 0-255. The initial value is 255 :param int green: green for the current color. Range 0-255. The initial value is 255 :param int blue: blue for the current color. Range 0-255. The initial value is 255 These values are part of the graphics context and are saved and restored by :meth:`SaveContext` and :meth:`RestoreContext`. .. py:method:: Display() -> None End the display list .. py:method:: End() -> None End drawing a graphics primitive :meth:`Vertex2ii` and :meth:`Vertex2f` calls are ignored until the next :meth:`Begin`. .. py:method:: Jump(dest: int) -> None Execute commands at another location in the display list :param int dest: display list address. Range 0-65535 .. py:method:: Macro(m: int) -> None Execute a single command from a macro register :param int m: macro register to read. Range 0-1 .. py:method:: Nop() -> None No operation .. py:method:: PaletteSource(addr: int) -> None Set the base address of the palette :param int addr: Address in graphics SRAM, 2-byte aligned. Range 0-4194303. The initial value is 0 This value is part of the graphics context and is saved and restored by :meth:`SaveContext` and :meth:`RestoreContext`. .. py:method:: RestoreContext() -> None Restore the current graphics context from the context stack .. py:method:: Return() -> None Return from a previous call command .. py:method:: SaveContext() -> None Push the current graphics context on the context stack .. py:method:: ScissorSize(width: int, height: int) -> None Set the size of the scissor clip rectangle :param int width: The width of the scissor clip rectangle, in pixels. Range 0-4095. The initial value is hsize :param int height: The height of the scissor clip rectangle, in pixels. Range 0-4095. The initial value is 2048 These values are part of the graphics context and are saved and restored by :meth:`SaveContext` and :meth:`RestoreContext`. .. py:method:: ScissorXY(x: int, y: int) -> None Set the top left corner of the scissor clip rectangle :param int x: The :math:`x` coordinate of the scissor clip rectangle, in pixels. Range 0-2047. The initial value is 0 :param int y: The :math:`y` coordinate of the scissor clip rectangle, in pixels. Range 0-2047. The initial value is 0 These values are part of the graphics context and are saved and restored by :meth:`SaveContext` and :meth:`RestoreContext`. .. py:method:: StencilFunc(func: int, ref: int, mask: int) -> None Set function and reference value for stencil testing :param int func: specifies the test function, one of ``NEVER``, ``LESS``, ``LEQUAL``, ``GREATER``, ``GEQUAL``, ``EQUAL``, ``NOTEQUAL``, or ``ALWAYS``. Range 0-7. The initial value is ALWAYS(7) :param int ref: specifies the reference value for the stencil test. Range 0-255. The initial value is 0 :param int mask: specifies a mask that is ANDed with the reference value and the stored stencil value. Range 0-255. The initial value is 255 These values are part of the graphics context and are saved and restored by :meth:`SaveContext` and :meth:`RestoreContext`. .. py:method:: StencilMask(mask: int) -> None Control the writing of individual bits in the stencil planes :param int mask: the mask used to enable writing stencil bits. Range 0-255. The initial value is 255 This value is part of the graphics context and is saved and restored by :meth:`SaveContext` and :meth:`RestoreContext`. .. py:method:: StencilOp(sfail: int, spass: int) -> None Set stencil test actions :param int sfail: specifies the action to take when the stencil test fails, one of ``KEEP``, ``ZERO``, ``REPLACE``, ``INCR``, ``INCR_WRAP``, ``DECR``, ``DECR_WRAP``, and ``INVERT``. Range 0-7. The initial value is KEEP(1) :param int spass: specifies the action to take when the stencil test passes, one of the same constants as **sfail**. Range 0-7. The initial value is KEEP(1) These values are part of the graphics context and are saved and restored by :meth:`SaveContext` and :meth:`RestoreContext`. .. py:method:: TagMask(mask: int) -> None Control the writing of the tag buffer :param int mask: allow updates to the tag buffer. Range 0-1. The initial value is 1 This value is part of the graphics context and is saved and restored by :meth:`SaveContext` and :meth:`RestoreContext`. .. py:method:: Tag(s: int) -> None Set the current tag value :param int s: tag value. Range 0-255. The initial value is 255 This value is part of the graphics context and is saved and restored by :meth:`SaveContext` and :meth:`RestoreContext`. .. py:method:: Vertex2ii(x: int, y: int, handle: int, cell: int) -> None :param int x: x-coordinate in pixels. Range 0-511 :param int y: y-coordinate in pixels. Range 0-511 :param int handle: bitmap handle. Range 0-31 :param int cell: cell number. Range 0-127 This method is an alternative to :meth:`Vertex2f`. .. py:method:: Vertex2f(b: float) -> None Draw a point. :param float x: pixel x-coordinate :param float y: pixel y-coordinate .. py:method:: LineWidth(width: float) -> None Set the width of rasterized lines :param float width: line width in pixels. Range 0-511. The initial value is 1 This value is part of the graphics context and is saved and restored by :meth:`SaveContext` and :meth:`RestoreContext`. .. py:method:: PointSize(size: float) -> None Set the diameter of rasterized points :param float size: point diameter in pixels. Range 0-1023. The initial value is 1 This value is part of the graphics context and is saved and restored by :meth:`SaveContext` and :meth:`RestoreContext`. .. py:method:: VertexTranslateX(x: float) -> None Set the vertex transformation's x translation component :param float x: signed x-coordinate in pixels. Range ±4095. The initial value is 0 This value is part of the graphics context and is saved and restored by :meth:`SaveContext` and :meth:`RestoreContext`. .. py:method:: VertexTranslateY(y: float) -> None Set the vertex transformation's y translation component :param float y: signed y-coordinate in pixels. Range ±4095. The initial value is 0 This value is part of the graphics context and is saved and restored by :meth:`SaveContext` and :meth:`RestoreContext`. .. py:method:: VertexFormat(frac: int) -> None Set the precision of vertex2f coordinates :param int frac: Number of fractional bits in X,Y coordinates, 0-4. Range 0-7. The initial value is 4 This value is part of the graphics context and is saved and restored by :meth:`SaveContext` and :meth:`RestoreContext`. .. py:method:: cmd0(n: int) -> None Append the command word n to the FIFO :param int n: The command code This method is used by the ``eve`` module to efficiently add commands to the FIFO. .. py:method:: cmd(n: int, fmt: str, args: Tuple[str, Ellipsis]) -> None Append a command packet to the FIFO. :param int n: The command code :param str fmt: The command format `struct` layout :param args: The command's arguments :type args: tuple(str, ...) Supported format codes: h, H, i, I. This method is used by the ``eve`` module to efficiently add commands to the FIFO.