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
|
// license:BSD-3-Clause
// copyright-holders:Nicola Salmoria
#ifndef MAME_INCLUDES_MAPPY_H
#define MAME_INCLUDES_MAPPY_H
#pragma once
#include "machine/namcoio.h"
#include "sound/namco.h"
#include "emupal.h"
#include "screen.h"
#include "tilemap.h"
class mappy_state : public driver_device
{
public:
mappy_state(const machine_config &mconfig, device_type type, const char *tag) :
driver_device(mconfig, type, tag),
m_videoram(*this, "videoram"),
m_spriteram(*this, "spriteram"),
m_maincpu(*this, "maincpu"),
m_subcpu(*this, "sub"),
m_subcpu2(*this, "sub2"),
m_namcoio(*this, "namcoio_%u", 1),
m_namco_15xx(*this, "namco"),
m_gfxdecode(*this, "gfxdecode"),
m_screen(*this, "screen"),
m_palette(*this, "palette"),
m_leds(*this, "led%u", 0U)
{ }
void mappy_common(machine_config &config);
void mappy(machine_config &config);
void phozon(machine_config &config);
void motos(machine_config &config);
void grobda(machine_config &config);
void digdug2(machine_config &config);
void pacnpal(machine_config &config);
void superpac_common(machine_config &config);
void superpac(machine_config &config);
void todruaga(machine_config &config);
void init_digdug2();
protected:
virtual void machine_start() override;
private:
required_shared_ptr<uint8_t> m_videoram;
required_shared_ptr<uint8_t> m_spriteram;
required_device<cpu_device> m_maincpu;
required_device<cpu_device> m_subcpu;
optional_device<cpu_device> m_subcpu2;
required_device_array<namcoio_device, 2> m_namcoio;
required_device<namco_15xx_device> m_namco_15xx;
required_device<gfxdecode_device> m_gfxdecode;
required_device<screen_device> m_screen;
required_device<palette_device> m_palette;
output_finder<2> m_leds;
tilemap_t *m_bg_tilemap = nullptr;
bitmap_ind16 m_sprite_bitmap;
uint8_t m_scroll = 0;
uint8_t m_main_irq_mask = 0;
uint8_t m_sub_irq_mask = 0;
uint8_t m_sub2_irq_mask = 0;
emu_timer *m_namcoio_run_timer[2]{};
DECLARE_WRITE_LINE_MEMBER(int_on_w);
DECLARE_WRITE_LINE_MEMBER(int_on_2_w);
DECLARE_WRITE_LINE_MEMBER(int_on_3_w);
DECLARE_WRITE_LINE_MEMBER(mappy_flip_w);
void superpac_videoram_w(offs_t offset, uint8_t data);
void mappy_videoram_w(offs_t offset, uint8_t data);
void superpac_flipscreen_w(uint8_t data);
uint8_t superpac_flipscreen_r();
void mappy_scroll_w(offs_t offset, uint8_t data);
void out_lamps(uint8_t data);
TILEMAP_MAPPER_MEMBER(superpac_tilemap_scan);
TILEMAP_MAPPER_MEMBER(mappy_tilemap_scan);
TILE_GET_INFO_MEMBER(superpac_get_tile_info);
TILE_GET_INFO_MEMBER(phozon_get_tile_info);
TILE_GET_INFO_MEMBER(mappy_get_tile_info);
template<uint8_t Chip> TIMER_CALLBACK_MEMBER(namcoio_run_timer);
DECLARE_VIDEO_START(superpac);
void superpac_palette(palette_device &palette) const;
DECLARE_VIDEO_START(phozon);
void phozon_palette(palette_device &palette) const;
DECLARE_VIDEO_START(mappy);
void mappy_palette(palette_device &palette) const;
uint32_t screen_update_superpac(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
uint32_t screen_update_phozon(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
uint32_t screen_update_mappy(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
DECLARE_WRITE_LINE_MEMBER(vblank_irq);
void mappy_draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect, uint8_t *spriteram_base);
void phozon_draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect, uint8_t *spriteram_base);
void mappy_cpu1_map(address_map &map);
void mappy_cpu2_map(address_map &map);
void phozon_cpu1_map(address_map &map);
void phozon_cpu2_map(address_map &map);
void phozon_cpu3_map(address_map &map);
void superpac_cpu1_map(address_map &map);
void superpac_cpu2_map(address_map &map);
};
#endif // MAME_INCLUDES_MAPPY_H
|