summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/ginganin.c
blob: 9b9e6ab2aca525271a39b6c76ce7e06f34a738c6 (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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
/**************************************************************************

                            Ginga NinkyouDen
                            (C) 1987 Jaleco

                    driver by Luca Elia (l.elia@tin.it)


Note:   if MAME_DEBUG is defined, pressing Z with:

        Q       shows background
        W       shows foreground
        E       shows frontmost (text) layer
        A       shows sprites

        Keys can be used togheter!


[Screen]
    Visible Size:       256H x 240V
    Dynamic Colors:     256 x 4
    Color Space:        16R x 16G x 16B

[Scrolling layers]
    Format (all layers):    Offset:     0x400    0x000
                            Bit:        fedc---- --------   Color
                                        ----ba98 76543210   Code

    [Background]
        Size:               8192 x 512  (static: stored in ROM)
        Scrolling:          X,Y         (registers: $60006.w, $60004.w)
        Tiles Size:         16 x 16
        Tiles Number:       $400
        Colors:             $300-$3ff

    [Foreground]
        Size:               4096 x 512
        Scrolling:          X,Y         (registers: $60002.w, $60000.w)
        Tiles Size:         16 x 16
        Tiles Number:       $400
        Colors:             $200-$2ff

    [Frontmost]
        Size:               256 x 256
        Scrolling:          -
        Tiles Size:         8 x 8
        Tiles Number:       $200
        Colors:             $000-$0ff


[Sprites]
    On Screen:          256
    In ROM:             $a00
    Colors:             $100-$1ff
    Format:             See Below


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

#include "emu.h"
#include "includes/ginganin.h"


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

  Callbacks for the TileMap code

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


/* Background - Resides in ROM */

#define BG_GFX (0)
#define BG_NX  (16*32)
#define BG_NY  (16*2)

static TILE_GET_INFO( get_bg_tile_info )
{
	UINT8 *gfx = machine.region("gfx5")->base();
	int code = gfx[2 * tile_index + 0] * 256 + gfx[2 * tile_index + 1];
	SET_TILE_INFO(
			BG_GFX,
			code,
			code >> 12,
			0);
}


/* Foreground - Resides in RAM */

#define FG_GFX (1)
#define FG_NX  (16*16)
#define FG_NY  (16*2)

static TILE_GET_INFO( get_fg_tile_info )
{
	ginganin_state *state = machine.driver_data<ginganin_state>();
	UINT16 code = state->m_fgram[tile_index];
	SET_TILE_INFO(
			FG_GFX,
			code,
			code >> 12,
			0);
}

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


/* Frontmost (text) Layer - Resides in RAM */

#define TXT_GFX (2)
#define TXT_NX	(32)
#define TXT_NY	(32)

static TILE_GET_INFO( get_txt_tile_info )
{
	ginganin_state *state = machine.driver_data<ginganin_state>();
	UINT16 code = state->m_txtram[tile_index];
	SET_TILE_INFO(
			TXT_GFX,
			code,
			code >> 12,
			0);
}

WRITE16_HANDLER( ginganin_txtram16_w )
{
	ginganin_state *state = space->machine().driver_data<ginganin_state>();
	COMBINE_DATA(&state->m_txtram[offset]);
	tilemap_mark_tile_dirty(state->m_tx_tilemap, offset);
}


VIDEO_START( ginganin )
{
	ginganin_state *state = machine.driver_data<ginganin_state>();
	state->m_bg_tilemap = tilemap_create(machine, get_bg_tile_info, tilemap_scan_cols, 16, 16, BG_NX, BG_NY);
	state->m_fg_tilemap = tilemap_create(machine, get_fg_tile_info, tilemap_scan_cols, 16, 16, FG_NX, FG_NY);
	state->m_tx_tilemap = tilemap_create(machine, get_txt_tile_info, tilemap_scan_rows, 8, 8, TXT_NX, TXT_NY);

	tilemap_set_transparent_pen(state->m_fg_tilemap, 15);
	tilemap_set_transparent_pen(state->m_tx_tilemap, 15);
}


WRITE16_HANDLER( ginganin_vregs16_w )
{
	ginganin_state *state = space->machine().driver_data<ginganin_state>();
	COMBINE_DATA(&state->m_vregs[offset]);
	data = state->m_vregs[offset];

	switch (offset)
	{
	case 0:
		tilemap_set_scrolly(state->m_fg_tilemap, 0, data);
		break;
	case 1:
		tilemap_set_scrollx(state->m_fg_tilemap, 0, data);
		break;
	case 2:
		tilemap_set_scrolly(state->m_bg_tilemap, 0, data);
		break;
	case 3:
		tilemap_set_scrollx(state->m_bg_tilemap, 0, data);
		break;
	case 4:
		state->m_layers_ctrl = data;
		break;
/*  case 5:
 *      break;
 */
	case 6:
		state->m_flipscreen = !(data & 1);
		tilemap_set_flip_all(space->machine(), state->m_flipscreen ? (TILEMAP_FLIPY | TILEMAP_FLIPX) : 0);
		break;
	case 7:
		soundlatch_w(space, 0, data);
		device_set_input_line(state->m_audiocpu, INPUT_LINE_NMI, PULSE_LINE);
		break;
	default:
		logerror("CPU #0 PC %06X : Warning, videoreg %04X <- %04X\n", cpu_get_pc(&space->device()), offset, data);
	}
}



/* --------------------------[ Sprites Format ]----------------------------

Offset:         Values:         Format:

0000.w          y position      fedc ba9- ---- ----     unused
                                ---- ---8 ---- ----     subtract 256
                                ---- ---- 7654 3210     position

0002.w          x position      See above

0004.w          code            f--- ---- ---- ----     y flip
                                -e-- ---- ---- ----     x flip
                                --dc ---- ---- ----     unused?
                                ---- ba98 7654 3210     code

0006.w          colour          fedc ---- ---- ----     colour code
                                ---- ba98 7654 3210     unused?

------------------------------------------------------------------------ */

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

	for (offs = 0; offs < (state->m_spriteram_size >> 1); offs += 4)
	{
		int y = spriteram[offs + 0];
		int x = spriteram[offs + 1];
		int code = spriteram[offs + 2];
		int attr = spriteram[offs + 3];
		int flipx = code & 0x4000;
		int flipy = code & 0x8000;

		x = (x & 0xff) - (x & 0x100);
		y = (y & 0xff) - (y & 0x100);

		if (state->m_flipscreen)
		{
			x = 240 - x;
			y = 240 - y;
			flipx = !flipx;
			flipy = !flipy;
		}

		drawgfx_transpen(bitmap,cliprect,machine.gfx[3],
				code & 0x3fff,
				attr >> 12,
				flipx, flipy,
				x,y,15);

	}
}


