Skip to content

Commit 2ec7787

Browse files
committed
amiga/amigaaga.cpp: implement pf2ofx color table
1 parent c9b8925 commit 2ec7787

File tree

3 files changed

+44
-19
lines changed

3 files changed

+44
-19
lines changed

src/mame/amiga/amiga.h

+3-2
Original file line numberDiff line numberDiff line change
@@ -416,8 +416,8 @@ class amiga_state : public driver_device
416416
uint16_t m_genlock_color = 0;
417417

418418
/* separate 6 in-order bitplanes into 2 x 3-bit bitplanes in two nibbles */
419-
// FIXME: we instantiate 256 entries so that it pleases AGA
420-
uint8_t m_separate_bitplanes[2][256];
419+
// AGA adds extra complexity with PF2OFx, so we need to instantiate at init time
420+
std::vector<uint8_t> m_separate_bitplanes[2];
421421

422422
/* aga */
423423
int m_aga_diwhigh_written = 0;
@@ -429,6 +429,7 @@ class amiga_state : public driver_device
429429
int m_aga_sprite_fetched_words = 0;
430430
int m_aga_sprite_dma_used_words[8]{};
431431

432+
void video_start_common();
432433
DECLARE_VIDEO_START( amiga );
433434
DECLARE_VIDEO_START( amiga_aga );
434435
void amiga_palette(palette_device &palette) const;

src/mame/amiga/amiga_v.cpp

+16-9
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,24 @@ void amiga_state::amiga_palette(palette_device &palette) const
8181
*
8282
*************************************/
8383

84+
void amiga_state::video_start_common()
85+
{
86+
/* reset the genlock color */
87+
m_genlock_color = 0xffff;
88+
89+
m_sprite_ctl_written = 0;
90+
91+
m_screen->register_screen_bitmap(m_flickerfixer);
92+
m_screen->register_screen_bitmap(m_scanline_bitmap);
93+
}
94+
8495
VIDEO_START_MEMBER( amiga_state, amiga )
8596
{
97+
video_start_common();
98+
8699
/* generate tables that produce the correct playfield color for dual playfield mode */
100+
m_separate_bitplanes[0].resize(64);
101+
m_separate_bitplanes[1].resize(64);
87102
for (int j = 0; j < 64; j++)
88103
{
89104
int pf1pix = ((j >> 0) & 1) | ((j >> 1) & 2) | ((j >> 2) & 4);
@@ -92,16 +107,8 @@ VIDEO_START_MEMBER( amiga_state, amiga )
92107
m_separate_bitplanes[0][j] = (pf1pix || !pf2pix) ? pf1pix : (pf2pix + 8);
93108
m_separate_bitplanes[1][j] = pf2pix ? (pf2pix + 8) : pf1pix;
94109
}
95-
// TODO: verify usage of values in the 64-255 range
110+
// TODO: verify usage of values in the 64-255 range on real HW
96111
// (should black out pf1 if j & 0x40, pf2 if j & 0x80)
97-
98-
/* reset the genlock color */
99-
m_genlock_color = 0xffff;
100-
101-
m_sprite_ctl_written = 0;
102-
103-
m_screen->register_screen_bitmap(m_flickerfixer);
104-
m_screen->register_screen_bitmap(m_scanline_bitmap);
105112
}
106113

107114

src/mame/amiga/amigaaga.cpp

+25-8
Original file line numberDiff line numberDiff line change
@@ -86,15 +86,25 @@ void amiga_state::aga_palette_write(int color_reg, uint16_t data)
8686

8787
VIDEO_START_MEMBER(amiga_state,amiga_aga)
8888
{
89-
VIDEO_START_CALL_MEMBER( amiga );
89+
video_start_common();
9090

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 ++)
9298
{
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);
95104

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+
}
98108
}
99109

100110
m_aga_diwhigh_written = 0;
@@ -465,6 +475,7 @@ void amiga_state::aga_render_scanline(bitmap_rgb32 &bitmap, int scanline)
465475
int planes = 0;
466476
int raw_scanline = 0;
467477
u8 bplam = 0;
478+
u16 pf2ofx = 0;
468479

469480
uint32_t *dst = nullptr;
470481
int ebitoffs = 0, obitoffs = 0;
@@ -630,6 +641,10 @@ void amiga_state::aga_render_scanline(bitmap_rgb32 &bitmap, int scanline)
630641
// In practice we need to separate bitplane delays & drawing first.
631642
//shres = CUSTOM_REG(REG_BPLCON0) & 0x0040;
632643

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;
633648
// bplam applies xor to bitplane colors (i.e. acting as pal bank)
634649
// - aladdin, status bar in gameplay
635650
// TODO: implement for ham and dualpf, below
@@ -889,6 +904,8 @@ void amiga_state::aga_render_scanline(bitmap_rgb32 &bitmap, int scanline)
889904
/* dual playfield mode */
890905
else if (dualpf)
891906
{
907+
// pf2pri really, overshadows above (i.e. pf1pri -> pf1p2:0)
908+
const u8 pf_layer_pri = BIT(CUSTOM_REG(REG_BPLCON2), 6);
892909
/* mask out the sprite if it doesn't have priority */
893910
pix = sprpix & 0xff;
894911
pri = (sprpix >> 12);
@@ -904,7 +921,7 @@ void amiga_state::aga_render_scanline(bitmap_rgb32 &bitmap, int scanline)
904921
if (pix)
905922
dst[x*2+0] = aga_palette[pix];
906923
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]];
908925

909926
/* mask out the sprite if it doesn't have priority */
910927
pix = sprpix & 0xff;
@@ -920,7 +937,7 @@ void amiga_state::aga_render_scanline(bitmap_rgb32 &bitmap, int scanline)
920937
if (pix)
921938
dst[x*2+1] = aga_palette[pix];
922939
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]];
924941
}
925942

926943
/* single playfield mode */

0 commit comments

Comments
 (0)