Microsoft XNA Game Studio Creator’s Guide- P17 docx

30 282 0
Microsoft XNA Game Studio Creator’s Guide- P17 docx

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

Thông tin tài liệu

This page intentionally left blank CHAPTER CHAPTER 27 Adding Audio Adding Audio to Your to Your Game Game 460 AUDIO effects not only raise the appeal of a game, but you can also use them to challenge players to make judgments based on sound. Thischapter showsyou howto addaudio toyour gameand createaudio depth. With 3D audio enabled, you can actually tell where things are just by their sounds. For example, if you heard distant footsteps in your right ear, but could not see any- body walking, you would know that somebody is walking behind you off to the right. If you were to turn 180 degrees, you would see the person walking and the sound would be louder in your left ear. Your game will offer far more appeal and vi- brancy with sounds throughout the environment—and with music to match. A BOUT XACT In addition to enabling 3D audio, the XACT audio studio is intended to simplify the process of managing your audio files and sound cues. You can use it to organize wave files and to set their playback properties. XACT is installed as part of XNA Game Studio. Currently, WAV (wave), AIF, and AIFF (audio interchange file format) files are the only audio formats supported in XACT. If you want to play back other for- mats—such as MP3—you can use the Song class in conjunction with the MediaPlayer class to load and play these types of files. T HE SONG AND SOUNDEFFECT ALTERNATIVE 3D Audio from XACT will not work on the Zune. However, a separate audio Appli- cation Programming Interface (API) is available to enable playback for your 2D games on the Zune. You can use this API in your PC and Xbox 360 projects as well. This audio library includes a Song class for playing MP3 audio files in conjunction with the MediaPlayer class. A SoundEffect class allows you to play wave files. Basically, all you have to do is load your wave file and play it. This process is so much simpler than implementing audio with XACT, the XNA community refers to it as “play and forget.” If you want to pause, resume, or set the volume of your SoundEffect objects, you can access these routines by storing your SoundEffect object in a SoundEffectInstance. P ROGRAMMING XACT AUDIO To implement XACT audio, you must (at least) use these five main objects: 461  XACT audio project file  Audio engine  Global settings  Wave banks  Sound banks XACT Audio Project File The XACT audio project file is the file created from XACT—also known as the XACT authoring tool. The XACT project file has an .xap extension. This file stores the audio file references, sound cue instances, and their playback settings. The .xap file extension is useful for deploying on both Windows and on the Xbox 360. You don’t need to reference this project file in the code you write. However, when the .xap file is referenced in your XNA game project (from the Solution Explorer), your game project will automatically generate a global settings file, a wave bank file, and a sound bank file for you to regulate audio playback according to your audio project settings. You could export the global settings, wave bank, and sound bank files separately from the audio authoring tool and then reference them manually in your project. However, to simplify referencing and loading your audio files in both your Windows and Xbox 360 game projects, referencing the .xap file in your project is recom- mended. When you reference the .xap file in your game project, it also provides a rel- ative file path reference to the wave files used in your project. Audio Engine The AudioEngine object instantiates and manipulates core sound objects for play- ing game audio. This object is initialized with a set of properties loaded from a global settings file generated from the XACT authoring tool. As mentioned earlier, if you reference the .xap project file in the Solution Explorer, the global settings file will au- tomatically be generated in your project at run time. Even though you cannot physi- cally see the global settings file in the same folder as your .xap file, you can load it in code as long as the directory path is the same as your project file, as shown here: AudioEngine audioEngine = new AudioEngine("AudioProjectFileFolder\\GlobalSettings.xgs"); Once you have initialized the sound engine in your code, it is then used to initialize the WaveBank and the SoundBank. As with the global settings file, these files will not be physically present in the audio folder when you use the .xap project file to gen- CHAPTER 27 Adding Audio to Your Game erate them. However, virtual references to them are required from the same directory in your project as your *.xap project file: WaveBank waveBank = new WaveBank( audioEngine, "Content\\AudioProjectFileFolder\\Wave Bank.xwb"); SoundBank soundBank = new SoundBank(audioEngine, "Content\\AudioProjectFileFolder\\Sound Bank.xsb"); When you are loading your audio project, engine, wave bank, and sound bank files in this manner, your *.wav, *.aif, and *.aiff files will need to be in the same direc- tory path (relative to the location where your .xap project file is saved). Global Settings Global settings are the definitions for the audio controls created by the sound de- signer. You use this file to initialize the sound engine. Wave Banks A wave bank is a collection of wave files loaded and packaged in an .xwb file. Sound Banks A sound bank is a collection of instructions and cues for the wave files to regulate how the sounds are played in your program. Cues You can use cues to trigger audio playback from the sound bank. Cues may contain a list of sounds to play in a specific sequence when an event is triggered, or they may provide a list of sounds that can be selected randomly for playback. Categories Categories are used to group sound banks with similar properties. You might con- sider categorizing sounds by how they are played back. For example, sounds with volumes that need to be adjusted together or sounds that need to be paused and re- sumed at the same time can be grouped in the same category. Cue Instance Variables Cue instance variables set limits for sound cue properties, such as pitch and volume, in the XACT tool. You can alter values within your cue instance variable ranges to control playback. MICROSOFT XNA GAME STUDIO CREATOR’S GUIDE 462 463 CHAPTER 27 Adding Audio to Your Game Runtime Parameter Control Preset (RPC Preset) An RPC preset allows you to define how your sound properties change within their designated ranges. You can then attach these RPC presets to specific instances of sound. Playback Methods You have the option of using two methods for audio playback. The first involves us- ing the SoundBank’s GetCue() method to retrieve the sound instance and then the Play() method to play it: cue = soundBank.GetCue(String cueName); cue.Play(); This method is useful if you need to set the volume, or pause or resume the sound. However, if you are constantly using the GetCue() method, playing your sound, and disposing of the cue, you will hear the sound cutting out during playback. If you know you will be using these cues later, you can avoid this problem by placing your idle cues on a stack. Another method that can be used to play your audio is the SoundBank’s PlayCue() method. This method is useful for playing sounds in quick succession, such as the sound of a rapid-fire machine gun: PlayCue(String cueName); With this method, there is no disposal of the cue. This helps to avoid disruptions to the audio that can be caused by the garbage collection that happens when cues are disposed. Programming 3D Audio 3D audio scales the volume of your sound sources and positions them in each speaker. The volume and position properties for each sound are derived from the listener’s rela- tive distance and orientation to the sound source. The listener object is defined by the AudioListener class. This object governs what you hear and how you hear it. Normally, there is only one listener in a game, and it moves and changes direction with the camera. Moving this listener object with the camera allows you to update the position and orientation of each sound as the viewer travels through the world. The AudioEmitter class stores the sound source’s position, speed, and orienta- tion. An AudioEmitter object is required for each sound source. Both the listener and emitter objects store the following four vectors: Vector3 Forward; // direction Vector3 Speed; // direction and magnitude MICROSOFT XNA GAME STUDIO CREATOR’S GUIDE 464 Vector3 Position; Vector3 Up; // uprightness The vectors are updated for the listener and all emitters every frame. Then the cal- culations to position the sound and scale the volume for each are applied with the method Apply3D(): void Cue.Apply3D(AudioListner listener, AudioEmitter emitter); Because the cue is used to apply 3D audio, GetCue() must be used to retrieve the cue for playback. XACT Authoring Tool The XACT audio authoring tool provides a sound designer studio that allows you to create wave banks, add sound banks, and edit the properties for controlling how they are played from within your code. The authoring tool is feature-rich, and you may be pleased to discover how much you can customize your audio beyond the standard settings. You can use the audio authoring tool to randomize how sounds are played back, add reverb, randomize the sound volume, and implement great audio effects such as a Doppler effect. S PACE AUDIO EXAMPLE: PART A This demonstration shows how to use the audio authoring tool to generate an .xap project file that stores references for your wave files and their playback properties. Later on, you will reference this project file in your XNA project to regulate the play- back of the wave files within your game. Whether you are building a 2D or a 3D game, the steps taken here to build your XACT audio project are the same. If you are building a 2D game for Windows or the Xbox 360, then parts B and C of this exam- ple are relevant for you. If you are building a 3D game, then all sections are relevant. The audio portion of this example begins with an introduction. When the intro- duction finishes, two spacecraft engines start playing in a loop. For no particular rea- son other than to create an interesting soundscape and to demonstrate XNA audio features, each spacecraft also emits a telemetric beep. These telemetric beeps start af- ter the introduction. Ship0 travels with the camera and ship1 moves back and forth along the Z plane in the distance. You can left-click the mouse or pull the right trigger to play a laser firing sound. When you move or strafe, the pitch and volume of your craft (ship0) changes according to your acceleration level. This project uses six WAV files: an introduction, two engines, two beeps, and a la- ser fire noise. The audio files for this project can be found in the Audio folder on this book’s website. The audio files for this demonstration are from the XNA Spacewar project that ships with Game Studio. 465 Launching the XACT Authoring Tool The XACT authoring tool can be found in the Start menu folder with Game Studio. There you will see Tools | Microsoft Cross-Platform Audio Creation Tool (XACT). Selecting Microsoft Cross-Platform Audio Creation Tool (XACT) launches this authoring tool. The authoring tool will appear as shown in Figure 27-1. Creating a Wave Bank To load a wave file, click the Wave Banks menu and then choose New Wave Bank. You can now add wave files to your wave bank. Start by adding the intro.wav file. To do this, click the Wave Banks menu and choose Insert Wave File(s). When the Open dialog launches, select the intro.wav file. Your wave file now appears in the Wave Bank panel. Adding a Sound Bank Next, you need a sound bank so you can customize properties that determine how the wave file will be played. The sound bank consists of two parts—a sound bank name and a cue name. To add a sound bank, select the Sound Banks menu and then click New Sound Bank. You then need to create a cue that your code will use to trigger playback. This can be done by left-clicking the wave file in the Wave Bank panel and dragging it down, with the left mouse button pressed, into the lower panel of the Sound Bank panel. Your wave file instance should now appear in both the upper and lower sections of the Sound Bank panel (see Figure 27-2). CHAPTER 27 Adding Audio to Your Game FIGURE 27-1 XACT authoring tool Referencing the Spaceship Engines, Firing Sound, and Beeping Sounds For this part of the example, you repeat the steps you just completed for the intro.wav file for the beep0.wav, beep1.wav, engine0.wav, engine1.wav, and fire.wav files. When you are finished, these files will appear in wave bank, sound bank, and sound bank cue panels, as shown in Figure 27-3. Setting the Category Property for Beep0 Sometimes you will want to group your sound banks by category. Having sounds that fulfill a similar role under the same category simplifies your ability to control how the sounds are played back in your code. Some code instructions can be applied once to an entire category rather than individually for each sound in the category. For this example, you need a different category for beep0. This will enable the beep- ing noise to be paused and resumed separately in your code. The intro, engine0, engine1, beep1, and fire sound banks have been assigned by default to the Default cate- gory. If you were to set the volume to the Default category, the intro, beep1, engine0, engine1, and fire sounds would all be affected. The beep0 sound bank will be assigned to the Beep0 category so we can pause and resume it midstream. To create a Beep0 cat- egory, right-click the Category node in the XAP project and select New Category. When prompted, name the category as Beep0. Then, click on the beep0 instance in the Sound Bank panel under the Category column. In the left panel, select the Beep0 cate- gory setting in the lower-left property panel (see Figure 27-4). MICROSOFT XNA GAME STUDIO CREATOR’S GUIDE 466 FIGURE 27-2 XACT authoring tool with a wave file referenced on the wave bank panel at the top and the sound bank panel on the bottom 467 CHAPTER 27 Adding Audio to Your Game Creating an Infinite Loop The beep0 file is meant to play in an infinite loop, so the playback repeats every time the track finishes. To enable the loop, select the beep0 sound bank and highlight Play Wave in the tree view in the top-right panel of the XACT authoring tool. Once you have highlighted Play Wave for beep0’s sound bank, you can set the loop property at the bottom of the left panel in the XACT authoring tool. Checking Infi- nite under looping enables the infinite loop for the beep0 sound (see Figure 27-4). Both engine0 and engine1 sound banks also have to play in an infinite loop so they can be heard continuously throughout the game. You will need to set the Infinite property for these objects just as you did for beep0. However, when you do this, just use the Default category. Adding a Finite Loop For the second telemetric beep sound, beep1, the corresponding wave file only stores one beep. This example requires the beep1 sound to play twice so the sound is heard FIGURE 27-3 Wave bank, sound bank, and cues after the wave files have been added [...]... section of your game class, a declaration for the time of the previous frame will assist in tracking the time lapse between beeps: public double intervalTime, previousIntervalTime; 485 Adding Audio to Your Game C H A P T E R 486 MICROSOFT XNA GAME STUDIO CREATOR’S GUIDE A timer like the one that was first used in Chapter 12 enables playback of the beep audio every second: bool Timer(GameTime gameTime){... ship0Cue.Play(); } } } else{ if (!soundEngine.IsDisposed){ #if !XBOX // update mouse state 481 Adding Audio to Your Game C H A P T E R 482 MICROSOFT XNA mousePrevious mouseCurrent #endif gpPrevious gpCurrent GAME STUDIO CREATOR’S GUIDE = mouseCurrent; = Mouse.GetState(); = gpCurrent; // update gamepad states = GamePad.GetState(PlayerIndex.One); Fire(); // check input for fire // change volume with acceleration ship0Cue.SetVariable("Engine0Variable",... under the Content node in your game project You can find these files in the Models folder on this book’s website Two model objects and matrices for storing their meshes are needed in the game class to store, transform, and draw the model: Model ship0Model, ship1Model; Matrix[] ship1Matrix, ship0Matrix; 473 Adding Audio to Your Game C H A P T E R 474 MICROSOFT XNA GAME STUDIO CREATOR’S GUIDE You must initialize... stored in memory for as long as the audio is needed during the game void Fire(){ if(gpCurrent.Triggers.Right!=0.0f && gpPrevious.Triggers.Right==0.0f #if !Xbox || mouseCurrent.LeftButton == ButtonState.Pressed && mousePrevious.LeftButton != ButtonState.Pressed #endif 479 Adding Audio to Your Game C H A P T E R 480 MICROSOFT XNA GAME STUDIO CREATOR’S GUIDE ) soundBank.PlayCue("fire"); } As with the Fire()... MathHelper.Pi/2.0f); else rotationY = Matrix.CreateRotationY(-MathHelper.Pi/2.0f); world = rotationY * translation; break; } 475 Adding Audio to Your Game C H A P T E R 476 MICROSOFT XNA GAME STUDIO CREATOR’S GUIDE return world; } The code you add to the game class to draw the spaceships is similar to code you have already seen in this book for drawing models This time, though, the routine calls the... sound bank Module-level declarations for loading and storing the sound engine, wave bank, and 477 Adding Audio to Your Game C H A P T E R 478 MICROSOFT XNA GAME STUDIO CREATOR’S GUIDE sound bank files will make these objects available for loading and playing your audio files throughout your game class: private static AudioEngine private static WaveBank private static SoundBank soundEngine; waveBank; soundBank;... which you can shape to specify how your volume changes between 0 and 1 Two control points define the graph initially FIGURE 27-5 Cue instance variable 469 Adding Audio to Your Game C H A P T E R 470 MICROSOFT XNA GAME STUDIO CREATOR’S GUIDE To add a control point to shape your graph, right-click the rows of data under the Points heading and choose Insert Point in the drop-down that appears You can... emitter data to set the volume and position for each sound: private void Apply3DAudio(Audio3DCue cue3D){ if (!cue3D.cue.IsDisposed && !soundBank.IsDisposed 483 Adding Audio to Your Game C H A P T E R 484 MICROSOFT && XNA GAME STUDIO CREATOR’S GUIDE !soundEngine.IsDisposed){ switch (cue3D.cue.Name){ case "engine1": // calculate speed based on change in position Vector3 speed0 = ship1Position - previousShip1Position;... the increase or decrease in distance between it and the listener Figure 27-9 shows the new RPC preset, named Ship1 RPC, with the engine1 sound attached 471 Adding Audio to Your Game C H A P T E R 472 MICROSOFT XNA GAME STUDIO CREATOR’S FIGURE 27-8 Runtime Parameter Control settings to adjust volume with distance FIGURE 27-9 RPC preset with engine1 sound attached GUIDE 2 7 Saving Your Audio Project Now... assigned properties, you can test their playback with the XACT Auditioning Utility This tool allows you to hear how they will sound when played in your game Launch the XACT Auditioning Utility by navigating from the Start menu to Programs | Microsoft XNA Game Studio Express | Tools A command-prompt window will appear with the message “Waiting for the XACT authoring tool to connect.…” When you want to test . your cue instance variable ranges to control playback. MICROSOFT XNA GAME STUDIO CREATOR’S GUIDE 462 463 CHAPTER 27 Adding Audio to Your Game Runtime Parameter Control Preset (RPC Preset) An RPC. way to tie pitch and volume values in your XNA code to the player’s move and strafe events. The authoring tool allows you to MICROSOFT XNA GAME STUDIO CREATOR’S GUIDE 468 FIGURE 27-4 The Beep0. the engine1 sound attached. CHAPTER 27 Adding Audio to Your Game FIGURE 27-7 RPC preset for references engine0 MICROSOFT XNA GAME STUDIO CREATOR’S GUIDE 472 FIGURE 27-8 Runtime Parameter Control

Ngày đăng: 02/07/2014, 06:20

Tài liệu cùng người dùng

Tài liệu liên quan