SMW-Editor / smw-editor

SMW Editor – a bundle of tools for SMW romhacking. Work in progress.
https://smw-editor.github.io/
MIT License
66 stars 4 forks source link

Map16 Tiles #29

Closed Adanos020 closed 1 year ago

Adanos020 commented 2 years ago

This PR introduces parsing and displaying Map16 tiles which are the building blocks of Objects out of which levels in SMW are built.

So far, most tiles are correctly assembled from tileset data:

image

However, most of it looks a bit weird. For comparison, here's Lunar Magic's Map16 viewer:

image

As you can see, our Map16 viewer maps most of the colours incorrectly and doesn't properly support animated tiles. That's what we'll be focusing on in the next commits to this PR.

Adanos020 commented 2 years ago

Colours are fixed for most tiles. Berries and animated blocks are still broken.

image

Adanos020 commented 2 years ago

Tiles with animated colours are displayed correctly!

animated_colors

Adanos020 commented 1 year ago

I'll get this merged and eventually get back to work on animations in a separate PR.