/*************************************************************************** WEC Le Mans 24 & Hot Chase (C) 1986 & 1988 Konami driver by Luca Elia (l.elia@tin.it) ***************************************************************************/ #include "emu.h" #include "video/konicdev.h" #include "includes/wecleman.h" #define BMP_PAD 8 #define BLEND_STEPS 16 #define BLEND_MIN 0 #define BLEND_MAX (BLEND_STEPS*0x20-1) #define BLEND_INC 1 #define BLEND_DEC -8 #define SPRITE_FLIPX 0x01 #define SPRITE_FLIPY 0x02 #define NUM_SPRITES 256 struct sprite { UINT8 *pen_data; /* points to top left corner of tile data */ int line_offset; const pen_t *pal_data; rgb_t pal_base; int x_offset, y_offset; int tile_width, tile_height; int total_width, total_height; /* in screen coordinates */ int x, y; int shadow_mode, flags; }; /*************************************************************************** Sprite Description and Routines ------------------------------- Sprites: 256 entries, 16 bytes each, first ten bytes used (and tested) Offset Bits Meaning 00.w fedc ba98 ---- ---- Screen Y stop ---- ---- 7654 3210 Screen Y start 02.w fedc ba-- ---- ---- High bits of sprite "address" ---- --9- ---- ---- Flip Y ? ---- ---8 7654 3210 Screen X start 04.w fedc ba98 ---- ---- Color ---- ---- 7654 3210 Source Width / 8 06.w f--- ---- ---- ---- Flip X -edc ba98 7654 3210 Low bits of sprite "address" 08.w --dc ba98 ---- ---- Y? Shrink Factor ---- ---- --54 3210 X? Shrink Factor Sprite "address" is the index of the pixel the hardware has to start fetching data from, divided by 8. Only the on-screen height and source data width are provided, along with two shrinking factors. So on screen width and source height are calculated by the hardware using the shrink factors. The factors are in the range 0 (no shrinking) - 3F (half size). Hot Chase: shadow of trees is pen 0x0a ***************************************************************************/ static void get_sprite_info(running_machine &machine) { wecleman_state *state = machine.driver_data(); const pen_t *base_pal = machine.pens; UINT8 *base_gfx = machine.region("gfx1")->base(); int gfx_max = machine.region("gfx1")->bytes(); UINT16 *source = state->m_spriteram; struct sprite *sprite = state->m_sprite_list; struct sprite *finish = state->m_sprite_list + NUM_SPRITES; int bank, code, gfx, zoom; for (state->m_spr_count=0; spritey = source[0x00/2] & 0xff; sprite->total_height = (source[0x00/2] >> 8) - sprite->y; if (sprite->total_height < 1) continue; sprite->x = source[0x02/2] & 0x1ff; bank = source[0x02/2] >> 10; if (bank == 0x3f) continue; sprite->tile_width = source[0x04/2] & 0xff; if (sprite->tile_width < 1) continue; sprite->shadow_mode = source[0x04/2] & 0x4000; code = source[0x06/2]; zoom = source[0x08/2]; sprite->pal_base = (source[0x0e/2] & 0xff) << 4; sprite->pal_data = base_pal + sprite->pal_base; gfx = (state->m_gfx_bank[bank] << 15) + (code & 0x7fff); sprite->flags = 0; if (code & 0x8000) { sprite->flags |= SPRITE_FLIPX; gfx += 1-sprite->tile_width; } if (source[0x02/2] & 0x0200) sprite->flags |= SPRITE_FLIPY; gfx <<= 3; sprite->tile_width <<= 3; sprite->tile_height = (sprite->total_height * 0x80) / (0x80 - (zoom >> 8)); // needs work if ((gfx + sprite->tile_width * sprite->tile_height - 1) >= gfx_max) continue; sprite->pen_data = base_gfx + gfx; sprite->line_offset = sprite->tile_width; sprite->total_width = sprite->tile_width - (sprite->tile_width * (zoom & 0xff)) / 0x80; sprite->total_height += 1; sprite->x += state->m_spr_offsx; sprite->y += state->m_spr_offsy; if (state->m_gameid == 0) { state->m_spr_idx_list[state->m_spr_count] = state->m_spr_count; state->m_spr_pri_list[state->m_spr_count] = source[0x0e/2] >> 8; } state->m_spr_ptr_list[state->m_spr_count] = sprite; state->m_spr_count++; } } // priority sorting, silly but good for smaller arrays static void sortsprite(int *idx_array, int *key_array, int size) { int i, j, tgt_val, low_val, low_pos, src_idx, tgt_idx, hi_idx; idx_array += size; for (j=-size; j<-1; j++) { src_idx = idx_array[j]; low_pos = j; low_val = key_array[src_idx]; hi_idx = src_idx; for (i=j+1; i; i++) { tgt_idx = idx_array[i]; tgt_val = key_array[tgt_idx]; if (low_val > tgt_val) { low_val = tgt_val; low_pos = i; } else if ((low_val == tgt_val) && (hi_idx <= tgt_idx)) { hi_idx = tgt_idx; low_pos = i; } } low_val = idx_array[low_pos]; idx_array[low_pos] = src_idx; idx_array[j] = low_val; } } // draws a 8bpp palette sprites on a 16bpp direct RGB target (sub-par implementation) static void do_blit_zoom32(wecleman_state *state, bitmap_t *bitmap, const rectangle *cliprect, struct sprite *sprite) { #define PRECISION_X 20 #define PRECISION_Y 20 #define FPY_HALF (1<<(PRECISION_Y-1)) const pen_t *pal_base; int src_f0y, src_fdy, src_f0x, src_fdx, src_fpx; int x1, x2, y1, y2, dx, dy, sx, sy; int xcount0=0, ycount0=0; if (sprite->flags & SPRITE_FLIPX) { x2 = sprite->x; x1 = x2 + sprite->total_width; dx = -1; if (x2 < cliprect->min_x) x2 = cliprect->min_x; if (x1 > cliprect->max_x ) { xcount0 = x1 - cliprect->max_x; x1 = cliprect->max_x; } if (x2 >= x1) return; x1--; x2--; } else { x1 = sprite->x; x2 = x1 + sprite->total_width; dx = 1; if (x1 < cliprect->min_x ) { xcount0 = cliprect->min_x - x1; x1 = cliprect->min_x; } if (x2 > cliprect->max_x ) x2 = cliprect->max_x; if (x1 >= x2) return; } if (sprite->flags & SPRITE_FLIPY) { y2 = sprite->y; y1 = y2 + sprite->total_height; dy = -1; if (y2 < cliprect->min_y ) y2 = cliprect->min_y; if (y1 > cliprect->max_y ) { ycount0 = cliprect->max_y; y1 = cliprect->max_y; } if (y2 >= y1) return; y1--; y2--; } else { y1 = sprite->y; y2 = y1 + sprite->total_height; dy = 1; if (y1 < cliprect->min_y ) { ycount0 = cliprect->min_y - y1; y1 = cliprect->min_y; } if (y2 > cliprect->max_y) y2 = cliprect->max_y; if (y1 >= y2) return; } // calculate entry point decimals src_fdy = (sprite->tile_height<total_height; src_f0y = src_fdy * ycount0 + FPY_HALF; src_fdx = (sprite->tile_width<total_width; src_f0x = src_fdx * xcount0; // pre-loop assignments and adjustments pal_base = sprite->pal_data; if (x1 > cliprect->min_x) { x1 -= dx; x2 -= dx; } for (sy = y1; sy != y2; sy += dy) { UINT8 *row_base = sprite->pen_data + (src_f0y>>PRECISION_Y) * sprite->line_offset; src_fpx = src_f0x; if (bitmap->format == BITMAP_FORMAT_RGB32) // Wec Le Mans { UINT32 *dst_ptr = BITMAP_ADDR32(bitmap, sy, 0); if (!sprite->shadow_mode) { for (sx = x1; sx != x2; sx += dx) { int pix = row_base[src_fpx >> PRECISION_X]; if (pix & 0x80) break; if (pix) dst_ptr[sx] = pal_base[pix]; src_fpx += src_fdx; } } else { for (sx = x1; sx != x2; sx += dx) { int pix = row_base[src_fpx >> PRECISION_X]; if (pix & 0x80) break; if (pix) { if (pix != 0xa) dst_ptr[sx] = pal_base[pix]; else dst_ptr[sx] = (dst_ptr[sx] >> 1) & MAKE_RGB(0x7f,0x7f,0x7f); } src_fpx += src_fdx; } } } else // Hot Chase { UINT16 *dst_ptr = BITMAP_ADDR16(bitmap, sy, 0); pen_t base = sprite->pal_base; if (!sprite->shadow_mode) { for (sx = x1; sx != x2; sx += dx) { int pix = row_base[src_fpx >> PRECISION_X]; if (pix & 0x80) break; if (pix) dst_ptr[sx] = base + pix; src_fpx += src_fdx; } } else { for (sx = x1; sx != x2; sx += dx) { int pix = row_base[src_fpx >> PRECISION_X]; if (pix & 0x80) break; if (pix) { if (pix != 0xa) dst_ptr[sx] = base + pix; else { if (dst_ptr[sx] != state->m_black_pen) dst_ptr[sx] |= 0x800; } } src_fpx += src_fdx; } } } src_f0y += src_fdy; } } static void sprite_draw(running_machine &machine, bitmap_t *bitmap, const rectangle *cliprect) { wecleman_state *state = machine.driver_data(); int i; if (state->m_gameid == 0) // Wec Le Mans { sortsprite(state->m_spr_idx_list, state->m_spr_pri_list, state->m_spr_count); for (i=0; im_spr_count; i++) do_blit_zoom32(state, bitmap, cliprect, state->m_spr_ptr_list[state->m_spr_idx_list[i]]); } else // Hot Chase { for (i=0; im_spr_count; i++) do_blit_zoom32(state, bitmap, cliprect, state->m_spr_ptr_list[i]); } } /*************************************************************************** Background Description and Routines ----------------------------------- [WEC Le Mans 24] [ 2 Scrolling Layers ] [Background] [Foreground] Tile Size: 8x8 Tile Format: see wecleman_get_bg_tile_info() Layer Size: 4 Pages - Page0 Page1 Page2 Page3 each page is 512 x 256 (64 x 32 tiles) Page Selection Reg.: 108efe [Bg] 108efc [Fg] 4 pages to choose from Scrolling Columns: 1 Scrolling Columns Reg.: 108f26 [Bg] 108f24 [Fg] Scrolling Rows: 224 / 8 (Screen-wise scrolling) Scrolling Rows Reg.: 108f82/4/6.. [Bg] 108f80/2/4.. [Fg] [ 1 Text Layer ] Tile Size: 8x8 Tile Format: see wecleman_get_txt_tile_info() Layer Size: 1 Page: 512 x 256 (64 x 32 tiles) Scrolling: - [ 1 Road Layer ] [ 256 Sprites ] Zooming Sprites, see below [Hot Chase] [ 3 Zooming Layers ] [Background] [Foreground (text)] [Road] [ 256 Sprites ] Zooming Sprites, see below ***************************************************************************/ /*************************************************************************** WEC Le Mans 24 ***************************************************************************/ #define PAGE_GFX (0) #define PAGE_NX (0x40) #define PAGE_NY (0x20) #define TILEMAP_DIMY (PAGE_NY * 2 * 8) /*------------------------------------------------------------------------ [ Frontmost (text) layer + video registers ] ------------------------------------------------------------------------*/ static TILE_GET_INFO( wecleman_get_txt_tile_info ) { wecleman_state *state = machine.driver_data(); int code = state->m_txtram[tile_index]; SET_TILE_INFO(PAGE_GFX, code&0xfff, (code>>5&0x78)+(code>>12), 0); } WRITE16_HANDLER( wecleman_txtram_w ) { wecleman_state *state = space->machine().driver_data(); UINT16 old_data = state->m_txtram[offset]; UINT16 new_data = COMBINE_DATA(&state->m_txtram[offset]); if ( old_data != new_data ) { if (offset >= 0xE00/2 ) /* Video registers */ { /* pages selector for the background */ if (offset == 0xEFE/2) { state->m_bgpage[0] = (new_data >> 0x4) & 3; state->m_bgpage[1] = (new_data >> 0x0) & 3; state->m_bgpage[2] = (new_data >> 0xc) & 3; state->m_bgpage[3] = (new_data >> 0x8) & 3; tilemap_mark_all_tiles_dirty(state->m_bg_tilemap); } /* pages selector for the foreground */ if (offset == 0xEFC/2) { state->m_fgpage[0] = (new_data >> 0x4) & 3; state->m_fgpage[1] = (new_data >> 0x0) & 3; state->m_fgpage[2] = (new_data >> 0xc) & 3; state->m_fgpage[3] = (new_data >> 0x8) & 3; tilemap_mark_all_tiles_dirty(state->m_fg_tilemap); } /* Parallactic horizontal scroll registers follow */ } else tilemap_mark_tile_dirty(state->m_txt_tilemap, offset); } } /*------------------------------------------------------------------------ [ Background ] ------------------------------------------------------------------------*/ static TILE_GET_INFO( wecleman_get_bg_tile_info ) { wecleman_state *state = machine.driver_data(); int page = state->m_bgpage[((tile_index&0x7f)>>6) + ((tile_index>>12)<<1)]; int code = state->m_pageram[(tile_index&0x3f) + ((tile_index>>7&0x1f)<<6) + (page<<11)]; SET_TILE_INFO(PAGE_GFX, code&0xfff, (code>>5&0x78)+(code>>12), 0); } /*------------------------------------------------------------------------ [ Foreground ] ------------------------------------------------------------------------*/ static TILE_GET_INFO( wecleman_get_fg_tile_info ) { wecleman_state *state = machine.driver_data(); int page = state->m_fgpage[((tile_index&0x7f)>>6) + ((tile_index>>12)<<1)]; int code = state->m_pageram[(tile_index&0x3f) + ((tile_index>>7&0x1f)<<6) + (page<<11)]; if (!code || code==0xffff) code = 0x20; SET_TILE_INFO(PAGE_GFX, code&0xfff, (code>>5&0x78)+(code>>12), 0); } /*------------------------------------------------------------------------ [ Pages (Background & Foreground) ] ------------------------------------------------------------------------*/ /* Pages that compose both the background and the foreground */ WRITE16_HANDLER( wecleman_pageram_w ) { wecleman_state *state = space->machine().driver_data(); COMBINE_DATA(&state->m_pageram[offset]); { int page,col,row; page = ( offset ) / (PAGE_NX * PAGE_NY); col = ( offset ) % PAGE_NX; row = ( offset / PAGE_NX ) % PAGE_NY; /* background */ if (state->m_bgpage[0] == page) tilemap_mark_tile_dirty(state->m_bg_tilemap, (col+PAGE_NX*0) + (row+PAGE_NY*0)*PAGE_NX*2 ); if (state->m_bgpage[1] == page) tilemap_mark_tile_dirty(state->m_bg_tilemap, (col+PAGE_NX*1) + (row+PAGE_NY*0)*PAGE_NX*2 ); if (state->m_bgpage[2] == page) tilemap_mark_tile_dirty(state->m_bg_tilemap, (col+PAGE_NX*0) + (row+PAGE_NY*1)*PAGE_NX*2 ); if (state->m_bgpage[3] == page) tilemap_mark_tile_dirty(state->m_bg_tilemap, (col+PAGE_NX*1) + (row+PAGE_NY*1)*PAGE_NX*2 ); /* foreground */ if (state->m_fgpage[0] == page) tilemap_mark_tile_dirty(state->m_fg_tilemap, (col+PAGE_NX*0) + (row+PAGE_NY*0)*PAGE_NX*2 ); if (state->m_fgpage[1] == page) tilemap_mark_tile_dirty(state->m_fg_tilemap, (col+PAGE_NX*1) + (row+PAGE_NY*0)*PAGE_NX*2 ); if (state->m_fgpage[2] == page) tilemap_mark_tile_dirty(state->m_fg_tilemap, (col+PAGE_NX*0) + (row+PAGE_NY*1)*PAGE_NX*2 ); if (state->m_fgpage[3] == page) tilemap_mark_tile_dirty(state->m_fg_tilemap, (col+PAGE_NX*1) + (row+PAGE_NY*1)*PAGE_NX*2 ); } } /*------------------------------------------------------------------------ Road Drawing This layer is composed of horizontal lines gfx elements There are 256 lines in ROM, each is 512 pixels wide Offset: Elements: Data: 0000-01ff 100 Words Code fedcba98-------- Priority? --------76543210 Line Number 0200-03ff 100 Words Horizontal Scroll 0400-05ff 100 Words Color 0600-07ff 100 Words ?? We draw each line using a bunch of 64x1 tiles ------------------------------------------------------------------------*/ static void wecleman_draw_road(running_machine &machine, bitmap_t *bitmap, const rectangle *cliprect, int priority) { wecleman_state *state = machine.driver_data(); // must be powers of 2 #define XSIZE 512 #define YSIZE 256 #define YMASK (YSIZE-1) #define DST_WIDTH 320 #define DST_HEIGHT 224 #define MIDCURB_DY 5 #define TOPCURB_DY 7 static const pen_t road_color[48] = { 0x3f1,0x3f3,0x3f5,0x3fd,0x3fd,0x3fb,0x3fd,0x7ff, // road color 0 0x3f0,0x3f2,0x3f4,0x3fc,0x3fc,0x3fb,0x3fc,0x7fe, // road color 1 0, 0, 0,0x3f9,0x3f9, 0, 0, 0, // midcurb color 0 0, 0, 0,0x3f8,0x3f8, 0, 0, 0, // midcurb color 1 0, 0, 0,0x3f7, 0, 0, 0, 0, // topcurb color 0 0, 0, 0,0x3f6, 0, 0, 0, 0 // topcutb color 1 }; const UINT8 *src_ptr; const pen_t *pal_ptr, *rgb_ptr; int scrollx, sy, sx; int mdy, tdy, i; rgb_ptr = machine.pens; if (priority == 0x02) { // draw sky; each scanline is assumed to be dword aligned for (sy=cliprect->min_y-BMP_PAD; sym_roadram[sy]; if ((road>>8) != 0x02) continue; pix = rgb_ptr[(state->m_roadram[sy+(YSIZE*2)] & 0xf) + 0x7f0]; for (sx = 0; sx < DST_WIDTH; sx++) dst[sx] = pix; } } else if (priority == 0x04) { // draw road pen_t road_rgb[48]; for (i=0; i<48; i++) { int color = road_color[i]; road_rgb[i] = color ? rgb_ptr[color] : 0xffffffff; } for (sy=cliprect->min_y-BMP_PAD; sym_roadram[sy]; if ((road>>8) != 0x04) continue; road &= YMASK; src_ptr = gfx_element_get_data(machine.gfx[1], (road << 3)); gfx_element_get_data(machine.gfx[1], (road << 3) + 1); gfx_element_get_data(machine.gfx[1], (road << 3) + 2); gfx_element_get_data(machine.gfx[1], (road << 3) + 3); gfx_element_get_data(machine.gfx[1], (road << 3) + 4); gfx_element_get_data(machine.gfx[1], (road << 3) + 5); gfx_element_get_data(machine.gfx[1], (road << 3) + 6); gfx_element_get_data(machine.gfx[1], (road << 3) + 7); mdy = ((road * MIDCURB_DY) >> 8) * bitmap->rowpixels; tdy = ((road * TOPCURB_DY) >> 8) * bitmap->rowpixels; scrollx = state->m_roadram[sy+YSIZE] + (0x18 - 0xe00); pal_ptr = road_rgb + ((state->m_roadram[sy+(YSIZE*2)]<<3) & 8); for (sx = 0; sx < DST_WIDTH; sx++, scrollx++) { if (scrollx >= 0 && scrollx < XSIZE) { pen_t temp; pix = src_ptr[scrollx]; dst[sx] = pal_ptr[pix]; temp = pal_ptr[pix + 16]; if (temp != 0xffffffff) dst[sx - mdy] = temp; temp = pal_ptr[pix + 32]; if (temp != 0xffffffff) dst[sx - tdy] = temp; } else dst[sx] = pal_ptr[7]; } } } #undef YSIZE #undef XSIZE } /*------------------------------------------------------------------------ Sky Drawing ------------------------------------------------------------------------*/ // blends two 8x8x16bpp direct RGB tilemaps static void draw_cloud(bitmap_t *bitmap, const gfx_element *gfx, UINT16 *tm_base, int x0, int y0, // target coordinate int xcount, int ycount, // number of tiles to draw in x and y int scrollx, int scrolly, // tilemap scroll position int tmw_l2, int tmh_l2, // tilemap width and height in log(2) int alpha, int pal_offset ) // alpha(0-3f), # of color codes to shift { wecleman_state *state = gfx->machine().driver_data(); const UINT8 *src_ptr; UINT16 *tmap_ptr; UINT32 *dst_base, *dst_ptr; const pen_t *pal_base, *pal_ptr; int tilew, tileh; int tmskipx, tmskipy, tmscanx, tmmaskx, tmmasky; int dx, dy; int i, j, tx, ty; if (alpha > 0x1f) return; tilew = gfx->width; tileh = gfx->height; tmmaskx = (1<machine().pens + pal_offset * gfx->color_granularity; alpha <<= 6; dst_base += 8; for (i = 0; i < ycount; i++) { tmap_ptr = tm_base + ((tmskipy++ & tmmasky)<> 5) & 0x78) + (tiledata >> 12); src_ptr = gfx_element_get_data(gfx, tile_index); pal_ptr = pal_base + tile_color * gfx->color_granularity; dst_ptr = dst_base + j * tilew; /* alpha case */ if (alpha > 0) { for (ty = 0; ty < tileh; ty++) { for (tx = 0; tx < tilew; tx++) { UINT8 srcpix = *src_ptr++; pen_t srcrgb = pal_ptr[srcpix]; UINT32 dstrgb = dst_ptr[tx]; int sr, sg, sb, dr, dg, db; sr = (srcrgb >> 3) & 0x1f; sg = (srcrgb >> 11) & 0x1f; sb = (srcrgb >> 19) & 0x1f; dr = (dstrgb >> 3) & 0x1f; dg = (dstrgb >> 11) & 0x1f; db = (dstrgb >> 19) & 0x1f; dr = (state->m_t32x32pm[dr - sr + alpha] >> 5) + dr; dg = (state->m_t32x32pm[dg - sg + alpha] >> 5) + dg; db = (state->m_t32x32pm[db - sb + alpha] >> 5) + db; dst_ptr[tx] = MAKE_RGB(pal5bit(db), pal5bit(dg), pal5bit(dr)); } dst_ptr += bitmap->rowpixels; } } /* non-alpha case */ else { for (ty = 0; ty < tileh; ty++) { for (tx = 0; tx < tilew; tx++) dst_ptr[tx] = pal_ptr[*src_ptr++]; dst_ptr += bitmap->rowpixels; } } } dst_base += bitmap->rowpixels * tileh; } } /*************************************************************************** Hot Chase ***************************************************************************/ /*------------------------------------------------------------------------ Road Drawing This layer is composed of horizontal lines gfx elements There are 512 lines in ROM, each is 512 pixels wide Offset: Elements: Data: 0000-03ff 00-FF Code (4 bytes) Code: 00.w fedc ba98 ---- ---- Unused? ---- ---- 7654 ---- color ---- ---- ---- 3210 scroll x 02.w fedc ba-- ---- ---- scroll x ---- --9- ---- ---- ? ---- ---8 7654 3210 code We draw each line using a bunch of 64x1 tiles ------------------------------------------------------------------------*/ static void hotchase_draw_road(running_machine &machine, bitmap_t *bitmap, const rectangle *cliprect) { wecleman_state *state = machine.driver_data(); /* Referred to what's in the ROMs */ #define XSIZE 512 #define YSIZE 512 int sx, sy; const rectangle &visarea = machine.primary_screen->visible_area(); /* Let's draw from the top to the bottom of the visible screen */ for (sy = visarea.min_y;sy <= visarea.max_y;sy++) { int code = state->m_roadram[sy*4/2+2/2] + (state->m_roadram[sy*4/2+0/2] << 16); int color = ((code & 0x00f00000) >> 20) + 0x70; int scrollx = ((code & 0x0007fc00) >> 10) * 2; /* convert line number in gfx element number: */ /* code is the tile code of the start of this line */ code &= 0x1ff; code *= XSIZE / 32; for (sx=0; sx<2*XSIZE; sx+=64) { drawgfx_transpen(bitmap,cliprect,machine.gfx[0], code++, color, 0,0, ((sx-scrollx)&0x3ff)-(384-32),sy,0); } } #undef XSIZE #undef YSIZE } /*************************************************************************** Palette Routines ***************************************************************************/ // new video and palette code WRITE16_HANDLER( wecleman_videostatus_w ) { wecleman_state *state = space->machine().driver_data(); COMBINE_DATA(state->m_videostatus); // bit0-6: background transition, 0=off, 1=on // bit7: palette being changed, 0=no, 1=yes if (ACCESSING_BITS_0_7) { if ((data & 0x7f) == 0 && !state->m_cloud_ds) state->m_cloud_ds = BLEND_INC; else if ((data & 0x7f) == 1 && !state->m_cloud_visible) { data ^= 1; state->m_cloud_ds = BLEND_DEC; state->m_cloud_visible = 1; } } } WRITE16_HANDLER( hotchase_paletteram16_SBGRBBBBGGGGRRRR_word_w ) { int newword, r, g, b; newword = COMBINE_DATA(&space->machine().generic.paletteram.u16[offset]); r = ((newword << 1) & 0x1E ) | ((newword >> 12) & 0x01); g = ((newword >> 3) & 0x1E ) | ((newword >> 13) & 0x01); b = ((newword >> 7) & 0x1E ) | ((newword >> 14) & 0x01); palette_set_color_rgb(space->machine(), offset, pal5bit(r), pal5bit(g), pal5bit(b)); r>>=1; g>>=1; b>>=1; palette_set_color_rgb(space->machine(), offset+0x800, pal5bit(r)/2, pal5bit(g)/2, pal5bit(b)/2); } WRITE16_HANDLER( wecleman_paletteram16_SSSSBBBBGGGGRRRR_word_w ) { int newword = COMBINE_DATA(&space->machine().generic.paletteram.u16[offset]); // the highest nibble has some unknown functions // if (newword & 0xf000) logerror("MSN set on color %03x: %1x\n", offset, newword>>12); palette_set_color_rgb(space->machine(), offset, pal4bit(newword >> 0), pal4bit(newword >> 4), pal4bit(newword >> 8)); } /*************************************************************************** Initializations ***************************************************************************/ VIDEO_START( wecleman ) { wecleman_state *state = machine.driver_data(); /* Sprite banking - each bank is 0x20000 bytes (we support 0x40 bank codes) This game has ROMs for 16 banks */ static const int bank[0x40] = { 0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7, 8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15, 0,0,1,1,2,2,3,3,4,4,5,5,6,6,7,7, 8,8,9,9,10,10,11,11,12,12,13,13,14,14,15,15 }; UINT8 *buffer; int i, j; assert(machine.primary_screen->format() == BITMAP_FORMAT_RGB32); buffer = auto_alloc_array(machine, UINT8, 0x12c00); // working buffer for sprite operations state->m_gameid = 0; state->m_gfx_bank = bank; state->m_spr_offsx = -0xbc + BMP_PAD; state->m_spr_offsy = 1 + BMP_PAD; state->m_cloud_blend = BLEND_MAX; state->m_cloud_ds = 0; state->m_cloud_visible = 0; state->m_black_pen = get_black_pen(machine); state->m_rgb_half = (UINT16*)(buffer + 0x00000); state->m_t32x32pm = (int*)(buffer + 0x10020); state->m_spr_ptr_list = (struct sprite **)(buffer + 0x12000); state->m_spr_idx_list = (int *)(buffer + 0x12400); state->m_spr_pri_list = (int *)(buffer + 0x12800); for (i=0; i<0x8000; i++) { j = i>>1; state->m_rgb_half[i] = (j&0xf) | (j&0x1e0) | (j&0x3c00); } for (j=0; j<0x20; j++) { for (i=-0x1f; i<0x20; i++) { *(state->m_t32x32pm + (j<<6) + i) = i * j; } } state->m_sprite_list = auto_alloc_array_clear(machine, struct sprite, NUM_SPRITES); state->m_bg_tilemap = tilemap_create(machine, wecleman_get_bg_tile_info, tilemap_scan_rows, /* We draw part of the road below */ 8,8, PAGE_NX * 2, PAGE_NY * 2 ); state->m_fg_tilemap = tilemap_create(machine, wecleman_get_fg_tile_info, tilemap_scan_rows, 8,8, PAGE_NX * 2, PAGE_NY * 2); state->m_txt_tilemap = tilemap_create(machine, wecleman_get_txt_tile_info, tilemap_scan_rows, 8,8, PAGE_NX * 1, PAGE_NY * 1); tilemap_set_scroll_rows(state->m_bg_tilemap, TILEMAP_DIMY); /* Screen-wise scrolling */ tilemap_set_scroll_cols(state->m_bg_tilemap, 1); tilemap_set_transparent_pen(state->m_bg_tilemap,0); tilemap_set_scroll_rows(state->m_fg_tilemap, TILEMAP_DIMY); /* Screen-wise scrolling */ tilemap_set_scroll_cols(state->m_fg_tilemap, 1); tilemap_set_transparent_pen(state->m_fg_tilemap,0); tilemap_set_scroll_rows(state->m_txt_tilemap, 1); tilemap_set_scroll_cols(state->m_txt_tilemap, 1); tilemap_set_transparent_pen(state->m_txt_tilemap,0); tilemap_set_scrollx(state->m_txt_tilemap, 0, 512-320-16 -BMP_PAD); tilemap_set_scrolly(state->m_txt_tilemap, 0, -BMP_PAD ); // patches out a mysterious pixel floating in the sky (tile decoding bug?) *(machine.gfx[0]->gfxdata + (machine.gfx[0]->char_modulo*0xaca+7)) = 0; } // Callbacks for the K051316 void hotchase_zoom_callback_0(running_machine &machine, int *code,int *color,int *flags) { *code |= (*color & 0x03) << 8; *color = (*color & 0xfc) >> 2; } void hotchase_zoom_callback_1(running_machine &machine, int *code,int *color,int *flags) { *code |= (*color & 0x01) << 8; *color = ((*color & 0x3f) << 1) | ((*code & 0x80) >> 7); } VIDEO_START( hotchase ) { wecleman_state *state = machine.driver_data(); /* Sprite banking - each bank is 0x20000 bytes (we support 0x40 bank codes) This game has ROMs for 0x30 banks */ static const int bank[0x40] = { 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15, 16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31, 32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47, 0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15 }; UINT8 *buffer; buffer = auto_alloc_array(machine, UINT8, 0x400); // reserve 1k for sprite list state->m_gameid = 1; state->m_gfx_bank = bank; state->m_spr_offsx = -0xc0; state->m_spr_offsy = 0; state->m_black_pen = get_black_pen(machine); state->m_spr_ptr_list = (struct sprite **)buffer; state->m_sprite_list = auto_alloc_array_clear(machine, struct sprite, NUM_SPRITES); } /*************************************************************************** Video Updates ***************************************************************************/ SCREEN_UPDATE( wecleman ) { wecleman_state *state = screen->machine().driver_data(); const pen_t *mrct; int video_on; int fg_x, bg_x, fg_y, bg_y; int cloud_sx, cloud_sy; int i, j, k; mrct = screen->machine().pens; video_on = state->m_irqctrl & 0x40; set_led_status(screen->machine(), 0, state->m_selected_ip & 0x04); // Start lamp fg_y = (state->m_txtram[0x0f24>>1] & (TILEMAP_DIMY - 1)); bg_y = (state->m_txtram[0x0f26>>1] & (TILEMAP_DIMY - 1)); cloud_sx = state->m_txtram[0xfee>>1] + 0xb0; cloud_sy = bg_y; tilemap_set_scrolly(state->m_bg_tilemap, 0, bg_y -BMP_PAD); tilemap_set_scrolly(state->m_fg_tilemap, 0, fg_y -BMP_PAD); for (i=0; i<(28<<2); i+=4) { fg_x = state->m_txtram[(i+0xf80)>>1] + (0xb0 -BMP_PAD); bg_x = state->m_txtram[(i+0xf82)>>1] + (0xb0 -BMP_PAD); k = i<<1; for (j=0; j<8; j++) { tilemap_set_scrollx(state->m_fg_tilemap, (fg_y + k + j) & (TILEMAP_DIMY - 1), fg_x); tilemap_set_scrollx(state->m_bg_tilemap, (bg_y + k + j) & (TILEMAP_DIMY - 1), bg_x); } } // temporary fix for ranking screen tile masking /* palette hacks! */ ((pen_t *)mrct)[0x27] = mrct[0x24]; get_sprite_info(screen->machine()); bitmap_fill(bitmap, cliprect, state->m_black_pen); /* Draw the road (lines which have priority 0x02) */ if (video_on) wecleman_draw_road(screen->machine(), bitmap, cliprect, 0x02); /* Draw the background */ if (video_on) tilemap_draw(bitmap,cliprect, state->m_bg_tilemap, 0, 0); // draws the cloud layer; needs work if (state->m_cloud_visible) { /* palette hacks! */ ((pen_t *)mrct)[0] = ((pen_t *)mrct)[0x40] = ((pen_t *)mrct)[0x200] = ((pen_t *)mrct)[0x205]; if (video_on) draw_cloud( bitmap, screen->machine().gfx[0], state->m_pageram+0x1800, BMP_PAD, BMP_PAD, 41, 20, cloud_sx, cloud_sy, 6, 5, state->m_cloud_blend/BLEND_STEPS, 0); state->m_cloud_blend += state->m_cloud_ds; if (state->m_cloud_blend < BLEND_MIN) { state->m_cloud_blend = BLEND_MIN; state->m_cloud_ds = 0; *state->m_videostatus |= 1; } else if (state->m_cloud_blend > BLEND_MAX) { state->m_cloud_blend = BLEND_MAX; state->m_cloud_ds = 0; state->m_cloud_visible = 0; } } /* Draw the foreground */ if (video_on) tilemap_draw(bitmap,cliprect, state->m_fg_tilemap, 0, 0); /* Draw the road (lines which have priority 0x04) */ if (video_on) wecleman_draw_road(screen->machine(), bitmap,cliprect, 0x04); /* Draw the sprites */ if (video_on) sprite_draw(screen->machine(), bitmap,cliprect); /* Draw the text layer */ if (video_on) tilemap_draw(bitmap,cliprect, state->m_txt_tilemap, 0, 0); return 0; } /*************************************************************************** Hot Chase ***************************************************************************/ SCREEN_UPDATE( hotchase ) { wecleman_state *state = screen->machine().driver_data(); device_t *k051316_1 = screen->machine().device("k051316_1"); device_t *k051316_2 = screen->machine().device("k051316_2"); int video_on; video_on = state->m_irqctrl & 0x40; set_led_status(screen->machine(), 0, state->m_selected_ip & 0x04); // Start lamp get_sprite_info(screen->machine()); bitmap_fill(bitmap, cliprect, state->m_black_pen); /* Draw the background */ if (video_on) k051316_zoom_draw(k051316_1, bitmap, cliprect, 0, 0); /* Draw the road */ if (video_on) hotchase_draw_road(screen->machine(), bitmap, cliprect); /* Draw the sprites */ if (video_on) sprite_draw(screen->machine(), bitmap,cliprect); /* Draw the foreground (text) */ if (video_on) k051316_zoom_draw(k051316_2, bitmap, cliprect, 0, 0); return 0; }