summaryrefslogblamecommitdiffstatshomepage
path: root/src/mame/video/suprslam.c
blob: 2c012880dc7c2e9936ad069d78f18cea4f8af0d6 (plain) (tree)
1
2
3
4
5
6
7
8
9

                                                   
                
                           
                              

 
                                                          
                                                                                                 






















                                                                                                     

                                                                      

                                             

                                           
                               








                                                   


                                                                         
 


                                                                         
 


                                                                         
 
                                                                       








                                                      
                                                              
                         
                                           


                                                                              
                                                                                                        

                                                                                                                                                                                                

                                                          

                                    


                                                                             
                                                                                                        

                                                                                                                                                                                                











                                                          
                                                                               
 

                                                                 




                                              
                                                                      

                                                                   
 
                                       

                              
                                            





                                         
                                                                               
 

                                                             




                                                 
                                                                      

                                                               
 
                                   

                              
                                            




                       
                                                                      
 

                                                                                                                    
 
                                                                 

 
                         
 
                                                                                
                                                                                        
 
                                                                        

                                                                                            
                                                                  

                                                                      
                                                                  




                                 
                                                                               
                                            

                                               
 

                                                
 



                                                                      
 
/* Super Slams - video, see notes in driver file */

#include "emu.h"
#include "video/konicdev.h"
#include "includes/suprslam.h"


/* todo, fix zooming correctly, it's _not_ like aerofgt */
static void draw_sprites( running_machine &machine, bitmap_t *bitmap, const rectangle *cliprect )
{
	/* SPRITE INFO

    Video System hardware, like aerofgt etc.

    the sprites use 2 areas of ram, one containing a spritelist + sprite attributes, the other
    contains the sprite tile #'s to use

    sprite attribute info (4 words per sprite)

    |  ZZZZ hhhy yyyy yyyy  |  zzzz wwwx xxxx xxxx  |  -fpp pppp ---- ----  |  -ooo oooo oooo oooo  |

    x  = x position
    y  = y position
    w  = width
    h  = height
    zZ = y zoom / x zoom
    f  = xflip
    p  = palette / colour
    o  = offset to tile data in other ram area

    */

	suprslam_state *state = machine.driver_data<suprslam_state>();
	const gfx_element *gfx = machine.gfx[1];
	UINT16 *source = state->m_spriteram;
	UINT16 *source2 = state->m_spriteram;
	UINT16 *finish = source + 0x2000/2;

	while (source < finish)
	{
		UINT32 sprnum = source[0] & 0x03ff;
		if (source[0] == 0x4000) break;

		sprnum *= 4;

		source++;
		/* DRAW START */
		{
			int ypos = source2[sprnum + 0] & 0x1ff;
			int high = (source2[sprnum + 0] & 0x0e00) >> 9;
			int yzoom = (source2[sprnum + 0] & 0xf000) >> 12;

			int xpos = source2[sprnum + 1] & 0x1ff;
			int wide = (source2[sprnum + 1] & 0x0e00) >> 9;
			int xzoom = (source2[sprnum + 1] & 0xf000) >> 12;

			int col = (source2[sprnum + 2] & 0x3f00) >> 8;
			int flipx = (source2[sprnum + 2] & 0x4000) >> 14;
//          int flipy = (source2[sprnum + 2] & 0x8000) >> 15;

			int word_offset = source2[sprnum + 3] & 0x7fff;
			int xcnt, ycnt;

			int loopno = 0;

			xzoom = 32 - xzoom;
			yzoom = 32 - yzoom;

			if (ypos > 0xff) ypos -=0x200;

			for (ycnt = 0; ycnt < high+1; ycnt ++)
			{
				if (!flipx)
			{
					for (xcnt = 0; xcnt < wide+1; xcnt ++)
					{
						int tileno = state->m_sp_videoram[word_offset + loopno];
						drawgfxzoom_transpen(bitmap, cliprect, gfx, tileno, col, 0, 0,xpos + xcnt * xzoom/2, ypos + ycnt * yzoom/2,xzoom << 11, yzoom << 11, 15);
						drawgfxzoom_transpen(bitmap, cliprect, gfx, tileno, col, 0, 0,-0x200+xpos + xcnt * xzoom/2, ypos + ycnt * yzoom/2,xzoom << 11, yzoom << 11, 15);
						loopno ++;
					}
				}
				else
				{
					for (xcnt = wide; xcnt >= 0; xcnt --)
					{
						int tileno = state->m_sp_videoram[word_offset + loopno];
						drawgfxzoom_transpen(bitmap, cliprect, gfx, tileno, col, 1, 0,xpos + xcnt * xzoom/2, ypos + ycnt * yzoom/2,xzoom << 11, yzoom << 11, 15);
						drawgfxzoom_transpen(bitmap, cliprect, gfx, tileno, col, 1, 0,-0x200+xpos + xcnt * xzoom/2, ypos + ycnt * yzoom/2,xzoom << 11, yzoom << 11, 15);
						loopno ++;
					}
				}
			}
		}
	}
}

