2 * Tests the panning and 3D functions of DirectSound
4 * Part of this test involves playing test tones. But this only makes
5 * sense if someone is going to carefully listen to it, and would only
6 * bother everyone else.
7 * So this is only done if the test is being run in interactive mode.
9 * Copyright (c) 2002-2004 Francois Gouget
11 * This library is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU Lesser General Public
13 * License as published by the Free Software Foundation; either
14 * version 2.1 of the License, or (at your option) any later version.
16 * This library is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 * Lesser General Public License for more details.
21 * You should have received a copy of the GNU Lesser General Public
22 * License along with this library; if not, write to the Free Software
23 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
30 #include "wine/test.h"
35 #include "dsound_test.h"
37 #define PI 3.14159265358979323846
40 static HRESULT (WINAPI
*pDirectSoundEnumerateA
)(LPDSENUMCALLBACKA
,LPVOID
)=NULL
;
41 static HRESULT (WINAPI
*pDirectSoundCreate
)(LPCGUID
,LPDIRECTSOUND
*,
44 char* wave_generate_la(WAVEFORMATEX
* wfx
, double duration
, DWORD
* size
, BOOL ieee
)
51 nb_samples
=(int)(duration
*wfx
->nSamplesPerSec
);
52 *size
=nb_samples
*wfx
->nBlockAlign
;
53 b
=buf
=HeapAlloc(GetProcessHeap(), 0, *size
);
54 for (i
=0;i
<nb_samples
;i
++) {
55 double y
=sin(440.0*2*PI
*i
/wfx
->nSamplesPerSec
);
56 if (wfx
->wBitsPerSample
==8) {
57 unsigned char sample
=127.5*(y
+1.0);
59 if (wfx
->nChannels
==2)
61 } else if (wfx
->wBitsPerSample
== 16) {
62 signed short sample
=32767.5*y
-0.5;
66 if (wfx
->nChannels
==2) {
71 } else if (wfx
->wBitsPerSample
== 24) {
72 signed int sample
=8388607.5*y
-0.5;
74 b
[1]=(sample
>> 8)&0xff;
77 if (wfx
->nChannels
==2) {
79 b
[1]=(sample
>> 8)&0xff;
83 } else if (wfx
->wBitsPerSample
== 32) {
85 float *ptr
= (float *) b
;
91 if (wfx
->nChannels
==2) {
96 signed int sample
=2147483647.5*y
-0.5;
98 b
[1]=(sample
>> 8)&0xff;
99 b
[2]=(sample
>> 16)&0xff;
102 if (wfx
->nChannels
==2) {
104 b
[1]=(sample
>> 8)&0xff;
105 b
[2]=(sample
>> 16)&0xff;
115 const char * getDSBCAPS(DWORD xmask
) {
120 #define FE(x) { x, #x },
121 FE(DSBCAPS_PRIMARYBUFFER
)
123 FE(DSBCAPS_LOCHARDWARE
)
124 FE(DSBCAPS_LOCSOFTWARE
)
126 FE(DSBCAPS_CTRLFREQUENCY
)
128 FE(DSBCAPS_CTRLVOLUME
)
129 FE(DSBCAPS_CTRLPOSITIONNOTIFY
)
130 FE(DSBCAPS_STICKYFOCUS
)
131 FE(DSBCAPS_GLOBALFOCUS
)
132 FE(DSBCAPS_GETCURRENTPOSITION2
)
133 FE(DSBCAPS_MUTE3DATMAXDISTANCE
)
136 static char buffer
[512];
142 for (i
=0;i
<sizeof(flags
)/sizeof(flags
[0]);i
++) {
143 if ((flags
[i
].mask
& xmask
) == flags
[i
].mask
) {
148 strcat(buffer
, flags
[i
].name
);
157 HWND hwnd
=GetForegroundWindow();
159 hwnd
=GetDesktopWindow();
163 void init_format(WAVEFORMATEX
* wfx
, int format
, int rate
, int depth
,
166 wfx
->wFormatTag
=format
;
167 wfx
->nChannels
=channels
;
168 wfx
->wBitsPerSample
=depth
;
169 wfx
->nSamplesPerSec
=rate
;
170 wfx
->nBlockAlign
=wfx
->nChannels
*wfx
->wBitsPerSample
/8;
171 /* FIXME: Shouldn't this test be if (format!=WAVE_FORMAT_PCM) */
172 if (wfx
->nBlockAlign
==0)
174 /* align compressed formats to byte boundary */
177 wfx
->nAvgBytesPerSec
=wfx
->nSamplesPerSec
*wfx
->nBlockAlign
;
185 LPDIRECTSOUNDBUFFER dsbo
;
193 static int buffer_refill(play_state_t
* state
, DWORD size
)
199 if (size
>state
->wave_len
-state
->written
)
200 size
=state
->wave_len
-state
->written
;
202 /* some broken apps like Navyfield mistakenly pass NULL for a ppValue */
203 rc
=IDirectSoundBuffer_Lock(state
->dsbo
,state
->offset
,size
,
204 &ptr1
,NULL
,&ptr2
,&len2
,0);
205 ok(rc
==DSERR_INVALIDPARAM
,"expected %08x got %08x\n",DSERR_INVALIDPARAM
, rc
);
206 rc
=IDirectSoundBuffer_Lock(state
->dsbo
,state
->offset
,size
,
207 &ptr1
,&len1
,&ptr2
,&len2
,0);
208 ok(rc
==DS_OK
,"IDirectSoundBuffer_Lock() failed: %08x\n", rc
);
212 memcpy(ptr1
,state
->wave
+state
->written
,len1
);
213 state
->written
+=len1
;
215 memcpy(ptr2
,state
->wave
+state
->written
,len2
);
216 state
->written
+=len2
;
218 state
->offset
=state
->written
% state
->buffer_size
;
219 /* some apps blindly pass &ptr1 instead of ptr1 */
220 rc
=IDirectSoundBuffer_Unlock(state
->dsbo
,&ptr1
,len1
,ptr2
,len2
);
221 ok(rc
==DSERR_INVALIDPARAM
, "IDDirectSoundBuffer_Unlock(): expected %08x got %08x, %p %p\n",DSERR_INVALIDPARAM
, rc
, &ptr1
, ptr1
);
222 rc
=IDirectSoundBuffer_Unlock(state
->dsbo
,ptr1
,len1
,ptr2
,len2
);
223 ok(rc
==DS_OK
,"IDirectSoundBuffer_Unlock() failed: %08x\n", rc
);
229 static int buffer_silence(play_state_t
* state
, DWORD size
)
236 rc
=IDirectSoundBuffer_Lock(state
->dsbo
,state
->offset
,size
,
237 &ptr1
,&len1
,&ptr2
,&len2
,0);
238 ok(rc
==DS_OK
,"IDirectSoundBuffer_Lock() failed: %08x\n", rc
);
242 s
=(state
->wfx
->wBitsPerSample
==8?0x80:0);
247 state
->offset
=(state
->offset
+size
) % state
->buffer_size
;
248 rc
=IDirectSoundBuffer_Unlock(state
->dsbo
,ptr1
,len1
,ptr2
,len2
);
249 ok(rc
==DS_OK
,"IDirectSoundBuffer_Unlock() failed: %08x\n", rc
);
255 static int buffer_service(play_state_t
* state
)
257 DWORD last_play_pos
,play_pos
,buf_free
;
260 rc
=IDirectSoundBuffer_GetCurrentPosition(state
->dsbo
,&play_pos
,NULL
);
261 ok(rc
==DS_OK
,"IDirectSoundBuffer_GetCurrentPosition() failed: %08x\n", rc
);
266 /* Update the amount played */
267 last_play_pos
=state
->played
% state
->buffer_size
;
268 if (play_pos
<last_play_pos
)
269 state
->played
+=state
->buffer_size
-last_play_pos
+play_pos
;
271 state
->played
+=play_pos
-last_play_pos
;
273 if (winetest_debug
> 1)
274 trace("buf size=%d last_play_pos=%d play_pos=%d played=%d / %d\n",
275 state
->buffer_size
,last_play_pos
,play_pos
,state
->played
,
278 if (state
->played
>state
->wave_len
)
280 /* Everything has been played */
284 /* Refill the buffer */
285 if (state
->offset
<=play_pos
)
286 buf_free
=play_pos
-state
->offset
;
288 buf_free
=state
->buffer_size
-state
->offset
+play_pos
;
290 if (winetest_debug
> 1)
291 trace("offset=%d free=%d written=%d / %d\n",
292 state
->offset
,buf_free
,state
->written
,state
->wave_len
);
296 if (state
->written
<state
->wave_len
)
298 int w
=buffer_refill(state
,buf_free
);
302 if (state
->written
==state
->wave_len
&& winetest_debug
> 1)
303 trace("last sound byte at %d\n",
304 (state
->written
% state
->buffer_size
));
308 /* Fill with silence */
309 if (winetest_debug
> 1)
310 trace("writing %d bytes of silence\n",buf_free
);
311 if (buffer_silence(state
,buf_free
)==-1)
317 if (winetest_debug
> 1)
318 trace("stopping playback\n");
319 rc
=IDirectSoundBuffer_Stop(state
->dsbo
);
320 ok(rc
==DS_OK
,"IDirectSoundBuffer_Stop() failed: %08x\n", rc
);
324 void test_buffer(LPDIRECTSOUND dso
, LPDIRECTSOUNDBUFFER
*dsbo
,
325 BOOL is_primary
, BOOL set_volume
, LONG volume
,
326 BOOL set_pan
, LONG pan
, BOOL play
, double duration
,
327 BOOL buffer3d
, LPDIRECTSOUND3DLISTENER listener
,
328 BOOL move_listener
, BOOL move_sound
,
329 BOOL set_frequency
, DWORD frequency
)
333 WAVEFORMATEX wfx
,wfx2
;
334 DWORD size
,status
,freq
;
339 rc
=IDirectSoundBuffer_SetFrequency(*dsbo
,frequency
);
340 ok(rc
==DS_OK
||rc
==DSERR_CONTROLUNAVAIL
,
341 "IDirectSoundBuffer_SetFrequency() failed to set frequency %08x\n",rc
);
346 /* DSOUND: Error: Invalid caps pointer */
347 rc
=IDirectSoundBuffer_GetCaps(*dsbo
,0);
348 ok(rc
==DSERR_INVALIDPARAM
,"IDirectSoundBuffer_GetCaps() should have "
349 "returned DSERR_INVALIDPARAM, returned: %08x\n",rc
);
351 ZeroMemory(&dsbcaps
, sizeof(dsbcaps
));
353 /* DSOUND: Error: Invalid caps pointer */
354 rc
=IDirectSoundBuffer_GetCaps(*dsbo
,&dsbcaps
);
355 ok(rc
==DSERR_INVALIDPARAM
,"IDirectSoundBuffer_GetCaps() should have "
356 "returned DSERR_INVALIDPARAM, returned: %08x\n",rc
);
358 dsbcaps
.dwSize
=sizeof(dsbcaps
);
359 rc
=IDirectSoundBuffer_GetCaps(*dsbo
,&dsbcaps
);
360 ok(rc
==DS_OK
,"IDirectSoundBuffer_GetCaps() failed: %08x\n", rc
);
361 if (rc
==DS_OK
&& winetest_debug
> 1) {
362 trace(" Caps: flags=0x%08x size=%d\n",dsbcaps
.dwFlags
,
363 dsbcaps
.dwBufferBytes
);
366 /* Query the format size. */
368 rc
=IDirectSoundBuffer_GetFormat(*dsbo
,NULL
,0,&size
);
369 ok(rc
==DS_OK
&& size
!=0,"IDirectSoundBuffer_GetFormat() should have "
370 "returned the needed size: rc=%08x size=%d\n",rc
,size
);
372 ok(size
== sizeof(WAVEFORMATEX
) || size
== sizeof(WAVEFORMATEXTENSIBLE
),
373 "Expected a correct structure size, got %d\n", size
);
375 if (size
== sizeof(WAVEFORMATEX
)) {
376 rc
=IDirectSoundBuffer_GetFormat(*dsbo
,&wfx
,size
,NULL
);
377 ieee
= (wfx
.wFormatTag
== WAVE_FORMAT_IEEE_FLOAT
);
379 else if (size
== sizeof(WAVEFORMATEXTENSIBLE
)) {
380 WAVEFORMATEXTENSIBLE wfxe
;
381 rc
=IDirectSoundBuffer_GetFormat(*dsbo
,(WAVEFORMATEX
*)&wfxe
,size
,NULL
);
383 ieee
= IsEqualGUID(&wfxe
.SubFormat
, &KSDATAFORMAT_SUBTYPE_IEEE_FLOAT
);
386 "IDirectSoundBuffer_GetFormat() failed: %08x\n", rc
);
387 if (rc
==DS_OK
&& winetest_debug
> 1) {
388 trace(" Format: %s tag=0x%04x %dx%dx%d avg.B/s=%d align=%d\n",
389 is_primary
? "Primary" : "Secondary",
390 wfx
.wFormatTag
,wfx
.nSamplesPerSec
,wfx
.wBitsPerSample
,
391 wfx
.nChannels
,wfx
.nAvgBytesPerSec
,wfx
.nBlockAlign
);
394 /* DSOUND: Error: Invalid frequency buffer */
395 rc
=IDirectSoundBuffer_GetFrequency(*dsbo
,0);
396 ok(rc
==DSERR_INVALIDPARAM
,"IDirectSoundBuffer_GetFrequency() should have "
397 "returned DSERR_INVALIDPARAM, returned: %08x\n",rc
);
399 /* DSOUND: Error: Primary buffers don't support CTRLFREQUENCY */
400 rc
=IDirectSoundBuffer_GetFrequency(*dsbo
,&freq
);
401 ok((rc
==DS_OK
&& !is_primary
) || (rc
==DSERR_CONTROLUNAVAIL
&&is_primary
) ||
402 (rc
==DSERR_CONTROLUNAVAIL
&&!(dsbcaps
.dwFlags
&DSBCAPS_CTRLFREQUENCY
)),
403 "IDirectSoundBuffer_GetFrequency() failed: %08x\n",rc
);
405 DWORD f
= set_frequency
?frequency
:wfx
.nSamplesPerSec
;
406 ok(freq
==f
,"The frequency returned by GetFrequency "
407 "%d does not match the format %d\n",freq
,f
);
410 /* DSOUND: Error: Invalid status pointer */
411 rc
=IDirectSoundBuffer_GetStatus(*dsbo
,0);
412 ok(rc
==DSERR_INVALIDPARAM
,"IDirectSoundBuffer_GetStatus() should have "
413 "returned DSERR_INVALIDPARAM, returned: %08x\n",rc
);
415 rc
=IDirectSoundBuffer_GetStatus(*dsbo
,&status
);
416 ok(rc
==DS_OK
,"IDirectSoundBuffer_GetStatus() failed: %08x\n", rc
);
417 ok(status
==0,"status=0x%x instead of 0\n",status
);
421 /* We must call SetCooperativeLevel to be allowed to call SetFormat */
422 /* DSOUND: Setting DirectSound cooperative level to DSSCL_PRIORITY */
423 rc
=IDirectSound_SetCooperativeLevel(dso
,get_hwnd(),DSSCL_PRIORITY
);
424 ok(rc
==DS_OK
,"IDirectSound_SetCooperativeLevel(DSSCL_PRIORITY) failed: %08x\n",rc
);
428 /* DSOUND: Error: Invalid format pointer */
429 rc
=IDirectSoundBuffer_SetFormat(*dsbo
,0);
430 ok(rc
==DSERR_INVALIDPARAM
,"IDirectSoundBuffer_SetFormat() should have "
431 "returned DSERR_INVALIDPARAM, returned: %08x\n",rc
);
433 init_format(&wfx2
,WAVE_FORMAT_PCM
,11025,16,2);
434 rc
=IDirectSoundBuffer_SetFormat(*dsbo
,&wfx2
);
435 ok(rc
==DS_OK
,"IDirectSoundBuffer_SetFormat(%s) failed: %08x\n",
436 format_string(&wfx2
), rc
);
438 /* There is no guarantee that SetFormat will actually change the
439 * format to what we asked for. It depends on what the soundcard
440 * supports. So we must re-query the format.
442 rc
=IDirectSoundBuffer_GetFormat(*dsbo
,&wfx
,sizeof(wfx
),NULL
);
443 ok(rc
==DS_OK
,"IDirectSoundBuffer_GetFormat() failed: %08x\n", rc
);
445 (wfx
.wFormatTag
!=wfx2
.wFormatTag
||
446 wfx
.nSamplesPerSec
!=wfx2
.nSamplesPerSec
||
447 wfx
.wBitsPerSample
!=wfx2
.wBitsPerSample
||
448 wfx
.nChannels
!=wfx2
.nChannels
)) {
449 trace("Requested format tag=0x%04x %dx%dx%d avg.B/s=%d align=%d\n",
450 wfx2
.wFormatTag
,wfx2
.nSamplesPerSec
,wfx2
.wBitsPerSample
,
451 wfx2
.nChannels
,wfx2
.nAvgBytesPerSec
,wfx2
.nBlockAlign
);
452 trace("Got tag=0x%04x %dx%dx%d avg.B/s=%d align=%d\n",
453 wfx
.wFormatTag
,wfx
.nSamplesPerSec
,wfx
.wBitsPerSample
,
454 wfx
.nChannels
,wfx
.nAvgBytesPerSec
,wfx
.nBlockAlign
);
457 ZeroMemory(&new_dsbcaps
, sizeof(new_dsbcaps
));
458 new_dsbcaps
.dwSize
= sizeof(new_dsbcaps
);
459 rc
=IDirectSoundBuffer_GetCaps(*dsbo
,&new_dsbcaps
);
460 ok(rc
==DS_OK
,"IDirectSoundBuffer_GetCaps() failed: %08x\n", rc
);
461 if (rc
==DS_OK
&& winetest_debug
> 1) {
462 trace(" new Caps: flags=0x%08x size=%d\n",new_dsbcaps
.dwFlags
,
463 new_dsbcaps
.dwBufferBytes
);
466 /* Check for primary buffer size change */
467 ok(new_dsbcaps
.dwBufferBytes
== dsbcaps
.dwBufferBytes
,
468 " buffer size changed after SetFormat() - "
469 "previous size was %u, current size is %u\n",
470 dsbcaps
.dwBufferBytes
, new_dsbcaps
.dwBufferBytes
);
471 dsbcaps
.dwBufferBytes
= new_dsbcaps
.dwBufferBytes
;
473 /* Check for primary buffer flags change */
474 ok(new_dsbcaps
.dwFlags
== dsbcaps
.dwFlags
,
475 " flags changed after SetFormat() - "
476 "previous flags were %08x, current flags are %08x\n",
477 dsbcaps
.dwFlags
, new_dsbcaps
.dwFlags
);
479 /* Set the CooperativeLevel back to normal */
480 /* DSOUND: Setting DirectSound cooperative level to DSSCL_NORMAL */
481 rc
=IDirectSound_SetCooperativeLevel(dso
,get_hwnd(),DSSCL_NORMAL
);
482 ok(rc
==DS_OK
,"IDirectSound_SetCooperativeLevel(DSSCL_NORMAL) failed: %08x\n",rc
);
487 DS3DLISTENER listener_param
;
488 LPDIRECTSOUND3DBUFFER buffer
=NULL
;
489 DS3DBUFFER buffer_param
;
490 DWORD start_time
,now
;
494 if (winetest_interactive
) {
496 trace(" Playing %g second 440Hz tone at %dx%dx%d with a "
497 "frequency of %d (%dHz)\n", duration
,
498 wfx
.nSamplesPerSec
, wfx
.wBitsPerSample
, wfx
.nChannels
,
499 frequency
, (440 * frequency
) / wfx
.nSamplesPerSec
);
501 trace(" Playing %g second 440Hz tone at %dx%dx%d\n", duration
,
502 wfx
.nSamplesPerSec
, wfx
.wBitsPerSample
, wfx
.nChannels
);
506 /* We must call SetCooperativeLevel to be allowed to call Lock */
507 /* DSOUND: Setting DirectSound cooperative level to
508 * DSSCL_WRITEPRIMARY */
509 rc
=IDirectSound_SetCooperativeLevel(dso
,get_hwnd(),
511 ok(rc
==DS_OK
,"IDirectSound_SetCooperativeLevel(DSSCL_WRITEPRIMARY) "
512 "failed: %08x\n",rc
);
517 LPDIRECTSOUNDBUFFER temp_buffer
;
519 rc
=IDirectSoundBuffer_QueryInterface(*dsbo
,&IID_IDirectSound3DBuffer
,
521 ok(rc
==DS_OK
,"IDirectSoundBuffer_QueryInterface() failed: %08x\n", rc
);
525 /* check the COM interface */
526 rc
=IDirectSoundBuffer_QueryInterface(*dsbo
, &IID_IDirectSoundBuffer
,
527 (LPVOID
*)&temp_buffer
);
528 ok(rc
==DS_OK
&& temp_buffer
!=NULL
,
529 "IDirectSoundBuffer_QueryInterface() failed: %08x\n", rc
);
530 ok(temp_buffer
==*dsbo
,"COM interface broken: %p != %p\n",
532 ref
=IDirectSoundBuffer_Release(temp_buffer
);
533 ok(ref
==1,"IDirectSoundBuffer_Release() has %d references, "
534 "should have 1\n",ref
);
537 rc
=IDirectSound3DBuffer_QueryInterface(*dsbo
,
538 &IID_IDirectSoundBuffer
,
539 (LPVOID
*)&temp_buffer
);
540 ok(rc
==DS_OK
&& temp_buffer
!=NULL
,
541 "IDirectSound3DBuffer_QueryInterface() failed: %08x\n", rc
);
542 ok(temp_buffer
==*dsbo
,"COM interface broken: %p != %p\n",
544 ref
=IDirectSoundBuffer_Release(temp_buffer
);
545 ok(ref
==1,"IDirectSoundBuffer_Release() has %d references, "
546 "should have 1\n",ref
);
548 ref
=IDirectSoundBuffer_Release(*dsbo
);
549 ok(ref
==0,"IDirectSoundBuffer_Release() has %d references, "
550 "should have 0\n",ref
);
552 rc
=IDirectSound3DBuffer_QueryInterface(buffer
,
553 &IID_IDirectSoundBuffer
,
555 ok(rc
==DS_OK
&& *dsbo
!=NULL
,"IDirectSound3DBuffer_QueryInterface() "
556 "failed: %08x\n",rc
);
558 /* DSOUND: Error: Invalid buffer */
559 rc
=IDirectSound3DBuffer_GetAllParameters(buffer
,0);
560 ok(rc
==DSERR_INVALIDPARAM
,"IDirectSound3DBuffer_GetAllParameters() "
561 "failed: %08x\n",rc
);
563 ZeroMemory(&buffer_param
, sizeof(buffer_param
));
565 /* DSOUND: Error: Invalid buffer */
566 rc
=IDirectSound3DBuffer_GetAllParameters(buffer
,&buffer_param
);
567 ok(rc
==DSERR_INVALIDPARAM
,"IDirectSound3DBuffer_GetAllParameters() "
568 "failed: %08x\n",rc
);
570 buffer_param
.dwSize
=sizeof(buffer_param
);
571 rc
=IDirectSound3DBuffer_GetAllParameters(buffer
,&buffer_param
);
572 ok(rc
==DS_OK
,"IDirectSound3DBuffer_GetAllParameters() failed: %08x\n", rc
);
575 if (dsbcaps
.dwFlags
& DSBCAPS_CTRLVOLUME
) {
577 rc
=IDirectSoundBuffer_GetVolume(*dsbo
,&val
);
578 ok(rc
==DS_OK
,"IDirectSoundBuffer_GetVolume() failed: %08x\n", rc
);
580 rc
=IDirectSoundBuffer_SetVolume(*dsbo
,volume
);
581 ok(rc
==DS_OK
,"IDirectSoundBuffer_SetVolume() failed: %08x\n", rc
);
583 /* DSOUND: Error: Buffer does not have CTRLVOLUME */
584 rc
=IDirectSoundBuffer_GetVolume(*dsbo
,&volume
);
585 ok(rc
==DSERR_CONTROLUNAVAIL
,"IDirectSoundBuffer_GetVolume() "
586 "should have returned DSERR_CONTROLUNAVAIL, returned: %08x\n", rc
);
591 if (dsbcaps
.dwFlags
& DSBCAPS_CTRLPAN
) {
593 rc
=IDirectSoundBuffer_GetPan(*dsbo
,&val
);
594 ok(rc
==DS_OK
,"IDirectSoundBuffer_GetPan() failed: %08x\n", rc
);
596 rc
=IDirectSoundBuffer_SetPan(*dsbo
,pan
);
597 ok(rc
==DS_OK
,"IDirectSoundBuffer_SetPan() failed: %08x\n", rc
);
599 /* DSOUND: Error: Buffer does not have CTRLPAN */
600 rc
=IDirectSoundBuffer_GetPan(*dsbo
,&pan
);
601 ok(rc
==DSERR_CONTROLUNAVAIL
,"IDirectSoundBuffer_GetPan() "
602 "should have returned DSERR_CONTROLUNAVAIL, returned: %08x\n", rc
);
606 /* try an offset past the end of the buffer */
607 rc
= IDirectSoundBuffer_Lock(*dsbo
, dsbcaps
.dwBufferBytes
, 0, &buffer1
,
608 &length1
, NULL
, NULL
,
609 DSBLOCK_ENTIREBUFFER
);
610 ok(rc
==DSERR_INVALIDPARAM
, "IDirectSoundBuffer_Lock() should have "
611 "returned DSERR_INVALIDPARAM, returned %08x\n", rc
);
613 /* try a size larger than the buffer */
614 rc
= IDirectSoundBuffer_Lock(*dsbo
, 0, dsbcaps
.dwBufferBytes
+ 1,
615 &buffer1
, &length1
, NULL
, NULL
,
616 DSBLOCK_FROMWRITECURSOR
);
617 ok(rc
==DSERR_INVALIDPARAM
, "IDirectSoundBuffer_Lock() should have "
618 "returned DSERR_INVALIDPARAM, returned %08x\n", rc
);
621 state
.wave
=wave_generate_la(&wfx
,(duration
*frequency
)/wfx
.nSamplesPerSec
,&state
.wave_len
,ieee
);
623 state
.wave
=wave_generate_la(&wfx
,duration
,&state
.wave_len
,ieee
);
627 state
.buffer_size
=dsbcaps
.dwBufferBytes
;
628 state
.played
=state
.written
=state
.offset
=0;
629 buffer_refill(&state
,state
.buffer_size
);
631 rc
=IDirectSoundBuffer_Play(*dsbo
,0,0,DSBPLAY_LOOPING
);
632 ok(rc
==DS_OK
,"IDirectSoundBuffer_Play() failed: %08x\n", rc
);
634 rc
=IDirectSoundBuffer_GetStatus(*dsbo
,&status
);
635 ok(rc
==DS_OK
,"IDirectSoundBuffer_GetStatus() failed: %08x\n", rc
);
636 ok(status
==(DSBSTATUS_PLAYING
|DSBSTATUS_LOOPING
),
637 "GetStatus: bad status: %x\n",status
);
640 ZeroMemory(&listener_param
,sizeof(listener_param
));
641 listener_param
.dwSize
=sizeof(listener_param
);
642 rc
=IDirectSound3DListener_GetAllParameters(listener
,
644 ok(rc
==DS_OK
,"IDirectSound3dListener_GetAllParameters() "
645 "failed: %08x\n",rc
);
647 listener_param
.vPosition
.x
= -5.0f
;
648 listener_param
.vVelocity
.x
= (float)(10.0/duration
);
650 rc
=IDirectSound3DListener_SetAllParameters(listener
,
653 ok(rc
==DS_OK
,"IDirectSound3dListener_SetPosition() failed: %08x\n", rc
);
657 buffer_param
.vPosition
.x
= 100.0f
;
658 buffer_param
.vVelocity
.x
= (float)(-200.0/duration
);
660 buffer_param
.flMinDistance
= 10;
661 rc
=IDirectSound3DBuffer_SetAllParameters(buffer
,&buffer_param
,
663 ok(rc
==DS_OK
,"IDirectSound3dBuffer_SetPosition() failed: %08x\n", rc
);
666 start_time
=GetTickCount();
667 while (buffer_service(&state
)) {
668 WaitForSingleObject(GetCurrentProcess(),TIME_SLICE
);
670 if (listener
&& move_listener
) {
671 listener_param
.vPosition
.x
= (float)(-5.0+10.0*(now
-start_time
)/1000/duration
);
672 if (winetest_debug
>2)
673 trace("listener position=%g\n",listener_param
.vPosition
.x
);
674 rc
=IDirectSound3DListener_SetPosition(listener
,
675 listener_param
.vPosition
.x
,listener_param
.vPosition
.y
,
676 listener_param
.vPosition
.z
,DS3D_IMMEDIATE
);
677 ok(rc
==DS_OK
,"IDirectSound3dListener_SetPosition() failed: %08x\n",rc
);
679 if (buffer3d
&& move_sound
) {
680 buffer_param
.vPosition
.x
= (float)(100-200.0*(now
-start_time
)/1000/duration
);
681 if (winetest_debug
>2)
682 trace("sound position=%g\n",buffer_param
.vPosition
.x
);
683 rc
=IDirectSound3DBuffer_SetPosition(buffer
,
684 buffer_param
.vPosition
.x
,buffer_param
.vPosition
.y
,
685 buffer_param
.vPosition
.z
,DS3D_IMMEDIATE
);
686 ok(rc
==DS_OK
,"IDirectSound3dBuffer_SetPosition() failed: %08x\n", rc
);
689 /* Check the sound duration was within 10% of the expected value */
691 ok(fabs(1000*duration
-now
+start_time
)<=100*duration
,
692 "The sound played for %d ms instead of %g ms\n",
693 now
-start_time
,1000*duration
);
695 HeapFree(GetProcessHeap(), 0, state
.wave
);
697 /* Set the CooperativeLevel back to normal */
698 /* DSOUND: Setting DirectSound cooperative level to DSSCL_NORMAL */
699 rc
=IDirectSound_SetCooperativeLevel(dso
,get_hwnd(),DSSCL_NORMAL
);
700 ok(rc
==DS_OK
,"IDirectSound_SetCooperativeLevel(DSSCL_NORMAL) "
701 "failed: %08x\n",rc
);
704 ref
=IDirectSound3DBuffer_Release(buffer
);
705 ok(ref
==0,"IDirectSound3DBuffer_Release() has %d references, "
706 "should have 0\n",ref
);
711 static HRESULT
test_secondary(LPGUID lpGuid
, int play
,
712 int has_3d
, int has_3dbuffer
,
713 int has_listener
, int has_duplicate
,
714 int move_listener
, int move_sound
)
717 LPDIRECTSOUND dso
=NULL
;
718 LPDIRECTSOUNDBUFFER primary
=NULL
,secondary
=NULL
;
719 LPDIRECTSOUND3DLISTENER listener
=NULL
;
720 DSBUFFERDESC bufdesc
;
721 WAVEFORMATEX wfx
, wfx1
;
724 /* Create the DirectSound object */
725 rc
=pDirectSoundCreate(lpGuid
,&dso
,NULL
);
726 ok(rc
==DS_OK
||rc
==DSERR_NODRIVER
,"DirectSoundCreate() failed: %08x\n", rc
);
730 /* We must call SetCooperativeLevel before creating primary buffer */
731 /* DSOUND: Setting DirectSound cooperative level to DSSCL_PRIORITY */
732 rc
=IDirectSound_SetCooperativeLevel(dso
,get_hwnd(),DSSCL_PRIORITY
);
733 ok(rc
==DS_OK
,"IDirectSound_SetCooperativeLevel(DSSCL_PRIORITY) failed: %08x\n",rc
);
737 ZeroMemory(&bufdesc
, sizeof(bufdesc
));
738 bufdesc
.dwSize
=sizeof(bufdesc
);
739 bufdesc
.dwFlags
=DSBCAPS_PRIMARYBUFFER
;
741 bufdesc
.dwFlags
|=DSBCAPS_CTRL3D
;
743 bufdesc
.dwFlags
|=(DSBCAPS_CTRLVOLUME
|DSBCAPS_CTRLPAN
);
744 rc
=IDirectSound_CreateSoundBuffer(dso
,&bufdesc
,&primary
,NULL
);
745 ok((rc
==DS_OK
&& primary
!=NULL
) || (rc
==DSERR_CONTROLUNAVAIL
),
746 "IDirectSound_CreateSoundBuffer() failed to create a %sprimary buffer: %08x\n",has_3d
?"3D ":"", rc
);
747 if (rc
==DSERR_CONTROLUNAVAIL
)
748 trace(" No Primary\n");
749 else if (rc
==DS_OK
&& primary
!=NULL
) {
750 rc
=IDirectSoundBuffer_GetFormat(primary
,&wfx1
,sizeof(wfx1
),NULL
);
751 ok(rc
==DS_OK
,"IDirectSoundBuffer8_Getformat() failed: %08x\n", rc
);
756 rc
=IDirectSoundBuffer_QueryInterface(primary
,
757 &IID_IDirectSound3DListener
,
759 ok(rc
==DS_OK
&& listener
!=NULL
,
760 "IDirectSoundBuffer_QueryInterface() failed to get a 3D listener: %08x\n",rc
);
761 ref
=IDirectSoundBuffer_Release(primary
);
762 ok(ref
==0,"IDirectSoundBuffer_Release() primary has %d references, "
763 "should have 0\n",ref
);
764 if (rc
==DS_OK
&& listener
!=NULL
) {
765 DS3DLISTENER listener_param
;
766 ZeroMemory(&listener_param
,sizeof(listener_param
));
767 /* DSOUND: Error: Invalid buffer */
768 rc
=IDirectSound3DListener_GetAllParameters(listener
,0);
769 ok(rc
==DSERR_INVALIDPARAM
,
770 "IDirectSound3dListener_GetAllParameters() should have "
771 "returned DSERR_INVALIDPARAM, returned: %08x\n", rc
);
773 /* DSOUND: Error: Invalid buffer */
774 rc
=IDirectSound3DListener_GetAllParameters(listener
,
776 ok(rc
==DSERR_INVALIDPARAM
,
777 "IDirectSound3dListener_GetAllParameters() should have "
778 "returned DSERR_INVALIDPARAM, returned: %08x\n", rc
);
780 listener_param
.dwSize
=sizeof(listener_param
);
781 rc
=IDirectSound3DListener_GetAllParameters(listener
,
783 ok(rc
==DS_OK
,"IDirectSound3dListener_GetAllParameters() "
784 "failed: %08x\n",rc
);
786 ok(listener
==NULL
, "IDirectSoundBuffer_QueryInterface() "
787 "failed but returned a listener anyway\n");
788 ok(rc
!=DS_OK
, "IDirectSoundBuffer_QueryInterface() succeeded "
789 "but returned a NULL listener\n");
791 ref
=IDirectSound3DListener_Release(listener
);
792 ok(ref
==0,"IDirectSound3dListener_Release() listener has "
793 "%d references, should have 0\n",ref
);
799 init_format(&wfx
,WAVE_FORMAT_PCM
,22050,16,2);
801 ZeroMemory(&bufdesc
, sizeof(bufdesc
));
802 bufdesc
.dwSize
=sizeof(bufdesc
);
803 bufdesc
.dwFlags
=DSBCAPS_GETCURRENTPOSITION2
;
805 bufdesc
.dwFlags
|=DSBCAPS_CTRL3D
;
808 (DSBCAPS_CTRLFREQUENCY
|DSBCAPS_CTRLVOLUME
|DSBCAPS_CTRLPAN
);
809 bufdesc
.dwBufferBytes
=align(wfx
.nAvgBytesPerSec
*BUFFER_LEN
/1000,
811 bufdesc
.lpwfxFormat
=&wfx
;
812 if (winetest_interactive
) {
813 trace(" Testing a %s%ssecondary buffer %s%s%s%sat %dx%dx%d "
814 "with a primary buffer at %dx%dx%d\n",
815 has_3dbuffer
?"3D ":"",
816 has_duplicate
?"duplicated ":"",
817 listener
!=NULL
||move_sound
?"with ":"",
818 move_listener
?"moving ":"",
819 listener
!=NULL
?"listener ":"",
820 listener
&&move_sound
?"and moving sound ":move_sound
?
822 wfx
.nSamplesPerSec
,wfx
.wBitsPerSample
,wfx
.nChannels
,
823 wfx1
.nSamplesPerSec
,wfx1
.wBitsPerSample
,wfx1
.nChannels
);
825 rc
=IDirectSound_CreateSoundBuffer(dso
,&bufdesc
,&secondary
,NULL
);
826 ok((rc
==DS_OK
&& secondary
!=NULL
) || broken(rc
== DSERR_CONTROLUNAVAIL
), /* vmware drivers on w2k */
827 "IDirectSound_CreateSoundBuffer() failed to create a %s%ssecondary buffer %s%s%s%sat %dx%dx%d (%s): %08x\n",
828 has_3dbuffer
?"3D ":"", has_duplicate
?"duplicated ":"",
829 listener
!=NULL
||move_sound
?"with ":"", move_listener
?"moving ":"",
830 listener
!=NULL
?"listener ":"",
831 listener
&&move_sound
?"and moving sound ":move_sound
?
833 wfx
.nSamplesPerSec
,wfx
.wBitsPerSample
,wfx
.nChannels
,
834 getDSBCAPS(bufdesc
.dwFlags
),rc
);
835 if (rc
==DS_OK
&& secondary
!=NULL
) {
836 IDirectSound3DBuffer
*ds3d
;
838 rc
=IDirectSoundBuffer_QueryInterface(secondary
, &IID_IDirectSound3DBuffer
, (void**)&ds3d
);
839 ok((has_3dbuffer
&& rc
==DS_OK
) || (!has_3dbuffer
&& rc
==E_NOINTERFACE
),
840 "Wrong return trying to get 3D buffer on %s3D secondary interface: %08x\n", has_3dbuffer
? "" : "non-", rc
);
842 IDirectSound3DBuffer_Release(ds3d
);
845 LONG refvol
,vol
,refpan
,pan
;
847 /* Check the initial secondary buffer's volume and pan */
848 rc
=IDirectSoundBuffer_GetVolume(secondary
,&vol
);
849 ok(rc
==DS_OK
,"IDirectSoundBuffer_GetVolume(secondary) failed: %08x\n",rc
);
850 ok(vol
==0,"wrong volume for a new secondary buffer: %d\n",vol
);
851 rc
=IDirectSoundBuffer_GetPan(secondary
,&pan
);
852 ok(rc
==DS_OK
,"IDirectSoundBuffer_GetPan(secondary) failed: %08x\n",rc
);
853 ok(pan
==0,"wrong pan for a new secondary buffer: %d\n",pan
);
855 /* Check that changing the secondary buffer's volume and pan
856 * does not impact the primary buffer's volume and pan
858 rc
=IDirectSoundBuffer_GetVolume(primary
,&refvol
);
859 ok(rc
==DS_OK
,"IDirectSoundBuffer_GetVolume(primary) failed: %08x\n",rc
);
860 rc
=IDirectSoundBuffer_GetPan(primary
,&refpan
);
861 ok(rc
==DS_OK
,"IDirectSoundBuffer_GetPan(primary) failed: %08x\n", rc
);
863 rc
=IDirectSoundBuffer_SetVolume(secondary
,-1000);
864 ok(rc
==DS_OK
,"IDirectSoundBuffer_SetVolume(secondary) failed: %08x\n",rc
);
865 rc
=IDirectSoundBuffer_GetVolume(secondary
,&vol
);
866 ok(rc
==DS_OK
,"IDirectSoundBuffer_SetVolume(secondary) failed: %08x\n",rc
);
867 ok(vol
==-1000,"secondary: wrong volume %d instead of -1000\n",
869 rc
=IDirectSoundBuffer_SetPan(secondary
,-1000);
870 ok(rc
==DS_OK
,"IDirectSoundBuffer_SetPan(secondary) failed: %08x\n",rc
);
871 rc
=IDirectSoundBuffer_GetPan(secondary
,&pan
);
872 ok(rc
==DS_OK
,"IDirectSoundBuffer_SetPan(secondary) failed: %08x\n",rc
);
873 ok(pan
==-1000,"secondary: wrong pan %d instead of -1000\n",
876 rc
=IDirectSoundBuffer_GetVolume(primary
,&vol
);
877 ok(rc
==DS_OK
,"IDirectSoundBuffer_GetVolume(primary) failed: %08x\n",rc
);
878 ok(vol
==refvol
,"The primary volume changed from %d to %d\n",
880 rc
=IDirectSoundBuffer_GetPan(primary
,&pan
);
881 ok(rc
==DS_OK
,"IDirectSoundBuffer_GetPan(primary) failed: %08x\n", rc
);
882 ok(pan
==refpan
,"The primary pan changed from %d to %d\n",
885 rc
=IDirectSoundBuffer_SetVolume(secondary
,0);
886 ok(rc
==DS_OK
,"IDirectSoundBuffer_SetVolume(secondary) failed: %08x\n",rc
);
887 rc
=IDirectSoundBuffer_SetPan(secondary
,0);
888 ok(rc
==DS_OK
,"IDirectSoundBuffer_SetPan(secondary) failed: %08x\n",rc
);
891 LPDIRECTSOUNDBUFFER duplicated
=NULL
;
893 /* DSOUND: Error: Invalid source buffer */
894 rc
=IDirectSound_DuplicateSoundBuffer(dso
,0,0);
895 ok(rc
==DSERR_INVALIDPARAM
,
896 "IDirectSound_DuplicateSoundBuffer() should have returned "
897 "DSERR_INVALIDPARAM, returned: %08x\n",rc
);
899 /* DSOUND: Error: Invalid dest buffer */
900 rc
=IDirectSound_DuplicateSoundBuffer(dso
,secondary
,0);
901 ok(rc
==DSERR_INVALIDPARAM
,
902 "IDirectSound_DuplicateSoundBuffer() should have returned "
903 "DSERR_INVALIDPARAM, returned: %08x\n",rc
);
905 /* DSOUND: Error: Invalid source buffer */
906 rc
=IDirectSound_DuplicateSoundBuffer(dso
,0,&duplicated
);
907 ok(rc
==DSERR_INVALIDPARAM
,
908 "IDirectSound_DuplicateSoundBuffer() should have returned "
909 "DSERR_INVALIDPARAM, returned: %08x\n",rc
);
912 rc
=IDirectSound_DuplicateSoundBuffer(dso
,secondary
,
914 ok(rc
==DS_OK
&& duplicated
!=NULL
,
915 "IDirectSound_DuplicateSoundBuffer() failed to duplicate "
916 "a secondary buffer: %08x\n",rc
);
918 if (rc
==DS_OK
&& duplicated
!=NULL
) {
919 ref
=IDirectSoundBuffer_Release(secondary
);
920 ok(ref
==0,"IDirectSoundBuffer_Release() secondary has %d "
921 "references, should have 0\n",ref
);
922 secondary
=duplicated
;
926 if (rc
==DS_OK
&& secondary
!=NULL
) {
928 duration
=(move_listener
|| move_sound
?4.0:1.0);
929 test_buffer(dso
,&secondary
,0,FALSE
,0,FALSE
,0,
930 winetest_interactive
,duration
,has_3dbuffer
,
931 listener
,move_listener
,move_sound
,FALSE
,0);
932 ref
=IDirectSoundBuffer_Release(secondary
);
933 ok(ref
==0,"IDirectSoundBuffer_Release() %s has %d references, "
934 "should have 0\n",has_duplicate
?"duplicated":"secondary",
940 ref
=IDirectSound3DListener_Release(listener
);
941 ok(ref
==0,"IDirectSound3dListener_Release() listener has %d "
942 "references, should have 0\n",ref
);
944 ref
=IDirectSoundBuffer_Release(primary
);
945 ok(ref
==0,"IDirectSoundBuffer_Release() primary has %d references, "
946 "should have 0\n",ref
);
949 ok(primary
==NULL
,"IDirectSound_CreateSoundBuffer(primary) failed "
950 "but primary created anyway\n");
951 ok(rc
!=DS_OK
,"IDirectSound_CreateSoundBuffer(primary) succeeded "
952 "but primary not created\n");
954 ref
=IDirectSoundBuffer_Release(primary
);
955 ok(ref
==0,"IDirectSoundBuffer_Release() primary has %d references, "
956 "should have 0\n",ref
);
960 /* Set the CooperativeLevel back to normal */
961 /* DSOUND: Setting DirectSound cooperative level to DSSCL_NORMAL */
962 rc
=IDirectSound_SetCooperativeLevel(dso
,get_hwnd(),DSSCL_NORMAL
);
963 ok(rc
==DS_OK
,"IDirectSound_SetCooperativeLevel(DSSCL_NORMAL) failed: %08x\n", rc
);
966 ref
=IDirectSound_Release(dso
);
967 ok(ref
==0,"IDirectSound_Release() has %d references, should have 0\n",ref
);
969 return DSERR_GENERIC
;
974 static HRESULT
test_for_driver(LPGUID lpGuid
)
977 LPDIRECTSOUND dso
=NULL
;
980 /* Create the DirectSound object */
981 rc
=pDirectSoundCreate(lpGuid
,&dso
,NULL
);
982 ok(rc
==DS_OK
||rc
==DSERR_NODRIVER
||rc
==DSERR_ALLOCATED
||rc
==E_FAIL
,
983 "DirectSoundCreate() failed: %08x\n",rc
);
987 ref
=IDirectSound_Release(dso
);
988 ok(ref
==0,"IDirectSound_Release() has %d references, should have 0\n",ref
);
990 return DSERR_GENERIC
;
995 static HRESULT
test_primary(LPGUID lpGuid
)
998 LPDIRECTSOUND dso
=NULL
;
999 LPDIRECTSOUNDBUFFER primary
=NULL
;
1000 DSBUFFERDESC bufdesc
;
1004 /* Create the DirectSound object */
1005 rc
=pDirectSoundCreate(lpGuid
,&dso
,NULL
);
1006 ok(rc
==DS_OK
||rc
==DSERR_NODRIVER
,"DirectSoundCreate() failed: %08x\n", rc
);
1010 /* Get the device capabilities */
1011 ZeroMemory(&dscaps
, sizeof(dscaps
));
1012 dscaps
.dwSize
=sizeof(dscaps
);
1013 rc
=IDirectSound_GetCaps(dso
,&dscaps
);
1014 ok(rc
==DS_OK
,"IDirectSound_GetCaps() failed: %08x\n",rc
);
1018 /* We must call SetCooperativeLevel before calling CreateSoundBuffer */
1019 /* DSOUND: Setting DirectSound cooperative level to DSSCL_PRIORITY */
1020 rc
=IDirectSound_SetCooperativeLevel(dso
,get_hwnd(),DSSCL_PRIORITY
);
1021 ok(rc
==DS_OK
,"IDirectSound_SetCooperativeLevel(DSSCL_PRIORITY) failed: %08x\n",rc
);
1025 /* Testing the primary buffer */
1027 ZeroMemory(&bufdesc
, sizeof(bufdesc
));
1028 bufdesc
.dwSize
=sizeof(bufdesc
);
1029 bufdesc
.dwFlags
=DSBCAPS_PRIMARYBUFFER
|DSBCAPS_CTRLVOLUME
|DSBCAPS_CTRLPAN
;
1030 rc
=IDirectSound_CreateSoundBuffer(dso
,&bufdesc
,&primary
,NULL
);
1031 ok((rc
==DS_OK
&& primary
!=NULL
) || (rc
==DSERR_CONTROLUNAVAIL
),
1032 "IDirectSound_CreateSoundBuffer() failed to create a primary buffer: %08x\n",rc
);
1033 if (rc
==DSERR_CONTROLUNAVAIL
)
1034 trace(" No Primary\n");
1035 else if (rc
==DS_OK
&& primary
!=NULL
) {
1036 test_buffer(dso
,&primary
,1,TRUE
,0,TRUE
,0,winetest_interactive
&&
1037 !(dscaps
.dwFlags
& DSCAPS_EMULDRIVER
),1.0,0,NULL
,0,0,
1039 if (winetest_interactive
) {
1042 volume
= DSBVOLUME_MAX
;
1043 for (i
= 0; i
< 6; i
++) {
1044 test_buffer(dso
,&primary
,1,TRUE
,volume
,TRUE
,0,
1045 winetest_interactive
&&
1046 !(dscaps
.dwFlags
& DSCAPS_EMULDRIVER
),
1047 1.0,0,NULL
,0,0,FALSE
,0);
1048 volume
-= ((DSBVOLUME_MAX
-DSBVOLUME_MIN
) / 40);
1052 for (i
= 0; i
< 7; i
++) {
1053 test_buffer(dso
,&primary
,1,TRUE
,0,TRUE
,pan
,
1054 winetest_interactive
&&
1055 !(dscaps
.dwFlags
& DSCAPS_EMULDRIVER
),1.0,0,0,0,0,FALSE
,0);
1056 pan
+= ((DSBPAN_RIGHT
-DSBPAN_LEFT
) / 6);
1059 ref
=IDirectSoundBuffer_Release(primary
);
1060 ok(ref
==0,"IDirectSoundBuffer_Release() primary has %d references, "
1061 "should have 0\n",ref
);
1064 /* Set the CooperativeLevel back to normal */
1065 /* DSOUND: Setting DirectSound cooperative level to DSSCL_NORMAL */
1066 rc
=IDirectSound_SetCooperativeLevel(dso
,get_hwnd(),DSSCL_NORMAL
);
1067 ok(rc
==DS_OK
,"IDirectSound_SetCooperativeLevel(DSSCL_NORMAL) failed: %08x\n", rc
);
1070 ref
=IDirectSound_Release(dso
);
1071 ok(ref
==0,"IDirectSound_Release() has %d references, should have 0\n",ref
);
1073 return DSERR_GENERIC
;
1078 static HRESULT
test_primary_3d(LPGUID lpGuid
)
1081 LPDIRECTSOUND dso
=NULL
;
1082 LPDIRECTSOUNDBUFFER primary
=NULL
;
1083 DSBUFFERDESC bufdesc
;
1087 /* Create the DirectSound object */
1088 rc
=pDirectSoundCreate(lpGuid
,&dso
,NULL
);
1089 ok(rc
==DS_OK
||rc
==DSERR_NODRIVER
,"DirectSoundCreate() failed: %08x\n", rc
);
1093 /* Get the device capabilities */
1094 ZeroMemory(&dscaps
, sizeof(dscaps
));
1095 dscaps
.dwSize
=sizeof(dscaps
);
1096 rc
=IDirectSound_GetCaps(dso
,&dscaps
);
1097 ok(rc
==DS_OK
,"IDirectSound_GetCaps() failed: %08x\n",rc
);
1101 /* We must call SetCooperativeLevel before calling CreateSoundBuffer */
1102 /* DSOUND: Setting DirectSound cooperative level to DSSCL_PRIORITY */
1103 rc
=IDirectSound_SetCooperativeLevel(dso
,get_hwnd(),DSSCL_PRIORITY
);
1104 ok(rc
==DS_OK
,"IDirectSound_SetCooperativeLevel(DSSCL_PRIORITY) failed: %08x\n",rc
);
1109 ZeroMemory(&bufdesc
, sizeof(bufdesc
));
1110 bufdesc
.dwSize
=sizeof(bufdesc
);
1111 bufdesc
.dwFlags
=DSBCAPS_PRIMARYBUFFER
;
1112 rc
=IDirectSound_CreateSoundBuffer(dso
,&bufdesc
,&primary
,NULL
);
1113 ok(rc
==DS_OK
&& primary
!=NULL
,"IDirectSound_CreateSoundBuffer() failed "
1114 "to create a primary buffer: %08x\n",rc
);
1115 if (rc
==DS_OK
&& primary
!=NULL
) {
1116 ref
=IDirectSoundBuffer_Release(primary
);
1117 ok(ref
==0,"IDirectSoundBuffer_Release() primary has %d references, "
1118 "should have 0\n",ref
);
1120 ZeroMemory(&bufdesc
, sizeof(bufdesc
));
1121 bufdesc
.dwSize
=sizeof(bufdesc
);
1122 bufdesc
.dwFlags
=DSBCAPS_PRIMARYBUFFER
|DSBCAPS_CTRL3D
;
1123 rc
=IDirectSound_CreateSoundBuffer(dso
,&bufdesc
,&primary
,NULL
);
1124 ok(rc
==DS_OK
&& primary
!=NULL
,"IDirectSound_CreateSoundBuffer() "
1125 "failed to create a 3D primary buffer: %08x\n",rc
);
1126 if (rc
==DS_OK
&& primary
!=NULL
) {
1127 test_buffer(dso
,&primary
,1,FALSE
,0,FALSE
,0,winetest_interactive
&&
1128 !(dscaps
.dwFlags
& DSCAPS_EMULDRIVER
),1.0,0,0,0,0,
1130 ref
=IDirectSoundBuffer_Release(primary
);
1131 ok(ref
==0,"IDirectSoundBuffer_Release() primary has %d references, "
1132 "should have 0\n",ref
);
1135 /* Set the CooperativeLevel back to normal */
1136 /* DSOUND: Setting DirectSound cooperative level to DSSCL_NORMAL */
1137 rc
=IDirectSound_SetCooperativeLevel(dso
,get_hwnd(),DSSCL_NORMAL
);
1138 ok(rc
==DS_OK
,"IDirectSound_SetCooperativeLevel(DSSCL_NORMAL) failed: %08x\n", rc
);
1141 ref
=IDirectSound_Release(dso
);
1142 ok(ref
==0,"IDirectSound_Release() has %d references, should have 0\n",ref
);
1144 return DSERR_GENERIC
;
1149 static HRESULT
test_primary_3d_with_listener(LPGUID lpGuid
)
1152 LPDIRECTSOUND dso
=NULL
;
1153 LPDIRECTSOUNDBUFFER primary
=NULL
;
1154 DSBUFFERDESC bufdesc
;
1158 /* Create the DirectSound object */
1159 rc
=pDirectSoundCreate(lpGuid
,&dso
,NULL
);
1160 ok(rc
==DS_OK
||rc
==DSERR_NODRIVER
,"DirectSoundCreate() failed: %08x\n", rc
);
1164 /* Get the device capabilities */
1165 ZeroMemory(&dscaps
, sizeof(dscaps
));
1166 dscaps
.dwSize
=sizeof(dscaps
);
1167 rc
=IDirectSound_GetCaps(dso
,&dscaps
);
1168 ok(rc
==DS_OK
,"IDirectSound_GetCaps() failed: %08x\n",rc
);
1172 /* We must call SetCooperativeLevel before calling CreateSoundBuffer */
1173 /* DSOUND: Setting DirectSound cooperative level to DSSCL_PRIORITY */
1174 rc
=IDirectSound_SetCooperativeLevel(dso
,get_hwnd(),DSSCL_PRIORITY
);
1175 ok(rc
==DS_OK
,"IDirectSound_SetCooperativeLevel(DSSCL_PRIORITY) failed: %08x\n",rc
);
1179 ZeroMemory(&bufdesc
, sizeof(bufdesc
));
1180 bufdesc
.dwSize
=sizeof(bufdesc
);
1181 bufdesc
.dwFlags
=DSBCAPS_PRIMARYBUFFER
|DSBCAPS_CTRL3D
;
1182 rc
=IDirectSound_CreateSoundBuffer(dso
,&bufdesc
,&primary
,NULL
);
1183 ok(rc
==DS_OK
&& primary
!=NULL
,"IDirectSound_CreateSoundBuffer() failed "
1184 "to create a 3D primary buffer: %08x\n",rc
);
1185 if (rc
==DS_OK
&& primary
!=NULL
) {
1186 LPDIRECTSOUND3DLISTENER listener
=NULL
;
1187 LPDIRECTSOUNDBUFFER temp_buffer
=NULL
;
1188 rc
=IDirectSoundBuffer_QueryInterface(primary
,
1189 &IID_IDirectSound3DListener
,(void **)&listener
);
1190 ok(rc
==DS_OK
&& listener
!=NULL
,"IDirectSoundBuffer_QueryInterface() "
1191 "failed to get a 3D listener: %08x\n",rc
);
1192 if (rc
==DS_OK
&& listener
!=NULL
) {
1193 /* Checking the COM interface */
1194 rc
=IDirectSoundBuffer_QueryInterface(primary
,
1195 &IID_IDirectSoundBuffer
,(LPVOID
*)&temp_buffer
);
1196 ok(rc
==DS_OK
&& temp_buffer
!=NULL
,
1197 "IDirectSoundBuffer_QueryInterface() failed: %08x\n", rc
);
1198 ok(temp_buffer
==primary
,
1199 "COM interface broken: %p != %p\n",
1200 temp_buffer
,primary
);
1201 if (rc
==DS_OK
&& temp_buffer
!=NULL
) {
1202 ref
=IDirectSoundBuffer_Release(temp_buffer
);
1203 ok(ref
==1,"IDirectSoundBuffer_Release() has %d references, "
1204 "should have 1\n",ref
);
1207 rc
=IDirectSound3DListener_QueryInterface(listener
,
1208 &IID_IDirectSoundBuffer
,(LPVOID
*)&temp_buffer
);
1209 ok(rc
==DS_OK
&& temp_buffer
!=NULL
,
1210 "IDirectSoundBuffer_QueryInterface() failed: %08x\n", rc
);
1211 ok(temp_buffer
==primary
,
1212 "COM interface broken: %p != %p\n",
1213 temp_buffer
,primary
);
1214 ref
=IDirectSoundBuffer_Release(temp_buffer
);
1215 ok(ref
==1,"IDirectSoundBuffer_Release() has %d references, "
1216 "should have 1\n",ref
);
1218 /* Testing the buffer */
1219 test_buffer(dso
,&primary
,1,FALSE
,0,FALSE
,0,
1220 winetest_interactive
&&
1221 !(dscaps
.dwFlags
& DSCAPS_EMULDRIVER
),1.0,0,
1222 listener
,0,0,FALSE
,0);
1225 rc
= IDirectSound3DListener_QueryInterface(listener
, &IID_IKsPropertySet
,
1226 (void **)&temp_buffer
);
1227 ok(rc
==DS_OK
&& temp_buffer
!=NULL
,
1228 "IDirectSound3DListener_QueryInterface didn't handle IKsPropertySet: ret = %08x\n", rc
);
1230 IKsPropertySet_Release(temp_buffer
);
1233 /* Testing the reference counting */
1234 ref
=IDirectSound3DListener_Release(listener
);
1235 ok(ref
==0,"IDirectSound3DListener_Release() listener has %d "
1236 "references, should have 0\n",ref
);
1240 rc
= IDirectSoundBuffer_QueryInterface(primary
, &IID_IKsPropertySet
, (void **)&temp_buffer
);
1241 ok(rc
==DS_OK
&& temp_buffer
!=NULL
,
1242 "IDirectSoundBuffer_QueryInterface didn't handle IKsPropertySet on primary buffer: ret = %08x\n", rc
);
1244 IKsPropertySet_Release(temp_buffer
);
1246 /* Testing the reference counting */
1247 ref
=IDirectSoundBuffer_Release(primary
);
1248 ok(ref
==0,"IDirectSoundBuffer_Release() primary has %d references, "
1249 "should have 0\n",ref
);
1253 ref
=IDirectSound_Release(dso
);
1254 ok(ref
==0,"IDirectSound_Release() has %d references, should have 0\n",ref
);
1256 return DSERR_GENERIC
;
1261 static BOOL WINAPI
dsenum_callback(LPGUID lpGuid
, LPCSTR lpcstrDescription
,
1262 LPCSTR lpcstrModule
, LPVOID lpContext
)
1265 trace("*** Testing %s - %s ***\n",lpcstrDescription
,lpcstrModule
);
1267 rc
= test_for_driver(lpGuid
);
1268 if (rc
== DSERR_NODRIVER
) {
1269 trace(" No Driver\n");
1271 } else if (rc
== DSERR_ALLOCATED
) {
1272 trace(" Already In Use\n");
1274 } else if (rc
== E_FAIL
) {
1275 trace(" No Device\n");
1279 trace(" Testing the primary buffer\n");
1280 test_primary(lpGuid
);
1282 trace(" Testing 3D primary buffer\n");
1283 test_primary_3d(lpGuid
);
1285 trace(" Testing 3D primary buffer with listener\n");
1286 test_primary_3d_with_listener(lpGuid
);
1288 /* Testing secondary buffers */
1289 test_secondary(lpGuid
,winetest_interactive
,0,0,0,0,0,0);
1290 test_secondary(lpGuid
,winetest_interactive
,0,0,0,1,0,0);
1292 /* Testing 3D secondary buffers */
1293 test_secondary(lpGuid
,winetest_interactive
,1,0,0,0,0,0);
1294 test_secondary(lpGuid
,winetest_interactive
,1,1,0,0,0,0);
1295 test_secondary(lpGuid
,winetest_interactive
,1,1,0,1,0,0);
1296 test_secondary(lpGuid
,winetest_interactive
,1,0,1,0,0,0);
1297 test_secondary(lpGuid
,winetest_interactive
,1,0,1,1,0,0);
1298 test_secondary(lpGuid
,winetest_interactive
,1,1,1,0,0,0);
1299 test_secondary(lpGuid
,winetest_interactive
,1,1,1,1,0,0);
1300 test_secondary(lpGuid
,winetest_interactive
,1,1,1,0,1,0);
1301 test_secondary(lpGuid
,winetest_interactive
,1,1,1,0,0,1);
1302 test_secondary(lpGuid
,winetest_interactive
,1,1,1,0,1,1);
1307 static void ds3d_tests(void)
1310 rc
=pDirectSoundEnumerateA(&dsenum_callback
,NULL
);
1311 ok(rc
==DS_OK
,"DirectSoundEnumerateA() failed: %08x\n",rc
);
1320 hDsound
= LoadLibrary("dsound.dll");
1324 pDirectSoundEnumerateA
= (void*)GetProcAddress(hDsound
,
1325 "DirectSoundEnumerateA");
1326 pDirectSoundCreate
= (void*)GetProcAddress(hDsound
,
1327 "DirectSoundCreate");
1331 FreeLibrary(hDsound
);
1334 skip("dsound.dll not found!\n");