summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/taitoair.h
blob: bc80ec503a096ac12a7d33ae6c5876bd9485ba49 (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
/*************************************************************************

    Taito Air System

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

enum { TAITOAIR_FRAC_SHIFT = 16, TAITOAIR_POLY_MAX_PT = 16 };

struct taitoair_spoint {
	INT32 x, y;
};

struct taitoair_poly {
	struct taitoair_spoint p[TAITOAIR_POLY_MAX_PT];
	int pcount;
	int col;
};


class taitoair_state : public driver_device
{
public:
	taitoair_state(const machine_config &mconfig, device_type type, const char *tag)
		: driver_device(mconfig, type, tag) { }

	/* memory pointers */
	UINT16 *      m_m68000_mainram;
	UINT16 *      m_line_ram;
	UINT16 *      m_dsp_ram;	/* Shared 68000/TMS32025 RAM */
	UINT16 *      m_paletteram;

	/* video-related */
	taitoair_poly  m_q;

	/* misc */
	int           m_dsp_hold_signal;
	INT32         m_banknum;

	/* devices */
	device_t *m_audiocpu;
	device_t *m_dsp;
	device_t *m_tc0080vco;

	UINT16 *      m_gradram;
	UINT16 *      m_backregs;

	bitmap_t *m_framebuffer[2];

    /* 3d info */
    INT16 m_frustumLeft;
    INT16 m_frustumBottom;
    INT16 m_eyecoordBuffer[4];  /* homogeneous */

    bitmap_t *m_buffer3d;
};


/*----------- defined in video/taitoair.c -----------*/

SCREEN_UPDATE( taitoair );
VIDEO_START( taitoair );

WRITE16_HANDLER( dsp_flags_w );
WRITE16_HANDLER( dsp_x_eyecoord_w );
WRITE16_HANDLER( dsp_y_eyecoord_w );
WRITE16_HANDLER( dsp_z_eyecoord_w );
WRITE16_HANDLER( dsp_rasterize_w );
WRITE16_HANDLER( dsp_frustum_left_w );
WRITE16_HANDLER( dsp_frustum_bottom_w );