JavaScript EditorFree JavaScript Editor     Ajax Editor 



Main Page
  Previous Section Next Section

DirectSound on the Mic

DirectSound is composed of a number of components or interfaces, just like DirectDraw. However, this is a book on game programming, so we only have time to look at |the most important ones. Hence, I won't be discussing the 3D sound component, DirectSound3D, or the sound capturing interface, DirectSoundCapture. I'm going to focus on the primary interfaces of DirectSound and that's it. Believe me, that's enough to keep you busy.

Figure 10.7 illustrates the relationship of DirectSound to the rest of the Windows subsystems. Notice that it is very similar to DirectDraw. However, DirectSound has a really cool feature that DirectDraw doesn't—if you don't have a DirectSound driver for your sound card, DirectSound will still work, but it will use emulation and the Windows DDI instead. So as long as you ship your product with the DirectSound .DLLs, your code will work even if the user doesn't have DirectSound drivers for his card. It won't be as fast, but it will still work. This is very cool.

Figure 10.7. DirectSound's place in Windows.

graphics/10fig07.gif

DirectSound has two components as far as we are concerned:

  • A run-time .DLL that is loaded when you use DirectSound.

  • A compile-time library and header named DSOUND.LIB and DSOUND.H, respectively.

To create a DirectSound application, all you need to do is include these files in your application and everything should be fine.

To use DirectSound, you must create a DirectSound COM object and then request the various interfaces from the main object. Figure 10.8 illustrates the main interfaces of DirectSound:

  • Iunknown— The base COM object of all COM objects.

  • IDirectSound— The main COM object of DirectSound. This represents the audio hardware itself. If you have one or more sound cards in your computer, you'll need a DirectSound object for each of them.

  • IDirectSoundBufferThis represents the mixing hardware and actual sounds. There are two kinds of DirectSound buffers: primary and secondary (see how DirectSound is similar to DirectDraw?). There is only a single primary buffer, and it represents the sound that is currently playing and is mixed either by hardware (hopefully) or software. Secondary buffers represent sounds that are stored for playback. They may exist in system memory or SRAM (sound RAM) on the sound card. In either case, you can play as many secondary buffer sounds as you want as long as you have the horsepower and memory to do so. Figure 10.9 represents the relationship between the primary sound buffer and secondary sound buffers.

    Figure 10.9. Sound buffers.

    graphics/10fig09.gif

  • IDirectSoundCaptureYou're not going to use this interface, but like I said, it's used to record and capture sounds. You could use it to allow the player to record his name, or, if you're more of a techno-freak, it can be used to capture speech in real-time for voice recognition.

  • IDirectSoundNotify— This interface is used to send messages back to DirectSound. You might need this in a game with a complex sound system, but you can get along without it.

Figure 10.8. The interfaces of DirectSound.

graphics/10fig08.gif

To use DirectSound, you first create the main DirectSound object, create one or more secondary sound buffers, load them with sounds, and then play any sound you want. DirectSound will take care of the details, such as mixing. So let's start with creating the main DirectSound object itself.

NOTE

Although with DirectX 8.0 there is a new DirectSound interface, IDirectSound8, basically Microsoft skipped versions 2, 3, 4, 5, 6, 7. However, it brings nothing to the table for us, so we are going to use the standard DirectSound interfaces that have been available since DirectX 3.0.


      Previous Section Next Section
    



    JavaScript EditorAjax Editor     JavaScript Editor