summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/gotcha.c
blob: f908fb9e753599c2006430760744907f5b5c78d5 (plain) (blame)
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
#include "emu.h"
#include "includes/gotcha.h"

/***************************************************************************

  Callbacks for the TileMap code

***************************************************************************/

static TILEMAP_MAPPER( gotcha_tilemap_scan )
{
	return (col & 0x1f) | (row << 5) | ((col & 0x20) << 5);
}

INLINE void get_tile_info( running_machine &machine, tile_data *tileinfo, int tile_index ,UINT16 *vram, int color_offs)
{
	gotcha_state *state = machine.driver_data<gotcha_state>();
	UINT16 data = vram[tile_index];
	int code = (data & 0x3ff) | (state->m_gfxbank[(data & 0x0c00) >> 10] << 10);

	SET_TILE_INFO(0, code, (data >> 12) + color_offs, 0);
}

static TILE_GET_INFO( fg_get_tile_info )
{
	gotcha_state *state = machine.driver_data<gotcha_state>();
	get_tile_info(machine, tileinfo, tile_index, state->m_fgvideoram, 0);
}

static TILE_GET_INFO( bg_get_tile_info )
{
	gotcha_state *state = machine.driver_data<gotcha_state>();
	get_tile_info(machine, tileinfo, tile_index, state->m_bgvideoram, 16);
}



/***************************************************************************

  Start the video hardware emulation.

***************************************************************************/

VIDEO_START( gotcha )
{
	gotcha_state *state = machine.driver_data<gotcha_state>();
	state->m_fg_tilemap = tilemap_create(machine, fg_get_tile_info, gotcha_tilemap_scan, 16, 16, 64, 32);
	state->m_bg_tilemap = tilemap_create(machine, bg_get_tile_info, gotcha_tilemap_scan, 16, 16, 64, 32);

	tilemap_set_transparent_pen(state->m_fg_tilemap, 0);

	tilemap_set_scrolldx(state->m_fg_tilemap, -1, 0);
	tilemap_set_scrolldx(state->m_bg_tilemap, -5, 0);
}


WRITE16_HANDLER( gotcha_fgvideoram_w )
{
	gotcha_state *state = space->machine().driver_data<gotcha_state>();
	COMBINE_DATA(&state->m_fgvideoram[offset]);
	tilemap_mark_tile_dirty(state->m_fg_tilemap, offset);
}

WRITE16_HANDLER( gotcha_bgvideoram_w )
{
	gotcha_state *state = space->machine().driver_data<gotcha_state>();
	COMBINE_DATA(&state->m_bgvideoram[offset]);
	tilemap_mark_tile_dirty(state->m_bg_tilemap, offset);
}

WRITE16_HANDLER( gotcha_gfxbank_select_w )
{
	gotcha_state *state = space->machine().driver_data<gotcha_state>();
	if (ACCESSING_BITS_8_15)
		state->m_banksel = (data & 0x0300) >> 8;
}

WRITE16_HANDLER( gotcha_gfxbank_w )
{
	gotcha_state *state = space->machine().driver_data<gotcha_state>();
	if (ACCESSING_BITS_8_15)
	{
		if (state->m_gfxbank[state->m_banksel] != ((data & 0x0f00) >> 8))
		{
			state->m_gfxbank[state->m_banksel] = (data & 0x0f00) >> 8;
			tilemap_mark_all_tiles_dirty_all(space->machine());
		}
	}
}

WRITE16_HANDLER( gotcha_scroll_w )
{
	gotcha_state *state = space->machine().driver_data<gotcha_state>();
	COMBINE_DATA(&state->m_scroll[offset]);

	switch (offset)
	{
		case 0: tilemap_set_scrollx(state->m_fg_tilemap, 0, state->m_scroll[0]); break;
		case 1: tilemap_set_scrolly(state->m_fg_tilemap, 0, state->m_scroll[1]); break;
		case 2: tilemap_set_scrollx(state->m_bg_tilemap, 0, state->m_scroll[2]); break;
		case 3: tilemap_set_scrolly(state->m_bg_tilemap, 0, state->m_scroll[3]); break;
	}
}




static void draw_sprites( running_machine &machine, bitmap_t *bitmap, const rectangle *cliprect )
{
	gotcha_state *state = machine.driver_data<gotcha_state>();
	UINT16 *spriteram = state->m_spriteram;
	int offs;

	for (offs = 0; offs < state->m_spriteram_size / 2; offs += 4)
	{
		int sx, sy, code, color, flipx, flipy, height, y;

		sx = spriteram[offs + 2];
		sy = spriteram[offs + 0];
		code = spriteram[offs + 1];
		color = spriteram[offs + 2] >> 9;
		height = 1 << ((spriteram[offs + 0] & 0x0600) >> 9);
		flipx = spriteram[offs + 0] & 0x2000;
		flipy = spriteram[offs + 0] & 0x4000;

		for (y = 0; y < height; y++)
		{
			drawgfx_transpen(bitmap,cliprect,machine.gfx[1],
					code + (flipy ? height-1 - y : y),
					color,
					flipx,flipy,
					0x140-5 - ((sx + 0x10) & 0x1ff),0x100+1 - ((sy + 0x10 * (height - y)) & 0x1ff),0);
		}
	}
}


SCREEN_UPDATE( gotcha )
{
	gotcha_state *state = screen->machine().driver_data<gotcha_state>();
	tilemap_draw(bitmap, cliprect, state->m_bg_tilemap, 0, 0);
	tilemap_draw(bitmap, cliprect, state->m_fg_tilemap, 0, 0);
	draw_sprites(screen->machine(), bitmap, cliprect);
	return 0;
}