forked from CatacombGames/Catacomb3D
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathAUDIOC3D.H
86 lines (80 loc) · 2.48 KB
/
AUDIOC3D.H
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
/* Catacomb 3-D Source Code
* Copyright (C) 1993-2014 Flat Rock Software
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*/
/////////////////////////////////////////////////
//
// MUSE Header for .C3D
// Created Wed Oct 30 22:44:13 1991
//
/////////////////////////////////////////////////
#define NUMSOUNDS 30
#define NUMSNDCHUNKS 91
//
// Sound names & indexes
//
typedef enum {
HITWALLSND, // 0
WARPUPSND, // 1
WARPDOWNSND, // 2
GETBOLTSND, // 3
GETNUKESND, // 4
GETPOTIONSND, // 5
GETKEYSND, // 6
GETSCROLLSND, // 7
GETPOINTSSND, // 8
USEBOLTSND, // 9
USENUKESND, // 10
USEPOTIONSND, // 11
USEKEYSND, // 12
NOITEMSND, // 13
WALK1SND, // 14
WALK2SND, // 15
TAKEDAMAGESND, // 16
MONSTERMISSSND, // 17
GAMEOVERSND, // 18
SHOOTSND, // 19
BIGSHOOTSND, // 20
SHOOTWALLSND, // 21
SHOOTMONSTERSND, // 22
TAKEDMGHURTSND, // 23
BALLBOUNCESND, // 24
COMPSCOREDSND, // 25
KEENSCOREDSND, // 26
COMPPADDLESND, // 27
KEENPADDLESND, // 28
NOWAYSND, // 29
LASTSOUND
} soundnames;
//
// Base offsets
//
#define STARTPCSOUNDS 0
#define STARTADLIBSOUNDS 30
#define STARTDIGISOUNDS 60
#define STARTMUSIC 90
//
// Music names & indexes
//
typedef enum {
TOOHOT_MUS, // 0
LASTMUSIC
} musicnames;
/////////////////////////////////////////////////
//
// Thanks for playing with MUSE!
//
/////////////////////////////////////////////////