2014-06-14 15:27:55 +00:00
# include "stdafx.h"
# include "PPU.h"
2014-06-14 22:20:56 +00:00
# include "CPU.h"
2014-07-27 00:21:36 +00:00
# include "../Utilities/PNGWriter.h"
2014-06-14 15:27:55 +00:00
2014-06-25 21:30:35 +00:00
PPU * PPU : : Instance = nullptr ;
2014-06-19 21:06:00 +00:00
IVideoDevice * PPU : : VideoDevice = nullptr ;
2014-06-19 02:54:23 +00:00
uint32_t PPU_PALETTE_RGB [ ] = {
2014-06-29 00:25:42 +00:00
0xFF666666 , 0xFF002A88 , 0xFF1412A7 , 0xFF3B00A4 , 0xFF5C007E ,
0xFF6E0040 , 0xFF6C0600 , 0xFF561D00 , 0xFF333500 , 0xFF0B4800 ,
0xFF005200 , 0xFF004F08 , 0xFF00404D , 0xFF000000 , 0xFF000000 ,
0xFF000000 , 0xFFADADAD , 0xFF155FD9 , 0xFF4240FF , 0xFF7527FE ,
0xFFA01ACC , 0xFFB71E7B , 0xFFB53120 , 0xFF994E00 , 0xFF6B6D00 ,
0xFF388700 , 0xFF0C9300 , 0xFF008F32 , 0xFF007C8D , 0xFF000000 ,
0xFF000000 , 0xFF000000 , 0xFFFFFEFF , 0xFF64B0FF , 0xFF9290FF ,
0xFFC676FF , 0xFFF36AFF , 0xFFFE6ECC , 0xFFFE8170 , 0xFFEA9E22 ,
0xFFBCBE00 , 0xFF88D800 , 0xFF5CE430 , 0xFF45E082 , 0xFF48CDDE ,
0xFF4F4F4F , 0xFF000000 , 0xFF000000 , 0xFFFFFEFF , 0xFFC0DFFF ,
0xFFD3D2FF , 0xFFE8C8FF , 0xFFFBC2FF , 0xFFFEC4EA , 0xFFFECCC5 ,
0xFFF7D8A5 , 0xFFE4E594 , 0xFFCFEF96 , 0xFFBDF4AB , 0xFFB3F3CC ,
0xFFB5EBF2 , 0xFFB8B8B8 , 0xFF000000 , 0xFF000000 ,
2014-06-19 02:54:23 +00:00
} ;
2014-06-16 01:45:36 +00:00
PPU : : PPU ( MemoryManager * memoryManager )
2014-06-14 15:27:55 +00:00
{
2014-06-25 21:30:35 +00:00
PPU : : Instance = this ;
2014-06-16 01:45:36 +00:00
_memoryManager = memoryManager ;
2014-06-14 22:20:56 +00:00
_outputBuffer = new uint8_t [ 256 * 240 * 4 ] ;
2014-06-23 17:52:53 +00:00
Reset ( ) ;
2014-06-14 22:20:56 +00:00
}
PPU : : ~ PPU ( )
{
delete [ ] _outputBuffer ;
}
2014-06-23 17:52:53 +00:00
void PPU : : Reset ( )
{
_state = { } ;
_flags = { } ;
_statusFlags = { } ;
_scanline = 0 ;
_cycle = 0 ;
_frameCount = 0 ;
_memoryReadBuffer = 0 ;
memset ( _spriteRAM , 0xFF , 0x100 ) ;
}
2015-07-02 03:17:14 +00:00
PPUDebugState PPU : : GetState ( )
2014-06-14 22:20:56 +00:00
{
2015-07-02 03:17:14 +00:00
PPUDebugState state ;
state . ControlFlags = _flags ;
state . StatusFlags = _statusFlags ;
state . State = _state ;
state . Cycle = _cycle ;
state . Scanline = _scanline ;
return state ;
2014-06-14 15:27:55 +00:00
}
2014-06-22 04:37:45 +00:00
void PPU : : UpdateVideoRamAddr ( )
{
if ( _scanline > = 239 | | ! IsRenderingEnabled ( ) ) {
_state . VideoRamAddr + = _flags . VerticalWrite ? 32 : 1 ;
2014-06-26 20:41:07 +00:00
//Trigger memory read when setting the vram address - needed by MMC3 IRQ counter
//"Should be clocked when A12 changes to 1 via $2007 read/write"
_memoryManager - > ReadVRAM ( _state . VideoRamAddr ) ;
2014-06-22 04:37:45 +00:00
} else {
//"During rendering (on the pre-render line and the visible lines 0-239, provided either background or sprite rendering is enabled), "
//it will update v in an odd way, triggering a coarse X increment and a Y increment simultaneously"
IncHorizontalScrolling ( ) ;
IncVerticalScrolling ( ) ;
}
}
2014-06-16 01:45:36 +00:00
uint8_t PPU : : ReadRAM ( uint16_t addr )
2014-06-14 15:27:55 +00:00
{
2014-06-17 22:16:49 +00:00
uint8_t returnValue ;
2014-06-14 15:27:55 +00:00
switch ( GetRegisterID ( addr ) ) {
case PPURegisters : : Status :
2014-06-17 22:16:49 +00:00
_state . WriteToggle = false ;
_flags . IntensifyBlue = false ;
2014-06-14 22:20:56 +00:00
UpdateStatusFlag ( ) ;
2014-06-14 15:27:55 +00:00
return _state . Status ;
case PPURegisters : : SpriteData :
return _spriteRAM [ _state . SpriteRamAddr ] ;
case PPURegisters : : VideoMemoryData :
2014-06-17 22:16:49 +00:00
returnValue = _memoryReadBuffer ;
2014-06-16 01:45:36 +00:00
_memoryReadBuffer = _memoryManager - > ReadVRAM ( _state . VideoRamAddr ) ;
2014-06-17 22:16:49 +00:00
if ( _state . VideoRamAddr > = 0x3F00 ) {
2014-06-21 02:31:48 +00:00
returnValue = ReadPaletteRAM ( _state . VideoRamAddr ) ;
2014-06-17 22:16:49 +00:00
}
2014-06-21 02:31:48 +00:00
2014-06-22 04:37:45 +00:00
UpdateVideoRamAddr ( ) ;
2014-06-21 02:31:48 +00:00
return returnValue ;
2014-06-17 22:16:49 +00:00
default :
//other registers are meant to be read-only
break ;
2014-06-14 15:27:55 +00:00
}
return 0 ;
}
2014-06-16 01:45:36 +00:00
void PPU : : WriteRAM ( uint16_t addr , uint8_t value )
2014-06-14 15:27:55 +00:00
{
2014-06-14 22:20:56 +00:00
switch ( GetRegisterID ( addr ) ) {
case PPURegisters : : Control :
2014-06-22 04:37:45 +00:00
SetControlRegister ( value ) ;
2014-06-14 22:20:56 +00:00
break ;
2014-06-22 04:37:45 +00:00
case PPURegisters : : Mask :
SetMaskRegister ( value ) ;
2014-06-14 22:20:56 +00:00
break ;
case PPURegisters : : SpriteAddr :
_state . SpriteRamAddr = value ;
break ;
case PPURegisters : : SpriteData :
2014-06-17 22:16:49 +00:00
_spriteRAM [ _state . SpriteRamAddr ] = value ;
2014-06-21 01:48:55 +00:00
_state . SpriteRamAddr = ( _state . SpriteRamAddr + 1 ) % 0x100 ;
2014-06-14 22:20:56 +00:00
break ;
case PPURegisters : : ScrollOffsets :
2014-06-21 01:48:55 +00:00
if ( _state . WriteToggle ) {
2014-06-19 02:54:23 +00:00
_state . TmpVideoRamAddr = ( _state . TmpVideoRamAddr & ~ 0x73E0 ) | ( ( value & 0xF8 ) < < 2 ) | ( ( value & 0x07 ) < < 12 ) ;
2014-06-17 22:16:49 +00:00
} else {
_state . XScroll = value & 0x07 ;
2014-06-19 02:54:23 +00:00
_state . TmpVideoRamAddr = ( _state . TmpVideoRamAddr & ~ 0x001F ) | ( value > > 3 ) ;
2014-06-17 22:16:49 +00:00
}
_state . WriteToggle = ! _state . WriteToggle ;
2014-06-14 22:20:56 +00:00
break ;
case PPURegisters : : VideoMemoryAddr :
2014-06-17 22:16:49 +00:00
if ( _state . WriteToggle ) {
2014-06-19 02:54:23 +00:00
_state . TmpVideoRamAddr = ( _state . TmpVideoRamAddr & ~ 0x00FF ) | value ;
2014-06-17 22:16:49 +00:00
_state . VideoRamAddr = _state . TmpVideoRamAddr ;
2014-06-25 21:30:35 +00:00
//Trigger memory read when setting the vram address - needed by MMC3 IRQ counter
2014-06-26 20:41:07 +00:00
//"4) Should be clocked when A12 changes to 1 via $2006 write"
2014-06-25 21:30:35 +00:00
_memoryManager - > ReadVRAM ( _state . VideoRamAddr ) ;
2014-06-14 22:20:56 +00:00
} else {
2014-06-19 02:54:23 +00:00
_state . TmpVideoRamAddr = ( _state . TmpVideoRamAddr & ~ 0xFF00 ) | ( ( value & 0x3F ) < < 8 ) ;
2014-06-14 22:20:56 +00:00
}
2014-06-17 22:16:49 +00:00
_state . WriteToggle = ! _state . WriteToggle ;
2014-06-14 22:20:56 +00:00
break ;
case PPURegisters : : VideoMemoryData :
2014-06-21 02:31:48 +00:00
if ( _state . VideoRamAddr > = 0x3F00 ) {
WritePaletteRAM ( _state . VideoRamAddr , value ) ;
} else {
_memoryManager - > WriteVRAM ( _state . VideoRamAddr , value ) ;
}
2014-06-22 04:37:45 +00:00
UpdateVideoRamAddr ( ) ;
2014-06-14 22:20:56 +00:00
break ;
2014-06-21 01:48:55 +00:00
case PPURegisters : : SpriteDMA :
2015-07-05 02:21:14 +00:00
CPU : : RunDMATransfer ( _spriteRAM , _state . SpriteRamAddr , value ) ;
2014-06-21 01:48:55 +00:00
break ;
2014-06-14 22:20:56 +00:00
}
}
2014-06-14 15:27:55 +00:00
2014-06-21 02:31:48 +00:00
uint8_t PPU : : ReadPaletteRAM ( uint16_t addr )
{
addr & = 0x1F ;
if ( addr = = 0x10 | | addr = = 0x14 | | addr = = 0x18 | | addr = = 0x1C ) {
addr & = ~ 0x10 ;
}
return _paletteRAM [ addr ] ;
}
void PPU : : WritePaletteRAM ( uint16_t addr , uint8_t value )
{
addr & = 0x1F ;
if ( addr = = 0x10 | | addr = = 0x14 | | addr = = 0x18 | | addr = = 0x1C ) {
addr & = ~ 0x10 ;
}
_paletteRAM [ addr ] = value ;
}
2014-06-22 20:22:10 +00:00
uint32_t PPU : : GetBGPaletteEntry ( uint32_t paletteOffset , uint32_t pixel )
2014-06-21 02:31:48 +00:00
{
if ( pixel = = 0 ) {
2014-06-21 13:00:10 +00:00
return ReadPaletteRAM ( 0x3F00 ) % 64 ;
2014-06-21 02:31:48 +00:00
} else {
2014-06-21 13:00:10 +00:00
return ReadPaletteRAM ( 0x3F00 + paletteOffset + pixel ) % 64 ;
2014-06-21 02:31:48 +00:00
}
}
2014-06-22 20:22:10 +00:00
uint32_t PPU : : GetSpritePaletteEntry ( uint32_t paletteOffset , uint32_t pixel )
2014-06-21 02:31:48 +00:00
{
if ( pixel = = 0 ) {
2014-06-21 13:00:10 +00:00
return ReadPaletteRAM ( 0x3F00 ) % 64 ;
2014-06-21 02:31:48 +00:00
} else {
2014-06-21 13:00:10 +00:00
return ReadPaletteRAM ( 0x3F10 + paletteOffset + pixel ) % 64 ;
2014-06-21 02:31:48 +00:00
}
}
2014-06-17 22:16:49 +00:00
bool PPU : : IsRenderingEnabled ( )
{
return _flags . BackgroundEnabled | | _flags . SpritesEnabled ;
}
2014-06-22 04:37:45 +00:00
void PPU : : SetControlRegister ( uint8_t value )
2014-06-14 22:20:56 +00:00
{
2014-06-22 04:37:45 +00:00
_state . Control = value ;
2014-06-14 22:20:56 +00:00
uint8_t nameTable = ( _state . Control & 0x03 ) ;
2014-06-22 03:54:32 +00:00
_state . TmpVideoRamAddr = ( _state . TmpVideoRamAddr & ~ 0x0C00 ) | ( nameTable < < 10 ) ;
2014-06-17 22:16:49 +00:00
2014-06-14 22:20:56 +00:00
_flags . VerticalWrite = ( _state . Control & 0x04 ) = = 0x04 ;
_flags . SpritePatternAddr = ( ( _state . Control & 0x08 ) = = 0x08 ) ? 0x1000 : 0x0000 ;
_flags . BackgroundPatternAddr = ( ( _state . Control & 0x10 ) = = 0x10 ) ? 0x1000 : 0x0000 ;
_flags . LargeSprites = ( _state . Control & 0x20 ) = = 0x20 ;
2014-06-22 03:54:32 +00:00
2014-06-27 16:18:07 +00:00
//"By toggling NMI_output ($2000 bit 7) during vertical blank without reading $2002, a program can cause /NMI to be pulled low multiple times, causing multiple NMIs to be generated."
2014-06-22 03:54:32 +00:00
bool originalVBlank = _flags . VBlank ;
2014-06-14 22:20:56 +00:00
_flags . VBlank = ( _state . Control & 0x80 ) = = 0x80 ;
2014-06-27 16:18:07 +00:00
2014-06-22 03:54:32 +00:00
if ( ! originalVBlank & & _flags . VBlank & & _statusFlags . VerticalBlank ) {
CPU : : SetNMIFlag ( ) ;
2014-06-27 16:18:07 +00:00
} else if ( _scanline = = 241 & & _cycle < 3 & & ! _flags . VBlank ) {
CPU : : ClearNMIFlag ( ) ;
2014-06-22 03:54:32 +00:00
}
2014-06-22 04:37:45 +00:00
}
2014-06-14 22:20:56 +00:00
2014-06-22 04:37:45 +00:00
void PPU : : SetMaskRegister ( uint8_t value )
{
_state . Mask = value ;
_flags . Grayscale = ( _state . Mask & 0x01 ) = = 0x01 ;
_flags . BackgroundMask = ( _state . Mask & 0x02 ) = = 0x02 ;
_flags . SpriteMask = ( _state . Mask & 0x04 ) = = 0x04 ;
_flags . BackgroundEnabled = ( _state . Mask & 0x08 ) = = 0x08 ;
_flags . SpritesEnabled = ( _state . Mask & 0x10 ) = = 0x10 ;
_flags . IntensifyRed = ( _state . Mask & 0x20 ) = = 0x20 ;
_flags . IntensifyGreen = ( _state . Mask & 0x40 ) = = 0x40 ;
_flags . IntensifyBlue = ( _state . Mask & 0x80 ) = = 0x80 ;
2014-06-14 22:20:56 +00:00
}
void PPU : : UpdateStatusFlag ( )
{
_state . Status = ( ( uint8_t ) _statusFlags . SpriteOverflow < < 5 ) |
( ( uint8_t ) _statusFlags . Sprite0Hit < < 6 ) |
2014-06-15 13:35:17 +00:00
( ( uint8_t ) _statusFlags . VerticalBlank < < 7 ) ;
_statusFlags . VerticalBlank = false ;
2014-06-21 04:37:27 +00:00
2014-06-27 16:18:07 +00:00
if ( _scanline = = 241 ) {
if ( _cycle < 3 ) {
CPU : : ClearNMIFlag ( ) ;
if ( _cycle = = 0 ) {
_doNotSetVBFlag = true ;
}
}
2014-06-21 04:37:27 +00:00
}
2014-06-14 22:20:56 +00:00
}
2014-06-17 22:16:49 +00:00
//Taken from http://wiki.nesdev.com/w/index.php/The_skinny_on_NES_scrolling#Wrapping_around
void PPU : : IncVerticalScrolling ( )
{
uint16_t addr = _state . VideoRamAddr ;
if ( ( addr & 0x7000 ) ! = 0x7000 ) {
// if fine Y < 7
addr + = 0x1000 ; // increment fine Y
} else {
// fine Y = 0
addr & = ~ 0x7000 ;
int y = ( addr & 0x03E0 ) > > 5 ; // let y = coarse Y
if ( y = = 29 ) {
y = 0 ; // coarse Y = 0
addr ^ = 0x0800 ; // switch vertical nametable
} else if ( y = = 31 ) {
y = 0 ; // coarse Y = 0, nametable not switched
} else {
2014-06-22 04:00:56 +00:00
y + + ; // increment coarse Y
2014-06-17 22:16:49 +00:00
}
addr = ( addr & ~ 0x03E0 ) | ( y < < 5 ) ; // put coarse Y back into v
}
_state . VideoRamAddr = addr ;
}
//Taken from http://wiki.nesdev.com/w/index.php/The_skinny_on_NES_scrolling#Wrapping_around
void PPU : : IncHorizontalScrolling ( )
{
//Increase coarse X scrolling value.
uint16_t addr = _state . VideoRamAddr ;
if ( ( addr & 0x001F ) = = 31 ) {
2014-06-22 04:00:56 +00:00
//When the value is 31, wrap around to 0 and switch nametable
addr = ( addr & ~ 0x001F ) ^ 0x0400 ;
2014-06-17 22:16:49 +00:00
} else {
2014-06-22 04:00:56 +00:00
addr + + ;
2014-06-17 22:16:49 +00:00
}
_state . VideoRamAddr = addr ;
}
2015-07-02 03:17:14 +00:00
//Taken from http://wiki.nesdev.com/w/index.php/The_skinny_on_NES_scrolling#Tile_and_attribute_fetching
2014-06-19 23:58:15 +00:00
uint16_t PPU : : GetNameTableAddr ( )
2014-06-17 22:16:49 +00:00
{
return 0x2000 | ( _state . VideoRamAddr & 0x0FFF ) ;
}
2015-07-02 03:17:14 +00:00
//Taken from http://wiki.nesdev.com/w/index.php/The_skinny_on_NES_scrolling#Tile_and_attribute_fetching
2014-06-17 22:16:49 +00:00
uint16_t PPU : : GetAttributeAddr ( )
{
return 0x23C0 | ( _state . VideoRamAddr & 0x0C00 ) | ( ( _state . VideoRamAddr > > 4 ) & 0x38 ) | ( ( _state . VideoRamAddr > > 2 ) & 0x07 ) ;
}
2014-06-19 23:58:15 +00:00
void PPU : : LoadTileInfo ( )
{
2014-07-27 00:21:36 +00:00
if ( IsRenderingEnabled ( ) ) {
2014-06-26 20:41:07 +00:00
_previousTile = _currentTile ;
_currentTile = _nextTile ;
2014-06-19 23:58:15 +00:00
2014-06-26 20:41:07 +00:00
uint16_t tileIndex = _memoryManager - > ReadVRAM ( GetNameTableAddr ( ) ) ;
uint16_t tileAddr = ( tileIndex < < 4 ) | ( _state . VideoRamAddr > > 12 ) | _flags . BackgroundPatternAddr ;
uint16_t shift = ( ( _state . VideoRamAddr > > 4 ) & 0x04 ) | ( _state . VideoRamAddr & 0x02 ) ;
_nextTile . PaletteOffset = ( ( _memoryManager - > ReadVRAM ( GetAttributeAddr ( ) ) > > shift ) & 0x03 ) < < 2 ;
_nextTile . LowByte = _memoryManager - > ReadVRAM ( tileAddr ) ;
_nextTile . HighByte = _memoryManager - > ReadVRAM ( tileAddr + 8 ) ;
}
2014-06-19 23:58:15 +00:00
}
2014-06-21 01:48:55 +00:00
void PPU : : LoadSpriteTileInfo ( uint8_t spriteIndex )
{
2014-07-27 00:21:36 +00:00
if ( IsRenderingEnabled ( ) ) {
2014-06-26 20:41:07 +00:00
uint32_t spriteAddr = spriteIndex * 4 ;
uint8_t spriteY = _secondarySpriteRAM [ spriteAddr ] ;
uint8_t tileIndex = _secondarySpriteRAM [ spriteAddr + 1 ] ;
uint8_t attributes = _secondarySpriteRAM [ spriteAddr + 2 ] ;
uint8_t spriteX = _secondarySpriteRAM [ spriteAddr + 3 ] ;
bool backgroundPriority = ( attributes & 0x20 ) = = 0x20 ;
bool horizontalMirror = ( attributes & 0x40 ) = = 0x40 ;
bool verticalMirror = ( attributes & 0x80 ) = = 0x80 ;
uint16_t tileAddr ;
uint8_t lineOffset ;
if ( verticalMirror ) {
lineOffset = ( _flags . LargeSprites ? 15 : 7 ) - ( _scanline - spriteY ) ;
} else {
lineOffset = _scanline - spriteY ;
}
2014-06-25 21:30:35 +00:00
2014-06-25 21:33:25 +00:00
if ( _flags . LargeSprites ) {
tileAddr = ( ( ( tileIndex & 0x01 ) ? 0x1000 : 0x0000 ) | ( ( tileIndex & ~ 0x01 ) < < 4 ) ) + ( lineOffset > = 8 ? lineOffset + 8 : lineOffset ) ;
} else {
tileAddr = ( ( tileIndex < < 4 ) | _flags . SpritePatternAddr ) + lineOffset ;
}
2014-06-26 20:41:07 +00:00
if ( spriteIndex < _spriteCount & & spriteY < 240 ) {
_spriteX [ spriteIndex ] = spriteX ;
_spriteTiles [ spriteIndex ] . BackgroundPriority = backgroundPriority ;
_spriteTiles [ spriteIndex ] . HorizontalMirror = horizontalMirror ;
_spriteTiles [ spriteIndex ] . PaletteOffset = ( attributes & 0x03 ) < < 2 ;
_spriteTiles [ spriteIndex ] . LowByte = _memoryManager - > ReadVRAM ( tileAddr ) ;
_spriteTiles [ spriteIndex ] . HighByte = _memoryManager - > ReadVRAM ( tileAddr + 8 ) ;
} else {
//Fetches to sprite 0xFF for remaining sprites/hidden - used by MMC3 IRQ counter
lineOffset = 0 ;
tileIndex = 0xFF ;
if ( _flags . LargeSprites ) {
tileAddr = ( ( ( tileIndex & 0x01 ) ? 0x1000 : 0x0000 ) | ( ( tileIndex & ~ 0x01 ) < < 4 ) ) + ( lineOffset > = 8 ? lineOffset + 8 : lineOffset ) ;
} else {
tileAddr = ( ( tileIndex < < 4 ) | _flags . SpritePatternAddr ) + lineOffset ;
}
_memoryManager - > ReadVRAM ( tileAddr ) ;
_memoryManager - > ReadVRAM ( tileAddr + 8 ) ;
}
2014-06-21 01:48:55 +00:00
}
}
2014-06-19 23:58:15 +00:00
void PPU : : LoadNextTile ( )
{
_state . LowBitShift | = _nextTile . LowByte ;
_state . HighBitShift | = _nextTile . HighByte ;
}
void PPU : : InitializeShiftRegisters ( )
{
_state . LowBitShift = ( _currentTile . LowByte < < 8 ) | _nextTile . LowByte ;
_state . HighBitShift = ( _currentTile . HighByte < < 8 ) | _nextTile . HighByte ;
}
void PPU : : ShiftTileRegisters ( )
{
_state . LowBitShift < < = 1 ;
_state . HighBitShift < < = 1 ;
}
void PPU : : DrawPixel ( )
{
2014-06-21 13:00:10 +00:00
//This is called 3.7 million times per second - needs to be as fast as possible.
2014-06-21 16:42:40 +00:00
uint8_t offset = _state . XScroll ;
2014-06-19 23:58:15 +00:00
2014-06-22 00:18:05 +00:00
uint32_t backgroundColor = 0 ;
2015-07-05 02:21:14 +00:00
uint32_t & pixel = ( ( ( uint32_t * ) _outputBuffer ) [ ( _scanline < < 8 ) + _cycle - 1 ] ) ;
2014-06-29 02:52:28 +00:00
if ( ( _cycle > 8 | | _flags . BackgroundMask ) & & _flags . BackgroundEnabled ) {
//BackgroundMask = false: Hide background in leftmost 8 pixels of screen
2014-06-22 00:18:05 +00:00
backgroundColor = ( ( ( _state . LowBitShift < < offset ) & 0x8000 ) > > 15 ) | ( ( ( _state . HighBitShift < < offset ) & 0x8000 ) > > 14 ) ;
}
2014-06-19 23:58:15 +00:00
2014-06-29 02:52:28 +00:00
if ( ( _cycle > 8 | | _flags . SpriteMask ) & & _flags . SpritesEnabled ) {
//SpriteMask = true: Hide sprites in leftmost 8 pixels of screen
2015-07-05 02:21:14 +00:00
for ( uint8_t i = 0 ; i < _spriteCount ; i + + ) {
2014-06-22 00:18:05 +00:00
int32_t shift = - ( ( int32_t ) _spriteX [ i ] - ( int32_t ) _cycle + 1 ) ;
if ( shift > = 0 & & shift < 8 ) {
2015-07-05 02:21:14 +00:00
uint32_t spriteColor ;
2014-06-22 00:18:05 +00:00
if ( _spriteTiles [ i ] . HorizontalMirror ) {
spriteColor = ( ( _spriteTiles [ i ] . LowByte > > shift ) & 0x01 ) | ( ( _spriteTiles [ i ] . HighByte > > shift ) & 0x01 ) < < 1 ;
} else {
spriteColor = ( ( _spriteTiles [ i ] . LowByte < < shift ) & 0x80 ) > > 7 | ( ( _spriteTiles [ i ] . HighByte < < shift ) & 0x80 ) > > 6 ;
}
if ( spriteColor ! = 0 ) {
//First sprite without a 00 color, use it.
2014-06-29 02:52:28 +00:00
if ( i = = 0 & & backgroundColor ! = 0 & & _sprite0Visible & & _cycle ! = 256 & & _flags . BackgroundEnabled ) {
//"The hit condition is basically sprite zero is in range AND the first sprite output unit is outputting a non-zero pixel AND the background drawing unit is outputting a non-zero pixel."
//"Sprite zero hits do not register at x=255" (cycle 256)
//"... provided that background and sprite rendering are both enabled"
//"Should always miss when Y >= 239"
_statusFlags . Sprite0Hit = true ;
}
2015-07-05 12:47:34 +00:00
if ( backgroundColor = = 0 | | ! _spriteTiles [ i ] . BackgroundPriority ) {
//Check sprite priority
pixel = PPU_PALETTE_RGB [ GetSpritePaletteEntry ( _spriteTiles [ i ] . PaletteOffset , spriteColor ) ] ;
return ;
}
break ;
2014-06-22 00:18:05 +00:00
}
2014-06-21 01:48:55 +00:00
}
}
}
2015-07-05 02:21:14 +00:00
pixel = PPU_PALETTE_RGB [ GetBGPaletteEntry ( offset + ( ( _cycle - 1 ) % 8 ) < 8 ? _previousTile . PaletteOffset : _currentTile . PaletteOffset , backgroundColor ) ] ;
2014-06-19 23:58:15 +00:00
}
2014-06-21 01:48:55 +00:00
void PPU : : ProcessPreVBlankScanline ( )
2014-06-17 22:16:49 +00:00
{
2014-06-21 01:48:55 +00:00
//For pre-render scanline & all visible scanlines
2014-06-17 22:16:49 +00:00
if ( IsRenderingEnabled ( ) ) {
2014-06-21 01:48:55 +00:00
//Update video ram address according to scrolling logic
2015-07-05 02:21:14 +00:00
if ( ( _cycle > 0 & & _cycle < 256 & & _cycle % 8 = = 0 ) | | _cycle = = 328 | | _cycle = = 336 ) {
IncHorizontalScrolling ( ) ;
} else if ( _cycle = = 256 ) {
2014-06-21 01:48:55 +00:00
IncVerticalScrolling ( ) ;
} else if ( _cycle = = 257 ) {
//copy horizontal scrolling value from t
_state . VideoRamAddr = ( _state . VideoRamAddr & ~ 0x041F ) | ( _state . TmpVideoRamAddr & 0x041F ) ;
}
}
if ( _cycle > = 257 & & _cycle < = 320 ) {
//"OAMADDR is set to 0 during each of ticks 257-320 (the sprite tile loading interval) of the pre-render and visible scanlines."
_state . SpriteRamAddr = 0 ;
2014-06-17 22:16:49 +00:00
}
2014-06-21 01:48:55 +00:00
}
void PPU : : ProcessPrerenderScanline ( )
{
ProcessPreVBlankScanline ( ) ;
2014-06-17 22:16:49 +00:00
2015-07-05 04:27:26 +00:00
if ( _cycle = = 0 ) {
2014-06-17 22:16:49 +00:00
_statusFlags . SpriteOverflow = false ;
_statusFlags . Sprite0Hit = false ;
_statusFlags . VerticalBlank = false ;
2014-06-26 20:41:07 +00:00
}
if ( ( _cycle - 1 ) % 8 = = 0 & & _cycle < 250 ) {
LoadTileInfo ( ) ;
2014-06-17 22:16:49 +00:00
} else if ( _cycle > = 280 & & _cycle < = 304 ) {
if ( IsRenderingEnabled ( ) ) {
//copy vertical scrolling value from t
2014-06-22 04:37:45 +00:00
_state . VideoRamAddr = ( _state . VideoRamAddr & ~ 0x7BE0 ) | ( _state . TmpVideoRamAddr & 0x7BE0 ) ;
2014-06-17 22:16:49 +00:00
}
2014-06-27 16:18:07 +00:00
} else if ( _cycle = = 339 & & IsRenderingEnabled ( ) & & ( _frameCount % 2 = = 1 ) ) {
//"With rendering enabled, each odd PPU frame is one PPU clock shorter than normal" (skip from 339 to 0, going over 340)
2014-06-22 03:54:32 +00:00
_cycle = - 1 ;
2014-06-19 02:54:23 +00:00
_scanline = 0 ;
} else if ( _cycle = = 321 | | _cycle = = 329 ) {
LoadTileInfo ( ) ;
2014-06-19 23:58:15 +00:00
if ( _cycle = = 329 ) {
InitializeShiftRegisters ( ) ;
}
2014-06-19 02:54:23 +00:00
}
2014-06-26 20:41:07 +00:00
if ( _cycle > = 261 & & ( _cycle - 261 ) % 8 = = 0 & & _cycle < = 320 ) {
//Unused sprite tile fetches, but vital for MMC3 IRQ counter
uint32_t spriteIndex = ( _cycle - 261 ) / 8 ;
LoadSpriteTileInfo ( spriteIndex ) ;
}
2014-06-19 02:54:23 +00:00
}
2014-06-17 22:16:49 +00:00
void PPU : : ProcessVisibleScanline ( )
{
2014-06-21 01:48:55 +00:00
if ( _cycle > 0 & & _cycle < = 256 ) {
if ( ( _cycle - 1 ) % 8 = = 0 ) {
//Cycle 1, 9, 17, etc.
if ( _cycle ! = 1 ) {
LoadNextTile ( ) ;
}
LoadTileInfo ( ) ;
}
DrawPixel ( ) ;
2015-07-05 02:21:14 +00:00
ShiftTileRegisters ( ) ;
2014-06-21 13:00:10 +00:00
if ( IsRenderingEnabled ( ) ) {
CopyOAMData ( ) ;
}
2014-06-21 01:48:55 +00:00
if ( _cycle = = 256 & & _scanline = = 239 ) {
//Send frame to GUI once the last pixel has been output
2015-07-05 02:21:14 +00:00
if ( PPU : : VideoDevice ) {
PPU : : VideoDevice - > UpdateFrame ( _outputBuffer ) ;
}
2014-06-19 23:58:15 +00:00
}
2014-06-21 01:48:55 +00:00
} else if ( ( _cycle - 261 ) % 8 = = 0 & & _cycle < = 320 ) {
2015-07-05 02:21:14 +00:00
//Cycle 261, 269, etc.
2014-06-22 17:00:31 +00:00
uint32_t spriteIndex = ( _cycle - 261 ) / 8 ;
2014-06-25 21:30:35 +00:00
LoadSpriteTileInfo ( spriteIndex ) ;
2014-06-19 03:59:10 +00:00
} else if ( _cycle = = 321 | | _cycle = = 329 ) {
LoadTileInfo ( ) ;
2014-06-19 23:58:15 +00:00
if ( _cycle = = 329 ) {
InitializeShiftRegisters ( ) ;
}
2014-06-17 22:16:49 +00:00
}
2014-06-19 02:54:23 +00:00
2014-06-21 01:48:55 +00:00
ProcessPreVBlankScanline ( ) ;
}
2014-06-19 03:59:10 +00:00
2014-06-21 01:48:55 +00:00
void PPU : : CopyOAMData ( )
{
2014-06-22 05:54:35 +00:00
if ( _cycle < 65 ) {
//Clear secondary OAM at between cycle 0 and 64
_secondarySpriteRAM [ _cycle > > 1 ] = 0xFF ;
} else {
2014-06-21 01:48:55 +00:00
if ( _cycle = = 65 ) {
2014-06-22 20:11:28 +00:00
_overflowCounter = 0 ;
2014-06-21 16:42:40 +00:00
_sprite0Added = false ;
2014-07-01 22:05:54 +00:00
_writeOAMData = false ;
2014-06-21 01:48:55 +00:00
_secondaryOAMAddr = 0 ;
2014-06-21 16:42:40 +00:00
} else if ( _cycle = = 256 ) {
_sprite0Visible = _sprite0Added ;
2014-06-22 17:00:31 +00:00
_spriteCount = ( _secondaryOAMAddr > > 2 ) ;
2014-06-17 22:16:49 +00:00
}
2014-06-22 05:54:35 +00:00
if ( _cycle & 0x01 ) {
//Read a byte from the primary OAM on odd cycles
2014-07-01 22:05:54 +00:00
_oamCopybuffer = _spriteRAM [ _state . SpriteRamAddr & 0xFF ] ;
2014-06-22 05:54:35 +00:00
_state . SpriteRamAddr + + ;
} else {
2014-07-01 22:05:54 +00:00
if ( ! _writeOAMData & & _state . SpriteRamAddr < 0x100 & & _scanline > = _oamCopybuffer & & _scanline < _oamCopybuffer + ( _flags . LargeSprites ? 16 : 8 ) ) {
_writeOAMData = true ;
2014-06-22 05:54:35 +00:00
}
2014-06-21 01:48:55 +00:00
2014-06-22 05:54:35 +00:00
if ( _secondaryOAMAddr < 0x20 ) {
//Copy 1 byte to secondary OAM
2014-07-01 22:05:54 +00:00
_secondarySpriteRAM [ _secondaryOAMAddr ] = _oamCopybuffer ;
2014-06-21 01:48:55 +00:00
2014-07-01 22:05:54 +00:00
if ( _writeOAMData ) {
2014-06-22 05:54:35 +00:00
_secondaryOAMAddr + + ;
2014-06-21 01:48:55 +00:00
2014-06-22 05:54:35 +00:00
if ( _state . SpriteRamAddr = = 0x01 ) {
_sprite0Added = true ;
}
2014-06-21 16:42:40 +00:00
2014-06-22 05:54:35 +00:00
if ( ( _secondaryOAMAddr & 0x03 ) = = 0 ) {
//Done copying
2014-07-01 22:05:54 +00:00
_writeOAMData = false ;
2014-06-21 01:48:55 +00:00
}
} else {
2014-06-22 05:54:35 +00:00
_state . SpriteRamAddr + = 3 ;
}
} else {
2014-06-22 20:11:28 +00:00
//8 sprites have been found, check next sprite for overflow + emulate PPU bug
//Based on: http://forums.nesdev.com/viewtopic.php?p=85431#p85431
//Behavior matches: http://forums.nesdev.com/viewtopic.php?p=1387#p1387
2014-06-22 05:54:35 +00:00
if ( ! _statusFlags . SpriteOverflow ) {
2014-07-01 22:05:54 +00:00
if ( _writeOAMData ) {
2014-06-22 05:54:35 +00:00
//Sprite is visible, consider this to be an overflow
_statusFlags . SpriteOverflow = true ;
2014-06-22 20:11:28 +00:00
_overflowCounter = 3 ;
} else if ( ( _state . SpriteRamAddr & 0x3 ) ! = 0 ) {
//Sprite isn't on this scanline, trigger sprite evaluation bug
2014-06-22 05:54:35 +00:00
_state . SpriteRamAddr + = 4 ;
2014-06-21 13:00:10 +00:00
}
2014-06-22 20:11:28 +00:00
} else {
if ( _overflowCounter ! = 0 ) {
_overflowCounter - - ;
if ( _overflowCounter = = 0 ) {
_state . SpriteRamAddr = ( _state . SpriteRamAddr + 3 ) & 0x0FFC ;
}
} else {
_state . SpriteRamAddr = ( _state . SpriteRamAddr + 4 ) & 0x0FFC ;
}
2014-06-21 01:48:55 +00:00
}
}
2014-06-21 02:31:48 +00:00
}
2014-06-19 02:54:23 +00:00
}
}
2014-06-17 22:16:49 +00:00
void PPU : : BeginVBlank ( )
{
2015-07-05 04:27:26 +00:00
if ( _cycle = = 0 ) {
2014-06-21 04:37:27 +00:00
if ( ! _doNotSetVBFlag ) {
_statusFlags . VerticalBlank = true ;
2014-06-22 03:54:32 +00:00
if ( _flags . VBlank ) {
CPU : : SetNMIFlag ( ) ;
}
2014-06-17 22:16:49 +00:00
}
2014-06-21 04:37:27 +00:00
_doNotSetVBFlag = false ;
2014-06-17 22:16:49 +00:00
}
}
void PPU : : EndVBlank ( )
{
if ( _cycle = = 340 ) {
_frameCount + + ;
}
}
2015-07-05 02:21:14 +00:00
void PPU : : Exec ( )
2014-06-14 22:20:56 +00:00
{
2015-07-05 02:21:14 +00:00
if ( _scanline ! = - 1 & & _scanline < 240 ) {
ProcessVisibleScanline ( ) ;
} else if ( _scanline = = - 1 ) {
ProcessPrerenderScanline ( ) ;
} else if ( _scanline = = 241 ) {
BeginVBlank ( ) ;
} else if ( _scanline = = 260 ) {
EndVBlank ( ) ;
2014-06-27 16:18:07 +00:00
}
2014-06-14 22:20:56 +00:00
2015-07-05 02:21:14 +00:00
if ( _cycle = = 340 ) {
_cycle = - 1 ;
_scanline + + ;
2014-06-15 13:35:17 +00:00
2015-07-05 02:21:14 +00:00
if ( _scanline = = 261 ) {
_scanline = - 1 ;
2014-06-14 22:20:56 +00:00
}
}
2015-07-05 02:21:14 +00:00
_cycle + + ;
}
void PPU : : ExecStatic ( )
{
PPU : : Instance - > Exec ( ) ;
PPU : : Instance - > Exec ( ) ;
PPU : : Instance - > Exec ( ) ;
2014-06-26 01:52:37 +00:00
}
void PPU : : StreamState ( bool saving )
{
Stream < uint8_t > ( _state . Control ) ;
Stream < uint8_t > ( _state . Mask ) ;
Stream < uint8_t > ( _state . Status ) ;
Stream < uint32_t > ( _state . SpriteRamAddr ) ;
Stream < uint16_t > ( _state . VideoRamAddr ) ;
Stream < uint8_t > ( _state . XScroll ) ;
Stream < uint16_t > ( _state . TmpVideoRamAddr ) ;
Stream < bool > ( _state . WriteToggle ) ;
Stream < uint16_t > ( _state . HighBitShift ) ;
Stream < uint16_t > ( _state . LowBitShift ) ;
2014-07-01 22:05:54 +00:00
Stream < bool > ( _flags . VerticalWrite ) ;
Stream < uint16_t > ( _flags . SpritePatternAddr ) ;
Stream < uint16_t > ( _flags . BackgroundPatternAddr ) ;
Stream < bool > ( _flags . LargeSprites ) ;
Stream < bool > ( _flags . VBlank ) ;
Stream < bool > ( _flags . Grayscale ) ;
Stream < bool > ( _flags . BackgroundMask ) ;
Stream < bool > ( _flags . SpriteMask ) ;
Stream < bool > ( _flags . BackgroundEnabled ) ;
Stream < bool > ( _flags . SpritesEnabled ) ;
Stream < bool > ( _flags . IntensifyRed ) ;
Stream < bool > ( _flags . IntensifyGreen ) ;
Stream < bool > ( _flags . IntensifyBlue ) ;
Stream < bool > ( _statusFlags . SpriteOverflow ) ;
Stream < bool > ( _statusFlags . Sprite0Hit ) ;
Stream < bool > ( _statusFlags . VerticalBlank ) ;
2014-06-26 01:52:37 +00:00
Stream < int32_t > ( _scanline ) ;
Stream < uint32_t > ( _cycle ) ;
Stream < uint32_t > ( _frameCount ) ;
Stream < uint8_t > ( _memoryReadBuffer ) ;
StreamArray < uint8_t > ( _paletteRAM , 0x100 ) ;
StreamArray < uint8_t > ( _spriteRAM , 0x100 ) ;
StreamArray < uint8_t > ( _secondarySpriteRAM , 0x20 ) ;
Stream < uint8_t > ( _currentTile . LowByte ) ;
Stream < uint8_t > ( _currentTile . HighByte ) ;
Stream < uint32_t > ( _currentTile . PaletteOffset ) ;
Stream < uint8_t > ( _nextTile . LowByte ) ;
Stream < uint8_t > ( _nextTile . HighByte ) ;
Stream < uint32_t > ( _nextTile . PaletteOffset ) ;
Stream < uint8_t > ( _previousTile . LowByte ) ;
Stream < uint8_t > ( _previousTile . HighByte ) ;
Stream < uint32_t > ( _previousTile . PaletteOffset ) ;
StreamArray < int32_t > ( _spriteX , 0x8 ) ;
for ( int i = 0 ; i < 8 ; i + + ) {
Stream < uint8_t > ( _spriteTiles [ i ] . LowByte ) ;
Stream < uint8_t > ( _spriteTiles [ i ] . HighByte ) ;
Stream < uint32_t > ( _spriteTiles [ i ] . PaletteOffset ) ;
Stream < bool > ( _spriteTiles [ i ] . HorizontalMirror ) ;
Stream < bool > ( _spriteTiles [ i ] . BackgroundPriority ) ;
}
Stream < uint32_t > ( _spriteCount ) ;
Stream < uint32_t > ( _secondaryOAMAddr ) ;
Stream < bool > ( _sprite0Visible ) ;
2014-07-01 22:05:54 +00:00
Stream < uint8_t > ( _oamCopybuffer ) ;
Stream < bool > ( _writeOAMData ) ;
Stream < uint32_t > ( _overflowCounter ) ;
Stream < bool > ( _sprite0Added ) ;
2014-06-14 15:27:55 +00:00
}