402 lines
18 KiB
C
402 lines
18 KiB
C
/*
|
|
* This file is part of the Micro Python project, http://micropython.org/
|
|
*
|
|
* The MIT License (MIT)
|
|
*
|
|
* Copyright (c) 2018 Scott Shawcroft for Adafruit Industries
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
* in the Software without restriction, including without limitation the rights
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
* furnished to do so, subject to the following conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be included in
|
|
* all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
* THE SOFTWARE.
|
|
*/
|
|
|
|
#include "shared-bindings/displayio/TileGrid.h"
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "lib/utils/context_manager_helpers.h"
|
|
#include "py/binary.h"
|
|
#include "py/objproperty.h"
|
|
#include "py/objtype.h"
|
|
#include "py/runtime.h"
|
|
#include "shared-bindings/displayio/Bitmap.h"
|
|
#include "shared-bindings/displayio/ColorConverter.h"
|
|
#include "shared-bindings/displayio/OnDiskBitmap.h"
|
|
#include "shared-bindings/displayio/Palette.h"
|
|
#include "shared-bindings/displayio/Shape.h"
|
|
#include "supervisor/shared/translate.h"
|
|
|
|
//| class TileGrid:
|
|
//| """A grid of tiles sourced out of one bitmap
|
|
//|
|
|
//| Position a grid of tiles sourced from a bitmap and pixel_shader combination. Multiple grids
|
|
//| can share bitmaps and pixel shaders.
|
|
//|
|
|
//| A single tile grid is also known as a Sprite."""
|
|
//|
|
|
//| def __init__(self, bitmap: Bitmap, *, pixel_shader: Union[ColorConverter, Palette], width: int = 1, height: int = 1, tile_width: Optional[int] = None, tile_height: Optional[int] = None, default_tile: int = 0, x: int = 0, y: int = 0) -> None:
|
|
//| """Create a TileGrid object. The bitmap is source for 2d pixels. The pixel_shader is used to
|
|
//| convert the value and its location to a display native pixel color. This may be a simple color
|
|
//| palette lookup, a gradient, a pattern or a color transformer.
|
|
//|
|
|
//| tile_width and tile_height match the height of the bitmap by default.
|
|
//|
|
|
//| :param Bitmap bitmap: The bitmap storing one or more tiles.
|
|
//| :param ColorConverter or Palette pixel_shader: The pixel shader that produces colors from values
|
|
//| :param int width: Width of the grid in tiles.
|
|
//| :param int height: Height of the grid in tiles.
|
|
//| :param int tile_width: Width of a single tile in pixels. Defaults to the full Bitmap and must evenly divide into the Bitmap's dimensions.
|
|
//| :param int tile_height: Height of a single tile in pixels. Defaults to the full Bitmap and must evenly divide into the Bitmap's dimensions.
|
|
//| :param int default_tile: Default tile index to show.
|
|
//| :param int x: Initial x position of the left edge within the parent.
|
|
//| :param int y: Initial y position of the top edge within the parent."""
|
|
//|
|
|
STATIC mp_obj_t displayio_tilegrid_make_new(const mp_obj_type_t *type, size_t n_args, const mp_obj_t *pos_args, mp_map_t *kw_args) {
|
|
enum { ARG_bitmap, ARG_pixel_shader, ARG_width, ARG_height, ARG_tile_width, ARG_tile_height, ARG_default_tile, ARG_x, ARG_y };
|
|
static const mp_arg_t allowed_args[] = {
|
|
{ MP_QSTR_bitmap, MP_ARG_REQUIRED | MP_ARG_OBJ },
|
|
{ MP_QSTR_pixel_shader, MP_ARG_OBJ | MP_ARG_KW_ONLY | MP_ARG_REQUIRED },
|
|
{ MP_QSTR_width, MP_ARG_INT | MP_ARG_KW_ONLY, {.u_int = 1} },
|
|
{ MP_QSTR_height, MP_ARG_INT | MP_ARG_KW_ONLY, {.u_int = 1} },
|
|
{ MP_QSTR_tile_width, MP_ARG_INT | MP_ARG_KW_ONLY, {.u_int = 0} },
|
|
{ MP_QSTR_tile_height, MP_ARG_INT | MP_ARG_KW_ONLY, {.u_int = 0} },
|
|
{ MP_QSTR_default_tile, MP_ARG_INT | MP_ARG_KW_ONLY, {.u_int = 0} },
|
|
{ MP_QSTR_x, MP_ARG_INT | MP_ARG_KW_ONLY, {.u_int = 0} },
|
|
{ MP_QSTR_y, MP_ARG_INT | MP_ARG_KW_ONLY, {.u_int = 0} },
|
|
};
|
|
mp_arg_val_t args[MP_ARRAY_SIZE(allowed_args)];
|
|
mp_arg_parse_all(n_args, pos_args, kw_args, MP_ARRAY_SIZE(allowed_args), allowed_args, args);
|
|
|
|
mp_obj_t bitmap = args[ARG_bitmap].u_obj;
|
|
|
|
uint16_t bitmap_width;
|
|
uint16_t bitmap_height;
|
|
mp_obj_t native = mp_instance_cast_to_native_base(bitmap, &displayio_shape_type);
|
|
if (native != MP_OBJ_NULL) {
|
|
displayio_shape_t* bmp = MP_OBJ_TO_PTR(native);
|
|
bitmap_width = bmp->width;
|
|
bitmap_height = bmp->height;
|
|
} else if (MP_OBJ_IS_TYPE(bitmap, &displayio_bitmap_type)) {
|
|
displayio_bitmap_t* bmp = MP_OBJ_TO_PTR(bitmap);
|
|
native = bitmap;
|
|
bitmap_width = bmp->width;
|
|
bitmap_height = bmp->height;
|
|
} else if (MP_OBJ_IS_TYPE(bitmap, &displayio_ondiskbitmap_type)) {
|
|
displayio_ondiskbitmap_t* bmp = MP_OBJ_TO_PTR(bitmap);
|
|
native = bitmap;
|
|
bitmap_width = bmp->width;
|
|
bitmap_height = bmp->height;
|
|
} else {
|
|
mp_raise_TypeError_varg(translate("unsupported %q type"), MP_QSTR_bitmap);
|
|
}
|
|
mp_obj_t pixel_shader = args[ARG_pixel_shader].u_obj;
|
|
if (!MP_OBJ_IS_TYPE(pixel_shader, &displayio_colorconverter_type) &&
|
|
!MP_OBJ_IS_TYPE(pixel_shader, &displayio_palette_type)) {
|
|
mp_raise_TypeError_varg(translate("unsupported %q type"), MP_QSTR_pixel_shader);
|
|
}
|
|
uint16_t tile_width = args[ARG_tile_width].u_int;
|
|
if (tile_width == 0) {
|
|
tile_width = bitmap_width;
|
|
}
|
|
uint16_t tile_height = args[ARG_tile_height].u_int;
|
|
if (tile_height == 0) {
|
|
tile_height = bitmap_height;
|
|
}
|
|
if (bitmap_width % tile_width != 0) {
|
|
mp_raise_ValueError(translate("Tile width must exactly divide bitmap width"));
|
|
}
|
|
if (bitmap_height % tile_height != 0) {
|
|
mp_raise_ValueError(translate("Tile height must exactly divide bitmap height"));
|
|
}
|
|
|
|
int16_t x = args[ARG_x].u_int;
|
|
int16_t y = args[ARG_y].u_int;
|
|
|
|
displayio_tilegrid_t *self = m_new_obj(displayio_tilegrid_t);
|
|
self->base.type = &displayio_tilegrid_type;
|
|
common_hal_displayio_tilegrid_construct(self, native,
|
|
bitmap_width / tile_width, bitmap_height / tile_height,
|
|
pixel_shader, args[ARG_width].u_int, args[ARG_height].u_int,
|
|
tile_width, tile_height, x, y, args[ARG_default_tile].u_int);
|
|
return MP_OBJ_FROM_PTR(self);
|
|
}
|
|
|
|
// Helper to ensure we have the native super class instead of a subclass.
|
|
static displayio_tilegrid_t* native_tilegrid(mp_obj_t tilegrid_obj) {
|
|
mp_obj_t native_tilegrid = mp_instance_cast_to_native_base(tilegrid_obj, &displayio_tilegrid_type);
|
|
mp_obj_assert_native_inited(native_tilegrid);
|
|
return MP_OBJ_TO_PTR(native_tilegrid);
|
|
}
|
|
//| hidden: bool
|
|
//| """True when the TileGrid is hidden. This may be False even when a part of a hidden Group."""
|
|
//|
|
|
STATIC mp_obj_t displayio_tilegrid_obj_get_hidden(mp_obj_t self_in) {
|
|
displayio_tilegrid_t *self = native_tilegrid(self_in);
|
|
return mp_obj_new_bool(common_hal_displayio_tilegrid_get_hidden(self));
|
|
}
|
|
MP_DEFINE_CONST_FUN_OBJ_1(displayio_tilegrid_get_hidden_obj, displayio_tilegrid_obj_get_hidden);
|
|
|
|
STATIC mp_obj_t displayio_tilegrid_obj_set_hidden(mp_obj_t self_in, mp_obj_t hidden_obj) {
|
|
displayio_tilegrid_t *self = native_tilegrid(self_in);
|
|
|
|
common_hal_displayio_tilegrid_set_hidden(self, mp_obj_is_true(hidden_obj));
|
|
return mp_const_none;
|
|
}
|
|
MP_DEFINE_CONST_FUN_OBJ_2(displayio_tilegrid_set_hidden_obj, displayio_tilegrid_obj_set_hidden);
|
|
|
|
const mp_obj_property_t displayio_tilegrid_hidden_obj = {
|
|
.base.type = &mp_type_property,
|
|
.proxy = {(mp_obj_t)&displayio_tilegrid_get_hidden_obj,
|
|
(mp_obj_t)&displayio_tilegrid_set_hidden_obj,
|
|
(mp_obj_t)&mp_const_none_obj},
|
|
};
|
|
|
|
//| x: int
|
|
//| """X position of the left edge in the parent."""
|
|
//|
|
|
STATIC mp_obj_t displayio_tilegrid_obj_get_x(mp_obj_t self_in) {
|
|
displayio_tilegrid_t *self = native_tilegrid(self_in);
|
|
return MP_OBJ_NEW_SMALL_INT(common_hal_displayio_tilegrid_get_x(self));
|
|
}
|
|
MP_DEFINE_CONST_FUN_OBJ_1(displayio_tilegrid_get_x_obj, displayio_tilegrid_obj_get_x);
|
|
|
|
STATIC mp_obj_t displayio_tilegrid_obj_set_x(mp_obj_t self_in, mp_obj_t x_obj) {
|
|
displayio_tilegrid_t *self = native_tilegrid(self_in);
|
|
|
|
mp_int_t x = mp_obj_get_int(x_obj);
|
|
common_hal_displayio_tilegrid_set_x(self, x);
|
|
return mp_const_none;
|
|
}
|
|
MP_DEFINE_CONST_FUN_OBJ_2(displayio_tilegrid_set_x_obj, displayio_tilegrid_obj_set_x);
|
|
|
|
const mp_obj_property_t displayio_tilegrid_x_obj = {
|
|
.base.type = &mp_type_property,
|
|
.proxy = {(mp_obj_t)&displayio_tilegrid_get_x_obj,
|
|
(mp_obj_t)&displayio_tilegrid_set_x_obj,
|
|
(mp_obj_t)&mp_const_none_obj},
|
|
};
|
|
|
|
//| y: int
|
|
//| """Y position of the top edge in the parent."""
|
|
//|
|
|
STATIC mp_obj_t displayio_tilegrid_obj_get_y(mp_obj_t self_in) {
|
|
displayio_tilegrid_t *self = native_tilegrid(self_in);
|
|
return MP_OBJ_NEW_SMALL_INT(common_hal_displayio_tilegrid_get_y(self));
|
|
}
|
|
MP_DEFINE_CONST_FUN_OBJ_1(displayio_tilegrid_get_y_obj, displayio_tilegrid_obj_get_y);
|
|
|
|
STATIC mp_obj_t displayio_tilegrid_obj_set_y(mp_obj_t self_in, mp_obj_t y_obj) {
|
|
displayio_tilegrid_t *self = native_tilegrid(self_in);
|
|
|
|
mp_int_t y = mp_obj_get_int(y_obj);
|
|
common_hal_displayio_tilegrid_set_y(self, y);
|
|
return mp_const_none;
|
|
}
|
|
MP_DEFINE_CONST_FUN_OBJ_2(displayio_tilegrid_set_y_obj, displayio_tilegrid_obj_set_y);
|
|
|
|
const mp_obj_property_t displayio_tilegrid_y_obj = {
|
|
.base.type = &mp_type_property,
|
|
.proxy = {(mp_obj_t)&displayio_tilegrid_get_y_obj,
|
|
(mp_obj_t)&displayio_tilegrid_set_y_obj,
|
|
(mp_obj_t)&mp_const_none_obj},
|
|
};
|
|
|
|
//| flip_x: bool
|
|
//| """If true, the left edge rendered will be the right edge of the right-most tile."""
|
|
//|
|
|
STATIC mp_obj_t displayio_tilegrid_obj_get_flip_x(mp_obj_t self_in) {
|
|
displayio_tilegrid_t *self = native_tilegrid(self_in);
|
|
return mp_obj_new_bool(common_hal_displayio_tilegrid_get_flip_x(self));
|
|
}
|
|
MP_DEFINE_CONST_FUN_OBJ_1(displayio_tilegrid_get_flip_x_obj, displayio_tilegrid_obj_get_flip_x);
|
|
|
|
STATIC mp_obj_t displayio_tilegrid_obj_set_flip_x(mp_obj_t self_in, mp_obj_t flip_x_obj) {
|
|
displayio_tilegrid_t *self = native_tilegrid(self_in);
|
|
|
|
common_hal_displayio_tilegrid_set_flip_x(self, mp_obj_is_true(flip_x_obj));
|
|
return mp_const_none;
|
|
}
|
|
MP_DEFINE_CONST_FUN_OBJ_2(displayio_tilegrid_set_flip_x_obj, displayio_tilegrid_obj_set_flip_x);
|
|
|
|
const mp_obj_property_t displayio_tilegrid_flip_x_obj = {
|
|
.base.type = &mp_type_property,
|
|
.proxy = {(mp_obj_t)&displayio_tilegrid_get_flip_x_obj,
|
|
(mp_obj_t)&displayio_tilegrid_set_flip_x_obj,
|
|
(mp_obj_t)&mp_const_none_obj},
|
|
};
|
|
|
|
//| flip_y: bool
|
|
//| """If true, the top edge rendered will be the bottom edge of the bottom-most tile."""
|
|
//|
|
|
STATIC mp_obj_t displayio_tilegrid_obj_get_flip_y(mp_obj_t self_in) {
|
|
displayio_tilegrid_t *self = native_tilegrid(self_in);
|
|
return mp_obj_new_bool(common_hal_displayio_tilegrid_get_flip_y(self));
|
|
}
|
|
MP_DEFINE_CONST_FUN_OBJ_1(displayio_tilegrid_get_flip_y_obj, displayio_tilegrid_obj_get_flip_y);
|
|
|
|
STATIC mp_obj_t displayio_tilegrid_obj_set_flip_y(mp_obj_t self_in, mp_obj_t flip_y_obj) {
|
|
displayio_tilegrid_t *self = native_tilegrid(self_in);
|
|
|
|
common_hal_displayio_tilegrid_set_flip_y(self, mp_obj_is_true(flip_y_obj));
|
|
return mp_const_none;
|
|
}
|
|
MP_DEFINE_CONST_FUN_OBJ_2(displayio_tilegrid_set_flip_y_obj, displayio_tilegrid_obj_set_flip_y);
|
|
|
|
const mp_obj_property_t displayio_tilegrid_flip_y_obj = {
|
|
.base.type = &mp_type_property,
|
|
.proxy = {(mp_obj_t)&displayio_tilegrid_get_flip_y_obj,
|
|
(mp_obj_t)&displayio_tilegrid_set_flip_y_obj,
|
|
(mp_obj_t)&mp_const_none_obj},
|
|
};
|
|
|
|
|
|
//| transpose_xy: bool
|
|
//| """If true, the TileGrid's axis will be swapped. When combined with mirroring, any 90 degree
|
|
//| rotation can be achieved along with the corresponding mirrored version."""
|
|
//|
|
|
STATIC mp_obj_t displayio_tilegrid_obj_get_transpose_xy(mp_obj_t self_in) {
|
|
displayio_tilegrid_t *self = native_tilegrid(self_in);
|
|
return mp_obj_new_bool(common_hal_displayio_tilegrid_get_transpose_xy(self));
|
|
}
|
|
MP_DEFINE_CONST_FUN_OBJ_1(displayio_tilegrid_get_transpose_xy_obj, displayio_tilegrid_obj_get_transpose_xy);
|
|
|
|
STATIC mp_obj_t displayio_tilegrid_obj_set_transpose_xy(mp_obj_t self_in, mp_obj_t transpose_xy_obj) {
|
|
displayio_tilegrid_t *self = native_tilegrid(self_in);
|
|
|
|
common_hal_displayio_tilegrid_set_transpose_xy(self, mp_obj_is_true(transpose_xy_obj));
|
|
return mp_const_none;
|
|
}
|
|
MP_DEFINE_CONST_FUN_OBJ_2(displayio_tilegrid_set_transpose_xy_obj, displayio_tilegrid_obj_set_transpose_xy);
|
|
|
|
const mp_obj_property_t displayio_tilegrid_transpose_xy_obj = {
|
|
.base.type = &mp_type_property,
|
|
.proxy = {(mp_obj_t)&displayio_tilegrid_get_transpose_xy_obj,
|
|
(mp_obj_t)&displayio_tilegrid_set_transpose_xy_obj,
|
|
(mp_obj_t)&mp_const_none_obj},
|
|
};
|
|
|
|
//| pixel_shader: Union[ColorConverter, Palette]
|
|
//| """The pixel shader of the tilegrid."""
|
|
//|
|
|
STATIC mp_obj_t displayio_tilegrid_obj_get_pixel_shader(mp_obj_t self_in) {
|
|
displayio_tilegrid_t *self = native_tilegrid(self_in);
|
|
return common_hal_displayio_tilegrid_get_pixel_shader(self);
|
|
}
|
|
MP_DEFINE_CONST_FUN_OBJ_1(displayio_tilegrid_get_pixel_shader_obj, displayio_tilegrid_obj_get_pixel_shader);
|
|
|
|
STATIC mp_obj_t displayio_tilegrid_obj_set_pixel_shader(mp_obj_t self_in, mp_obj_t pixel_shader) {
|
|
displayio_tilegrid_t *self = native_tilegrid(self_in);
|
|
if (!MP_OBJ_IS_TYPE(pixel_shader, &displayio_palette_type) && !MP_OBJ_IS_TYPE(pixel_shader, &displayio_colorconverter_type)) {
|
|
mp_raise_TypeError(translate("pixel_shader must be displayio.Palette or displayio.ColorConverter"));
|
|
}
|
|
|
|
common_hal_displayio_tilegrid_set_pixel_shader(self, pixel_shader);
|
|
|
|
return mp_const_none;
|
|
}
|
|
MP_DEFINE_CONST_FUN_OBJ_2(displayio_tilegrid_set_pixel_shader_obj, displayio_tilegrid_obj_set_pixel_shader);
|
|
|
|
const mp_obj_property_t displayio_tilegrid_pixel_shader_obj = {
|
|
.base.type = &mp_type_property,
|
|
.proxy = {(mp_obj_t)&displayio_tilegrid_get_pixel_shader_obj,
|
|
(mp_obj_t)&displayio_tilegrid_set_pixel_shader_obj,
|
|
(mp_obj_t)&mp_const_none_obj},
|
|
};
|
|
|
|
//| def __getitem__(self, index: Union[Tuple[int, int], int]) -> int:
|
|
//| """Returns the tile index at the given index. The index can either be an x,y tuple or an int equal
|
|
//| to ``y * width + x``.
|
|
//|
|
|
//| This allows you to::
|
|
//|
|
|
//| print(grid[0])"""
|
|
//| ...
|
|
//|
|
|
//| def __setitem__(self, index: Union[Tuple[int, int], int], value: int) -> None:
|
|
//| """Sets the tile index at the given index. The index can either be an x,y tuple or an int equal
|
|
//| to ``y * width + x``.
|
|
//|
|
|
//| This allows you to::
|
|
//|
|
|
//| grid[0] = 10
|
|
//|
|
|
//| or::
|
|
//|
|
|
//| grid[0,0] = 10"""
|
|
//| ...
|
|
//|
|
|
STATIC mp_obj_t tilegrid_subscr(mp_obj_t self_in, mp_obj_t index_obj, mp_obj_t value_obj) {
|
|
displayio_tilegrid_t *self = native_tilegrid(self_in);
|
|
|
|
|
|
if (MP_OBJ_IS_TYPE(index_obj, &mp_type_slice)) {
|
|
mp_raise_NotImplementedError(translate("Slices not supported"));
|
|
} else {
|
|
uint16_t x = 0;
|
|
uint16_t y = 0;
|
|
if (MP_OBJ_IS_SMALL_INT(index_obj)) {
|
|
mp_int_t i = MP_OBJ_SMALL_INT_VALUE(index_obj);
|
|
uint16_t width = common_hal_displayio_tilegrid_get_width(self);
|
|
x = i % width;
|
|
y = i / width;
|
|
} else {
|
|
mp_obj_t* items;
|
|
mp_obj_get_array_fixed_n(index_obj, 2, &items);
|
|
x = mp_obj_get_int(items[0]);
|
|
y = mp_obj_get_int(items[1]);
|
|
}
|
|
if (x >= common_hal_displayio_tilegrid_get_width(self) ||
|
|
y >= common_hal_displayio_tilegrid_get_height(self)) {
|
|
mp_raise_IndexError(translate("Tile index out of bounds"));
|
|
}
|
|
|
|
if (value_obj == MP_OBJ_SENTINEL) {
|
|
// load
|
|
return MP_OBJ_NEW_SMALL_INT(common_hal_displayio_tilegrid_get_tile(self, x, y));
|
|
} else if (value_obj == mp_const_none) {
|
|
return MP_OBJ_NULL; // op not supported
|
|
} else {
|
|
mp_int_t value = mp_obj_get_int(value_obj);
|
|
if (value < 0 || value > 255) {
|
|
mp_raise_ValueError(translate("Tile value out of bounds"));
|
|
}
|
|
common_hal_displayio_tilegrid_set_tile(self, x, y, value);
|
|
}
|
|
}
|
|
return mp_const_none;
|
|
}
|
|
|
|
STATIC const mp_rom_map_elem_t displayio_tilegrid_locals_dict_table[] = {
|
|
// Properties
|
|
{ MP_ROM_QSTR(MP_QSTR_hidden), MP_ROM_PTR(&displayio_tilegrid_hidden_obj) },
|
|
{ MP_ROM_QSTR(MP_QSTR_x), MP_ROM_PTR(&displayio_tilegrid_x_obj) },
|
|
{ MP_ROM_QSTR(MP_QSTR_y), MP_ROM_PTR(&displayio_tilegrid_y_obj) },
|
|
{ MP_ROM_QSTR(MP_QSTR_flip_x), MP_ROM_PTR(&displayio_tilegrid_flip_x_obj) },
|
|
{ MP_ROM_QSTR(MP_QSTR_flip_y), MP_ROM_PTR(&displayio_tilegrid_flip_y_obj) },
|
|
{ MP_ROM_QSTR(MP_QSTR_transpose_xy), MP_ROM_PTR(&displayio_tilegrid_transpose_xy_obj) },
|
|
{ MP_ROM_QSTR(MP_QSTR_pixel_shader), MP_ROM_PTR(&displayio_tilegrid_pixel_shader_obj) },
|
|
};
|
|
STATIC MP_DEFINE_CONST_DICT(displayio_tilegrid_locals_dict, displayio_tilegrid_locals_dict_table);
|
|
|
|
const mp_obj_type_t displayio_tilegrid_type = {
|
|
{ &mp_type_type },
|
|
.name = MP_QSTR_TileGrid,
|
|
.make_new = displayio_tilegrid_make_new,
|
|
.subscr = tilegrid_subscr,
|
|
.locals_dict = (mp_obj_dict_t*)&displayio_tilegrid_locals_dict,
|
|
};
|