mirror of
https://github.com/lscharen/iigs-game-engine.git
synced 2024-11-22 11:34:14 +00:00
.. | ||
blitter | ||
Anim.s | ||
Core.s | ||
Defs.s | ||
Graphics.s | ||
GTE.s | ||
Memory.s | ||
README.md | ||
Render.s | ||
RotData.s | ||
Script.s | ||
Sprite2.s | ||
Sprite.s | ||
TileMap.s | ||
Timer.s |
= Rendering Pipeline =
The engine run through the following render loop on every frame
- Lock in any changes to the play field scroll position
- Erase/Redraw dirty sprites into the sprite plane
- If a sprite has moved a different amount than the scroll position, it's marked dirty
- If a sprite was just added on this frame, it's marked dirty
- Any sprite that overlaps a dirty sprite is marked as impacted
- All dirty sprites are erased from the sprite plane
- All dirty and impacted sprites are drawn into the sprite plane
- All of the play field tiles that intersect dirty sprites are marked as dirty with the sprite flag set
- If a scroll map is defined
- Calculate the new regions of the screen that have been scrolled into view
- For each new tile
- Copy the tile descriptor from the tile map into the tile store
- Mark the tile as dirty
- For each dirty tile
- Load the tile descriptor from the tile store
- Dispatch to the appropriate tile renderer
- Clear the tile dirty flag
- If any Masked Overlays are defined
- Turn off shadowing
- Draw the play field on the Overlay rows
- Turn on shadowing
- In top-to-bottom order
- Draw any Maksed Overlays
- Draw any Opaque Overlays
- Draw any play field rows
NOTES
- The dirty tile list has a fast test to see if a tile has already been marked as dirty it is not added twice
- The tile renderer is where data from the sprite plane is combined with tile data to show the sprites on-screen.
- Typically, there will not be Overlays defined and the last step of the renderer is just a single render of all playfield lines at once.