R-PAGE
Resistance's Portable-Adventure-Game-Engine
sound.h
Go to the documentation of this file.
1 #ifdef LATTICE
2 /* EasySound.h */
3 /* */
4 /* V2.00 1990-0-23 */
5 /* */
6 /* AMIGA C CLUB (ACC) */
7 /* Anders Bjerin */
8 /* Tulevagen 22 */
9 /* 181 41 LIDINGO */
10 /* SWEDEN */
11 
12 #ifndef SOUND_ROUTINES
13 #define SOUND_ROUTINES
14 #define DEBUG_ENABLE_AUDIO
15 
16 /* Sound channels: */
17 #define LEFT0 0
18 #define RIGHT0 1
19 #define RIGHT1 2
20 #define LEFT1 3
21 
22 #define NONSTOP 0
23 #define ONCE 1
24 #define MAXVOLUME 64
25 #define MINVOLUME 0
26 #define NORMALRATE 0
27 
28 /* Structure containing all necessary information about the sound: */
29 typedef struct
30 {
31  BYTE *SoundBuffer; /* WaveForm Buffers */
32  UWORD RecordRate; /* Record Rate */
33  ULONG FileLength; /* WaveForm Lengths */
34 } SoundInfo;
35 
36 typedef LONG Fixed;
37 
38 typedef struct
39 {
40  ULONG oneShotHiSamples; /* #samples in the high octave 1-shot part */
41  ULONG repeatHiSamples; /* #samples in the high octave repeat part */
42  ULONG samplesPerHiCycle; /* #samples/cycle in high octave, else 0 */
43  UWORD samplesPerSec; /* Data sampling rate */
44  UBYTE ctOctave; /* Number of octaves of waveforms */
45  UBYTE sCompression; /* Data compression technique used */
46  Fixed volume; /* Playback volume from 0 to 0x10000 */
47 } Voice8Header;
48 
49 BOOL PrepareIOA(UWORD period, UWORD volume, UWORD cycles, UBYTE channel, SoundInfo *info);
50 ULONG GetSize(STRPTR filename);
51 ULONG SizeIFF(STRPTR filename);
52 UWORD ReadIFF(STRPTR filename, SoundInfo *info);
53 BOOL MoveTo(STRPTR check_string, FILE *file_ptr);
54 
55 extern SoundInfo *PrepareSound(STRPTR file);
56 extern BOOL PlaySound(SoundInfo *info, UWORD volume, UBYTE channel, WORD delta_rate, UWORD repeat);
57 extern void StopSound(UBYTE channel);
58 extern void RemoveSound(SoundInfo *info);
59 extern void RemoveSoundStruct(SoundInfo *info);
60 extern UWORD LoadSound(STRPTR filename, SoundInfo *info);
61 extern SoundInfo *LoadPackedSound(char *filename, BYTE *packed_block, BYTE *unpacked_block);
62 // void adpcm_decoder_init(void);
63 BYTE *adpcm_decode(UBYTE *input, int numSamples, BYTE *output);
64 
65 #endif
66 #endif
int BOOL
Definition: utils.h:32
unsigned char UBYTE
Definition: utils.h:20
unsigned short UWORD
Definition: utils.h:28
unsigned char BYTE
Definition: utils.h:16
unsigned long ULONG
Definition: utils.h:24