SCREEN_UPDATE( ginganin )
{
	ginganin_state *state = screen->machine().driver_data<ginganin_state>();
	int layers_ctrl1 = state->m_layers_ctrl;

#ifdef MAME_DEBUG
if (screen->machine().input().code_pressed(KEYCODE_Z))
{
	int msk = 0;

	if (screen->machine().input().code_pressed(KEYCODE_Q)) { msk |= 0xfff1;}
	if (screen->machine().input().code_pressed(KEYCODE_W)) { msk |= 0xfff2;}
	if (screen->machine().input().code_pressed(KEYCODE_E)) { msk |= 0xfff4;}
	if (screen->machine().input().code_pressed(KEYCODE_A))	{ msk |= 0xfff8;}
	if (msk != 0) layers_ctrl1 &= msk;

#define SETSCROLL \
	tilemap_set_scrollx(state->m_bg_tilemap, 0, state->m_posx); \
	tilemap_set_scrolly(state->m_bg_tilemap, 0, state->m_posy); \
	tilemap_set_scrollx(state->m_fg_tilemap, 0, state->m_posx); \
	tilemap_set_scrolly(state->m_fg_tilemap, 0, state->m_posy); \
	popmessage("B>%04X:%04X F>%04X:%04X",state->m_posx%(BG_NX*16),state->m_posy%(BG_NY*16),state->m_posx%(FG_NX*16),state->m_posy%(FG_NY*16));

	if (screen->machine().input().code_pressed(KEYCODE_L))	{ state->m_posx +=8; SETSCROLL }
	if (screen->machine().input().code_pressed(KEYCODE_J))	{ state->m_posx -=8; SETSCROLL }
	if (screen->machine().input().code_pressed(KEYCODE_K))	{ state->m_posy +=8; SETSCROLL }
	if (screen->machine().input().code_pressed(KEYCODE_I))	{ state->m_posy -=8; SETSCROLL }
	if (screen->machine().input().code_pressed(KEYCODE_H))	{ state->m_posx = state->m_posy = 0;	SETSCROLL }

}
#endif


	if (layers_ctrl1 & 1)
		tilemap_draw(bitmap, cliprect, state->m_bg_tilemap, 0, 0);
	else
		bitmap_fill(bitmap, cliprect, 0);

	if (layers_ctrl1 & 2)
		tilemap_draw(bitmap, cliprect, state->m_fg_tilemap, 0, 0);
	if (layers_ctrl1 & 8)
		draw_sprites(screen->machine(), bitmap, cliprect);
	if (layers_ctrl1 & 4)
		tilemap_draw(bitmap, cliprect, state->m_tx_tilemap, 0, 0);

	return 0;
}