hp9845: generation of graphic and LP cursors separated. Some

refactoring of LP data computation.
This commit is contained in:
fulivi 2017-03-17 17:48:21 +01:00
parent e70489f436
commit 88d59894cc

View File

@ -173,6 +173,10 @@
#define PEN_CURSOR 3 // Graphic cursor #define PEN_CURSOR 3 // Graphic cursor
#define PEN_LP 4 // Light pen cursor #define PEN_LP 4 // Light pen cursor
// Light pen constants
constexpr unsigned LP_FOV = 9; // Field of view
constexpr unsigned LP_XOFFSET = 5; // x-offset of LP (due to delay in hit recognition)
// Peripheral Addresses (PA) // Peripheral Addresses (PA)
#define IO_SLOT_FIRST_PA 1 #define IO_SLOT_FIRST_PA 1
#define IO_SLOT_LAST_PA 12 #define IO_SLOT_LAST_PA 12
@ -1241,7 +1245,7 @@ INPUT_PORTS_END
class hp9845ct_state : public hp9845_base_state class hp9845ct_state : public hp9845_base_state
{ {
public: public:
hp9845ct_state(const machine_config &mconfig, device_type type, const char *tag); hp9845ct_state(const machine_config &mconfig, device_type type, const char *tag, unsigned v_total);
virtual void machine_start() override; virtual void machine_start() override;
virtual void machine_reset() override; virtual void machine_reset() override;
@ -1263,10 +1267,13 @@ protected:
void update_line_pattern(void); void update_line_pattern(void);
static uint16_t get_gv_mem_addr(unsigned x , unsigned y); static uint16_t get_gv_mem_addr(unsigned x , unsigned y);
void update_graphic_bits(void); void update_graphic_bits(void);
int get_lp_cursor_y_top(void) const;
void render_lp_cursor(unsigned video_scanline , unsigned pen_idx);
void lp_r4_w(uint16_t data); void lp_r4_w(uint16_t data);
uint16_t lp_r4_r(void); uint16_t lp_r4_r(void);
void lp_r5_w(uint16_t data); void lp_r5_w(uint16_t data);
bool lp_segment_intersect(unsigned yline) const;
void compute_lp_data(void); void compute_lp_data(void);
bool m_alpha_sel; bool m_alpha_sel;
@ -1306,16 +1313,18 @@ protected:
bool m_gv_lp_sw; bool m_gv_lp_sw;
uint8_t m_gv_lp_reg_cnt; uint8_t m_gv_lp_reg_cnt;
bool m_gv_lp_int_en; bool m_gv_lp_int_en;
const unsigned m_gv_v_total;
static const uint16_t m_line_type[]; static const uint16_t m_line_type[];
static const uint16_t m_area_fill[]; static const uint16_t m_area_fill[];
}; };
hp9845ct_state::hp9845ct_state(const machine_config &mconfig, device_type type, const char *tag) hp9845ct_state::hp9845ct_state(const machine_config &mconfig, device_type type, const char *tag, unsigned v_total)
: hp9845_base_state(mconfig , type , tag), : hp9845_base_state(mconfig , type , tag),
m_lightpen_x(*this, "LIGHTPENX"), m_lightpen_x(*this, "LIGHTPENX"),
m_lightpen_y(*this, "LIGHTPENY"), m_lightpen_y(*this, "LIGHTPENY"),
m_lightpen_sw(*this, "GKEY") m_lightpen_sw(*this, "GKEY"),
m_gv_v_total(v_total)
{ {
} }
@ -1549,7 +1558,7 @@ void hp9845ct_state::update_graphic_bits(void)
// DEBUG DEBUG DEBUG // DEBUG DEBUG DEBUG
static bool last_irq = false; static bool last_irq = false;
if (!last_irq && irq) { if (!last_irq && irq) {
logerror("GV IRQ 0->1\n"); logerror("GV IRQ %d %d\n" , m_gv_lp_int_en , m_gv_lp_status);
} }
last_irq = irq; last_irq = irq;
#endif #endif
@ -1561,6 +1570,53 @@ void hp9845ct_state::update_graphic_bits(void)
m_ppu->dmar_w(dmar); m_ppu->dmar_w(dmar);
} }
int hp9845ct_state::get_lp_cursor_y_top(void) const
{
int wrapped_cursor_y = m_gv_lp_cursor_y;
if (wrapped_cursor_y >= GVIDEO_VPIXELS && wrapped_cursor_y < m_gv_v_total) {
wrapped_cursor_y -= m_gv_v_total;
}
return wrapped_cursor_y;
}
void hp9845ct_state::render_lp_cursor(unsigned video_scanline , unsigned pen_idx)
{
int cursor_y_top = get_lp_cursor_y_top();
bool yw;
if (m_gv_lp_cursor_fs) {
yw = true;
} else {
yw = (int)video_scanline >= cursor_y_top &&
(int)video_scanline <= (cursor_y_top + 48);
}
if (!yw) {
return;
}
if (!m_gv_lp_cursor_fs && m_gv_lp_cursor_x >= (VIDEO_TOT_HPIXELS + 24)) {
return;
}
bool yc = video_scanline == (cursor_y_top + 24);
const pen_t &pen = m_palette->pen(pen_idx);
if (!yc) {
if (m_gv_lp_cursor_x < VIDEO_TOT_HPIXELS) {
m_bitmap.pix32(video_scanline , m_gv_lp_cursor_x) = pen;
}
} else if (m_gv_lp_cursor_fs) {
for (unsigned x = 0; x < VIDEO_TOT_HPIXELS; x++) {
m_bitmap.pix32(video_scanline , x) = pen;
}
} else {
for (unsigned x = std::max(0 , (int)m_gv_lp_cursor_x - 24); x <= (m_gv_lp_cursor_x + 25) && x < VIDEO_TOT_HPIXELS; x++) {
m_bitmap.pix32(video_scanline , x) = pen;
}
}
}
void hp9845ct_state::lp_r4_w(uint16_t data) void hp9845ct_state::lp_r4_w(uint16_t data)
{ {
if (m_gv_lp_en) { if (m_gv_lp_en) {
@ -1568,12 +1624,6 @@ void hp9845ct_state::lp_r4_w(uint16_t data)
case 2: case 2:
// LP Y cursor + threshold + interlace + vertical blank interrupt // LP Y cursor + threshold + interlace + vertical blank interrupt
m_gv_lp_cursor_y = ((~data >> 6) & 0x1ff); m_gv_lp_cursor_y = ((~data >> 6) & 0x1ff);
#if 0
if (m_gv_lp_cursor_y < 454)
m_gv_lp_cursor_y += 24;
else
m_gv_lp_cursor_y -= 461;
#endif
m_gv_lp_fullbright = BIT(data, 1); m_gv_lp_fullbright = BIT(data, 1);
m_gv_lp_threshold = BIT(data, 3); m_gv_lp_threshold = BIT(data, 3);
m_gv_lp_interlace = !BIT(data, 4); m_gv_lp_interlace = !BIT(data, 4);
@ -1627,7 +1677,6 @@ uint16_t hp9845ct_state::lp_r4_r(void)
if (m_gv_lp_sw) { if (m_gv_lp_sw) {
BIT_SET(res, 14); BIT_SET(res, 14);
} }
// TODO: correct?
if (m_gv_lp_1sthit) { if (m_gv_lp_1sthit) {
BIT_SET(res, 15); BIT_SET(res, 15);
} }
@ -1650,6 +1699,26 @@ void hp9845ct_state::lp_r5_w(uint16_t data)
update_graphic_bits(); update_graphic_bits();
} }
bool hp9845ct_state::lp_segment_intersect(unsigned yline) const
{
int xp = m_gv_lp_x;
int yp = m_gv_lp_y;
int xc = (int)m_gv_lp_cursor_x + 1 - LP_XOFFSET;
unsigned h = (unsigned)abs((int)yline - yp);
if (h > LP_FOV) {
return false;
}
int dt = (int)sqrt(LP_FOV * LP_FOV - h * h);
int ex = xp - dt;
int fx = xp + dt;
// Consider [xc..xc+24] segment (i.e. the right-hand side of cursor interlace window)
return fx >= xc && ex <= (xc + 24);
}
void hp9845ct_state::compute_lp_data(void) void hp9845ct_state::compute_lp_data(void)
{ {
// get LP hit data, returns three words for cmd=6 and one word for cmd=4 // get LP hit data, returns three words for cmd=6 and one word for cmd=4
@ -1663,70 +1732,99 @@ void hp9845ct_state::compute_lp_data(void)
// bit 15 = 1st hit (YHI) = valid hit // bit 15 = 1st hit (YHI) = valid hit
// TODO: check // TODO: check
m_gv_lp_status = true; m_gv_lp_status = true;
bool xwindow[ 3 ] = { false , false , false };
bool ywindow[ 3 ] = { false , false , false };
uint16_t yhi, xleft, yleft, ylo; // hit coordinates
uint16_t xp = m_gv_lp_x; // light gun pointer
uint16_t yp = m_gv_lp_y;
int yc = get_lp_cursor_y_top() + 24;
if (m_gv_lp_selftest) { if (m_gv_lp_selftest) {
int offset = 57 - VIDEO_770_ALPHA_L_LIM; constexpr int offset = 57 - VIDEO_770_ALPHA_L_LIM;
m_gv_lp_xwindow = true; xwindow[ 0 ] = xwindow[ 1 ] = xwindow[ 2 ] = true;
m_gv_lp_ywindow = true; ywindow[ 0 ] = ywindow[ 1 ] = ywindow[ 2 ] = true;
m_gv_lp_data[0] = (~(m_gv_lp_cursor_y + 16)) & 0x1ff; // YHI yhi = m_gv_lp_cursor_y + 16; // YHI
m_gv_lp_data[1] = (~(m_gv_lp_cursor_x + offset)) & 0x3ff; // XLEFT xleft = m_gv_lp_cursor_x + offset; // XLEFT
m_gv_lp_data[2] = (~(m_gv_lp_cursor_y + 32)) & 0x1ff; // YLO ylo = m_gv_lp_cursor_y + 32; // YLO
} else { } else {
uint8_t fov = 9; // field of view = [cursor - fov, cursor + fov] // Hit in a cursor-only part.
uint16_t xp = m_gv_lp_x; // light gun pointer bool yhi_hit = false;
uint16_t yp = m_gv_lp_y; uint16_t y_top = std::max(0 , (int)yp - (int)LP_FOV);
uint16_t xc = m_gv_lp_cursor_x + 1; // 9845 light pen crosshair cursor
uint16_t yc = m_gv_lp_cursor_y + 24; // XLEFT: x coordinate of 1st hit in the frame or hit on cursor line
uint16_t yhi, xleft, ylo; // hit coordinates unsigned dy = abs((int)yp - yc);
uint16_t xoffset; // delay for hit detection on horizontal line if (dy <= LP_FOV) {
// try to calculate YHI, XLEFT, YLO hit coordinates with respect to LP cursor // Hit on horizontal cursor line
// should give a better match with the prediction algorithm in the firmware xleft = (uint16_t)std::max(0 , (int)xp - (int)sqrt(LP_FOV * LP_FOV - dy * dy));
uint16_t dx = 0, dy = fov; yleft = yc;
xoffset = 14; // longer delay due to bright line
// if vertical line of the cursor is within field of view, get y delta to intersection
if (abs(xc - xp) <= fov)
dy = (uint16_t)sqrt((fov * fov) - ((xc - xp) * (xc - xp)));
// if horizontal line of the cursor is within field of view, get x delta to intersection
if (abs(yc - yp) <= fov)
dx = (uint16_t)sqrt((fov * fov) - ((yc - yp) * (yc - yp)));
// check whether intersection with vertical line of the cursor is within window
if ((yp + dy >= yc - 24) && (yp - dy <= yc - 24)) {
// return the first hit in the window
yhi = (yp - dy > yc - 24) || !m_gv_lp_interlace ? yp - dy : yc - 24;
// return the last hit in the window
ylo = (yp + dy < yc + 24) || !m_gv_lp_interlace ? yp + dy : yc + 24;
} else { } else {
// otherwise return (simulated) first hit in view of field // 1st hit in the frame
yhi = yp - fov; dy = abs((int)yp - (int)y_top);
ylo = yp + fov; xleft = (uint16_t)std::max(0 , (int)xp - (int)sqrt(LP_FOV * LP_FOV - dy * dy));
yleft = y_top;
} }
// check whether intersection with horizontal line of the cursor is within window xleft += LP_XOFFSET;
if ((xp + dx >= xc - 24) && (xp - dx <= xc + 24))
// return the first hit on the horizontal bar of the cursor
xleft = (xp - dx > xc - 24) ? xp - dx - fov + xoffset : xp + dx - fov + xoffset;
else
// otherwise return (simulated) first hit in view of field
xleft = xp - fov + xoffset;
m_gv_lp_data[0] = ~yhi & 0x1ff; // YHI
m_gv_lp_data[1] = ~xleft & 0x3ff; // XLEFT
m_gv_lp_data[2] = ~ylo & 0x1ff; // YLO
if (m_gv_lp_interlace) { if (m_gv_lp_interlace) {
m_gv_lp_xwindow = ((xp > (xc - 24)) && (xp < (xc + 24))); // **** Interlaced mode ****
m_gv_lp_ywindow = ((yp > (yc - 24)) && (yp < (yc + 24))); unsigned ywd_top = (unsigned)std::max(yc - 24 , 0);
} else { unsigned ywd_bot = std::min((unsigned)(GVIDEO_VPIXELS - 1) , (unsigned)(yc + 24));
m_gv_lp_xwindow = false; unsigned even_odd = (unsigned)m_screen->frame_number() & 1;
m_gv_lp_ywindow = false;
// Scan the cursor window [yc-24..yc+24]
// Only consider each other line. LSB of frame number selects either even-numbered
// (0) or odd-numbered lines (1).
for (unsigned line = ywd_top; line <= ywd_bot; line++) {
if ((line & 1) == even_odd) {
// YHI: y coordinate of 1st hit in the frame or 1st hit in cursor-only part
bool curs_hit = lp_segment_intersect(line);
if (!yhi_hit && curs_hit) {
yhi = line;
yhi_hit = true;
}
// YLO: y coordinate of last hit in cursor-only part
if (curs_hit) {
//logerror("Hit @ %u %u %u-%u\n" , line , even_odd , ywd_top , ywd_bot);
ylo = line;
}
}
}
} }
if (!m_gv_lp_interlace || !yhi_hit) {
// **** Non-interlaced mode ****
// YHI: y coordinate of 1st hit in the frame
yhi = y_top;
// YLO: y coordinate of last hit in the frame
ylo = std::min((unsigned)(GVIDEO_VPIXELS - 1) , yp + LP_FOV);
}
xwindow[ 0 ] = yhi_hit;
xwindow[ 1 ] = yhi_hit && yleft >= yhi;
xwindow[ 2 ] = yhi_hit;
ywindow[ 1 ] = yleft == yc;
ywindow[ 2 ] = yleft == yc && ylo >= yleft;
} }
// TODO: debug m_gv_lp_data[ 0 ] = ~yhi & 0x1ff; // YHI
//m_gv_lp_data[0] |= 0x8000; m_gv_lp_data[ 1 ] = ~xleft & 0x3ff; // XLEFT
if (!m_gv_lp_xwindow) { m_gv_lp_data[ 2 ] = ~ylo & 0x1ff; // YLO
if (!xwindow[ 0 ]) {
BIT_SET(m_gv_lp_data[ 0 ], 13); BIT_SET(m_gv_lp_data[ 0 ], 13);
}
if (!xwindow[ 1 ]) {
BIT_SET(m_gv_lp_data[ 1 ], 13); BIT_SET(m_gv_lp_data[ 1 ], 13);
}
if (!xwindow[ 2 ]) {
BIT_SET(m_gv_lp_data[ 2 ], 13); BIT_SET(m_gv_lp_data[ 2 ], 13);
} }
if (!m_gv_lp_ywindow) { if (!ywindow[ 1 ]) {
BIT_SET(m_gv_lp_data[ 1 ], 14); BIT_SET(m_gv_lp_data[ 1 ], 14);
}
if (!ywindow[ 2 ]) {
BIT_SET(m_gv_lp_data[ 2 ], 14); BIT_SET(m_gv_lp_data[ 2 ], 14);
} }
if (!m_gv_lp_status) { if (!m_gv_lp_status) {
@ -1734,8 +1832,9 @@ void hp9845ct_state::compute_lp_data(void)
BIT_SET(m_gv_lp_data[ 1 ], 11); BIT_SET(m_gv_lp_data[ 1 ], 11);
BIT_SET(m_gv_lp_data[ 2 ], 11); BIT_SET(m_gv_lp_data[ 2 ], 11);
} }
LOG(("LP data %d %d %d (%u;%d) (%u;%u) %u %u %u %04x %04x %04x\n" , m_gv_lp_selftest , m_gv_lp_interlace , m_gv_lp_sw , m_gv_lp_cursor_x , yc , m_gv_lp_x , m_gv_lp_y , yhi , xleft , ylo , m_gv_lp_data[ 0 ] , m_gv_lp_data[ 1 ] , m_gv_lp_data[ 2 ]));
m_gv_lp_1sthit = true; m_gv_lp_1sthit = true;
LOG(("LP data %d %04x %04x %04x\n" , m_gv_lp_selftest , m_gv_lp_data[ 0 ] , m_gv_lp_data[ 1 ] , m_gv_lp_data[ 2 ]));
} }
const uint16_t hp9845ct_state::m_line_type[] = { const uint16_t hp9845ct_state::m_line_type[] = {
@ -1787,7 +1886,7 @@ protected:
}; };
hp9845c_state::hp9845c_state(const machine_config &mconfig, device_type type, const char *tag) hp9845c_state::hp9845c_state(const machine_config &mconfig, device_type type, const char *tag)
: hp9845ct_state(mconfig , type , tag) : hp9845ct_state(mconfig , type , tag, VIDEO_770_VTOTAL)
{ {
} }
@ -1950,21 +2049,25 @@ TIMER_DEVICE_CALLBACK_MEMBER(hp9845c_state::scanline_timer)
{ {
unsigned video_scanline = param; unsigned video_scanline = param;
if (m_graphic_sel) { if (video_scanline < VIDEO_770_VBEND || video_scanline >= VIDEO_770_VBSTART) {
if (video_scanline >= VIDEO_770_VBEND && video_scanline < VIDEO_770_VBSTART) { return;
graphic_video_render(video_scanline - VIDEO_770_VBEND);
}
} }
if (video_scanline >= VIDEO_770_VBEND && video_scanline < VIDEO_770_VBSTART) {
unsigned row = (video_scanline - VIDEO_770_VBEND) / VIDEO_CHAR_HEIGHT;
unsigned line_in_row = (video_scanline - VIDEO_770_VBEND) - row * VIDEO_CHAR_HEIGHT;
if (line_in_row == 0) { if (m_graphic_sel) {
// Start of new row, swap buffers graphic_video_render(video_scanline - VIDEO_770_VBEND);
m_video_buff_idx = !m_video_buff_idx; }
video_fill_buff(!m_video_buff_idx); unsigned row = (video_scanline - VIDEO_770_VBEND) / VIDEO_CHAR_HEIGHT;
} unsigned line_in_row = (video_scanline - VIDEO_770_VBEND) - row * VIDEO_CHAR_HEIGHT;
video_render_buff(video_scanline , line_in_row , m_video_buff_idx);
if (line_in_row == 0) {
// Start of new row, swap buffers
m_video_buff_idx = !m_video_buff_idx;
video_fill_buff(!m_video_buff_idx);
}
video_render_buff(video_scanline , line_in_row , m_video_buff_idx);
// Lightpen cursor
if (m_graphic_sel) {
render_lp_cursor(video_scanline - VIDEO_770_VBEND , pen_cursor(7));
} }
} }
@ -2045,7 +2148,7 @@ void hp9845c_state::graphic_video_render(unsigned video_scanline)
{ {
// video_scanline is 0-based, i.e. the topmost visible line of graphic screen is 0 // video_scanline is 0-based, i.e. the topmost visible line of graphic screen is 0
const pen_t *pen = m_palette->pens(); const pen_t *pen = m_palette->pens();
bool yc, yw, blink, lp_cursor; bool yc, yw, blink;
uint16_t word0, word1, word2; uint16_t word0, word1, word2;
uint8_t pen0, pen1, pen2; uint8_t pen0, pen1, pen2;
@ -2056,17 +2159,7 @@ void hp9845c_state::graphic_video_render(unsigned video_scanline)
pen1 = ((m_gv_music_memory & 0x002) >> 1) | ((m_gv_music_memory & 0x010) >> 3) | ((m_gv_music_memory & 0x080) >> 5); pen1 = ((m_gv_music_memory & 0x002) >> 1) | ((m_gv_music_memory & 0x010) >> 3) | ((m_gv_music_memory & 0x080) >> 5);
pen2 = ((m_gv_music_memory & 0x004) >> 2) | ((m_gv_music_memory & 0x020) >> 4) | ((m_gv_music_memory & 0x100) >> 6); pen2 = ((m_gv_music_memory & 0x004) >> 2) | ((m_gv_music_memory & 0x020) >> 4) | ((m_gv_music_memory & 0x100) >> 6);
// 49 pixel lightpen cross hair cursor if (m_gv_cursor_fs) {
lp_cursor = (m_gv_lp_cursor_x < VIDEO_TOT_HPIXELS) && (m_gv_lp_cursor_y < GVIDEO_VPIXELS);
if (lp_cursor) {
yc = video_scanline == (m_gv_lp_cursor_y + 24);
if (m_gv_lp_cursor_fs)
yw = true;
else
yw = video_scanline >= m_gv_lp_cursor_y &&
video_scanline <= (m_gv_lp_cursor_y + 49);
blink = true;
} else if (m_gv_cursor_fs) {
yw = true; yw = true;
// Steady cursor // Steady cursor
blink = true; blink = true;
@ -2096,17 +2189,13 @@ void hp9845c_state::graphic_video_render(unsigned video_scanline)
bool xw = false; bool xw = false;
unsigned pixel; unsigned pixel;
if (lp_cursor) { if (m_gv_cursor_gc) {
// lightpen cursor
xc = (x + VIDEO_770_ALPHA_L_LIM) == m_gv_lp_cursor_x;
xw = m_gv_lp_cursor_fs || ((x + 24 + VIDEO_770_ALPHA_L_LIM) >= m_gv_lp_cursor_x && (x + VIDEO_770_ALPHA_L_LIM - 25) <= m_gv_lp_cursor_x);
} else if (m_gv_cursor_gc) {
xc = (x + 61) == m_gv_cursor_x; xc = (x + 61) == m_gv_cursor_x;
xw = m_gv_cursor_fs || ((x + 69) > m_gv_cursor_x && (x + 53) < m_gv_cursor_x && ((x + 62) < m_gv_cursor_x || (x + 60) > m_gv_cursor_x)); xw = m_gv_cursor_fs || ((x + 69) > m_gv_cursor_x && (x + 53) < m_gv_cursor_x && ((x + 62) < m_gv_cursor_x || (x + 60) > m_gv_cursor_x));
} }
if (blink && ((xw && yc) || (yw && xc && (m_gv_cursor_gc || lp_cursor)))) { if (blink && ((xw && yc) || (yw && xc && m_gv_cursor_gc))) {
// Cursor (LP cursor is white) // Cursor
pixel = lp_cursor ? pen_cursor(7) : pen_cursor(m_gv_cursor_color); pixel = pen_cursor(m_gv_cursor_color);
} else { } else {
// Normal pixel // Normal pixel
pixel = pen_graphic(((word0 & mask) ? pen0 : 0) | ((word1 & mask) ? pen1 : 0) | ((word2 & mask) ? pen2 : 0)); pixel = pen_graphic(((word0 & mask) ? pen0 : 0) | ((word1 & mask) ? pen1 : 0) | ((word2 & mask) ? pen2 : 0));