itch.io Spring Selects Series A
On Sale: GamesAssetsToolsTabletopComics
Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
Tags

Tilengine

2D retro grapics engine with true raster effects for creating 8/16 bit style games · By megamarc

I wish you could use 32bit images

A topic by Dariusz "Darkhog" G. Jagielski created Jul 13, 2018 Views: 600 Replies: 3
Viewing posts 1 to 3
(1 edit)

I'd like support for 32bit images. There are some limitations when using 32bit images, such as not being able to play with palette, but many of raster effects could be achieved even with 32bit images as they depend on changing stuff like scroll value and image scale on each scanline, not playing with palette. I believe having support for 32bit images would make the engine more versatile even if some of the features, like palette shifting would be limited to 8bit assets.

Developer

Hi Dariusz! 32-bit image support would be a nice feature indeed, and I considered it some time ago. The problem is that the entire rendering pipeline is done in 8-bit indexed mode -there are some intermediate buffers to determine visibility and some effects-, and it's just in the last step that the palette color is fetched and set to the final. So it's not possible to feed the input of the pipeline with direct RGBA colors, because they don't fit. There may be a compromise that is 32-bit images would go directly to the framebuffer, bypassing the intermediate steps, but that would result in severely reduced feature set compared to regular 8-bit images, and that's not what people may expect... what do you think?

What sort of limited feature set are we talking about? Anything that deals with palettes is a fair game, I guess since you can't do palette swaps/shifts with ARGB or even RGB images (other than doing graphical equivalent of search and replace I guess, but it's less performant and unneeded).

Also what visibility checks are you doing? If you are doing these to avoid overdraw, you can safely disable those I guess as modern devices are performant enough to handle overdraw in 2D space.

Perhaps if you'd write more about what algorithms stand in the way we could figure ways to change the algorithms involved so they'd work with 32bit images (other than palette shifts, since they'd be too cumbersome to do with 32bit images and should be limited to 8bit assets).

Developer

Release 2.6.0 added support for 24 and 32 bpp png files. However keep in mind that they must have less than 255 unique colors each. Tilengine renderer is designed around 8-bit indexed color images used in pixel art and won't load true color images if they have more than 255 colors.