]> icculus.org git repositories - divverent/darkplaces.git/blob - sound.h
Fixed the sounds not being advanced in time while not being listened. This is a long...
[divverent/darkplaces.git] / sound.h
1 /*
2 Copyright (C) 1996-1997 Id Software, Inc.
3
4 This program is free software; you can redistribute it and/or
5 modify it under the terms of the GNU General Public License
6 as published by the Free Software Foundation; either version 2
7 of the License, or (at your option) any later version.
8
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
12
13 See the GNU General Public License for more details.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
18
19 */
20 // sound.h -- client sound i/o functions
21
22 #ifndef SOUND_H
23 #define SOUND_H
24
25 #define DEFAULT_SOUND_PACKET_VOLUME 255
26 #define DEFAULT_SOUND_PACKET_ATTENUATION 1.0
27
28 typedef struct
29 {
30         int left;
31         int right;
32 } portable_samplepair_t;
33
34 typedef struct
35 {
36         size_t  length;
37         size_t  offset;
38         qbyte   data[4];        // variable sized
39 } sfxbuffer_t;
40
41 typedef struct
42 {
43         unsigned int    speed;
44         unsigned int    width;
45         unsigned int    channels;
46 } snd_format_t;
47
48 // sfx_t flags
49 #define SFXFLAG_SILENTLYMISSING (1 << 0) // if the sfx is missing and loaded with complain = false
50 #define SFXFLAG_USED                    (1 << 1)
51
52 typedef struct snd_fetcher_s snd_fetcher_t;
53 typedef struct sfx_s
54 {
55         char                            name[MAX_QPATH];
56         mempool_t                       *mempool;
57         unsigned int            flags;                  // cf SFXFLAG_* defines
58         snd_format_t            format;
59         int                                     loopstart;
60         size_t                          total_length;
61         const snd_fetcher_t     *fetcher;
62         void                            *fetcher_data;  // Per-sfx data for the sound fetching functions
63 } sfx_t;
64
65 typedef struct
66 {
67         snd_format_t    format;
68         int                             samples;                // mono samples in buffer
69         int                             samplepos;              // in mono samples
70         unsigned char   *buffer;
71         int                             bufferlength;   // used only by certain drivers
72 } dma_t;
73
74 typedef struct
75 {
76         sfx_t   *sfx;                   // sfx number
77         int             forceloop;              // force looping even if the sound is not looped
78         int             leftvol;                // 0-255 volume
79         int             rightvol;               // 0-255 volume
80         int             end;                    // end time in global paintsamples
81         int             lastptime;              // last time this channel was painted
82         int             pos;                    // sample position in sfx
83         int             looping;                // where to loop, -1 = no looping
84         int             entnum;                 // to allow overriding a specific sound
85         int             entchannel;
86         vec3_t  origin;                 // origin of sound effect
87         vec_t   dist_mult;              // distance multiplier (attenuation/clipK)
88         int             master_vol;             // 0-255 master volume
89         void    *fetcher_data;  // Per-channel data for the sound fetching function
90 } channel_t;
91
92 typedef const sfxbuffer_t* (*snd_fetcher_getsb_t) (channel_t* ch, unsigned int start, unsigned int nbsamples);
93 typedef void (*snd_fetcher_end_t) (channel_t* ch);
94 struct snd_fetcher_s
95 {
96         snd_fetcher_getsb_t     getsb;
97         snd_fetcher_end_t       end;
98 };
99
100 typedef struct
101 {
102         int             rate;
103         int             width;
104         int             channels;
105         int             loopstart;
106         int             samples;
107         int             dataofs;                // chunk starts this many bytes from file start
108 } wavinfo_t;
109
110 void S_Init (void);
111 void S_Startup (void);
112 void S_Shutdown (void);
113 void S_StartSound (int entnum, int entchannel, sfx_t *sfx, vec3_t origin, float fvol,  float attenuation);
114 void S_StaticSound (sfx_t *sfx, vec3_t origin, float vol, float attenuation);
115 void S_StopSound (int entnum, int entchannel);
116 void S_StopAllSounds(qboolean clear);
117 void S_ClearBuffer (void);
118 void S_Update(vec3_t origin, vec3_t forward, vec3_t left, vec3_t up);
119 void S_ExtraUpdate (void);
120
121 sfx_t *S_GetCached(const char *name);
122 sfx_t *S_PrecacheSound (char *sample, int complain);
123 void S_TouchSound (char *sample);
124 void S_ClearUsed (void);
125 void S_PurgeUnused (void);
126 void S_PaintChannels(int endtime);
127 void S_InitPaintChannels (void);
128
129 // picks a channel based on priorities, empty slots, number of channels
130 channel_t *SND_PickChannel(int entnum, int entchannel);
131
132 // spatializes a channel
133 void SND_Spatialize(channel_t *ch, int isstatic);
134
135 // initializes cycling through a DMA buffer and returns information on it
136 qboolean SNDDMA_Init(void);
137
138 // gets the current DMA position
139 int SNDDMA_GetDMAPos(void);
140
141 // shutdown the DMA xfer.
142 void SNDDMA_Shutdown(void);
143
144 extern size_t ResampleSfx (const qbyte *in_data, size_t in_length, const snd_format_t* in_format, qbyte *out_data, const char* sfxname);
145
146 // ====================================================================
147 // User-setable variables
148 // ====================================================================
149
150 // LordHavoc: increased from 128 to 516 (4 for NUM_AMBIENTS)
151 #define MAX_CHANNELS                    516
152 // LordHavoc: increased maximum sound channels from 8 to 128
153 #define MAX_DYNAMIC_CHANNELS    128
154
155
156 extern channel_t channels[MAX_CHANNELS];
157 // 0 to MAX_DYNAMIC_CHANNELS-1  = normal entity sounds
158 // MAX_DYNAMIC_CHANNELS to MAX_DYNAMIC_CHANNELS + NUM_AMBIENTS -1 = water, etc
159 // MAX_DYNAMIC_CHANNELS + NUM_AMBIENTS to total_channels = static sounds
160
161 extern unsigned int total_channels;
162
163 //
164 // Fake dma is a synchronous faking of the DMA progress used for
165 // isolating performance in the renderer.  The fakedma_updates is
166 // number of times S_Update() is called per second.
167 //
168
169 extern qboolean fakedma;
170 extern int fakedma_updates;
171 extern int paintedtime;
172 extern int soundtime;
173 extern vec3_t listener_vieworigin;
174 extern vec3_t listener_viewforward;
175 extern vec3_t listener_viewleft;
176 extern vec3_t listener_viewup;
177 extern volatile dma_t *shm;
178 extern volatile dma_t sn;
179 extern vec_t sound_nominal_clip_dist;
180
181 extern cvar_t loadas8bit;
182 extern cvar_t bgmvolume;
183 extern cvar_t volume;
184 extern cvar_t snd_swapstereo;
185
186 extern cvar_t cdaudioinitialized;
187 extern cvar_t snd_initialized;
188 extern cvar_t snd_streaming;
189
190 extern int snd_blocked;
191
192 void S_LocalSound (char *s);
193 qboolean S_LoadSound (sfx_t *s, int complain);
194 void S_UnloadSound(sfx_t *s);
195
196 void SND_InitScaletable (void);
197 void SNDDMA_Submit(void);
198
199 void S_AmbientOff (void);
200 void S_AmbientOn (void);
201
202 void *S_LockBuffer(void);
203 void S_UnlockBuffer(void);
204
205 // add some data to the tail of the rawsamples queue
206 void S_RawSamples_Enqueue(short *samples, unsigned int length);
207 // read and remove some data from the head of the rawsamples queue
208 void S_RawSamples_Dequeue(int *samples, unsigned int length);
209 // empty the rawsamples queue
210 void S_RawSamples_ClearQueue(void);
211 // returns how much more data the queue wants, or 0 if it is already full enough
212 int S_RawSamples_QueueWantsMore(void);
213
214 // resamples one sound buffer into another, while changing the length
215 void S_ResampleBuffer16Stereo(short *input, int inputlength, short *output, int outputlength);
216
217 // returns the rate that the rawsamples system is running at
218 int S_RawSamples_SampleRate(void);
219
220 #endif
221