Anybody had the idea of building metasprites during vblank?

This is an archive of a topic from NESdev BBS, taken in mid-October 2019 before a server upgrade.
View original topic
Anybody had the idea of building metasprites during vblank?
by on (#144588)
I'm wondering, is it possible to run a metasprite routine during vblank and still have more than half of vblank time left? Have it directly access oam, instead of shadow oam.
Re: Anybody had the idea of building metasprites during vbla
by on (#144617)
I think the VBL area is too precious to muck around with non-GFX transfer related operations. You'd want a nice VRAM transfer queue that takes as little code as possible to minimize code execution related "bandwidth loss".
You got no flat access to the OAM anyway, so you are gonna spend a lot of time poking it through the ports...
Re: Anybody had the idea of building metasprites during vbla
by on (#144626)
Not to mention how much the timing would vary depending on the amount of active objects, so it would be really tough to manage the available time.