// 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 m_maincpu; required_shared_ptr m_bgvideoram; required_shared_ptr m_fgvideoram; required_device m_gfxdecode; required_device m_screen; required_device m_palette; required_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