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
|
// license:BSD-3-Clause
// copyright-holders:Nicola Salmoria
#ifndef MAME_INCLUDES_GALPANIC_H
#define MAME_INCLUDES_GALPANIC_H
#pragma once
#include "machine/timer.h"
#include "video/kan_pand.h"
#include "emupal.h"
#include "screen.h"
class galpanic_state : public driver_device
{
public:
galpanic_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag)
, m_maincpu(*this, "maincpu")
, m_bgvideoram(*this, "bgvideoram")
, m_fgvideoram(*this, "fgvideoram")
, m_gfxdecode(*this, "gfxdecode")
, m_screen(*this, "screen")
, m_palette(*this, "palette")
, m_pandora(*this, "pandora")
{ }
void galpanica(machine_config &config);
void galpanic(machine_config &config);
private:
required_device<cpu_device> m_maincpu;
required_shared_ptr<uint16_t> m_bgvideoram;
required_shared_ptr<uint16_t> m_fgvideoram;
required_device<gfxdecode_device> m_gfxdecode;
required_device<screen_device> m_screen;
required_device<palette_device> m_palette;
required_device<kaneko_pandora_device> m_pandora;
bitmap_ind16 m_bitmap;
DECLARE_WRITE16_MEMBER(m6295_bankswitch_w);
DECLARE_WRITE16_MEMBER(coin_w);
DECLARE_WRITE16_MEMBER(bgvideoram_w);
virtual void machine_start() override;
virtual void video_start() override;
void galpanic_palette(palette_device &palette) const;
uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);
DECLARE_WRITE_LINE_MEMBER(screen_vblank);
TIMER_DEVICE_CALLBACK_MEMBER(scanline);
void draw_fgbitmap(bitmap_ind16 &bitmap, const rectangle &cliprect);
void galpanic_map(address_map &map);
void galpanic_oki_map(address_map &map);
void galpanica_map(address_map &map);
};
#endif // MAME_INCLUDES_GALPANIC_H
|