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
|
// license:BSD-3-Clause
// copyright-holders:SomeRandomGuyIdk
/***************************************************************************
Fruit machine mechanical sound samples
***************************************************************************/
#include "emu.h"
#include "fruitsamples.h"
#include "speaker.h"
namespace {
const char *const fruit_sample_names[fruit_samples_device::SAMPLE_END + 2] =
{
"*fruitsamples",
"payout", // 0
"meter", // 1
"em_reel_start", // 2
"em_reel_stop", // 3
nullptr
};
const uint8_t fruit_sample_ids[fruit_samples_device::SAMPLE_END] =
{
0, // SAMPLE_PAYOUT
1, // SAMPLE_METER
2, // SAMPLE_EM_REEL_1_START
2, // SAMPLE_EM_REEL_2_START
2, // SAMPLE_EM_REEL_3_START
2, // SAMPLE_EM_REEL_4_START
3, // SAMPLE_EM_REEL_1_STOP
3, // SAMPLE_EM_REEL_2_STOP
3, // SAMPLE_EM_REEL_3_STOP
3, // SAMPLE_EM_REEL_4_STOP
};
const uint8_t fruit_sample_channels[fruit_samples_device::SAMPLE_END] =
{
0, // SAMPLE_PAYOUT
1, // SAMPLE_METER
2, // SAMPLE_EM_REEL_1_START
3, // SAMPLE_EM_REEL_2_START
4, // SAMPLE_EM_REEL_3_START
5, // SAMPLE_EM_REEL_4_START
2, // SAMPLE_EM_REEL_1_STOP
3, // SAMPLE_EM_REEL_2_STOP
4, // SAMPLE_EM_REEL_3_STOP
5 // SAMPLE_EM_REEL_4_STOP
};
} // anonymous namespace
DEFINE_DEVICE_TYPE(FRUIT_SAMPLES, fruit_samples_device, "fruit_samples", "Fruit machine mechanical samples")
fruit_samples_device::fruit_samples_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock) :
device_t(mconfig, FRUIT_SAMPLES, tag, owner, clock),
m_samples(*this, "samples")
{
}
void fruit_samples_device::device_start()
{
}
void fruit_samples_device::device_add_mconfig(machine_config &config)
{
SPEAKER(config, "fruitmech").front_center();
SAMPLES(config, m_samples);
m_samples->set_channels(6);
m_samples->set_samples_names(fruit_sample_names);
m_samples->add_route(ALL_OUTPUTS, "fruitmech", 1.0);
}
void fruit_samples_device::play(uint8_t index)
{
if (index < SAMPLE_END)
m_samples->start(fruit_sample_channels[index], fruit_sample_ids[index]);
else
fatalerror("fruit_samples_device: Sample index %u out of range\n", index);
}
|