summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/shadfrce.h
blob: e22b3013e780ed351c14efd6884c19d0f02eceef (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
#include "sound/okim6295.h"

class shadfrce_state : public driver_device
{
public:
	shadfrce_state(const machine_config &mconfig, device_type type, const char *tag)
		: driver_device(mconfig, type, tag),
		m_fgvideoram(*this, "fgvideoram"),
		m_bg0videoram(*this, "bg0videoram"),
		m_bg1videoram(*this, "bg1videoram"),
		m_spvideoram(*this, "spvideoram"),
		m_maincpu(*this, "maincpu"),
		m_audiocpu(*this, "audiocpu"),
		m_oki(*this, "oki"),
		m_gfxdecode(*this, "gfxdecode") { }

	tilemap_t *m_fgtilemap;
	tilemap_t *m_bg0tilemap;
	tilemap_t *m_bg1tilemap;

	required_shared_ptr<UINT16> m_fgvideoram;
	required_shared_ptr<UINT16> m_bg0videoram;
	required_shared_ptr<UINT16> m_bg1videoram;
	required_shared_ptr<UINT16> m_spvideoram;
	UINT16 *m_spvideoram_old;

	int m_video_enable;
	int m_irqs_enable;
	int m_raster_scanline;
	int m_raster_irq_enable;
	int m_vblank;
	int m_prev_value;
	DECLARE_WRITE16_MEMBER(shadfrce_flip_screen);
	DECLARE_READ16_MEMBER(shadfrce_input_ports_r);
	DECLARE_WRITE16_MEMBER(shadfrce_sound_brt_w);
	DECLARE_WRITE16_MEMBER(shadfrce_irq_ack_w);
	DECLARE_WRITE16_MEMBER(shadfrce_irq_w);
	DECLARE_WRITE16_MEMBER(shadfrce_scanline_w);
	DECLARE_WRITE16_MEMBER(shadfrce_fgvideoram_w);
	DECLARE_WRITE16_MEMBER(shadfrce_bg0videoram_w);
	DECLARE_WRITE16_MEMBER(shadfrce_bg1videoram_w);
	DECLARE_WRITE16_MEMBER(shadfrce_bg0scrollx_w);
	DECLARE_WRITE16_MEMBER(shadfrce_bg0scrolly_w);
	DECLARE_WRITE16_MEMBER(shadfrce_bg1scrollx_w);
	DECLARE_WRITE16_MEMBER(shadfrce_bg1scrolly_w);
	DECLARE_WRITE8_MEMBER(oki_bankswitch_w);
	TILE_GET_INFO_MEMBER(get_shadfrce_fgtile_info);
	TILE_GET_INFO_MEMBER(get_shadfrce_bg0tile_info);
	TILE_GET_INFO_MEMBER(get_shadfrce_bg1tile_info);
	virtual void video_start();
	UINT32 screen_update_shadfrce(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
	void screen_eof_shadfrce(screen_device &screen, bool state);
	TIMER_DEVICE_CALLBACK_MEMBER(shadfrce_scanline);
	void draw_sprites(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect );
	required_device<cpu_device> m_maincpu;
	required_device<cpu_device> m_audiocpu;
	required_device<okim6295_device> m_oki;
	required_device<gfxdecode_device> m_gfxdecode;
};