Constify the format when unlocking
[dsound-openal.git] / buffer.c
blobb09fc331738d2f48d7a8842f27e35ddc83ca925a
1 /* DirectSound COM interface
3 * Copyright 2009 Maarten Lankhorst
5 * Some code taken from the original dsound-openal implementation
6 * Copyright 2007-2009 Chris Robinson
8 * This library is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU Lesser General Public
10 * License as published by the Free Software Foundation; either
11 * version 2.1 of the License, or (at your option) any later version.
13 * This library is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 * Lesser General Public License for more details.
18 * You should have received a copy of the GNU Lesser General Public
19 * License along with this library; if not, write to the Free Software
20 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
23 #include <stdarg.h>
25 #ifdef __WINESRC__
27 #define COBJMACROS
28 #define NONAMELESSSTRUCT
29 #define NONAMELESSUNION
30 #include "windef.h"
31 #include "winbase.h"
32 #include "winuser.h"
33 #include "winnls.h"
34 #include "winreg.h"
35 #include "vfwmsgs.h"
36 #include "mmsystem.h"
37 #include "winternl.h"
38 #include "mmddk.h"
39 #include "wine/debug.h"
40 #include "dsound.h"
42 #include "dsound_private.h"
44 #include "ks.h"
45 #include "ksmedia.h"
47 WINE_DEFAULT_DEBUG_CHANNEL(dsound);
49 #else
51 #define WINVER 0x0600
52 #define INITGUID
53 #include <windows.h>
54 #include <dsound.h>
56 #include "dsound_private.h"
58 DEFINE_GUID(CLSID_DirectSoundPrivate,0x11ab3ec0,0x25ec,0x11d1,0xa4,0xd8,0x00,0xc0,0x4f,0xc2,0x8a,0xca);
60 DEFINE_GUID(DSPROPSETID_DirectSoundDevice,0x84624f82,0x25ec,0x11d1,0xa4,0xd8,0x00,0xc0,0x4f,0xc2,0x8a,0xca);
62 DEFINE_GUID(KSDATAFORMAT_SUBTYPE_PCM, 0x00000001, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
63 DEFINE_GUID(KSDATAFORMAT_SUBTYPE_IEEE_FLOAT, 0x00000003, 0x0000, 0x0010, 0x80, 0x00, 0x00, 0xaa, 0x00, 0x38, 0x9b, 0x71);
65 #ifndef E_PROP_ID_UNSUPPORTED
66 #define E_PROP_ID_UNSUPPORTED ((HRESULT)0x80070490)
67 #endif
69 #endif
71 #ifndef WAVE_FORMAT_IEEE_FLOAT
72 #define WAVE_FORMAT_IEEE_FLOAT 3
73 #endif
75 /* TODO: when bufferlost is set, return from all calls except initialize with
76 * DSERR_BUFFERLOST
78 static const IDirectSoundBuffer8Vtbl DS8Buffer_Vtbl;
79 static const IDirectSound3DBufferVtbl DS8Buffer3d_Vtbl;
80 static const IDirectSoundNotifyVtbl DS8BufferNot_Vtbl;
81 static const IKsPropertySetVtbl DS8BufferProp_Vtbl;
84 static inline DS8Buffer *impl_from_IDirectSoundBuffer8(IDirectSoundBuffer8 *iface)
86 return CONTAINING_RECORD(iface, DS8Buffer, IDirectSoundBuffer8_iface);
88 /* Shares the same vtable */
89 static inline DS8Buffer *impl_from_IDirectSoundBuffer(IDirectSoundBuffer *iface)
91 return CONTAINING_RECORD(iface, DS8Buffer, IDirectSoundBuffer8_iface);
94 static inline DS8Buffer *impl_from_IDirectSound3DBuffer(IDirectSound3DBuffer *iface)
96 return CONTAINING_RECORD(iface, DS8Buffer, IDirectSound3DBuffer_iface);
99 static inline DS8Buffer *impl_from_IDirectSoundNotify(IDirectSoundNotify *iface)
101 return CONTAINING_RECORD(iface, DS8Buffer, IDirectSoundNotify_iface);
104 static inline DS8Buffer *impl_from_IKsPropertySet(IKsPropertySet *iface)
106 return CONTAINING_RECORD(iface, DS8Buffer, IKsPropertySet_iface);
110 static void CALLBACK DS8Buffer_timer(UINT timerID, UINT msg, DWORD_PTR dwUser,
111 DWORD_PTR dw1, DWORD_PTR dw2)
113 (void)timerID;
114 (void)msg;
115 (void)dw1;
116 (void)dw2;
117 PostThreadMessageA(dwUser, WM_USER, 0, 0);
120 static void DS8Buffer_starttimer(DS8Primary *prim)
122 DWORD triggertime, res = DS_TIME_RES;
123 ALint refresh = FAKE_REFRESH_COUNT;
124 TIMECAPS time;
126 if(prim->timer_id)
127 return;
129 timeGetDevCaps(&time, sizeof(TIMECAPS));
131 alcGetIntegerv(prim->parent->device, ALC_REFRESH, 1, &refresh);
132 getALCError(prim->parent->device);
134 triggertime = 1000 / refresh / 2;
135 if(triggertime < time.wPeriodMin)
136 triggertime = time.wPeriodMin;
137 TRACE("Calling timer every %u ms for %i refreshes per second\n", triggertime, refresh);
139 if (res < time.wPeriodMin)
140 res = time.wPeriodMin;
141 if (timeBeginPeriod(res) == TIMERR_NOCANDO)
142 WARN("Could not set minimum resolution, don't expect sound\n");
144 prim->timer_res = res;
145 prim->timer_id = timeSetEvent(triggertime, res, DS8Buffer_timer, prim->thread_id, TIME_PERIODIC|TIME_KILL_SYNCHRONOUS);
148 /* Should be called with critsect held and context set.. */
149 static void DS8Buffer_addnotify(DS8Buffer *buf)
151 DS8Buffer **list;
152 DWORD i;
154 list = buf->primary->notifies;
155 for(i = 0; i < buf->primary->nnotifies; ++i)
157 if(buf == list[i])
159 ERR("Buffer %p already in notification list\n", buf);
160 return;
163 if(buf->primary->nnotifies == buf->primary->sizenotifies)
165 list = HeapReAlloc(GetProcessHeap(), 0, list, (buf->primary->nnotifies + 1) * sizeof(*list));
166 if(!list)
167 return;
168 buf->primary->sizenotifies++;
170 list[buf->primary->nnotifies++] = buf;
171 buf->primary->notifies = list;
175 static const char *get_fmtstr_PCM(const DS8Primary *prim, const WAVEFORMATEX *format, WAVEFORMATEXTENSIBLE *out)
177 out->Format = *format;
178 out->Format.cbSize = 0;
180 if(out->Format.nChannels != 1 && out->Format.nChannels != 2 &&
181 !prim->SupportedExt[EXT_MCFORMATS])
183 WARN("Multi-channel not available\n");
184 return NULL;
187 if(format->wBitsPerSample == 8)
189 switch(format->nChannels)
191 case 1: return "AL_FORMAT_MONO8";
192 case 2: return "AL_FORMAT_STEREO8";
193 case 4: return "AL_FORMAT_QUAD8";
194 case 6: return "AL_FORMAT_51CHN8";
195 case 7: return "AL_FORMAT_61CHN8";
196 case 8: return "AL_FORMAT_71CHN8";
197 default: break;
200 else if(format->wBitsPerSample == 16)
202 switch(format->nChannels)
204 case 1: return "AL_FORMAT_MONO16";
205 case 2: return "AL_FORMAT_STEREO16";
206 case 4: return "AL_FORMAT_QUAD16";
207 case 6: return "AL_FORMAT_51CHN16";
208 case 7: return "AL_FORMAT_61CHN16";
209 case 8: return "AL_FORMAT_71CHN16";
210 default: break;
214 FIXME("Could not get OpenAL format (%d-bit, %d channels)\n",
215 format->wBitsPerSample, format->nChannels);
216 return NULL;
218 static ALenum get_fmt_PCM(const WAVEFORMATEX *format, WAVEFORMATEXTENSIBLE *out, ALenum *in_chans, ALenum *in_type)
220 out->Format = *format;
221 out->Format.cbSize = 0;
223 if(format->wBitsPerSample == 8)
225 *in_type = AL_UNSIGNED_BYTE;
226 switch(format->nChannels)
228 case 1: *in_chans = AL_MONO;
229 return AL_MONO8;
230 case 2: *in_chans = AL_STEREO;
231 return AL_STEREO8;
232 case 4: *in_chans = AL_QUAD;
233 return AL_QUAD8;
234 case 6: *in_chans = AL_5POINT1;
235 return AL_5POINT1_8;
236 case 7: *in_chans = AL_6POINT1;
237 return AL_6POINT1_8;
238 case 8: *in_chans = AL_7POINT1;
239 return AL_7POINT1_8;
240 default: break;
243 else if(format->wBitsPerSample == 16)
245 *in_type = AL_SHORT;
246 switch(format->nChannels)
248 case 1: *in_chans = AL_MONO;
249 return AL_MONO16;
250 case 2: *in_chans = AL_STEREO;
251 return AL_STEREO16;
252 case 4: *in_chans = AL_QUAD;
253 return AL_QUAD16;
254 case 6: *in_chans = AL_5POINT1;
255 return AL_5POINT1_16;
256 case 7: *in_chans = AL_6POINT1;
257 return AL_6POINT1_16;
258 case 8: *in_chans = AL_7POINT1;
259 return AL_7POINT1_16;
260 default: break;
263 #if 0 /* Will cause incorrect byte offsets */
264 else if(format->wBitsPerSample == 24)
266 *in_type = AL_BYTE3;
267 switch(format->nChannels)
269 case 1: *in_chans = AL_MONO;
270 return AL_MONO32F;
271 case 2: *in_chans = AL_STEREO;
272 return AL_STEREO32F;
273 case 4: *in_chans = AL_QUAD;
274 return AL_QUAD32F;
275 case 6: *in_chans = AL_5POINT1;
276 return AL_5POINT1_32F;
277 case 7: *in_chans = AL_6POINT1;
278 return AL_6POINT1_32F;
279 case 8: *in_chans = AL_7POINT1;
280 return AL_7POINT1_32F;
281 default: break;
284 #endif
285 else if(format->wBitsPerSample == 32)
287 *in_type = AL_INT;
288 switch(format->nChannels)
290 case 1: *in_chans = AL_MONO;
291 return AL_MONO32F;
292 case 2: *in_chans = AL_STEREO;
293 return AL_STEREO32F;
294 case 4: *in_chans = AL_QUAD;
295 return AL_QUAD32F;
296 case 6: *in_chans = AL_5POINT1;
297 return AL_5POINT1_32F;
298 case 7: *in_chans = AL_6POINT1;
299 return AL_6POINT1_32F;
300 case 8: *in_chans = AL_7POINT1;
301 return AL_7POINT1_32F;
302 default: break;
306 FIXME("Could not get OpenAL format (%d-bit, %d channels)\n",
307 format->wBitsPerSample, format->nChannels);
308 return AL_NONE;
311 static const char *get_fmtstr_FLOAT(const DS8Primary *prim, const WAVEFORMATEX *format, WAVEFORMATEXTENSIBLE *out)
313 out->Format = *format;
314 out->Format.cbSize = 0;
316 if(out->Format.nChannels != 1 && out->Format.nChannels != 2 &&
317 !prim->SupportedExt[EXT_MCFORMATS])
319 WARN("Multi-channel not available\n");
320 return NULL;
323 if(format->wBitsPerSample == 32 && prim->SupportedExt[EXT_FLOAT32])
325 switch(format->nChannels)
327 case 1: return "AL_FORMAT_MONO_FLOAT32";
328 case 2: return "AL_FORMAT_STEREO_FLOAT32";
329 case 4: return "AL_FORMAT_QUAD32";
330 case 6: return "AL_FORMAT_51CHN32";
331 case 7: return "AL_FORMAT_61CHN32";
332 case 8: return "AL_FORMAT_71CHN32";
333 default: break;
337 FIXME("Could not get OpenAL format (%d-bit, %d channels)\n",
338 format->wBitsPerSample, format->nChannels);
339 return NULL;
341 static ALenum get_fmt_FLOAT(const WAVEFORMATEX *format, WAVEFORMATEXTENSIBLE *out, ALenum *in_chans, ALenum *in_type)
343 out->Format = *format;
344 out->Format.cbSize = 0;
346 if(format->wBitsPerSample == 32)
348 *in_type = AL_FLOAT;
349 switch(format->nChannels)
351 case 1: *in_chans = AL_MONO;
352 return AL_MONO32F;
353 case 2: *in_chans = AL_STEREO;
354 return AL_STEREO32F;
355 case 4: *in_chans = AL_QUAD;
356 return AL_QUAD32F;
357 case 6: *in_chans = AL_5POINT1;
358 return AL_5POINT1_32F;
359 case 7: *in_chans = AL_6POINT1;
360 return AL_6POINT1_32F;
361 case 8: *in_chans = AL_7POINT1;
362 return AL_7POINT1_32F;
363 default: break;
366 #if 0 /* Will cause incorrect byte offsets */
367 else if(format->wBitsPerSample == 64)
369 *in_type = AL_DOUBLE;
370 switch(format->nChannels)
372 case 1: *in_chans = AL_MONO;
373 return AL_MONO32F;
374 case 2: *in_chans = AL_STEREO;
375 return AL_STEREO32F;
376 case 4: *in_chans = AL_QUAD;
377 return AL_QUAD32F;
378 case 6: *in_chans = AL_5POINT1;
379 return AL_5POINT1_32F;
380 case 7: *in_chans = AL_6POINT1;
381 return AL_6POINT1_32F;
382 case 8: *in_chans = AL_7POINT1;
383 return AL_7POINT1_32F;
384 default: break;
387 #endif
389 FIXME("Could not get OpenAL format (%d-bit, %d channels)\n",
390 format->wBitsPerSample, format->nChannels);
391 return AL_NONE;
394 /* Speaker configs */
395 #define MONO SPEAKER_FRONT_CENTER
396 #define STEREO (SPEAKER_FRONT_LEFT|SPEAKER_FRONT_RIGHT)
397 #define REAR (SPEAKER_BACK_LEFT|SPEAKER_BACK_RIGHT)
398 #define QUAD (SPEAKER_FRONT_LEFT|SPEAKER_FRONT_RIGHT|SPEAKER_BACK_LEFT|SPEAKER_BACK_RIGHT)
399 #define X5DOT1 (SPEAKER_FRONT_LEFT|SPEAKER_FRONT_RIGHT|SPEAKER_FRONT_CENTER|SPEAKER_LOW_FREQUENCY|SPEAKER_BACK_LEFT|SPEAKER_BACK_RIGHT)
400 #define X6DOT1 (SPEAKER_FRONT_LEFT|SPEAKER_FRONT_RIGHT|SPEAKER_FRONT_CENTER|SPEAKER_LOW_FREQUENCY|SPEAKER_BACK_CENTER|SPEAKER_SIDE_LEFT|SPEAKER_SIDE_RIGHT)
401 #define X7DOT1 (SPEAKER_FRONT_LEFT|SPEAKER_FRONT_RIGHT|SPEAKER_FRONT_CENTER|SPEAKER_LOW_FREQUENCY|SPEAKER_BACK_LEFT|SPEAKER_BACK_RIGHT|SPEAKER_SIDE_LEFT|SPEAKER_SIDE_RIGHT)
403 static const char *get_fmtstr_EXT(const DS8Primary *prim, const WAVEFORMATEX *format, WAVEFORMATEXTENSIBLE *out)
405 *out = *CONTAINING_RECORD(format, const WAVEFORMATEXTENSIBLE, Format);
406 out->Format.cbSize = sizeof(*out) - sizeof(out->Format);
408 if(!out->Samples.wValidBitsPerSample)
409 out->Samples.wValidBitsPerSample = out->Format.wBitsPerSample;
410 else if(out->Samples.wValidBitsPerSample != out->Format.wBitsPerSample)
412 FIXME("Padded samples not supported (%u of %u)\n", out->Samples.wValidBitsPerSample, out->Format.wBitsPerSample);
413 return NULL;
416 if(out->dwChannelMask != MONO && out->dwChannelMask != STEREO &&
417 !prim->SupportedExt[EXT_MCFORMATS])
419 WARN("Multi-channel not available\n");
420 return NULL;
423 if(IsEqualGUID(&out->SubFormat, &KSDATAFORMAT_SUBTYPE_PCM))
425 if(out->Samples.wValidBitsPerSample == 8)
427 switch(out->dwChannelMask)
429 case MONO: return "AL_FORMAT_MONO8";
430 case STEREO: return "AL_FORMAT_STEREO8";
431 case REAR: return "AL_FORMAT_REAR8";
432 case QUAD: return "AL_FORMAT_QUAD8";
433 case X5DOT1: return "AL_FORMAT_51CHN8";
434 case X6DOT1: return "AL_FORMAT_61CHN8";
435 case X7DOT1: return "AL_FORMAT_71CHN8";
436 default: break;
439 else if(out->Samples.wValidBitsPerSample == 16)
441 switch(out->dwChannelMask)
443 case MONO: return "AL_FORMAT_MONO16";
444 case STEREO: return "AL_FORMAT_STEREO16";
445 case REAR: return "AL_FORMAT_REAR16";
446 case QUAD: return "AL_FORMAT_QUAD16";
447 case X5DOT1: return "AL_FORMAT_51CHN16";
448 case X6DOT1: return "AL_FORMAT_61CHN16";
449 case X7DOT1: return "AL_FORMAT_71CHN16";
450 default: break;
454 FIXME("Could not get OpenAL PCM format (%d-bit, channelmask %#x)\n",
455 out->Samples.wValidBitsPerSample, out->dwChannelMask);
456 return NULL;
458 else if(IsEqualGUID(&out->SubFormat, &KSDATAFORMAT_SUBTYPE_IEEE_FLOAT) &&
459 prim->SupportedExt[EXT_FLOAT32])
461 if(out->Samples.wValidBitsPerSample == 32)
463 switch(out->dwChannelMask)
465 case MONO: return "AL_FORMAT_MONO_FLOAT32";
466 case STEREO: return "AL_FORMAT_STEREO_FLOAT32";
467 case REAR: return "AL_FORMAT_REAR32";
468 case QUAD: return "AL_FORMAT_QUAD32";
469 case X5DOT1: return "AL_FORMAT_51CHN32";
470 case X6DOT1: return "AL_FORMAT_61CHN32";
471 case X7DOT1: return "AL_FORMAT_71CHN32";
472 default: break;
475 else
477 WARN("Invalid float bits: %u\n", out->Samples.wValidBitsPerSample);
478 return NULL;
481 FIXME("Could not get OpenAL float format (%d-bit, channelmask %#x)\n",
482 out->Samples.wValidBitsPerSample, out->dwChannelMask);
483 return NULL;
485 else if(!IsEqualGUID(&out->SubFormat, &GUID_NULL))
486 ERR("Unhandled extensible format: %s\n", debugstr_guid(&out->SubFormat));
487 return NULL;
489 static ALenum get_fmt_EXT(const WAVEFORMATEX *format, WAVEFORMATEXTENSIBLE *out, ALenum *in_chans, ALenum *in_type)
491 *out = *CONTAINING_RECORD(format, const WAVEFORMATEXTENSIBLE, Format);
492 out->Format.cbSize = sizeof(*out) - sizeof(out->Format);
494 if(!out->Samples.wValidBitsPerSample)
495 out->Samples.wValidBitsPerSample = out->Format.wBitsPerSample;
496 else if(out->Samples.wValidBitsPerSample != out->Format.wBitsPerSample)
498 FIXME("Padded samples not supported (%u of %u)\n", out->Samples.wValidBitsPerSample, out->Format.wBitsPerSample);
499 return AL_NONE;
502 if(IsEqualGUID(&out->SubFormat, &KSDATAFORMAT_SUBTYPE_PCM))
504 if(out->Samples.wValidBitsPerSample == 8)
506 *in_type = AL_UNSIGNED_BYTE;
507 switch(out->dwChannelMask)
509 case MONO: *in_chans = AL_MONO;
510 return AL_MONO8;
511 case STEREO: *in_chans = AL_STEREO;
512 return AL_STEREO8;
513 case REAR: *in_chans = AL_REAR;
514 return AL_REAR8;
515 case QUAD: *in_chans = AL_QUAD;
516 return AL_QUAD8;
517 case X5DOT1: *in_chans = AL_5POINT1;
518 return AL_5POINT1_8;
519 case X6DOT1: *in_chans = AL_6POINT1;
520 return AL_6POINT1_8;
521 case X7DOT1: *in_chans = AL_7POINT1;
522 return AL_7POINT1_8;
523 default: break;
526 else if(out->Samples.wValidBitsPerSample == 16)
528 *in_type = AL_SHORT;
529 switch(out->dwChannelMask)
531 case MONO: *in_chans = AL_MONO;
532 return AL_MONO16;
533 case STEREO: *in_chans = AL_STEREO;
534 return AL_STEREO16;
535 case REAR: *in_chans = AL_REAR;
536 return AL_REAR16;
537 case QUAD: *in_chans = AL_QUAD;
538 return AL_QUAD16;
539 case X5DOT1: *in_chans = AL_5POINT1;
540 return AL_5POINT1_16;
541 case X6DOT1: *in_chans = AL_6POINT1;
542 return AL_6POINT1_16;
543 case X7DOT1: *in_chans = AL_7POINT1;
544 return AL_7POINT1_16;
545 default: break;
548 #if 0
549 else if(out->Samples.wValidBitsPerSample == 24)
551 *in_type = AL_BYTE3;
552 switch(out->dwChannelMask)
554 case MONO: *in_chans = AL_MONO;
555 return AL_MONO32F;
556 case STEREO: *in_chans = AL_STEREO;
557 return AL_STEREO32F;
558 case REAR: *in_chans = AL_REAR;
559 return AL_REAR32F;
560 case QUAD: *in_chans = AL_QUAD;
561 return AL_QUAD32F;
562 case X5DOT1: *in_chans = AL_5POINT1;
563 return AL_5POINT1_32F;
564 case X6DOT1: *in_chans = AL_6POINT1;
565 return AL_6POINT1_32F;
566 case X7DOT1: *in_chans = AL_7POINT1;
567 return AL_7POINT1_32F;
568 default: break;
571 #endif
572 else if(out->Samples.wValidBitsPerSample == 32)
574 *in_type = AL_INT;
575 switch(out->dwChannelMask)
577 case MONO: *in_chans = AL_MONO;
578 return AL_MONO32F;
579 case STEREO: *in_chans = AL_STEREO;
580 return AL_STEREO32F;
581 case REAR: *in_chans = AL_REAR;
582 return AL_REAR32F;
583 case QUAD: *in_chans = AL_QUAD;
584 return AL_QUAD32F;
585 case X5DOT1: *in_chans = AL_5POINT1;
586 return AL_5POINT1_32F;
587 case X6DOT1: *in_chans = AL_6POINT1;
588 return AL_6POINT1_32F;
589 case X7DOT1: *in_chans = AL_7POINT1;
590 return AL_7POINT1_32F;
591 default: break;
595 FIXME("Could not get OpenAL PCM format (%d-bit, channelmask %#x)\n",
596 out->Samples.wValidBitsPerSample, out->dwChannelMask);
597 return AL_NONE;
599 else if(IsEqualGUID(&out->SubFormat, &KSDATAFORMAT_SUBTYPE_IEEE_FLOAT))
601 if(out->Samples.wValidBitsPerSample == 32)
603 *in_type = AL_FLOAT;
604 switch(out->dwChannelMask)
606 case MONO: *in_chans = AL_MONO;
607 return AL_MONO32F;
608 case STEREO: *in_chans = AL_STEREO;
609 return AL_STEREO32F;
610 case REAR: *in_chans = AL_REAR;
611 return AL_REAR32F;
612 case QUAD: *in_chans = AL_QUAD;
613 return AL_QUAD32F;
614 case X5DOT1: *in_chans = AL_5POINT1;
615 return AL_5POINT1_32F;
616 case X6DOT1: *in_chans = AL_6POINT1;
617 return AL_6POINT1_32F;
618 case X7DOT1: *in_chans = AL_7POINT1;
619 return AL_7POINT1_32F;
620 default: break;
623 #if 0
624 else if(out->Samples.wValidBitsPerSample == 64)
626 *in_type = AL_DOUBLE;
627 switch(out->dwChannelMask)
629 case MONO: *in_chans = AL_MONO;
630 return AL_MONO32F;
631 case STEREO: *in_chans = AL_STEREO;
632 return AL_STEREO32F;
633 case REAR: *in_chans = AL_REAR;
634 return AL_REAR32F;
635 case QUAD: *in_chans = AL_QUAD;
636 return AL_QUAD32F;
637 case X5DOT1: *in_chans = AL_5POINT1;
638 return AL_5POINT1_32F;
639 case X6DOT1: *in_chans = AL_6POINT1;
640 return AL_6POINT1_32F;
641 case X7DOT1: *in_chans = AL_7POINT1;
642 return AL_7POINT1_32F;
643 default: break;
646 #endif
647 else
649 WARN("Invalid float bits: %u\n", out->Samples.wValidBitsPerSample);
650 return AL_NONE;
653 FIXME("Could not get OpenAL float format (%d-bit, channelmask %#x)\n",
654 out->Samples.wValidBitsPerSample, out->dwChannelMask);
655 return AL_NONE;
657 else if(!IsEqualGUID(&out->SubFormat, &GUID_NULL))
658 ERR("Unhandled extensible format: %s\n", debugstr_guid(&out->SubFormat));
659 return AL_NONE;
662 static void DS8Data_Release(DS8Data *This);
663 static HRESULT DS8Data_Create(DS8Data **ppv, const DSBUFFERDESC *desc, DS8Primary *prim)
665 HRESULT hr = DSERR_INVALIDPARAM;
666 const WAVEFORMATEX *format;
667 DS8Data *pBuffer;
669 format = desc->lpwfxFormat;
670 TRACE("Requested buffer format:\n"
671 " FormatTag = 0x%04x\n"
672 " Channels = %d\n"
673 " SamplesPerSec = %u\n"
674 " AvgBytesPerSec = %u\n"
675 " BlockAlign = %d\n"
676 " BitsPerSample = %d\n",
677 format->wFormatTag, format->nChannels,
678 format->nSamplesPerSec, format->nAvgBytesPerSec,
679 format->nBlockAlign, format->wBitsPerSample);
681 if(format->nBlockAlign == 0)
683 WARN("Invalid BlockAlign specified\n");
684 return DSERR_INVALIDPARAM;
687 /* Generate a new buffer. Supporting the DSBCAPS_LOC* flags properly
688 * will need the EAX-RAM extension. Currently, we just tell the app it
689 * gets what it wanted. */
690 pBuffer = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*pBuffer));
691 if(!pBuffer)
692 return E_OUTOFMEMORY;
693 pBuffer->ref = 1;
695 pBuffer->dsbflags = desc->dwFlags;
696 if((pBuffer->dsbflags&(DSBCAPS_LOCSOFTWARE|DSBCAPS_LOCHARDWARE)) == (DSBCAPS_LOCSOFTWARE|DSBCAPS_LOCHARDWARE))
698 WARN("Hardware and software location requested\n");
699 goto fail;
701 if(!(pBuffer->dsbflags&(DSBCAPS_LOCSOFTWARE|DSBCAPS_LOCHARDWARE|DSBCAPS_LOCDEFER)))
702 pBuffer->dsbflags |= DSBCAPS_LOCHARDWARE;
704 pBuffer->buf_size = desc->dwBufferBytes + format->nBlockAlign - 1;
705 pBuffer->buf_size -= pBuffer->buf_size%format->nBlockAlign;
707 hr = DSERR_BUFFERTOOSMALL;
708 if(pBuffer->buf_size < DSBSIZE_MIN)
709 goto fail;
711 hr = DSERR_INVALIDPARAM;
712 if(pBuffer->buf_size > DSBSIZE_MAX)
713 goto fail;
715 pBuffer->numsegs = 1;
716 pBuffer->segsize = pBuffer->buf_size;
717 pBuffer->lastsegsize = pBuffer->buf_size;
719 if(!prim->SupportedExt[SOFT_BUFFER_SAMPLES])
721 const char *fmt_str;
723 if(!(pBuffer->dsbflags&DSBCAPS_STATIC) && !prim->ExtAL.BufferSubData &&
724 !prim->ExtAL.BufferDataStatic)
726 ALCint refresh = FAKE_REFRESH_COUNT;
727 ALuint newSize;
729 alcGetIntegerv(prim->parent->device, ALC_REFRESH, 1, &refresh);
730 getALCError(prim->parent->device);
732 newSize = format->nAvgBytesPerSec/refresh + format->nBlockAlign - 1;
733 newSize -= newSize%format->nBlockAlign;
735 /* Make sure enough buffers are available */
736 if(newSize > pBuffer->buf_size/(QBUFFERS+2))
737 ERR("Buffer segments too large to stream (%u for %u)!\n",
738 newSize, pBuffer->buf_size);
739 else
741 pBuffer->numsegs = pBuffer->buf_size/newSize;
742 pBuffer->segsize = newSize;
743 pBuffer->lastsegsize = pBuffer->buf_size - (newSize*(pBuffer->numsegs-1));
744 TRACE("New streaming buffer (%u chunks, %u : %u sizes)\n",
745 pBuffer->numsegs, pBuffer->segsize, pBuffer->lastsegsize);
749 if(format->wFormatTag == WAVE_FORMAT_PCM)
750 fmt_str = get_fmtstr_PCM(prim, format, &pBuffer->format);
751 else if(format->wFormatTag == WAVE_FORMAT_IEEE_FLOAT)
752 fmt_str = get_fmtstr_FLOAT(prim, format, &pBuffer->format);
753 else if(format->wFormatTag == WAVE_FORMAT_EXTENSIBLE)
755 const WAVEFORMATEXTENSIBLE *wfe;
757 hr = DSERR_CONTROLUNAVAIL;
758 if(format->cbSize != sizeof(WAVEFORMATEXTENSIBLE)-sizeof(WAVEFORMATEX) &&
759 format->cbSize != sizeof(WAVEFORMATEXTENSIBLE))
760 goto fail;
762 wfe = CONTAINING_RECORD(format, const WAVEFORMATEXTENSIBLE, Format);
763 TRACE("Extensible values:\n"
764 " Samples = %d\n"
765 " ChannelMask = 0x%x\n"
766 " SubFormat = %s\n",
767 wfe->Samples.wReserved, wfe->dwChannelMask,
768 debugstr_guid(&wfe->SubFormat));
770 fmt_str = get_fmtstr_EXT(prim, format, &pBuffer->format);
772 else
773 ERR("Unhandled formattag 0x%04x\n", format->wFormatTag);
775 hr = DSERR_INVALIDCALL;
776 if(!fmt_str)
777 goto fail;
779 pBuffer->buf_format = alGetEnumValue(fmt_str);
780 if(alGetError() != AL_NO_ERROR || pBuffer->buf_format == 0 ||
781 pBuffer->buf_format == -1)
783 WARN("Could not get OpenAL format from %s\n", fmt_str);
784 goto fail;
787 else
789 if(format->wFormatTag == WAVE_FORMAT_PCM)
790 pBuffer->buf_format = get_fmt_PCM(format, &pBuffer->format, &pBuffer->in_chans, &pBuffer->in_type);
791 else if(format->wFormatTag == WAVE_FORMAT_IEEE_FLOAT)
792 pBuffer->buf_format = get_fmt_FLOAT(format, &pBuffer->format, &pBuffer->in_chans, &pBuffer->in_type);
793 else if(format->wFormatTag == WAVE_FORMAT_EXTENSIBLE)
795 const WAVEFORMATEXTENSIBLE *wfe;
797 hr = DSERR_CONTROLUNAVAIL;
798 if(format->cbSize != sizeof(WAVEFORMATEXTENSIBLE)-sizeof(WAVEFORMATEX) &&
799 format->cbSize != sizeof(WAVEFORMATEXTENSIBLE))
800 goto fail;
802 wfe = CONTAINING_RECORD(format, const WAVEFORMATEXTENSIBLE, Format);
803 TRACE("Extensible values:\n"
804 " Samples = %d\n"
805 " ChannelMask = 0x%x\n"
806 " SubFormat = %s\n",
807 wfe->Samples.wReserved, wfe->dwChannelMask,
808 debugstr_guid(&wfe->SubFormat));
810 pBuffer->buf_format = get_fmt_EXT(format, &pBuffer->format, &pBuffer->in_chans, &pBuffer->in_type);
812 else
813 ERR("Unhandled formattag 0x%04x\n", format->wFormatTag);
815 hr = DSERR_INVALIDCALL;
816 if(prim->ExtAL.IsBufferFormatSupportedSOFT(pBuffer->buf_format) == AL_FALSE)
818 WARN("Unsupported OpenAL format: 0x%x\n", pBuffer->buf_format);
819 goto fail;
823 hr = E_OUTOFMEMORY;
824 pBuffer->buffers = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*pBuffer->buffers)*pBuffer->numsegs);
825 pBuffer->data = HeapAlloc(GetProcessHeap(), 0, pBuffer->buf_size);
826 if(!pBuffer->buffers || !pBuffer->data)
827 goto fail;
829 alGenBuffers(pBuffer->numsegs, pBuffer->buffers);
830 getALError();
832 *ppv = pBuffer;
833 return S_OK;
835 fail:
836 DS8Data_Release(pBuffer);
837 return hr;
840 static void DS8Data_AddRef(DS8Data *data)
842 InterlockedIncrement(&data->ref);
845 /* This function is always called with the device lock held */
846 static void DS8Data_Release(DS8Data *This)
848 if(InterlockedDecrement(&This->ref)) return;
850 TRACE("Deleting %p\n", This);
851 if (This->buffers && This->buffers[0])
853 alDeleteBuffers(This->numsegs, This->buffers);
854 getALError();
856 HeapFree(GetProcessHeap(), 0, This->buffers);
857 HeapFree(GetProcessHeap(), 0, This->data);
858 HeapFree(GetProcessHeap(), 0, This);
861 HRESULT DS8Buffer_Create(DS8Buffer **ppv, DS8Primary *parent, IDirectSoundBuffer *orig)
863 HRESULT hr = DSERR_OUTOFMEMORY;
864 DS8Buffer *This;
865 DS8Buffer **bufs;
867 *ppv = NULL;
868 This = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*This));
869 if(!This) return hr;
871 This->IDirectSoundBuffer8_iface.lpVtbl = (IDirectSoundBuffer8Vtbl*)&DS8Buffer_Vtbl;
872 This->IDirectSound3DBuffer_iface.lpVtbl = (IDirectSound3DBufferVtbl*)&DS8Buffer3d_Vtbl;
873 This->IDirectSoundNotify_iface.lpVtbl = (IDirectSoundNotifyVtbl*)&DS8BufferNot_Vtbl;
874 This->IKsPropertySet_iface.lpVtbl = (IKsPropertySetVtbl*)&DS8BufferProp_Vtbl;
876 This->primary = parent;
877 This->ctx = parent->ctx;
878 This->ExtAL = &parent->ExtAL;
879 This->crst = &parent->crst;
880 This->ref = This->all_ref = 1;
882 if(orig)
884 DS8Buffer *org = impl_from_IDirectSoundBuffer(orig);
885 hr = DSERR_BUFFERLOST;
886 if(org->bufferlost)
887 goto fail;
888 DS8Data_AddRef(org->buffer);
889 This->buffer = org->buffer;
892 /* Append to buffer list */
893 bufs = parent->buffers;
894 if(parent->nbuffers == parent->sizebuffers)
896 bufs = HeapReAlloc(GetProcessHeap(), 0, bufs, sizeof(*bufs)*(1+parent->nbuffers));
897 hr = DSERR_OUTOFMEMORY;
898 if(!bufs) goto fail;
899 parent->sizebuffers++;
901 parent->buffers = bufs;
902 bufs[parent->nbuffers++] = This;
904 /* Disable until initialized.. */
905 This->ds3dmode = DS3DMODE_DISABLE;
907 *ppv = This;
908 return S_OK;
910 fail:
911 DS8Buffer_Destroy(This);
912 return hr;
915 void DS8Buffer_Destroy(DS8Buffer *This)
917 DS8Primary *prim = This->primary;
918 DWORD idx;
920 TRACE("Destroying %p\n", This);
922 EnterCriticalSection(&prim->crst);
923 /* Remove from list, if in list */
924 for(idx = 0;idx < prim->nnotifies;++idx)
926 if(This == prim->notifies[idx])
928 prim->notifies[idx] = prim->notifies[--prim->nnotifies];
929 break;
932 for(idx = 0;idx < prim->nbuffers;++idx)
934 if(prim->buffers[idx] == This)
936 prim->buffers[idx] = prim->buffers[--prim->nbuffers];
937 break;
941 setALContext(This->ctx);
942 if(This->source)
944 ALuint *sources;
946 alSourceStop(This->source);
947 alSourcei(This->source, AL_BUFFER, 0);
948 getALError();
950 sources = prim->sources;
951 if(prim->nsources == prim->sizesources)
953 sources = HeapReAlloc(GetProcessHeap(), 0, sources, sizeof(*sources)*(prim->nsources+1));
954 if(!sources)
955 alDeleteSources(1, &This->source);
956 else
957 prim->sizesources++;
959 if(sources)
961 sources[prim->nsources++] = This->source;
962 prim->sources = sources;
964 This->source = 0;
966 LeaveCriticalSection(&prim->crst);
968 if(This->buffer)
969 DS8Data_Release(This->buffer);
971 popALContext();
973 HeapFree(GetProcessHeap(), 0, This->notify);
974 HeapFree(GetProcessHeap(), 0, This);
978 static HRESULT WINAPI DS8Buffer_QueryInterface(IDirectSoundBuffer8 *iface, REFIID riid, void **ppv)
980 DS8Buffer *This = impl_from_IDirectSoundBuffer8(iface);
982 TRACE("(%p)->(%s, %p)\n", iface, debugstr_guid(riid), ppv);
984 *ppv = NULL;
985 if(IsEqualIID(riid, &IID_IUnknown) ||
986 IsEqualIID(riid, &IID_IDirectSoundBuffer))
987 *ppv = &This->IDirectSoundBuffer8_iface;
988 else if(IsEqualIID(riid, &IID_IDirectSoundBuffer8))
990 if(This->primary->parent->is_8)
991 *ppv = &This->IDirectSoundBuffer8_iface;
993 else if(IsEqualIID(riid, &IID_IDirectSound3DBuffer))
995 if((This->buffer->dsbflags&DSBCAPS_CTRL3D))
996 *ppv = &This->IDirectSound3DBuffer_iface;
998 else if(IsEqualIID(riid, &IID_IDirectSoundNotify))
1000 if((This->buffer->dsbflags&DSBCAPS_CTRLPOSITIONNOTIFY))
1001 *ppv = &This->IDirectSoundNotify_iface;
1003 else if(IsEqualIID(riid, &IID_IKsPropertySet))
1004 *ppv = &This->IKsPropertySet_iface;
1005 else
1006 FIXME("Unhandled GUID: %s\n", debugstr_guid(riid));
1008 if(*ppv)
1010 IUnknown_AddRef((IUnknown*)*ppv);
1011 return S_OK;
1014 return E_NOINTERFACE;
1017 static ULONG WINAPI DS8Buffer_AddRef(IDirectSoundBuffer8 *iface)
1019 DS8Buffer *This = impl_from_IDirectSoundBuffer8(iface);
1020 LONG ret;
1022 InterlockedIncrement(&This->all_ref);
1023 ret = InterlockedIncrement(&This->ref);
1024 TRACE("new refcount %d\n", ret);
1026 return ret;
1029 static ULONG WINAPI DS8Buffer_Release(IDirectSoundBuffer8 *iface)
1031 DS8Buffer *This = impl_from_IDirectSoundBuffer8(iface);
1032 LONG ret;
1034 ret = InterlockedDecrement(&This->ref);
1035 TRACE("new refcount %d\n", ret);
1036 if(InterlockedDecrement(&This->all_ref) == 0)
1037 DS8Buffer_Destroy(This);
1039 return ret;
1042 static HRESULT WINAPI DS8Buffer_GetCaps(IDirectSoundBuffer8 *iface, DSBCAPS *caps)
1044 DS8Buffer *This = impl_from_IDirectSoundBuffer8(iface);
1046 TRACE("(%p)->(%p)\n", iface, caps);
1048 if(!caps || caps->dwSize < sizeof(*caps))
1050 WARN("Invalid DSBCAPS (%p, %u)\n", caps, (caps ? caps->dwSize : 0));
1051 return DSERR_INVALIDPARAM;
1054 caps->dwFlags = This->buffer->dsbflags;
1055 caps->dwBufferBytes = This->buffer->buf_size;
1056 caps->dwUnlockTransferRate = 4096;
1057 caps->dwPlayCpuOverhead = 0;
1058 return S_OK;
1061 static HRESULT WINAPI DS8Buffer_GetCurrentPosition(IDirectSoundBuffer8 *iface, DWORD *playpos, DWORD *curpos)
1063 DS8Buffer *This = impl_from_IDirectSoundBuffer8(iface);
1064 WAVEFORMATEX *format = &This->buffer->format.Format;
1065 UINT writecursor, pos;
1067 TRACE("(%p)->(%p, %p)\n", iface, playpos, curpos);
1069 EnterCriticalSection(This->crst);
1070 setALContext(This->ctx);
1072 if(This->buffer->numsegs > 1)
1074 ALint queued = QBUFFERS;
1075 alGetSourcei(This->source, AL_BUFFERS_QUEUED, &queued);
1076 getALError();
1078 pos = (This->curidx+This->buffer->numsegs-queued)%This->buffer->numsegs;
1079 pos *= This->buffer->segsize;
1080 writecursor = This->curidx * This->buffer->segsize;
1082 else if(This->ExtAL->BufferSubData || This->ExtAL->BufferSamplesSOFT)
1084 ALint rwpos[2] = { 0, 0 };
1086 alGetSourceiv(This->source, AL_BYTE_RW_OFFSETS_SOFT, rwpos);
1087 getALError();
1089 pos = rwpos[0];
1090 writecursor = rwpos[1];
1092 else
1094 ALint status = 0;
1095 ALint ofs = 0;
1097 alGetSourcei(This->source, AL_BYTE_OFFSET, &ofs);
1098 alGetSourcei(This->source, AL_SOURCE_STATE, &status);
1099 getALError();
1101 pos = ofs;
1102 if(status == AL_PLAYING)
1104 writecursor = format->nSamplesPerSec / 100;
1105 writecursor *= format->nBlockAlign;
1107 else
1108 writecursor = 0;
1109 writecursor = (writecursor + pos) % This->buffer->buf_size;
1111 TRACE("%p Play pos = %u, write pos = %u\n", This, pos, writecursor);
1112 if(pos >= This->buffer->buf_size)
1114 ERR("playpos >= buf_size\n");
1115 pos %= This->buffer->buf_size;
1117 if(writecursor >= This->buffer->buf_size)
1119 ERR("writepos >= buf_size\n");
1120 writecursor %= This->buffer->buf_size;
1123 if(playpos) *playpos = pos;
1124 if(curpos) *curpos = writecursor;
1126 popALContext();
1127 LeaveCriticalSection(This->crst);
1129 return S_OK;
1132 static HRESULT WINAPI DS8Buffer_GetFormat(IDirectSoundBuffer8 *iface, WAVEFORMATEX *wfx, DWORD allocated, DWORD *written)
1134 DS8Buffer *This = impl_from_IDirectSoundBuffer8(iface);
1135 HRESULT hr = S_OK;
1136 UINT size;
1138 TRACE("(%p)->(%p, %u, %p)\n", iface, wfx, allocated, written);
1140 if(!wfx && !written)
1142 WARN("Cannot report format or format size\n");
1143 return DSERR_INVALIDPARAM;
1146 EnterCriticalSection(This->crst);
1147 size = sizeof(This->buffer->format.Format) + This->buffer->format.Format.cbSize;
1148 if(wfx)
1150 if(allocated < size)
1151 hr = DSERR_INVALIDPARAM;
1152 else
1153 memcpy(wfx, &This->buffer->format.Format, size);
1155 if(written)
1156 *written = size;
1157 LeaveCriticalSection(This->crst);
1159 return hr;
1162 static HRESULT WINAPI DS8Buffer_GetVolume(IDirectSoundBuffer8 *iface, LONG *vol)
1164 DS8Buffer *This = impl_from_IDirectSoundBuffer8(iface);
1165 HRESULT hr;
1167 TRACE("(%p)->(%p)\n", iface, vol);
1169 if(!vol)
1171 WARN("Invalid pointer\n");
1172 return DSERR_INVALIDPARAM;
1175 EnterCriticalSection(This->crst);
1177 hr = DSERR_CONTROLUNAVAIL;
1178 if(!(This->buffer->dsbflags&DSBCAPS_CTRLVOLUME))
1179 WARN("Volume control not set\n");
1180 else
1182 ALfloat gain = 1.0f;
1184 setALContext(This->ctx);
1185 alGetSourcef(This->source, AL_GAIN, &gain);
1186 getALError();
1187 popALContext();
1189 *vol = gain_to_mB(gain);
1190 *vol = min(*vol, DSBVOLUME_MAX);
1191 *vol = max(*vol, DSBVOLUME_MIN);
1193 hr = DS_OK;
1196 LeaveCriticalSection(This->crst);
1197 return hr;
1200 static HRESULT WINAPI DS8Buffer_GetPan(IDirectSoundBuffer8 *iface, LONG *pan)
1202 DS8Buffer *This = impl_from_IDirectSoundBuffer8(iface);
1203 HRESULT hr;
1205 TRACE("(%p)->(%p)\n", iface, pan);
1207 if(!pan)
1209 WARN("Invalid pointer\n");
1210 return DSERR_INVALIDPARAM;
1213 EnterCriticalSection(This->crst);
1215 hr = DSERR_CONTROLUNAVAIL;
1216 if(!(This->buffer->dsbflags&DSBCAPS_CTRLPAN))
1217 WARN("Panning control not set\n");
1218 else
1220 ALfloat pos[3];
1222 setALContext(This->ctx);
1223 alGetSourcefv(This->source, AL_POSITION, pos);
1224 getALError();
1225 popALContext();
1227 *pan = (LONG)((pos[0]+1.0) * (DSBPAN_RIGHT-DSBPAN_LEFT) / 2.0 + 0.5) + DSBPAN_LEFT;
1228 *pan = min(*pan, DSBPAN_RIGHT);
1229 *pan = max(*pan, DSBPAN_LEFT);
1231 hr = DS_OK;
1234 LeaveCriticalSection(This->crst);
1235 return hr;
1238 static HRESULT WINAPI DS8Buffer_GetFrequency(IDirectSoundBuffer8 *iface, DWORD *freq)
1240 DS8Buffer *This = impl_from_IDirectSoundBuffer8(iface);
1241 HRESULT hr;
1243 TRACE("(%p)->(%p)\n", iface, freq);
1245 if(!freq)
1247 WARN("Invalid pointer\n");
1248 return DSERR_INVALIDPARAM;
1251 EnterCriticalSection(This->crst);
1253 hr = DSERR_CONTROLUNAVAIL;
1254 if(!(This->buffer->dsbflags&DSBCAPS_CTRLFREQUENCY))
1255 WARN("Frequency control not set\n");
1256 else
1258 ALfloat pitch = 1.0f;
1260 setALContext(This->ctx);
1261 alGetSourcefv(This->source, AL_PITCH, &pitch);
1262 getALError();
1263 popALContext();
1265 *freq = (DWORD)(This->buffer->format.Format.nSamplesPerSec * pitch);
1267 hr = DS_OK;
1270 LeaveCriticalSection(This->crst);
1271 return hr;
1274 static HRESULT WINAPI DS8Buffer_GetStatus(IDirectSoundBuffer8 *iface, DWORD *status)
1276 DS8Buffer *This = impl_from_IDirectSoundBuffer8(iface);
1277 ALint state, looping;
1279 TRACE("(%p)->(%p)\n", iface, status);
1281 if(!status)
1283 WARN("Invalid pointer\n");
1284 return DSERR_INVALIDPARAM;
1287 EnterCriticalSection(This->crst);
1289 setALContext(This->ctx);
1290 alGetSourcei(This->source, AL_SOURCE_STATE, &state);
1291 looping = This->islooping;
1292 if(This->buffer->numsegs == 1)
1293 alGetSourcei(This->source, AL_LOOPING, &looping);
1294 else if(state != AL_PLAYING)
1295 state = This->isplaying ? AL_PLAYING : AL_PAUSED;
1296 getALError();
1297 popALContext();
1299 *status = 0;
1300 if((This->buffer->dsbflags&DSBCAPS_LOCDEFER))
1302 if((This->buffer->dsbflags&DSBCAPS_LOCSOFTWARE))
1303 *status |= DSBSTATUS_LOCSOFTWARE;
1304 else if((This->buffer->dsbflags&DSBCAPS_LOCHARDWARE))
1305 *status |= DSBSTATUS_LOCHARDWARE;
1307 if(state == AL_PLAYING)
1308 *status |= DSBSTATUS_PLAYING | (looping ? DSBSTATUS_LOOPING : 0);
1310 LeaveCriticalSection(This->crst);
1312 return S_OK;
1315 static HRESULT WINAPI DS8Buffer_Initialize(IDirectSoundBuffer8 *iface, IDirectSound *ds, const DSBUFFERDESC *desc)
1317 DS8Buffer *This = impl_from_IDirectSoundBuffer8(iface);
1318 DS3DBUFFER *ds3dbuffer;
1319 HRESULT hr;
1321 TRACE("(%p)->(%p, %p)\n", iface, ds, desc);
1323 EnterCriticalSection(This->crst);
1324 setALContext(This->ctx);
1326 hr = DSERR_ALREADYINITIALIZED;
1327 if(This->source)
1328 goto out;
1330 if(!This->buffer)
1332 hr = DSERR_INVALIDPARAM;
1333 if(!desc)
1335 WARN("Missing DSound buffer description\n");
1336 goto out;
1338 if(!desc->lpwfxFormat)
1340 WARN("Missing buffer format (%p)\n", This);
1341 goto out;
1343 if((desc->dwFlags&DSBCAPS_CTRL3D) && desc->lpwfxFormat->nChannels != 1)
1345 if(This->primary->parent->is_8)
1347 /* DirectSoundBuffer8 objects aren't allowed non-mono 3D
1348 * buffers */
1349 WARN("Can't create multi-channel 3D buffers\n");
1350 goto out;
1352 ERR("Multi-channel 3D sounds are not spatialized\n");
1355 hr = DS8Data_Create(&This->buffer, desc, This->primary);
1356 if(FAILED(hr))
1357 goto out;
1358 else
1360 DS8Data *buf = This->buffer;
1362 if(buf->format.Format.wBitsPerSample == 8)
1363 memset(buf->data, 0x80, buf->buf_size);
1364 else
1365 memset(buf->data, 0x00, buf->buf_size);
1367 if(This->ExtAL->BufferDataStatic)
1368 This->ExtAL->BufferDataStatic(buf->buffers[0], buf->buf_format,
1369 buf->data, buf->buf_size,
1370 buf->format.Format.nSamplesPerSec);
1371 else if(This->ExtAL->BufferSamplesSOFT)
1372 This->ExtAL->BufferSamplesSOFT(buf->buffers[0],
1373 buf->format.Format.nSamplesPerSec, buf->buf_format,
1374 buf->buf_size/buf->format.Format.nBlockAlign,
1375 buf->in_chans, buf->in_type, buf->data);
1376 else if(This->ExtAL->BufferSubData)
1377 alBufferData(buf->buffers[0], buf->buf_format,
1378 buf->data, buf->buf_size,
1379 buf->format.Format.nSamplesPerSec);
1381 getALError();
1384 hr = DSERR_GENERIC;
1385 if(This->primary->nsources)
1387 This->source = This->primary->sources[--This->primary->nsources];
1388 alSourcef(This->source, AL_GAIN, 1.0f);
1389 alSourcef(This->source, AL_PITCH, 1.0f);
1390 getALError();
1392 else
1394 alGenSources(1, &This->source);
1395 if(alGetError() != AL_NO_ERROR)
1396 goto out;
1399 ds3dbuffer = &This->ds3dbuffer;
1400 ds3dbuffer->dwSize = sizeof(*ds3dbuffer);
1401 ds3dbuffer->vPosition.x = 0.0;
1402 ds3dbuffer->vPosition.y = 0.0;
1403 ds3dbuffer->vPosition.z = 0.0;
1404 ds3dbuffer->vVelocity.x = 0.0;
1405 ds3dbuffer->vVelocity.y = 0.0;
1406 ds3dbuffer->vVelocity.z = 0.0;
1407 ds3dbuffer->dwInsideConeAngle = DS3D_DEFAULTCONEANGLE;
1408 ds3dbuffer->dwOutsideConeAngle = DS3D_DEFAULTCONEANGLE;
1409 ds3dbuffer->vConeOrientation.x = 0.0;
1410 ds3dbuffer->vConeOrientation.y = 0.0;
1411 ds3dbuffer->vConeOrientation.z = 1.0;
1412 ds3dbuffer->lConeOutsideVolume = DS3D_DEFAULTCONEOUTSIDEVOLUME;
1413 ds3dbuffer->flMinDistance = DS3D_DEFAULTMINDISTANCE;
1414 ds3dbuffer->flMaxDistance = DS3D_DEFAULTMAXDISTANCE;
1415 ds3dbuffer->dwMode = DS3DMODE_NORMAL;
1417 if((This->buffer->dsbflags&DSBCAPS_CTRL3D))
1419 if(This->primary->auxslot != 0)
1421 alSource3i(This->source, AL_AUXILIARY_SEND_FILTER, This->primary->auxslot, 0, AL_FILTER_NULL);
1422 getALError();
1425 hr = IDirectSound3DBuffer_SetAllParameters(&This->IDirectSound3DBuffer_iface, ds3dbuffer, DS3D_IMMEDIATE);
1426 if(FAILED(hr))
1428 ERR("SetAllParameters failed\n");
1429 goto out;
1432 else
1434 ALuint source = This->source;
1436 if(This->primary->auxslot != 0)
1438 /* Simple hack to make reverb affect non-3D sounds too */
1439 alSource3i(source, AL_AUXILIARY_SEND_FILTER, This->primary->auxslot, 0, AL_FILTER_NULL);
1440 /*alSource3i(source, AL_AUXILIARY_SEND_FILTER, 0, 0, AL_FILTER_NULL);*/
1443 /* Non-3D sources aren't distance attenuated */
1444 This->ds3dmode = DS3DMODE_DISABLE;
1445 alSource3f(source, AL_POSITION, 0.0f, 1.0f, 0.0f);
1446 alSource3f(source, AL_VELOCITY, 0.0f, 0.0f, 0.0f);
1447 alSource3f(source, AL_DIRECTION, 0.0f, 0.0f, 0.0f);
1448 alSourcef(source, AL_CONE_OUTER_GAIN, 1.0f);
1449 alSourcef(source, AL_REFERENCE_DISTANCE, 1.0f);
1450 alSourcef(source, AL_MAX_DISTANCE, 1000.0f);
1451 alSourcef(source, AL_ROLLOFF_FACTOR, 0.0f);
1452 alSourcei(source, AL_CONE_INNER_ANGLE, 360);
1453 alSourcei(source, AL_CONE_OUTER_ANGLE, 360);
1454 alSourcei(source, AL_SOURCE_RELATIVE, AL_TRUE);
1455 getALError();
1457 hr = S_OK;
1459 out:
1460 popALContext();
1461 LeaveCriticalSection(This->crst);
1463 return hr;
1466 static HRESULT WINAPI DS8Buffer_Lock(IDirectSoundBuffer8 *iface, DWORD ofs, DWORD bytes, void **ptr1, DWORD *len1, void **ptr2, DWORD *len2, DWORD flags)
1468 DS8Buffer *This = impl_from_IDirectSoundBuffer8(iface);
1469 HRESULT hr;
1470 DWORD remain;
1472 TRACE("(%p)->(%u, %u, %p, %p, %p, %p, 0x%x)\n", This, ofs, bytes, ptr1, len1, ptr2, len2, flags);
1474 if(!ptr1 || !len1)
1476 WARN("Invalid pointer/len %p %p\n", ptr1, len1);
1477 return DSERR_INVALIDPARAM;
1480 EnterCriticalSection(This->crst);
1481 setALContext(This->ctx);
1483 *ptr1 = NULL;
1484 *len1 = 0;
1485 if(ptr2) *ptr2 = NULL;
1486 if(len2) *len2 = 0;
1488 hr = DSERR_INVALIDPARAM;
1489 if((flags&DSBLOCK_FROMWRITECURSOR))
1490 DS8Buffer_GetCurrentPosition(iface, NULL, &ofs);
1491 else if(ofs >= This->buffer->buf_size)
1493 WARN("Invalid ofs %u\n", ofs);
1494 goto out;
1496 if((flags&DSBLOCK_ENTIREBUFFER))
1497 bytes = This->buffer->buf_size;
1498 else if(bytes > This->buffer->buf_size)
1500 WARN("Invalid size %u\n", bytes);
1501 goto out;
1504 *ptr1 = This->buffer->data + ofs;
1505 if(ofs+bytes >= This->buffer->buf_size)
1507 *len1 = This->buffer->buf_size - ofs;
1508 remain = bytes - *len1;
1510 else
1512 *len1 = bytes;
1513 remain = 0;
1516 This->buffer->locked = TRUE;
1518 if(ptr2 && len2 && remain)
1520 *ptr2 = This->buffer->data;
1521 *len2 = remain;
1523 hr = S_OK;
1525 out:
1526 popALContext();
1527 LeaveCriticalSection(This->crst);
1528 return hr;
1531 static HRESULT WINAPI DS8Buffer_Play(IDirectSoundBuffer8 *iface, DWORD res1, DWORD prio, DWORD flags)
1533 DS8Buffer *This = impl_from_IDirectSoundBuffer8(iface);
1534 ALint type, state = AL_STOPPED;
1535 HRESULT hr;
1536 (void)res1;
1538 TRACE("%p\n", This);
1540 EnterCriticalSection(This->crst);
1541 setALContext(This->ctx);
1543 hr = DSERR_BUFFERLOST;
1544 if(This->bufferlost)
1546 WARN("Buffer %p lost\n", This);
1547 goto out;
1550 if((This->buffer->dsbflags&DSBCAPS_LOCDEFER))
1552 if(!(This->buffer->dsbflags&(DSBCAPS_LOCHARDWARE|DSBCAPS_LOCSOFTWARE)))
1554 if(flags & DSBPLAY_LOCSOFTWARE)
1555 This->buffer->dsbflags |= DSBCAPS_LOCSOFTWARE;
1556 else
1557 This->buffer->dsbflags |= DSBCAPS_LOCHARDWARE;
1560 else if(prio)
1562 ERR("Invalid priority set for non-deferred buffer %p, %u!\n", This->buffer, prio);
1563 hr = DSERR_INVALIDPARAM;
1564 goto out;
1567 alGetSourcei(This->source, AL_SOURCE_STATE, &state);
1568 if(This->buffer->numsegs > 1)
1570 This->islooping = !!(flags&DSBPLAY_LOOPING);
1571 if(state != AL_PLAYING && This->isplaying)
1572 state = AL_PLAYING;
1574 else
1576 alGetSourcei(This->source, AL_SOURCE_TYPE, &type);
1577 alSourcei(This->source, AL_LOOPING, (flags&DSBPLAY_LOOPING) ? AL_TRUE : AL_FALSE);
1579 getALError();
1581 hr = S_OK;
1582 if(state == AL_PLAYING)
1583 goto out;
1585 /* alSourceQueueBuffers will implicitly set type to streaming */
1586 if(This->buffer->numsegs == 1)
1588 if(type != AL_STATIC)
1589 alSourcei(This->source, AL_BUFFER, This->buffer->buffers[0]);
1590 alSourcePlay(This->source);
1592 if(alGetError() != AL_NO_ERROR)
1594 ERR("Couldn't start source\n");
1595 This->curidx = (This->buffer->numsegs-1+This->curidx)%This->buffer->numsegs;
1596 alSourcei(This->source, AL_BUFFER, 0);
1597 getALError();
1598 hr = DSERR_GENERIC;
1599 goto out;
1601 This->isplaying = TRUE;
1603 if(This->nnotify)
1605 DS8Buffer_addnotify(This);
1606 DS8Buffer_starttimer(This->primary);
1608 else if(This->buffer->numsegs > 1)
1609 DS8Buffer_starttimer(This->primary);
1611 out:
1612 popALContext();
1613 LeaveCriticalSection(This->crst);
1614 return hr;
1617 static HRESULT WINAPI DS8Buffer_SetCurrentPosition(IDirectSoundBuffer8 *iface, DWORD pos)
1619 DS8Buffer *This = impl_from_IDirectSoundBuffer8(iface);
1620 HRESULT hr;
1622 TRACE("(%p)->(%u)\n", iface, (UINT)pos);
1624 EnterCriticalSection(This->crst);
1625 setALContext(This->ctx);
1627 hr = DSERR_INVALIDPARAM;
1628 if(pos >= This->buffer->buf_size)
1629 goto out;
1631 if(This->buffer->numsegs > 1)
1633 DS8Data *buf = This->buffer;
1634 This->curidx = pos/buf->segsize;
1635 if(This->curidx >= buf->numsegs)
1636 This->curidx = buf->numsegs - 1;
1637 if(This->isplaying)
1639 /* Perform a flush, so the next timer update will restart at the
1640 * proper position */
1641 alSourceStop(This->source);
1642 alSourcei(This->source, AL_BUFFER, 0);
1643 getALError();
1646 else
1647 alSourcei(This->source, AL_BYTE_OFFSET, pos);
1648 This->lastpos = pos;
1649 hr = S_OK;
1651 out:
1652 popALContext();
1653 LeaveCriticalSection(This->crst);
1654 return hr;
1657 static HRESULT WINAPI DS8Buffer_SetFormat(IDirectSoundBuffer8 *iface, const WAVEFORMATEX *wfx)
1659 /* This call only works on primary buffers */
1660 WARN("(%p)->(%p)\n", iface, wfx);
1661 return DSERR_INVALIDCALL;
1664 static HRESULT WINAPI DS8Buffer_SetVolume(IDirectSoundBuffer8 *iface, LONG vol)
1666 DS8Buffer *This = impl_from_IDirectSoundBuffer8(iface);
1667 HRESULT hr = S_OK;
1669 TRACE("(%p)->(%d)\n", iface, vol);
1671 if(vol > DSBVOLUME_MAX || vol < DSBVOLUME_MIN)
1673 WARN("Invalid volume (%d)\n", vol);
1674 return DSERR_INVALIDPARAM;
1677 EnterCriticalSection(This->crst);
1678 if(!(This->buffer->dsbflags&DSBCAPS_CTRLVOLUME))
1679 hr = DSERR_CONTROLUNAVAIL;
1680 if(SUCCEEDED(hr))
1682 ALfloat fvol = mB_to_gain(vol);
1683 setALContext(This->ctx);
1684 alSourcef(This->source, AL_GAIN, fvol);
1685 popALContext();
1687 LeaveCriticalSection(This->crst);
1689 return hr;
1692 static HRESULT WINAPI DS8Buffer_SetPan(IDirectSoundBuffer8 *iface, LONG pan)
1694 DS8Buffer *This = impl_from_IDirectSoundBuffer8(iface);
1695 HRESULT hr = S_OK;
1697 TRACE("(%p)->(%d)\n", iface, pan);
1699 if(pan > DSBPAN_RIGHT || pan < DSBPAN_LEFT)
1701 WARN("invalid parameter: pan = %d\n", pan);
1702 return DSERR_INVALIDPARAM;
1705 EnterCriticalSection(This->crst);
1706 if(!(This->buffer->dsbflags&DSBCAPS_CTRLPAN))
1707 hr = DSERR_CONTROLUNAVAIL;
1708 else
1710 ALfloat pos[3];
1711 pos[0] = (pan-DSBPAN_LEFT) * 2.0 / (ALfloat)(DSBPAN_RIGHT-DSBPAN_LEFT) - 1.0;
1712 /* NOTE: Strict movement along the X plane can cause the sound to jump
1713 * between left and right sharply. Using a curved path helps smooth it
1714 * out */
1715 pos[1] = sqrt(1.0 - pos[0]*pos[0]);
1716 pos[2] = 0.0;
1718 setALContext(This->ctx);
1719 alSourcefv(This->source, AL_POSITION, pos);
1720 getALError();
1721 popALContext();
1723 if(pan != 0 && This->buffer->format.Format.nChannels > 1)
1724 FIXME("Panning for multi-channel buffers is not supported\n");
1726 LeaveCriticalSection(This->crst);
1728 return hr;
1731 static HRESULT WINAPI DS8Buffer_SetFrequency(IDirectSoundBuffer8 *iface, DWORD freq)
1733 DS8Buffer *This = impl_from_IDirectSoundBuffer8(iface);
1734 HRESULT hr = S_OK;
1736 TRACE("(%p)->(%u)\n", iface, freq);
1738 if(freq < DSBFREQUENCY_MIN || freq > DSBFREQUENCY_MAX)
1740 WARN("invalid parameter: freq = %d\n", freq);
1741 return DSERR_INVALIDPARAM;
1744 EnterCriticalSection(This->crst);
1745 if(!(This->buffer->dsbflags&DSBCAPS_CTRLFREQUENCY))
1746 hr = DSERR_CONTROLUNAVAIL;
1747 else
1749 ALfloat pitch = 1.0f;
1750 if(freq != DSBFREQUENCY_ORIGINAL)
1751 pitch = freq / (ALfloat)This->buffer->format.Format.nSamplesPerSec;
1753 setALContext(This->ctx);
1754 alSourcef(This->source, AL_PITCH, pitch);
1755 getALError();
1756 popALContext();
1758 LeaveCriticalSection(This->crst);
1759 return hr;
1762 static HRESULT WINAPI DS8Buffer_Stop(IDirectSoundBuffer8 *iface)
1764 DS8Buffer *This = impl_from_IDirectSoundBuffer8(iface);
1765 ALint state;
1767 TRACE("(%p)->()\n", iface);
1769 EnterCriticalSection(This->crst);
1770 setALContext(This->ctx);
1772 alSourcePause(This->source);
1773 getALError();
1774 /* Mac OS X doesn't immediately report state change
1775 * if Play() is immediately called after Stop, this can be fatal,
1776 * the buffer would never be restarted
1778 do {
1779 state = AL_PAUSED;
1780 alGetSourcei(This->source, AL_SOURCE_STATE, &state);
1781 if(state != AL_PLAYING)
1782 break;
1783 Sleep(1);
1784 } while(1);
1786 This->isplaying = FALSE;
1788 popALContext();
1789 LeaveCriticalSection(This->crst);
1791 return S_OK;
1794 static HRESULT WINAPI DS8Buffer_Unlock(IDirectSoundBuffer8 *iface, void *ptr1, DWORD len1, void *ptr2, DWORD len2)
1796 DS8Buffer *This = impl_from_IDirectSoundBuffer8(iface);
1797 DS8Data *buf = This->buffer;
1798 DWORD bufsize = buf->buf_size;
1799 DWORD_PTR ofs1, ofs2;
1800 DWORD_PTR boundary = (DWORD_PTR)buf->data;
1801 HRESULT hr;
1803 TRACE("(%p)->(%p, %u, %p, %u)\n", iface, ptr1, len1, ptr2, len2);
1805 EnterCriticalSection(This->crst);
1806 setALContext(This->ctx);
1808 This->buffer->locked = 0;
1809 hr = DSERR_INVALIDPARAM;
1811 /* Make sure offset is between boundary and boundary + bufsize */
1812 ofs1 = (DWORD_PTR)ptr1;
1813 ofs2 = (DWORD_PTR)ptr2;
1814 if(ofs1 < boundary)
1815 goto out;
1816 if(ofs2 && ofs2 != boundary)
1817 goto out;
1818 ofs1 -= boundary;
1819 ofs2 = 0;
1820 if(bufsize-ofs1 < len1 || len2 > ofs1)
1821 goto out;
1822 if(!ptr2)
1823 len2 = 0;
1825 hr = S_OK;
1826 if(!len1 && !len2)
1827 goto out;
1829 if(This->ExtAL->BufferDataStatic)
1830 goto out;
1832 if(This->ExtAL->BufferSubSamplesSOFT)
1834 const WAVEFORMATEX *format = &buf->format.Format;
1836 ptr1 = (BYTE*)ptr1 - (ofs1%format->nBlockAlign);
1837 ofs1 /= format->nBlockAlign;
1838 len1 /= format->nBlockAlign;
1839 if(len1 > 0)
1840 This->ExtAL->BufferSubSamplesSOFT(buf->buffers[0], ofs1, len1,
1841 buf->in_chans, buf->in_type, ptr1);
1842 ptr2 = (BYTE*)ptr2 - (ofs2%format->nBlockAlign);
1843 ofs2 /= format->nBlockAlign;
1844 len2 /= format->nBlockAlign;
1845 if(len2 > 0)
1846 This->ExtAL->BufferSubSamplesSOFT(buf->buffers[0], ofs2, len2,
1847 buf->in_chans, buf->in_type, ptr2);
1848 getALError();
1850 else if(This->ExtAL->BufferSubData)
1852 const WAVEFORMATEX *format = &buf->format.Format;
1854 len1 -= len1%format->nBlockAlign;
1855 if(len1 > 0)
1856 This->ExtAL->BufferSubData(buf->buffers[0], buf->buf_format, ptr1,
1857 ofs1, len1);
1858 len2 -= len2%format->nBlockAlign;
1859 if(len2 > 0)
1860 This->ExtAL->BufferSubData(buf->buffers[0], buf->buf_format, ptr2,
1861 ofs2, len2);
1862 getALError();
1864 else
1866 alBufferData(buf->buffers[0], buf->buf_format,
1867 buf->data, buf->buf_size,
1868 buf->format.Format.nSamplesPerSec);
1869 getALError();
1872 out:
1873 if(hr != S_OK)
1874 WARN("Invalid parameters (0x%lx,%u) (%p,%u,%p,%u)\n", boundary, bufsize, ptr1, len1, ptr2, len2);
1875 popALContext();
1876 LeaveCriticalSection(This->crst);
1877 return hr;
1880 static HRESULT WINAPI DS8Buffer_Restore(IDirectSoundBuffer8 *iface)
1882 DS8Buffer *This = impl_from_IDirectSoundBuffer8(iface);
1883 HRESULT hr;
1885 TRACE("(%p)->()\n", iface);
1887 EnterCriticalSection(This->crst);
1888 if(This->primary->parent->prio_level < DSSCL_WRITEPRIMARY ||
1889 iface == This->primary->write_emu)
1891 This->bufferlost = 0;
1892 hr = S_OK;
1894 else
1895 hr = DSERR_BUFFERLOST;
1896 LeaveCriticalSection(This->crst);
1898 return hr;
1901 static HRESULT WINAPI DS8Buffer_SetFX(IDirectSoundBuffer8 *iface, DWORD fxcount, DSEFFECTDESC *desc, DWORD *rescodes)
1903 DS8Buffer *This = impl_from_IDirectSoundBuffer8(iface);
1904 DWORD i;
1906 TRACE("(%p)->(%u, %p, %p)\n", This, fxcount, desc, rescodes);
1908 if(!(This->buffer->dsbflags&DSBCAPS_CTRLFX))
1910 WARN("FX control not set\n");
1911 return DSERR_CONTROLUNAVAIL;
1914 if(fxcount == 0)
1916 if(desc || rescodes)
1918 WARN("Non-NULL desc and/or result pointer specified with no effects.\n");
1919 return DSERR_INVALIDPARAM;
1922 /* No effects; we can handle that */
1923 return DS_OK;
1926 if(!desc || !rescodes)
1928 WARN("NULL desc and/or result pointer specified.\n");
1929 return DSERR_INVALIDPARAM;
1932 /* We don't (currently) handle DSound effects */
1933 for(i = 0;i < fxcount;++i)
1935 FIXME("Cannot handle effect: %s\n", debugstr_guid(&desc[i].guidDSFXClass));
1936 rescodes[i] = DSFXR_FAILED;
1939 return DS_INCOMPLETE;
1942 static HRESULT WINAPI DS8Buffer_AcquireResources(IDirectSoundBuffer8 *iface, DWORD flags, DWORD fxcount, DWORD *rescodes)
1944 DS8Buffer *This = impl_from_IDirectSoundBuffer8(iface);
1946 TRACE("(%p)->(%u, %u, %p)\n", This, flags, fxcount, rescodes);
1948 /* effects aren't supported at the moment.. */
1949 if(fxcount != 0 || rescodes)
1951 WARN("Non-zero effect count and/or result pointer specified with no effects.\n");
1952 return DSERR_INVALIDPARAM;
1955 EnterCriticalSection(This->crst);
1956 if((This->buffer->dsbflags&DSBCAPS_LOCDEFER))
1958 This->buffer->dsbflags &= ~(DSBCAPS_LOCSOFTWARE|DSBCAPS_LOCHARDWARE);
1959 if((flags&DSBPLAY_LOCSOFTWARE))
1960 This->buffer->dsbflags |= DSBCAPS_LOCSOFTWARE;
1961 else
1962 This->buffer->dsbflags |= DSBCAPS_LOCHARDWARE;
1964 LeaveCriticalSection(This->crst);
1966 return S_OK;
1969 static HRESULT WINAPI DS8Buffer_GetObjectInPath(IDirectSoundBuffer8 *iface, REFGUID guid, DWORD idx, REFGUID rguidiface, void **ppv)
1971 FIXME("(%p)->(%s, %u, %s, %p) : stub!\n", iface, debugstr_guid(guid), idx, debugstr_guid(rguidiface), ppv);
1972 return E_NOTIMPL;
1975 static const IDirectSoundBuffer8Vtbl DS8Buffer_Vtbl =
1977 DS8Buffer_QueryInterface,
1978 DS8Buffer_AddRef,
1979 DS8Buffer_Release,
1980 DS8Buffer_GetCaps,
1981 DS8Buffer_GetCurrentPosition,
1982 DS8Buffer_GetFormat,
1983 DS8Buffer_GetVolume,
1984 DS8Buffer_GetPan,
1985 DS8Buffer_GetFrequency,
1986 DS8Buffer_GetStatus,
1987 DS8Buffer_Initialize,
1988 DS8Buffer_Lock,
1989 DS8Buffer_Play,
1990 DS8Buffer_SetCurrentPosition,
1991 DS8Buffer_SetFormat,
1992 DS8Buffer_SetVolume,
1993 DS8Buffer_SetPan,
1994 DS8Buffer_SetFrequency,
1995 DS8Buffer_Stop,
1996 DS8Buffer_Unlock,
1997 DS8Buffer_Restore,
1998 DS8Buffer_SetFX,
1999 DS8Buffer_AcquireResources,
2000 DS8Buffer_GetObjectInPath
2004 static HRESULT WINAPI DS8Buffer3D_QueryInterface(IDirectSound3DBuffer *iface, REFIID riid, void **ppv)
2006 DS8Buffer *This = impl_from_IDirectSound3DBuffer(iface);
2007 return IDirectSoundBuffer8_QueryInterface(&This->IDirectSoundBuffer8_iface, riid, ppv);
2010 static ULONG WINAPI DS8Buffer3D_AddRef(IDirectSound3DBuffer *iface)
2012 DS8Buffer *This = impl_from_IDirectSound3DBuffer(iface);
2013 LONG ret;
2015 InterlockedIncrement(&This->all_ref);
2016 ret = InterlockedIncrement(&This->ds3d_ref);
2017 TRACE("new refcount %d\n", ret);
2019 return ret;
2022 static ULONG WINAPI DS8Buffer3D_Release(IDirectSound3DBuffer *iface)
2024 DS8Buffer *This = impl_from_IDirectSound3DBuffer(iface);
2025 LONG ret;
2027 ret = InterlockedDecrement(&This->ds3d_ref);
2028 TRACE("new refcount %d\n", ret);
2029 if(InterlockedDecrement(&This->all_ref) == 0)
2030 DS8Buffer_Destroy(This);
2032 return ret;
2035 static HRESULT WINAPI DS8Buffer3D_GetAllParameters(IDirectSound3DBuffer *iface, DS3DBUFFER *ds3dbuffer)
2037 DS8Buffer *This = impl_from_IDirectSound3DBuffer(iface);
2038 DS3DBUFFER ds3dbuf;
2039 HRESULT hr;
2041 TRACE("%p\n", This);
2043 if(!ds3dbuffer || ds3dbuffer->dwSize < sizeof(*ds3dbuffer))
2045 WARN("Invalid parameters %p %u\n", ds3dbuffer, ds3dbuffer ? ds3dbuffer->dwSize : 0);
2046 return DSERR_INVALIDPARAM;
2048 ds3dbuf.dwSize = sizeof(ds3dbuf);
2050 EnterCriticalSection(This->crst);
2051 setALContext(This->ctx);
2053 hr = IDirectSound3DBuffer_GetPosition(iface, &ds3dbuf.vPosition);
2054 if(SUCCEEDED(hr))
2055 hr = IDirectSound3DBuffer_GetVelocity(iface, &ds3dbuf.vVelocity);
2056 if(SUCCEEDED(hr))
2057 hr = IDirectSound3DBuffer_GetConeAngles(iface, &ds3dbuf.dwInsideConeAngle, &ds3dbuf.dwOutsideConeAngle);
2058 if(SUCCEEDED(hr))
2059 hr = IDirectSound3DBuffer_GetConeOrientation(iface, &ds3dbuf.vConeOrientation);
2060 if(SUCCEEDED(hr))
2061 hr = IDirectSound3DBuffer_GetConeOutsideVolume(iface, &ds3dbuf.lConeOutsideVolume);
2062 if(SUCCEEDED(hr))
2063 hr = IDirectSound3DBuffer_GetMinDistance(iface, &ds3dbuf.flMinDistance);
2064 if(SUCCEEDED(hr))
2065 hr = IDirectSound3DBuffer_GetMaxDistance(iface, &ds3dbuf.flMaxDistance);
2066 if(SUCCEEDED(hr))
2067 hr = IDirectSound3DBuffer_GetMode(iface, &ds3dbuf.dwMode);
2068 if(SUCCEEDED(hr))
2069 memcpy(ds3dbuffer, &ds3dbuf, sizeof(ds3dbuf));
2071 popALContext();
2072 LeaveCriticalSection(This->crst);
2074 return hr;
2077 static HRESULT WINAPI DS8Buffer3D_GetConeAngles(IDirectSound3DBuffer *iface, DWORD *pdwInsideConeAngle, DWORD *pdwOutsideConeAngle)
2079 DS8Buffer *This = impl_from_IDirectSound3DBuffer(iface);
2080 ALint inangle, outangle;
2082 TRACE("(%p)->(%p, %p)\n", This, pdwInsideConeAngle, pdwOutsideConeAngle);
2083 if(!pdwInsideConeAngle || !pdwOutsideConeAngle)
2085 WARN("Invalid pointers (%p, %p)\n", pdwInsideConeAngle, pdwOutsideConeAngle);
2086 return DSERR_INVALIDPARAM;
2089 EnterCriticalSection(This->crst);
2090 setALContext(This->ctx);
2092 alGetSourcei(This->source, AL_CONE_INNER_ANGLE, &inangle);
2093 alGetSourcei(This->source, AL_CONE_OUTER_ANGLE, &outangle);
2094 getALError();
2095 *pdwInsideConeAngle = inangle;
2096 *pdwOutsideConeAngle = outangle;
2098 popALContext();
2099 LeaveCriticalSection(This->crst);
2101 return S_OK;
2104 static HRESULT WINAPI DS8Buffer3D_GetConeOrientation(IDirectSound3DBuffer *iface, D3DVECTOR *orient)
2106 DS8Buffer *This = impl_from_IDirectSound3DBuffer(iface);
2107 ALfloat dir[3];
2109 TRACE("(%p)->(%p)\n", This, orient);
2110 if(!orient)
2112 WARN("Invalid pointer\n");
2113 return DSERR_INVALIDPARAM;
2116 EnterCriticalSection(This->crst);
2117 setALContext(This->ctx);
2119 alGetSourcefv(This->source, AL_DIRECTION, dir);
2120 getALError();
2121 orient->x = dir[0];
2122 orient->y = dir[1];
2123 orient->z = -dir[2];
2125 popALContext();
2126 LeaveCriticalSection(This->crst);
2128 return S_OK;
2131 static HRESULT WINAPI DS8Buffer3D_GetConeOutsideVolume(IDirectSound3DBuffer *iface, LONG *vol)
2133 DS8Buffer *This = impl_from_IDirectSound3DBuffer(iface);
2134 ALfloat gain;
2136 TRACE("(%p)->(%p)\n", This, vol);
2137 if(!vol)
2139 WARN("Invalid pointer\n");
2140 return DSERR_INVALIDPARAM;
2143 EnterCriticalSection(This->crst);
2144 setALContext(This->ctx);
2146 alGetSourcef(This->source, AL_CONE_OUTER_GAIN, &gain);
2147 getALError();
2148 *vol = gain_to_mB(gain);
2149 *vol = max(*vol, DSBVOLUME_MIN);
2150 *vol = min(*vol, DSBVOLUME_MAX);
2152 popALContext();
2153 LeaveCriticalSection(This->crst);
2154 return S_OK;
2157 static HRESULT WINAPI DS8Buffer3D_GetMaxDistance(IDirectSound3DBuffer *iface, D3DVALUE *maxdist)
2159 DS8Buffer *This = impl_from_IDirectSound3DBuffer(iface);
2160 ALfloat dist;
2162 TRACE("(%p)->(%p)\n", This, maxdist);
2163 if(!maxdist)
2165 WARN("Invalid pointer\n");
2166 return DSERR_INVALIDPARAM;
2169 EnterCriticalSection(This->crst);
2170 setALContext(This->ctx);
2172 alGetSourcef(This->source, AL_MAX_DISTANCE, &dist);
2173 getALError();
2174 *maxdist = dist;
2176 popALContext();
2177 LeaveCriticalSection(This->crst);
2179 return S_OK;
2182 static HRESULT WINAPI DS8Buffer3D_GetMinDistance(IDirectSound3DBuffer *iface, D3DVALUE *mindist)
2184 DS8Buffer *This = impl_from_IDirectSound3DBuffer(iface);
2185 ALfloat dist;
2187 TRACE("(%p)->(%p)\n", This, mindist);
2188 if(!mindist)
2190 WARN("Invalid pointer\n");
2191 return DSERR_INVALIDPARAM;
2194 EnterCriticalSection(This->crst);
2195 setALContext(This->ctx);
2197 alGetSourcef(This->source, AL_REFERENCE_DISTANCE, &dist);
2198 getALError();
2199 *mindist = dist;
2201 popALContext();
2202 LeaveCriticalSection(This->crst);
2204 return S_OK;
2207 static HRESULT WINAPI DS8Buffer3D_GetMode(IDirectSound3DBuffer *iface, DWORD *mode)
2209 DS8Buffer *This = impl_from_IDirectSound3DBuffer(iface);
2211 TRACE("(%p)->(%p)\n", This, mode);
2212 if(!mode)
2214 WARN("Invalid pointer\n");
2215 return DSERR_INVALIDPARAM;
2218 EnterCriticalSection(This->crst);
2219 *mode = This->ds3dmode;
2220 LeaveCriticalSection(This->crst);
2222 return S_OK;
2225 static HRESULT WINAPI DS8Buffer3D_GetPosition(IDirectSound3DBuffer *iface, D3DVECTOR *pos)
2227 DS8Buffer *This = impl_from_IDirectSound3DBuffer(iface);
2228 ALfloat alpos[3];
2230 TRACE("(%p)->(%p)\n", This, pos);
2231 if(!pos)
2233 WARN("Invalid pointer\n");
2234 return DSERR_INVALIDPARAM;
2237 EnterCriticalSection(This->crst);
2238 setALContext(This->ctx);
2240 alGetSourcefv(This->source, AL_POSITION, alpos);
2241 getALError();
2242 pos->x = alpos[0];
2243 pos->y = alpos[1];
2244 pos->z = -alpos[2];
2246 popALContext();
2247 LeaveCriticalSection(This->crst);
2249 return S_OK;
2252 static HRESULT WINAPI DS8Buffer3D_GetVelocity(IDirectSound3DBuffer *iface, D3DVECTOR *vel)
2254 DS8Buffer *This = impl_from_IDirectSound3DBuffer(iface);
2255 ALfloat alvel[3];
2257 TRACE("(%p)->(%p)\n", This, vel);
2258 if(!vel)
2260 WARN("Invalid pointer\n");
2261 return DSERR_INVALIDPARAM;
2264 EnterCriticalSection(This->crst);
2265 setALContext(This->ctx);
2267 alGetSourcefv(This->source, AL_VELOCITY, alvel);
2268 getALError();
2269 vel->x = alvel[0];
2270 vel->y = alvel[1];
2271 vel->z = -alvel[2];
2273 popALContext();
2274 LeaveCriticalSection(This->crst);
2276 return S_OK;
2279 static HRESULT WINAPI DS8Buffer3D_SetAllParameters(IDirectSound3DBuffer *iface, const DS3DBUFFER *ds3dbuffer, DWORD apply)
2281 DS8Buffer *This = impl_from_IDirectSound3DBuffer(iface);
2282 TRACE("(%p)->(%p, %u)\n", This, ds3dbuffer, apply);
2284 if(!ds3dbuffer || ds3dbuffer->dwSize < sizeof(*ds3dbuffer))
2286 WARN("Invalid DS3DBUFFER (%p, %u)\n", ds3dbuffer, ds3dbuffer ? ds3dbuffer->dwSize : 0);
2287 return DSERR_INVALIDPARAM;
2290 if(ds3dbuffer->dwInsideConeAngle > DS3D_MAXCONEANGLE ||
2291 ds3dbuffer->dwOutsideConeAngle > DS3D_MAXCONEANGLE)
2293 WARN("Invalid cone angles (%u, %u)\n", ds3dbuffer->dwInsideConeAngle,
2294 ds3dbuffer->dwOutsideConeAngle);
2295 return DSERR_INVALIDPARAM;
2298 if(ds3dbuffer->lConeOutsideVolume > DSBVOLUME_MAX ||
2299 ds3dbuffer->lConeOutsideVolume < DSBVOLUME_MIN)
2301 WARN("Invalid cone outside volume (%d)\n", ds3dbuffer->lConeOutsideVolume);
2302 return DSERR_INVALIDPARAM;
2305 if(ds3dbuffer->flMaxDistance < 0.0f)
2307 WARN("Invalid max distance (%f)\n", ds3dbuffer->flMaxDistance);
2308 return DSERR_INVALIDPARAM;
2311 if(ds3dbuffer->flMinDistance < 0.0f)
2313 WARN("Invalid min distance (%f)\n", ds3dbuffer->flMinDistance);
2314 return DSERR_INVALIDPARAM;
2317 if(ds3dbuffer->dwMode != DS3DMODE_NORMAL &&
2318 ds3dbuffer->dwMode != DS3DMODE_HEADRELATIVE &&
2319 ds3dbuffer->dwMode != DS3DMODE_DISABLE)
2321 WARN("Invalid mode (%u)\n", ds3dbuffer->dwMode);
2322 return DSERR_INVALIDPARAM;
2325 EnterCriticalSection(This->crst);
2326 setALContext(This->ctx);
2327 IDirectSound3DBuffer_SetPosition(iface, ds3dbuffer->vPosition.x, ds3dbuffer->vPosition.y, ds3dbuffer->vPosition.z, apply);
2328 IDirectSound3DBuffer_SetVelocity(iface, ds3dbuffer->vVelocity.x, ds3dbuffer->vVelocity.y, ds3dbuffer->vVelocity.z, apply);
2329 IDirectSound3DBuffer_SetConeAngles(iface, ds3dbuffer->dwInsideConeAngle, ds3dbuffer->dwOutsideConeAngle, apply);
2330 IDirectSound3DBuffer_SetConeOrientation(iface, ds3dbuffer->vConeOrientation.x, ds3dbuffer->vConeOrientation.y, ds3dbuffer->vConeOrientation.z, apply);
2331 IDirectSound3DBuffer_SetConeOutsideVolume(iface, ds3dbuffer->lConeOutsideVolume, apply);
2332 IDirectSound3DBuffer_SetMinDistance(iface, ds3dbuffer->flMinDistance, apply);
2333 IDirectSound3DBuffer_SetMaxDistance(iface, ds3dbuffer->flMaxDistance, apply);
2334 IDirectSound3DBuffer_SetMode(iface, ds3dbuffer->dwMode, apply);
2335 popALContext();
2336 LeaveCriticalSection(This->crst);
2338 return S_OK;
2341 static HRESULT WINAPI DS8Buffer3D_SetConeAngles(IDirectSound3DBuffer *iface, DWORD dwInsideConeAngle, DWORD dwOutsideConeAngle, DWORD apply)
2343 DS8Buffer *This = impl_from_IDirectSound3DBuffer(iface);
2345 TRACE("(%p)->(%u, %u, %u)\n", This, dwInsideConeAngle, dwOutsideConeAngle, apply);
2346 if(dwInsideConeAngle > DS3D_MAXCONEANGLE ||
2347 dwOutsideConeAngle > DS3D_MAXCONEANGLE)
2349 WARN("Invalid cone angles (%u, %u)\n", dwInsideConeAngle, dwOutsideConeAngle);
2350 return DSERR_INVALIDPARAM;
2353 EnterCriticalSection(This->crst);
2354 if(apply == DS3D_DEFERRED)
2356 This->ds3dbuffer.dwInsideConeAngle = dwInsideConeAngle;
2357 This->ds3dbuffer.dwOutsideConeAngle = dwOutsideConeAngle;
2358 This->dirty.bit.cone_angles = 1;
2360 else
2362 setALContext(This->ctx);
2363 alSourcei(This->source, AL_CONE_INNER_ANGLE, dwInsideConeAngle);
2364 alSourcei(This->source, AL_CONE_OUTER_ANGLE, dwOutsideConeAngle);
2365 getALError();
2366 popALContext();
2368 LeaveCriticalSection(This->crst);
2370 return S_OK;
2373 static HRESULT WINAPI DS8Buffer3D_SetConeOrientation(IDirectSound3DBuffer *iface, D3DVALUE x, D3DVALUE y, D3DVALUE z, DWORD apply)
2375 DS8Buffer *This = impl_from_IDirectSound3DBuffer(iface);
2377 TRACE("(%p)->(%f, %f, %f, %u)\n", This, x, y, z, apply);
2379 EnterCriticalSection(This->crst);
2380 if(apply == DS3D_DEFERRED)
2382 This->ds3dbuffer.vConeOrientation.x = x;
2383 This->ds3dbuffer.vConeOrientation.y = y;
2384 This->ds3dbuffer.vConeOrientation.z = z;
2385 This->dirty.bit.cone_orient = 1;
2387 else
2389 setALContext(This->ctx);
2390 alSource3f(This->source, AL_DIRECTION, x, y, -z);
2391 getALError();
2392 popALContext();
2394 LeaveCriticalSection(This->crst);
2396 return S_OK;
2399 static HRESULT WINAPI DS8Buffer3D_SetConeOutsideVolume(IDirectSound3DBuffer *iface, LONG vol, DWORD apply)
2401 DS8Buffer *This = impl_from_IDirectSound3DBuffer(iface);
2403 TRACE("(%p)->(%u, %u)\n", This, vol, apply);
2404 if(vol < DSBVOLUME_MIN || vol > DSBVOLUME_MAX)
2406 WARN("Invalid volume (%u)\n", vol);
2407 return DSERR_INVALIDPARAM;
2410 EnterCriticalSection(This->crst);
2411 if(apply == DS3D_DEFERRED)
2413 This->ds3dbuffer.lConeOutsideVolume = vol;
2414 This->dirty.bit.cone_outsidevolume = 1;
2416 else
2418 setALContext(This->ctx);
2419 alSourcef(This->source, AL_CONE_OUTER_GAIN, mB_to_gain(vol));
2420 getALError();
2421 popALContext();
2423 LeaveCriticalSection(This->crst);
2425 return S_OK;
2428 static HRESULT WINAPI DS8Buffer3D_SetMaxDistance(IDirectSound3DBuffer *iface, D3DVALUE maxdist, DWORD apply)
2430 DS8Buffer *This = impl_from_IDirectSound3DBuffer(iface);
2432 TRACE("(%p)->(%f, %u)\n", This, maxdist, apply);
2433 if(maxdist < 0.0f)
2435 WARN("Invalid max distance (%f)\n", maxdist);
2436 return DSERR_INVALIDPARAM;
2439 EnterCriticalSection(This->crst);
2440 if(apply == DS3D_DEFERRED)
2442 This->ds3dbuffer.flMaxDistance = maxdist;
2443 This->dirty.bit.max_distance = 1;
2445 else
2447 setALContext(This->ctx);
2448 alSourcef(This->source, AL_MAX_DISTANCE, maxdist);
2449 getALError();
2450 popALContext();
2452 LeaveCriticalSection(This->crst);
2454 return S_OK;
2457 static HRESULT WINAPI DS8Buffer3D_SetMinDistance(IDirectSound3DBuffer *iface, D3DVALUE mindist, DWORD apply)
2459 DS8Buffer *This = impl_from_IDirectSound3DBuffer(iface);
2461 TRACE("(%p)->(%f, %u)\n", This, mindist, apply);
2462 if(mindist < 0.0f)
2464 WARN("Invalid min distance (%f)\n", mindist);
2465 return DSERR_INVALIDPARAM;
2468 EnterCriticalSection(This->crst);
2469 if(apply == DS3D_DEFERRED)
2471 This->ds3dbuffer.flMinDistance = mindist;
2472 This->dirty.bit.min_distance = 1;
2474 else
2476 setALContext(This->ctx);
2477 alSourcef(This->source, AL_REFERENCE_DISTANCE, mindist);
2478 getALError();
2479 popALContext();
2481 LeaveCriticalSection(This->crst);
2483 return S_OK;
2486 static HRESULT WINAPI DS8Buffer3D_SetMode(IDirectSound3DBuffer *iface, DWORD mode, DWORD apply)
2488 DS8Buffer *This = impl_from_IDirectSound3DBuffer(iface);
2490 TRACE("(%p)->(%u, %u)\n", This, mode, apply);
2491 if(mode != DS3DMODE_NORMAL && mode != DS3DMODE_HEADRELATIVE &&
2492 mode != DS3DMODE_DISABLE)
2494 WARN("Invalid mode (%u)\n", mode);
2495 return DSERR_INVALIDPARAM;
2498 EnterCriticalSection(This->crst);
2499 if(apply == DS3D_DEFERRED)
2501 This->ds3dbuffer.dwMode = mode;
2502 This->dirty.bit.mode = 1;
2504 else
2506 setALContext(This->ctx);
2507 alSourcei(This->source, AL_SOURCE_RELATIVE,
2508 (mode != DS3DMODE_NORMAL) ? AL_TRUE : AL_FALSE);
2509 alSourcef(This->source, AL_ROLLOFF_FACTOR,
2510 (mode == DS3DMODE_DISABLE) ? 0.0f : This->primary->rollofffactor);
2511 This->ds3dmode = mode;
2512 getALError();
2513 popALContext();
2515 LeaveCriticalSection(This->crst);
2517 return S_OK;
2520 static HRESULT WINAPI DS8Buffer3D_SetPosition(IDirectSound3DBuffer *iface, D3DVALUE x, D3DVALUE y, D3DVALUE z, DWORD apply)
2522 DS8Buffer *This = impl_from_IDirectSound3DBuffer(iface);
2524 TRACE("(%p)->(%f, %f, %f, %u)\n", This, x, y, z, apply);
2526 EnterCriticalSection(This->crst);
2527 if(apply == DS3D_DEFERRED)
2529 This->ds3dbuffer.vPosition.x = x;
2530 This->ds3dbuffer.vPosition.y = y;
2531 This->ds3dbuffer.vPosition.z = z;
2532 This->dirty.bit.pos = 1;
2534 else
2536 setALContext(This->ctx);
2537 alSource3f(This->source, AL_POSITION, x, y, -z);
2538 getALError();
2539 popALContext();
2541 LeaveCriticalSection(This->crst);
2543 return S_OK;
2546 static HRESULT WINAPI DS8Buffer3D_SetVelocity(IDirectSound3DBuffer *iface, D3DVALUE x, D3DVALUE y, D3DVALUE z, DWORD apply)
2548 DS8Buffer *This = impl_from_IDirectSound3DBuffer(iface);
2550 TRACE("(%p)->(%f, %f, %f, %u)\n", This, x, y, z, apply);
2552 EnterCriticalSection(This->crst);
2553 if(apply == DS3D_DEFERRED)
2555 This->ds3dbuffer.vVelocity.x = x;
2556 This->ds3dbuffer.vVelocity.y = y;
2557 This->ds3dbuffer.vVelocity.z = z;
2558 This->dirty.bit.vel = 1;
2560 else
2562 setALContext(This->ctx);
2563 alSource3f(This->source, AL_VELOCITY, x, y, -z);
2564 getALError();
2565 popALContext();
2567 LeaveCriticalSection(This->crst);
2569 return S_OK;
2572 static const IDirectSound3DBufferVtbl DS8Buffer3d_Vtbl =
2574 DS8Buffer3D_QueryInterface,
2575 DS8Buffer3D_AddRef,
2576 DS8Buffer3D_Release,
2577 DS8Buffer3D_GetAllParameters,
2578 DS8Buffer3D_GetConeAngles,
2579 DS8Buffer3D_GetConeOrientation,
2580 DS8Buffer3D_GetConeOutsideVolume,
2581 DS8Buffer3D_GetMaxDistance,
2582 DS8Buffer3D_GetMinDistance,
2583 DS8Buffer3D_GetMode,
2584 DS8Buffer3D_GetPosition,
2585 DS8Buffer3D_GetVelocity,
2586 DS8Buffer3D_SetAllParameters,
2587 DS8Buffer3D_SetConeAngles,
2588 DS8Buffer3D_SetConeOrientation,
2589 DS8Buffer3D_SetConeOutsideVolume,
2590 DS8Buffer3D_SetMaxDistance,
2591 DS8Buffer3D_SetMinDistance,
2592 DS8Buffer3D_SetMode,
2593 DS8Buffer3D_SetPosition,
2594 DS8Buffer3D_SetVelocity
2598 static HRESULT WINAPI DS8BufferNot_QueryInterface(IDirectSoundNotify *iface, REFIID riid, void **ppv)
2600 DS8Buffer *This = impl_from_IDirectSoundNotify(iface);
2601 return IDirectSoundBuffer8_QueryInterface(&This->IDirectSoundBuffer8_iface, riid, ppv);
2604 static ULONG WINAPI DS8BufferNot_AddRef(IDirectSoundNotify *iface)
2606 DS8Buffer *This = impl_from_IDirectSoundNotify(iface);
2607 LONG ret;
2609 InterlockedIncrement(&This->all_ref);
2610 ret = InterlockedIncrement(&This->not_ref);
2611 TRACE("new refcount %d\n", ret);
2613 return ret;
2616 static ULONG WINAPI DS8BufferNot_Release(IDirectSoundNotify *iface)
2618 DS8Buffer *This = impl_from_IDirectSoundNotify(iface);
2619 LONG ret;
2621 ret = InterlockedDecrement(&This->not_ref);
2622 TRACE("new refcount %d\n", ret);
2623 if(InterlockedDecrement(&This->all_ref) == 0)
2624 DS8Buffer_Destroy(This);
2626 return ret;
2629 static HRESULT WINAPI DS8BufferNot_SetNotificationPositions(IDirectSoundNotify *iface, DWORD count, const DSBPOSITIONNOTIFY *notifications)
2631 DS8Buffer *This = impl_from_IDirectSoundNotify(iface);
2632 DSBPOSITIONNOTIFY *nots;
2633 DWORD state;
2634 HRESULT hr;
2636 EnterCriticalSection(This->crst);
2637 hr = DSERR_INVALIDPARAM;
2638 if(count && !notifications)
2639 goto out;
2641 hr = IDirectSoundBuffer8_GetStatus(&This->IDirectSoundBuffer8_iface, &state);
2642 if(FAILED(hr))
2643 goto out;
2645 hr = DSERR_INVALIDCALL;
2646 if((state&DSBSTATUS_PLAYING))
2647 goto out;
2649 if(!count)
2651 HeapFree(GetProcessHeap(), 0, This->notify);
2652 This->notify = 0;
2653 This->nnotify = 0;
2654 hr = S_OK;
2656 else
2658 DWORD i;
2660 hr = DSERR_INVALIDPARAM;
2661 for(i = 0;i < count;++i)
2663 if(notifications[i].dwOffset >= This->buffer->buf_size &&
2664 notifications[i].dwOffset != (DWORD)DSBPN_OFFSETSTOP)
2665 goto out;
2668 hr = E_OUTOFMEMORY;
2669 nots = HeapAlloc(GetProcessHeap(), 0, count*sizeof(*nots));
2670 if(!nots)
2671 goto out;
2672 memcpy(nots, notifications, count*sizeof(*nots));
2674 HeapFree(GetProcessHeap(), 0, This->notify);
2675 This->notify = nots;
2676 This->nnotify = count;
2678 hr = S_OK;
2681 out:
2682 LeaveCriticalSection(This->crst);
2683 return hr;
2686 static const IDirectSoundNotifyVtbl DS8BufferNot_Vtbl =
2688 DS8BufferNot_QueryInterface,
2689 DS8BufferNot_AddRef,
2690 DS8BufferNot_Release,
2691 DS8BufferNot_SetNotificationPositions
2695 static HRESULT WINAPI DS8BufferProp_QueryInterface(IKsPropertySet *iface, REFIID riid, void **ppv)
2697 DS8Buffer *This = impl_from_IKsPropertySet(iface);
2698 return IDirectSoundBuffer8_QueryInterface(&This->IDirectSoundBuffer8_iface, riid, ppv);
2701 static ULONG WINAPI DS8BufferProp_AddRef(IKsPropertySet *iface)
2703 DS8Buffer *This = impl_from_IKsPropertySet(iface);
2704 LONG ret;
2706 InterlockedIncrement(&This->all_ref);
2707 ret = InterlockedIncrement(&This->prop_ref);
2708 TRACE("new refcount %d\n", ret);
2710 return ret;
2713 static ULONG WINAPI DS8BufferProp_Release(IKsPropertySet *iface)
2715 DS8Buffer *This = impl_from_IKsPropertySet(iface);
2716 LONG ret;
2718 ret = InterlockedDecrement(&This->prop_ref);
2719 TRACE("new refcount %d\n", ret);
2720 if(InterlockedDecrement(&This->all_ref) == 0)
2721 DS8Buffer_Destroy(This);
2723 return ret;
2726 /* NOTE: Due to some apparent quirks in DSound, the listener properties are
2727 handled through secondary buffers. */
2728 static HRESULT WINAPI DS8BufferProp_Get(IKsPropertySet *iface,
2729 REFGUID guidPropSet, ULONG dwPropID,
2730 LPVOID pInstanceData, ULONG cbInstanceData,
2731 LPVOID pPropData, ULONG cbPropData,
2732 PULONG pcbReturned)
2734 DS8Buffer *This = impl_from_IKsPropertySet(iface);
2735 HRESULT hr = E_PROP_ID_UNSUPPORTED;
2737 TRACE("(%p)->(%s, %u, %p, %u, %p, %u, %p)\n", iface, debugstr_guid(guidPropSet),
2738 dwPropID, pInstanceData, cbInstanceData, pPropData, cbPropData, pcbReturned);
2740 if(!pcbReturned)
2741 return E_POINTER;
2742 *pcbReturned = 0;
2744 #if 0
2745 if(IsEqualIID(guidPropSet, &DSPROPSETID_EAX20_BufferProperties))
2748 else
2749 #endif
2751 /* Not a known buffer/source property. Pass it to the listener */
2752 hr = IKsPropertySet_Get(&This->primary->IKsPropertySet_iface, guidPropSet,
2753 dwPropID, pInstanceData, cbInstanceData, pPropData, cbPropData,
2754 pcbReturned);
2757 return hr;
2760 static HRESULT WINAPI DS8BufferProp_Set(IKsPropertySet *iface,
2761 REFGUID guidPropSet, ULONG dwPropID,
2762 LPVOID pInstanceData, ULONG cbInstanceData,
2763 LPVOID pPropData, ULONG cbPropData)
2765 DS8Buffer *This = impl_from_IKsPropertySet(iface);
2766 HRESULT hr = E_PROP_ID_UNSUPPORTED;
2768 TRACE("(%p)->(%s, %u, %p, %u, %p, %u)\n", iface, debugstr_guid(guidPropSet),
2769 dwPropID, pInstanceData, cbInstanceData, pPropData, cbPropData);
2771 #if 0
2772 if(IsEqualIID(guidPropSet, &DSPROPSETID_EAX20_BufferProperties))
2775 else
2776 #endif
2778 /* Not a known buffer/source property. Pass it to the listener */
2779 hr = IKsPropertySet_Set(&This->primary->IKsPropertySet_iface, guidPropSet,
2780 dwPropID, pInstanceData, cbInstanceData, pPropData,
2781 cbPropData);
2784 return hr;
2787 static HRESULT WINAPI DS8BufferProp_QuerySupport(IKsPropertySet *iface,
2788 REFGUID guidPropSet, ULONG dwPropID,
2789 PULONG pTypeSupport)
2791 DS8Buffer *This = impl_from_IKsPropertySet(iface);
2792 HRESULT hr = E_PROP_ID_UNSUPPORTED;
2794 TRACE("(%p)->(%s, %u, %p)\n", iface, debugstr_guid(guidPropSet), dwPropID, pTypeSupport);
2796 if(!pTypeSupport)
2797 return E_POINTER;
2798 *pTypeSupport = 0;
2800 #if 0
2801 if(IsEqualIID(guidPropSet, &DSPROPSETID_EAX20_BufferProperties))
2804 else
2805 #endif
2807 /* Not a known buffer/source property. Pass it to the listener */
2808 hr = IKsPropertySet_QuerySupport(&This->primary->IKsPropertySet_iface,
2809 guidPropSet, dwPropID, pTypeSupport);
2812 return hr;
2815 static const IKsPropertySetVtbl DS8BufferProp_Vtbl =
2817 DS8BufferProp_QueryInterface,
2818 DS8BufferProp_AddRef,
2819 DS8BufferProp_Release,
2820 DS8BufferProp_Get,
2821 DS8BufferProp_Set,
2822 DS8BufferProp_QuerySupport