Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix tilegrid.contains for subclasses #10192

Merged
merged 1 commit into from
Mar 28, 2025

Conversation

FoamyGuy
Copy link
Collaborator

Tested successfully on Fruit Jam with the Set card game that I am working on, as well as this more simple reproducer code:

from displayio import TileGrid, Bitmap, Palette

palette = Palette(1)
palette[0] = 0x0

bmp = Bitmap(100, 100, 1)
tg = TileGrid(bitmap=bmp, pixel_shader=palette, tile_width=100, tile_height=100)
print(tg.contains((50, 50, 0)))

class SpecialTileGrid(TileGrid):
    def __init__(self, **kwargs):
        super().__init__(**kwargs)

special_tile_grid = SpecialTileGrid(bitmap=bmp, pixel_shader=palette,tile_width=100, tile_height=100)
print(special_tile_grid.width, special_tile_grid.height)
print(special_tile_grid.contains((50, 50, 0)))

Copy link
Member

@tannewt tannewt left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thank you!

@tannewt tannewt merged commit f108587 into adafruit:9.2.x Mar 28, 2025
538 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants