Difference between revisions of "Sega Mega Drive/Sprites"
From Sega Retro
(→Size) |
|||
Line 68: | Line 68: | ||
===Size=== | ===Size=== | ||
+ | Sprites consist of between 1 and 16 tiles, which are arranged in the following ways depending on their size setting: | ||
+ | {| | ||
+ | | Size || 0 || 1 || 2 || 3 || 4 || 5 || 6 || 7 || 8 || 9 || A || B || C || D || E || F | ||
+ | |- | ||
+ | | Pattern | ||
+ | | <pre>0</pre> | ||
+ | | <pre>0 | ||
+ | 1</pre> | ||
+ | | <pre>0 | ||
+ | 1 | ||
+ | 2</pre> | ||
+ | | <pre>0 | ||
+ | 1 | ||
+ | 2 | ||
+ | 3</pre> | ||
+ | | <pre>01</pre> | ||
+ | | <pre>02 | ||
+ | 13</pre> | ||
+ | | <pre>03 | ||
+ | 14 | ||
+ | 25</pre> | ||
+ | | <pre>04 | ||
+ | 15 | ||
+ | 26 | ||
+ | 37</pre> | ||
+ | | <pre>012</pre> | ||
+ | | <pre>024 | ||
+ | 135</pre> | ||
+ | | <pre>036 | ||
+ | 147 | ||
+ | 258</pre> | ||
+ | | <pre>048 | ||
+ | 159 | ||
+ | 26A | ||
+ | 37B</pre> | ||
+ | | <pre>0123</pre> | ||
+ | | <pre>0246 | ||
+ | 1357</pre> | ||
+ | | <pre>0369 | ||
+ | 147A | ||
+ | 258B</pre> | ||
+ | | <pre>048C | ||
+ | 159D | ||
+ | 26AE | ||
+ | 37BF</pre> | ||
+ | |} | ||
[[Category:Sega Mega Drive|Sprites]] | [[Category:Sega Mega Drive|Sprites]] | ||
[[Category:Unofficial documentation]] | [[Category:Unofficial documentation]] |
Revision as of 11:41, 16 June 2018
On the Sega Mega Drive, sprites occupy a layer on top of the background and foreground planes. Each sprite consists of between 1 and 16 tiles arranged in a grid up to 4x4. Tiles are read from the VRAM sequentially, and arranged in the sprite top-to-bottom then left-to-right. They can use a single palette line each, limiting them to 15 colours (plus 1 transparent), though layering sprites can circumvent this limit.
The VDP can display a maximum of:
- in 256 pixel (32 cell) wide mode, 64 ($40) sprites per frame, 16 ($10) sprites per scanline.
- in 320 pixel (40 cell) wide mode, 80 ($50) sprites per frame, 20 ($14) sprites per scanline.
Sprite table
The sprite table is stored in VRAM. It contains a list of all currently displayed sprites, with 8 bytes per sprite in the following format:
- VP: Vertical position.
- HP: Horizontal position.
- HS/VS: Size.
- PR: Priority. 1 = high; 0 = low.
- PL: Palette line.
- VF/HF: Vertical & horizontal flipping. 1 = flipped; 0 = normal.
- GFX: Tile number from VRAM. i.e. VRAM address to read graphics data, divided by $20.
- NEXT: Next sprite number to jump to. Later sprites go on top of earlier ones. The final sprite must jump to 0.
Position
Sprites can be placed in a 512x512 area, with the visible screen starting at the 128,128 position. This diagram shows the NTSC screen in 256 or 320 pixel wide modes in green, with additional PAL resolution in yellow. Sprites in the red area may be partially visible if they are near the edge of the screen. The diagram on the right shows equivalents in interlaced double resolution mode (vertical coordinates are all doubled).
|
|
Size
Sprites consist of between 1 and 16 tiles, which are arranged in the following ways depending on their size setting:
Size | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | A | B | C | D | E | F |
Pattern | 0 |
0 1 |
0 1 2 |
0 1 2 3 |
01 |
02 13 |
03 14 25 |
04 15 26 37 |
012 |
024 135 |
036 147 258 |
048 159 26A 37B |
0123 |
0246 1357 |
0369 147A 258B |
048C 159D 26AE 37BF |