/*************************************************************************** video.c Functions to emulate the video hardware of the machine. ***************************************************************************/ #include "emu.h" #include "includes/sonson.h" /*************************************************************************** Convert the color PROMs into a more useable format. Son Son has two 32x8 palette PROMs and two 256x4 lookup table PROMs (one for characters, one for sprites). The palette PROMs are connected to the RGB output this way: I don't know the exact values of the resistors between the PROMs and the RGB output. I assumed these values (the same as Commando) bit 7 -- 220 ohm resistor -- GREEN -- 470 ohm resistor -- GREEN -- 1 kohm resistor -- GREEN -- 2.2kohm resistor -- GREEN -- 220 ohm resistor -- BLUE -- 470 ohm resistor -- BLUE -- 1 kohm resistor -- BLUE bit 0 -- 2.2kohm resistor -- BLUE bit 7 -- unused -- unused -- unused -- unused -- 220 ohm resistor -- RED -- 470 ohm resistor -- RED -- 1 kohm resistor -- RED bit 0 -- 2.2kohm resistor -- RED ***************************************************************************/ PALETTE_INIT( sonson ) { int i; /* allocate the colortable */ machine.colortable = colortable_alloc(machine, 0x20); /* create a lookup table for the palette */ for (i = 0; i < 0x20; i++) { int bit0, bit1, bit2, bit3; int r, g, b; /* red component */ bit0 = (color_prom[i + 0x20] >> 0) & 0x01; bit1 = (color_prom[i + 0x20] >> 1) & 0x01; bit2 = (color_prom[i + 0x20] >> 2) & 0x01; bit3 = (color_prom[i + 0x20] >> 3) & 0x01; r = 0x0e * bit0 + 0x1f * bit1 + 0x43 * bit2 + 0x8f * bit3; /* green component */ bit0 = (color_prom[i + 0x00] >> 4) & 0x01; bit1 = (color_prom[i + 0x00] >> 5) & 0x01; bit2 = (color_prom[i + 0x00] >> 6) & 0x01; bit3 = (color_prom[i + 0x00] >> 7) & 0x01; g = 0x0e * bit0 + 0x1f * bit1 + 0x43 * bit2 + 0x8f * bit3; /* blue component */ bit0 = (color_prom[i + 0x00] >> 0) & 0x01; bit1 = (color_prom[i + 0x00] >> 1) & 0x01; bit2 = (color_prom[i + 0x00] >> 2) & 0x01; bit3 = (color_prom[i + 0x00] >> 3) & 0x01; b = 0x0e * bit0 + 0x1f * bit1 + 0x43 * bit2 + 0x8f * bit3; colortable_palette_set_color(machine.colortable, i, MAKE_RGB(r, g, b)); } /* color_prom now points to the beginning of the lookup table */ color_prom += 0x40; /* characters use colors 0-0x0f */ for (i = 0; i < 0x100; i++) { UINT8 ctabentry = color_prom[i] & 0x0f; colortable_entry_set_value(machine.colortable, i, ctabentry); } /* sprites use colors 0x10-0x1f */ for (i = 0x100; i < 0x200; i++) { UINT8 ctabentry = (color_prom[i] & 0x0f) | 0x10; colortable_entry_set_value(machine.colortable, i, ctabentry); } } WRITE8_HANDLER( sonson_videoram_w ) { sonson_state *state = space->machine().driver_data(); state->m_videoram[offset] = data; tilemap_mark_tile_dirty(state->m_bg_tilemap, offset); } WRITE8_HANDLER( sonson_colorram_w ) { sonson_state *state = space->machine().driver_data(); state->m_colorram[offset] = data; tilemap_mark_tile_dirty(state->m_bg_tilemap, offset); } WRITE8_HANDLER( sonson_scrollx_w ) { sonson_state *state = space->machine().driver_data(); int row; for (row = 5; row < 32; row++) tilemap_set_scrollx(state->m_bg_tilemap, row, data); } WRITE8_HANDLER( sonson_flipscreen_w ) { flip_screen_set(space->machine(), ~data & 0x01); } static TILE_GET_INFO( get_bg_tile_info ) { sonson_state *state = machine.driver_data(); int attr = state->m_colorram[tile_index]; int code = state->m_videoram[tile_index] + 256 * (attr & 0x03); int color = attr >> 2; SET_TILE_INFO(0, code, color, 0); } VIDEO_START( sonson ) { sonson_state *state = machine.driver_data(); state->m_bg_tilemap = tilemap_create(machine, get_bg_tile_info, tilemap_scan_rows, 8, 8, 32, 32); tilemap_set_scroll_rows(state->m_bg_tilemap, 32); } static void draw_sprites( running_machine &machine, bitmap_t *bitmap, const rectangle *cliprect ) { sonson_state *state = machine.driver_data(); UINT8 *spriteram = state->m_spriteram; int offs; for (offs = state->m_spriteram_size - 4; offs >= 0; offs -= 4) { int code = spriteram[offs + 2] + ((spriteram[offs + 1] & 0x20) << 3); int color = spriteram[offs + 1] & 0x1f; int flipx = ~spriteram[offs + 1] & 0x40; int flipy = ~spriteram[offs + 1] & 0x80; int sx = spriteram[offs + 3]; int sy = spriteram[offs + 0]; if (flip_screen_get(machine)) { sx = 240 - sx; sy = 240 - sy; flipx = !flipx; flipy = !flipy; } drawgfx_transpen(bitmap, cliprect, machine.gfx[1], code, color, flipx, flipy, sx, sy, 0); /* wrap-around */ drawgfx_transpen(bitmap, cliprect, machine.gfx[1], code, color, flipx, flipy, sx - 256, sy, 0); drawgfx_transpen(bitmap, cliprect, machine.gfx[1], code, color, flipx, flipy, sx, sy - 256, 0); } } SCREEN_UPDATE( sonson ) { sonson_state *state = screen->machine().driver_data(); tilemap_draw(bitmap, cliprect, state->m_bg_tilemap, 0, 0); draw_sprites(screen->machine(), bitmap, cliprect); return 0; }