@@ -86,15 +86,25 @@ void amiga_state::aga_palette_write(int color_reg, uint16_t data)
86
86
87
87
VIDEO_START_MEMBER (amiga_state,amiga_aga)
88
88
{
89
- VIDEO_START_CALL_MEMBER ( amiga );
89
+ video_start_common ( );
90
90
91
- for (int j = 0 ; j < 256 ; j++)
91
+ // fill the AGA dblpf table, taking bplcon3:pf2pri into account for offset values
92
+ m_separate_bitplanes[0 ].resize (256 * 8 );
93
+ m_separate_bitplanes[1 ].resize (256 * 8 );
94
+
95
+ static const int dblpfofs[] = { 0 , 2 , 4 , 8 , 16 , 32 , 64 , 128 };
96
+
97
+ for (int offset_index = 0 ; offset_index < 8 ; offset_index ++)
92
98
{
93
- int pf1pix = ((j >> 0 ) & 1 ) | ((j >> 1 ) & 2 ) | ((j >> 2 ) & 4 ) | ((j >> 3 ) & 8 );
94
- int pf2pix = ((j >> 1 ) & 1 ) | ((j >> 2 ) & 2 ) | ((j >> 3 ) & 4 ) | ((j >> 4 ) & 8 );
99
+ int offset_value = dblpfofs[offset_index];
100
+ for (int j = 0 ; j < 256 ; j++)
101
+ {
102
+ int pf1pix = ((j >> 0 ) & 1 ) | ((j >> 1 ) & 2 ) | ((j >> 2 ) & 4 ) | ((j >> 3 ) & 8 );
103
+ int pf2pix = ((j >> 1 ) & 1 ) | ((j >> 2 ) & 2 ) | ((j >> 3 ) & 4 ) | ((j >> 4 ) & 8 );
95
104
96
- m_separate_bitplanes[0 ][j] = (pf1pix || !pf2pix) ? pf1pix : (pf2pix + 16 );
97
- m_separate_bitplanes[1 ][j] = pf2pix ? (pf2pix + 16 ) : pf1pix;
105
+ m_separate_bitplanes[0 ][j + (offset_index << 8 )] = (pf1pix || !pf2pix) ? pf1pix : (pf2pix + offset_value);
106
+ m_separate_bitplanes[1 ][j + (offset_index << 8 )] = pf2pix ? (pf2pix + offset_value) : pf1pix;
107
+ }
98
108
}
99
109
100
110
m_aga_diwhigh_written = 0 ;
@@ -465,6 +475,7 @@ void amiga_state::aga_render_scanline(bitmap_rgb32 &bitmap, int scanline)
465
475
int planes = 0 ;
466
476
int raw_scanline = 0 ;
467
477
u8 bplam = 0 ;
478
+ u16 pf2ofx = 0 ;
468
479
469
480
uint32_t *dst = nullptr ;
470
481
int ebitoffs = 0 , obitoffs = 0 ;
@@ -630,6 +641,10 @@ void amiga_state::aga_render_scanline(bitmap_rgb32 &bitmap, int scanline)
630
641
// In practice we need to separate bitplane delays & drawing first.
631
642
// shres = CUSTOM_REG(REG_BPLCON0) & 0x0040;
632
643
644
+ // offset table for pf2 when in dualpf (note: )
645
+ // - alfred_a, gameplay background
646
+ // - slamtilt, main menu cursor
647
+ pf2ofx = ((CUSTOM_REG (REG_BPLCON3) >> 10 ) & 7 ) << 8 ;
633
648
// bplam applies xor to bitplane colors (i.e. acting as pal bank)
634
649
// - aladdin, status bar in gameplay
635
650
// TODO: implement for ham and dualpf, below
@@ -889,6 +904,8 @@ void amiga_state::aga_render_scanline(bitmap_rgb32 &bitmap, int scanline)
889
904
/* dual playfield mode */
890
905
else if (dualpf)
891
906
{
907
+ // pf2pri really, overshadows above (i.e. pf1pri -> pf1p2:0)
908
+ const u8 pf_layer_pri = BIT (CUSTOM_REG (REG_BPLCON2), 6 );
892
909
/* mask out the sprite if it doesn't have priority */
893
910
pix = sprpix & 0xff ;
894
911
pri = (sprpix >> 12 );
@@ -904,7 +921,7 @@ void amiga_state::aga_render_scanline(bitmap_rgb32 &bitmap, int scanline)
904
921
if (pix)
905
922
dst[x*2 +0 ] = aga_palette[pix];
906
923
else
907
- dst[x*2 +0 ] = aga_palette[m_separate_bitplanes[( CUSTOM_REG (REG_BPLCON2) >> 6 ) & 1 ][pfpix0]];
924
+ dst[x*2 +0 ] = aga_palette[m_separate_bitplanes[pf_layer_pri ][pfpix0 | pf2ofx ]];
908
925
909
926
/* mask out the sprite if it doesn't have priority */
910
927
pix = sprpix & 0xff ;
@@ -920,7 +937,7 @@ void amiga_state::aga_render_scanline(bitmap_rgb32 &bitmap, int scanline)
920
937
if (pix)
921
938
dst[x*2 +1 ] = aga_palette[pix];
922
939
else
923
- dst[x*2 +1 ] = aga_palette[m_separate_bitplanes[( CUSTOM_REG (REG_BPLCON2) >> 6 ) & 1 ][pfpix1]];
940
+ dst[x*2 +1 ] = aga_palette[m_separate_bitplanes[pf_layer_pri ][pfpix1 | pf2ofx ]];
924
941
}
925
942
926
943
/* single playfield mode */
0 commit comments