/* FG 'SCREEN' LAYER */

WRITE16_HANDLER( suprslam_screen_videoram_w )
{
	suprslam_state *state = space->machine().driver_data<suprslam_state>();

	state->m_screen_videoram[offset] = data;
	tilemap_mark_tile_dirty(state->m_screen_tilemap, offset);
}


static TILE_GET_INFO( get_suprslam_tile_info )
{
	suprslam_state *state = machine.driver_data<suprslam_state>();
	int tileno = state->m_screen_videoram[tile_index] & 0x0fff;
	int colour = state->m_screen_videoram[tile_index] & 0xf000;

	tileno += state->m_screen_bank;
	colour = colour >> 12;

	SET_TILE_INFO(0, tileno, colour, 0);
}


/* BG LAYER */
WRITE16_HANDLER( suprslam_bg_videoram_w )
{
	suprslam_state *state = space->machine().driver_data<suprslam_state>();

	state->m_bg_videoram[offset] = data;
	tilemap_mark_tile_dirty(state->m_bg_tilemap, offset);
}


static TILE_GET_INFO( get_suprslam_bg_tile_info )
{
	suprslam_state *state = machine.driver_data<suprslam_state>();
	int tileno = state->m_bg_videoram[tile_index] & 0x0fff;
	int colour = state->m_bg_videoram[tile_index] & 0xf000;

	tileno += state->m_bg_bank;
	colour = colour >> 12;

	SET_TILE_INFO(2, tileno, colour, 0);
}


VIDEO_START( suprslam )
{
	suprslam_state *state = machine.driver_data<suprslam_state>();

	state->m_bg_tilemap = tilemap_create(machine, get_suprslam_bg_tile_info, tilemap_scan_rows, 16, 16, 64, 64);
	state->m_screen_tilemap = tilemap_create(machine, get_suprslam_tile_info, tilemap_scan_rows, 8, 8, 64, 32);

	tilemap_set_transparent_pen(state->m_screen_tilemap, 15);
}

SCREEN_UPDATE( suprslam )
{
	suprslam_state *state = screen->machine().driver_data<suprslam_state>();
	tilemap_set_scrollx( state->m_screen_tilemap,0, state->m_screen_vregs[0x04/2] );

	bitmap_fill(bitmap, cliprect, get_black_pen(screen->machine()));
	k053936_zoom_draw(state->m_k053936, bitmap, cliprect, state->m_bg_tilemap, 0, 0, 1);
	if(!(state->m_spr_ctrl[0] & 8))
		draw_sprites(screen->machine(), bitmap, cliprect);
	tilemap_draw(bitmap, cliprect, state->m_screen_tilemap, 0, 0);
	if(state->m_spr_ctrl[0] & 8)
		draw_sprites(screen->machine(), bitmap, cliprect);
	return 0;
}

WRITE16_HANDLER (suprslam_bank_w)
{
	suprslam_state *state = space->machine().driver_data<suprslam_state>();
	UINT16 old_screen_bank, old_bg_bank;
	old_screen_bank = state->m_screen_bank;
	old_bg_bank = state->m_bg_bank;

	state->m_screen_bank = data & 0xf000;
	state->m_bg_bank = (data & 0x0f00) << 4;

	if (state->m_screen_bank != old_screen_bank)
		tilemap_mark_all_tiles_dirty(state->m_screen_tilemap);
	if (state->m_bg_bank != old_bg_bank)
		tilemap_mark_all_tiles_dirty(state->m_bg_tilemap);
}