summaryrefslogtreecommitdiffstats
path: root/src/mame/includes/cabal.h
blob: 4e799c3761d544bfec3b0c8dc4d7482f77933850 (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
// license:BSD-3-Clause
// copyright-holders:Carlos A. Lozano
#ifndef MAME_INCLUDES_CABAL_H
#define MAME_INCLUDES_CABAL_H

#pragma once

#include "audio/seibu.h"
#include "sound/msm5205.h"
#include "emupal.h"
#include "tilemap.h"

class cabal_base_state : public driver_device
{
public:
	cabal_base_state(const machine_config &mconfig, device_type type, const char *tag) :
		driver_device(mconfig, type, tag),
		m_maincpu(*this, "maincpu"),
		m_audiocpu(*this, "audiocpu"),
		m_gfxdecode(*this, "gfxdecode"),
		m_palette(*this, "palette"),
		m_msm(*this, "msm%u", 1U),
		m_spriteram(*this, "spriteram"),
		m_colorram(*this, "colorram"),
		m_videoram(*this, "videoram")
	{ }

protected:
	virtual void video_start() override;

	required_device<cpu_device> m_maincpu;
	required_device<cpu_device> m_audiocpu;
	required_device<gfxdecode_device> m_gfxdecode;
	required_device<palette_device> m_palette;
	required_device_array<msm5205_device, 2> m_msm;

	void flipscreen_w(uint8_t data);
	void background_videoram_w(offs_t offset, uint16_t data, uint16_t mem_mask = ~0);
	void text_videoram_w(offs_t offset, uint16_t data, uint16_t mem_mask = ~0);

	uint32_t screen_update(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect);

private:
	required_shared_ptr<uint16_t> m_spriteram;
	required_shared_ptr<uint16_t> m_colorram;
	required_shared_ptr<uint16_t> m_videoram;

	tilemap_t *m_background_layer = nullptr;
	tilemap_t *m_text_layer = nullptr;

	TILE_GET_INFO_MEMBER(get_back_tile_info);
	TILE_GET_INFO_MEMBER(get_text_tile_info);

	void draw_sprites(bitmap_ind16 &bitmap, const rectangle &cliprect);
};

class cabal_state : public cabal_base_state
{
public:
	cabal_state(const machine_config &mconfig, device_type type, const char *tag) :
		cabal_base_state(mconfig, type, tag),
		m_seibu_sound(*this, "seibu_sound"),
		m_adpcm(*this, "adpcm%u", 1U)
	{ }

	void cabal(machine_config &config);
	void cabalbl2(machine_config &config);
	void cabalt(machine_config &config);

	void init_cabal();

private:
	required_device<seibu_sound_device> m_seibu_sound;
	required_device_array<seibu_adpcm_device, 2> m_adpcm;

	void sound_irq_trigger_word_w(offs_t, u16 data, u16 mem_mask);

	void main_map(address_map &map);
	void sound_decrypted_opcodes_map(address_map &map);
	void sound_map(address_map &map);
	void trackball_main_map(address_map &map);
	void cabalbl2_predecrypted_opcodes_map(address_map &map);
	void cabalbl2_sound_map(address_map &map);
};

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

	void cabalbl(machine_config &config);

protected:
	virtual void machine_start() override;
	virtual void machine_reset() override;

private:
	int m_sound_command[2]{};

	void sndcmd_w(offs_t offset, uint16_t data);
	void sound_irq_trigger_word_w(uint16_t data);
	template<uint8_t Which> uint8_t snd_r();
	void coin_w(uint8_t data);
	template<uint8_t Which> void adpcm_w(uint8_t data);

	void main_map(address_map &map);
	void sound_map(address_map &map);
	void talk1_map(address_map &map);
	void talk1_portmap(address_map &map);
	void talk2_map(address_map &map);
	void talk2_portmap(address_map &map);
};

#endif // MAME_INCLUDES_CABAL_H