summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/kan_pand.h
blob: c0ec7a5c524cd7c976cbc14d9d4edcfd0bb091ef (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
/*************************************************************************

    kan_pand.h

    Implementation of Kaneko Pandora sprite chip

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

#ifndef __KAN_PAND_H__
#define __KAN_PAND_H__

/***************************************************************************
    TYPE DEFINITIONS
***************************************************************************/

struct kaneko_pandora_interface
{
	const char *m_screen_tag;
	UINT8      m_gfx_region;
	int        m_xoffset;
	int        m_yoffset;
};

class kaneko_pandora_device : public device_t,
								public kaneko_pandora_interface
{
public:
	kaneko_pandora_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
	~kaneko_pandora_device() {}

	DECLARE_WRITE8_MEMBER ( spriteram_w );
	DECLARE_READ8_MEMBER( spriteram_r );	
	DECLARE_WRITE16_MEMBER( spriteram_LSB_w );
	DECLARE_READ16_MEMBER( spriteram_LSB_r );
	void update( bitmap_ind16 &bitmap, const rectangle &cliprect );
	void set_clear_bitmap( int clear );
	void eof();
	void set_bg_pen( int pen );
	
protected:
	// device-level overrides
	virtual void device_config_complete();
	virtual void device_start();
	virtual void device_reset();
	
	void draw( bitmap_ind16 &bitmap, const rectangle &cliprect );

private:
	// internal state
	screen_device	*m_screen;
	UINT8 *      	m_spriteram;
	bitmap_ind16 	*m_sprites_bitmap; /* bitmap to render sprites to, Pandora seems to be frame'buffered' */
	int          	m_clear_bitmap;
	int         	m_bg_pen; // might work some other way..
};

extern const device_type KANEKO_PANDORA;


/***************************************************************************
    DEVICE CONFIGURATION MACROS
***************************************************************************/

#define MCFG_KANEKO_PANDORA_ADD(_tag, _interface) \
	MCFG_DEVICE_ADD(_tag, KANEKO_PANDORA, 0) \
	MCFG_DEVICE_CONFIG(_interface)


#endif /* __KAN_PAND_H__ */