summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/actfancr.c
blob: 19509eff3576b16f0b9ef6641143e32c6d476fcf (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
/*******************************************************************************

    actfancr - Bryan McPhail, mish@tendril.co.uk

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

#include "emu.h"
#include "includes/actfancr.h"
#include "video/decbac06.h"
#include "video/decmxc06.h"

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

static void register_savestate( running_machine &machine )
{
	actfancr_state *state = machine.driver_data<actfancr_state>();
	state->save_item(NAME(state->m_flipscreen));
}

VIDEO_START( actfancr )
{
	register_savestate(machine);
}

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

SCREEN_UPDATE( actfancr )
{
	actfancr_state *state = screen->machine().driver_data<actfancr_state>();

	/* Draw playfield */
	//state->m_flipscreen = state->m_control_2[0] & 0x80;
	//tilemap_set_flip_all(screen->machine(), state->m_flipscreen ? (TILEMAP_FLIPY | TILEMAP_FLIPX) : 0);

	screen->machine().device<deco_bac06_device>("tilegen1")->deco_bac06_pf_draw(screen->machine(),bitmap,cliprect,TILEMAP_DRAW_OPAQUE, 0x00, 0x00, 0x00, 0x00);
	screen->machine().device<deco_mxc06_device>("spritegen")->draw_sprites(screen->machine(), bitmap, cliprect, state->m_spriteram16, 0x00, 0x00, 0x0f);
	screen->machine().device<deco_bac06_device>("tilegen2")->deco_bac06_pf_draw(screen->machine(),bitmap,cliprect,0, 0x00, 0x00, 0x00, 0x00);

	return 0;
}