annotate sound.h @ 3:5a977ccbc7a9 default tip

Empty changelog
author darius
date Sat, 06 Dec 1997 05:41:29 +0000
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
3
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
1 /*
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
2 * sound.h - Platform Independant Sound Support - July 1996
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
3 * Sujal M. Patel (smpatel@umiacs.umd.edu)
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
4 *
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
5 *
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
6 * Copyright (c) 1994-1996, Sujal M. Patel
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
7 * All rights reserved.
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
8 *
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
9 * Redistribution and use in source and binary forms, with or without
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
10 * modification, are permitted provided that the following conditions
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
11 * are met:
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
12 * 1. Redistributions of source code must retain the above copyright
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
13 * notice, this list of conditions and the following disclaimer.
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
14 * 2. Redistributions in binary form must reproduce the above copyright
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
15 * notice, this list of conditions and the following disclaimer in the
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
16 * documentation and/or other materials provided with the distribution.
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
17 *
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
19 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
21 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
22 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
28 * SUCH DAMAGE.
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
29 *
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
30 * $Id: sound.h,v 1.1.1.1 1997/12/06 05:41:31 darius Exp $
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
31 */
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
32
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
33
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
34 #define SND_EXPLOSION 0
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
35 #define SND_CLOAK 1
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
36 #define SND_FIRETORP 2
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
37 #define SND_PHASER 3
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
38 #define SND_PLASMA 4
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
39 #define SND_SHIELD 5
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
40 #define SND_TORPHIT 6
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
41 #define SND_EXP_SB 7
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
42 #define SND_PARADISE 8
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
43 #define SND_THERMAL 9
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
44 #define SND_REDALERT 10
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
45
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
46 #ifdef __STDC__
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
47 void init_sound (); /* Init Sound System */
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
48 void play_sound (int k); /* Play a Sound */
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
49 void maybe_play_sound (int k); /* Play sound if the last 'k' sound_completed */
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
50 void sound_completed (int k); /* Complete a sound 'k' */
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
51 void kill_sound (); /* Terminate a sound unpredictably :) */
5a977ccbc7a9 Empty changelog
darius
parents:
diff changeset
52 #endif