summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/audio/segag80v.c
blob: c08a8efa178d8602d70ba9a5eea21920ebd33cda (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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
/*************************************************************************

    Sega vector hardware

*************************************************************************/

#include "emu.h"
#include "includes/segag80v.h"
#include "sound/samples.h"

/* History:



 * 4/25/99 Tac-Scan now makes Credit Noises with $2c                    (Jim Hernandez)
 * 4/9/99 Zektor Discrete Sound Support mixed with voice samples.       (Jim Hernandez)
          Zektor uses some Eliminator sounds.

 * 2/5/99 Extra Life sound constant found $1C after fixing main driver. (Jim Hernandez)
 * 1/29/99 Supports Tac Scan new 44.1 kHz sample set.                    (Jim Hernandez)

 * -Stuff to do -
 * Find hex bit for warp.wav sound calls.
 *
 * 2/05/98 now using the new sample_*() functions. BW
 *
 */

/*
    Tac/Scan sound constants

    There are some sounds that are unknown:
    $09 Tunnel Warp Sound?
    $0a
    $0b Formation Change
        $0c
        $0e
        $0f
        $1c 1up (Extra Life)
        $2c Credit
        $30 - $3f  Hex numbers for ship position flight sounds
    $41

    Some sound samples are missing:
    - I use the one bullet and one explosion sound for all 3 for example.

Star Trk Sounds (USB Loaded from 5400 in main EPROMs)

8     PHASER
a     PHOTON
e     TARGETING
10    DENY
12    SHEILD HIT
14    ENTERPRISE HIT
16    ENT EXPLOSION
1a    KLINGON EXPLOSION
1c    DOCK
1e    STARBASE HIT
11    STARBASE RED
22    STARBASE EXPLOSION
24    SMALL BONUS
25    LARGE BONUS
26    STARBASE INTRO
27    KLINGON INTRO
28    ENTERPRISE INTRO
29    PLAYER CHANGE
2e    KLINGON FIRE
4,5   IMPULSE
6,7   WARP
c,d   RED ALERT
18,2f WARP SUCK
19,2f SAUCER EXIT
2c,21 NOMAD MOTION
2d,21 NOMAD STOPPED
2b    COIN DROP MUSIC
2a    HIGH SCORE MUSIC


Eliminator Sound Board (800-3174)
---------------------------------

inputs
0x3c-0x3f

d0 speech ready

outputs ( 0 = ON)

0x3e (076)

d7      torpedo 2
d6      torpedo 1
d5      bounce
d4      explosion 3
d3      explosion 2
d2      explosion 1
d1      fireball
d0      -

0x3f (077)

d7      background msb
d6      background lsb
d5      enemy ship
d4      skitter
d3      thrust msb
d2      thrust lsb
d1      thrust hi
d0      thrust lo

Space Fury Sound Board (800-0241)
---------------------------------

0x3e (076) (0 = ON)

d7      partial warship, low frequency oscillation
d6      star spin
d5      -
d4      -
d3      -
d2      thrust, low frequency noise
d1      fire, metalic buzz
d0      craft scale, rising tone

0x3f (077)

d7      -
d6      -
d5      docking bang
d4      large explosion
d3      small explosion, low frequency noise
d2      fireball
d1      shot
d0      crafts joining

*/

WRITE8_HANDLER( elim1_sh_w )
{
	const device_config *samples = devtag_get_device(space->machine, "samples");
	data ^= 0xff;

	/* Play fireball sample */
	if (data & 0x02)
		sample_start (samples, 0, 0, 0);

	/* Play explosion samples */
	if (data & 0x04)
		sample_start (samples, 1, 10, 0);
	if (data & 0x08)
		sample_start (samples, 1, 9, 0);
	if (data & 0x10)
		sample_start (samples, 1, 8, 0);

	/* Play bounce sample */
	if (data & 0x20)
	{
		if (sample_playing(samples, 2))
			sample_stop (samples, 2);
		sample_start (samples, 2, 1, 0);
	}

	/* Play lazer sample */
	if (data & 0xc0)
	{
		if (sample_playing(samples, 3))
			sample_stop (samples, 3);
		sample_start (samples, 3, 5, 0);
	}
}

WRITE8_HANDLER( elim2_sh_w )
{
	const device_config *samples = devtag_get_device(space->machine, "samples");
	data ^= 0xff;

	/* Play thrust sample */
	if (data & 0x0f)
		sample_start (samples, 4, 6, 0);
	else
		sample_stop (samples, 4);

	/* Play skitter sample */
	if (data & 0x10)
		sample_start (samples, 5, 2, 0);

	/* Play eliminator sample */
	if (data & 0x20)
		sample_start (samples, 6, 3, 0);

	/* Play electron samples */
	if (data & 0x40)
		sample_start (samples, 7, 7, 0);
	if (data & 0x80)
		sample_start (samples, 7, 4, 0);
}


WRITE8_HANDLER( zektor1_sh_w )
{
	const device_config *samples = devtag_get_device(space->machine, "samples");

	data ^= 0xff;

	/* Play fireball sample */
	if (data & 0x02)
                sample_start (samples, 0, 0, 0);

	/* Play explosion samples */
	if (data & 0x04)
                sample_start (samples, 1, 10, 0);
	if (data & 0x08)
                  sample_start (samples, 1, 9, 0);
	if (data & 0x10)
                  sample_start (samples, 1, 8, 0);

	/* Play bounce sample */
	if (data & 0x20)
	{
                if (sample_playing(samples, 2))
                        sample_stop (samples, 2);
                sample_start (samples, 2, 1, 0);
	}

	/* Play lazer sample */
	if (data & 0xc0)
	{
		if (sample_playing(samples, 3))
			sample_stop (samples, 3);
                sample_start (samples, 3, 5, 0);
	}
}

WRITE8_HANDLER( zektor2_sh_w )
{
	const device_config *samples = devtag_get_device(space->machine, "samples");
	data ^= 0xff;

	/* Play thrust sample */
	if (data & 0x0f)
            sample_start (samples, 4, 6, 0);
	else
		sample_stop (samples, 4);

	/* Play skitter sample */
	if (data & 0x10)
                sample_start (samples, 5, 2, 0);

	/* Play eliminator sample */
	if (data & 0x20)
                sample_start (samples, 6, 3, 0);

	/* Play electron samples */
	if (data & 0x40)
                sample_start (samples, 7, 40, 0);
	if (data & 0x80)
                sample_start (samples, 7, 41, 0);
}



WRITE8_HANDLER( spacfury1_sh_w )
{
	const device_config *samples = devtag_get_device(space->machine, "samples");
	data ^= 0xff;

	/* craft growing */
	if (data & 0x01)
		sample_start (samples, 1, 0, 0);

	/* craft moving */
	if (data & 0x02)
	{
		if (!sample_playing(samples, 2))
			sample_start (samples, 2, 1, 1);
	}
	else
		sample_stop (samples, 2);

	/* Thrust */
	if (data & 0x04)
	{
		if (!sample_playing(samples, 3))
			sample_start (samples, 3, 4, 1);
	}
	else
		sample_stop (samples, 3);

	/* star spin */
	if (data & 0x40)
		sample_start (samples, 4, 8, 0);

	/* partial warship? */
	if (data & 0x80)
		sample_start (samples, 4, 9, 0);

}

WRITE8_HANDLER( spacfury2_sh_w )
{
	const device_config *samples = devtag_get_device(space->machine, "samples");
	data ^= 0xff;

	/* craft joining */
	if (data & 0x01)
		sample_start (samples, 5, 2, 0);

	/* ship firing */
	if (data & 0x02)
	{
		if (sample_playing(samples, 6))
			sample_stop(samples, 6);
		sample_start(samples, 6, 3, 0);

	}

	/* fireball */
	if (data & 0x04)
		sample_start (samples, 7, 6, 0);

	/* small explosion */
	if (data & 0x08)
		sample_start (samples, 7, 6, 0);
	/* large explosion */
	if (data & 0x10)
		sample_start (samples, 7, 5, 0);

	/* docking bang */
	if (data & 0x20)
		sample_start (samples, 0, 7, 0);

}