當前位置: 首頁>>代碼示例>>C#>>正文


C# SoundEffectInstance.Dispose方法代碼示例

本文整理匯總了C#中Microsoft.Xna.Framework.Audio.SoundEffectInstance.Dispose方法的典型用法代碼示例。如果您正苦於以下問題:C# SoundEffectInstance.Dispose方法的具體用法?C# SoundEffectInstance.Dispose怎麽用?C# SoundEffectInstance.Dispose使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在Microsoft.Xna.Framework.Audio.SoundEffectInstance的用法示例。


在下文中一共展示了SoundEffectInstance.Dispose方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的C#代碼示例。

示例1: Play

 public static void Play(ref SoundEffectInstance _playInstance, string sound)
 {
     if (_playInstance == null)
     {
         _playInstance = AudioManager.SoundEffects[sound].CreateInstance();
         _playInstance.Play();
     }
     else if (_playInstance != null)
     {
         if (_playInstance.State == SoundState.Stopped)
         {
             _playInstance.Dispose();
             _playInstance = null;
         }
     }
 }
開發者ID:ITSPaul,項目名稱:cgWeek4Lab1,代碼行數:16,代碼來源:AudioManager.cs

示例2: StopMusic

 public static void StopMusic(SoundEffectInstance instance)
 {
     if(instance != null)
     {
         instance.Stop();
         instance.Dispose();
     }
 }
開發者ID:cryophobia,項目名稱:exen,代碼行數:8,代碼來源:Sound.cs

示例3: PlaySound

 private void PlaySound(SoundEffect soundEffect, SoundEffectInstance soundEffectInstance, float volume = 1.0F)
 {
     if (soundEffectInstance != null &&
         !soundEffectInstance.IsDisposed)
     {
         soundEffectInstance.Dispose();
     }
     soundEffectInstance = soundEffect.CreateInstance();
     soundEffectInstance.Play();
 }
開發者ID:daxnet,項目名稱:Starwar,代碼行數:10,代碼來源:StarwarGame.cs

示例4: StopSfx

 public static void StopSfx(SoundEffectInstance soundCue)
 {
     soundCue.Stop(true);
     soundCue.Dispose();
 }
開發者ID:amidos2006,項目名稱:CleanEmUp,代碼行數:5,代碼來源:SoundManager.cs

示例5: LoadContent

        /// <summary>
        /// LoadContent will be called once per game and is the place to load
        /// all of your content.
        /// </summary>
        protected override void LoadContent()
        {
            // Create a new SpriteBatch, which can be used to draw textures.
            spriteBatch = new SpriteBatch(GraphicsDevice);

            // load texture and contents
            messageFont = this.Content.Load<SpriteFont>(MessageFontContentName);
            scoreFont = this.Content.Load<SpriteFont>(ScoreFontContentName);

            laserTexture = this.Content.Load<Texture2D>(LaserContentName);
            spaceshipTexture = this.Content.Load<Texture2D>(SpaceshipContentName);
            enemy4Texture = this.Content.Load<Texture2D>(Enemy4ContentName);
            explosionTexture = this.Content.Load<Texture2D>(ExplosionsContentName);
            backgroundTexture = this.Content.Load<Texture2D>(BackgroundContentName);
            starTexture = this.Content.Load<Texture2D>(ParallaxStarContentName);
            //bgmEffect = this.Content.Load<SoundEffect>(BgmContentName);
            bgmEffect = this.Content.Load<SoundEffect>(this.settings.BgmSoundEffect);
            explosionSoundEffect = this.Content.Load<SoundEffect>(ExplosionSoundContentName);
            explosionSound = explosionSoundEffect.CreateInstance();
            explosionSound.Volume = 1.0F;

            laserSoundEffect = this.Content.Load<SoundEffect>(LaserSoundContentName);
            laserSound = laserSoundEffect.CreateInstance();
            laserSound.Volume = 1.0F;

            // create sprites
            spaceshipSprite = new SpaceshipSprite(spaceshipTexture);
            backgroundSprite = new BackgroundSprite(backgroundTexture, graphics);

            // create sprite generators
            enemyGenerator =
                new SpriteGenerator<EnemySprite>(
                    () =>
                        new EnemySprite(enemy4Texture,
                            new Vector2(Utils.GetRandomNumber(1, GraphicsDevice.Viewport.Width - enemy4Texture.Width), 1),
                            Utils.GetRandomNumber(5, 10)), enemyPool, TimeSpan.FromMilliseconds(1000.0F/settings.NumOfEnemiesPerSecond));

            starGenerator =
                new SpriteGenerator<ParallaxStarSprite>(() => new ParallaxStarSprite(starTexture, new Vector2(
                    Utils.GetRandomNumber(1,
                        GraphicsDevice.Viewport.Width - starTexture.Width), 1), Utils.GetRandomNumber(5, 20)), starPool,
                    TimeSpan.FromMilliseconds(100));

            gameOverScene = new GameOverScene(this, () => !spaceshipSprite.IsActive, () =>
            {
                this.enemyPool.Clear();
                this.laserPool.Clear();
                this.explosionPool.Clear();

                this.enemyGenerator.IsActive = false;

                if (explosionSound != null && !explosionSound.IsDisposed)
                {
                    explosionSound.Stop(true);
                    explosionSound.Dispose();
                }
                if (laserSound != null && !laserSound.IsDisposed)
                {
                    laserSound.Stop(true);
                    laserSound.Dispose();
                }
                bgmEffect.Dispose();
            }) {IsActive = !settings.LiveForever};

            var bgm = bgmEffect.CreateInstance();
            bgm.IsLooped = true;
            bgm.Play();
        }
開發者ID:daxnet,項目名稱:Starwar,代碼行數:72,代碼來源:StarwarGame.cs


注:本文中的Microsoft.Xna.Framework.Audio.SoundEffectInstance.Dispose方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。