-
Notifications
You must be signed in to change notification settings - Fork 18
/
AUDIOAPC.H
93 lines (87 loc) · 2.72 KB
/
AUDIOAPC.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
87
88
89
90
91
92
93
/* Catacomb Apocalypse 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 .APC
// Created Mon Nov 02 15:09:16 1992
//
/////////////////////////////////////////////////
#define NUMSOUNDS 37
#define NUMSNDCHUNKS 112
//
// Sound names & indexes
//
typedef enum {
HITWALLSND, // 0
WARPUPSND, // 1
WARPDOWNSND, // 2
GETBOLTSND, // 3
GETNUKESND, // 4
GETPOTIONSND, // 5
GETKEYSND, // 6
PORTALSND, // 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
NOWAYSND, // 25
WARPSND, // 26
HIT_GATESND, // 27
GETGEMSND, // 28
BOOMSND, // 29
GRELM_DEADSND, // 30
FREEZETIMESND, // 31
TIMERETURNSND, // 32
TICKSND, // 33
BODY_EXPLODESND, // 34
LARGEMONSTERSND, // 35
SMALLMONSTERSND, // 36
LASTSOUND
} soundnames;
//
// Base offsets
//
#define STARTPCSOUNDS 0
#define STARTADLIBSOUNDS 37
#define STARTDIGISOUNDS 74
#define STARTMUSIC 111
//
// Music names & indexes
//
typedef enum {
TOOHOT_MUS, // 0
LASTMUSIC
} musicnames;
/////////////////////////////////////////////////
//
// Thanks for playing with MUSE!
//
/////////////////////////////////////////////////