mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-22 04:53:29 +01:00
Added RandomPitchModifier and GetRandomPitch to SoundEffectInfo
This commit is contained in:
parent
161d44dbe0
commit
bd9d3f970b
2 changed files with 25 additions and 3 deletions
|
@ -16,6 +16,7 @@ Additions
|
|||
- Added InputHandler.InvertPressBehavior
|
||||
- Added ReverseInput, ReverseOutput and AndThen to Easings
|
||||
- Added an Enum constructor to GenericInput
|
||||
- Added RandomPitchModifier and GetRandomPitch to SoundEffectInfo
|
||||
|
||||
Improvements
|
||||
- Allow comparing Keybind and Combination based on the amount of modifiers they have
|
||||
|
|
|
@ -1,29 +1,39 @@
|
|||
using System;
|
||||
using Microsoft.Xna.Framework.Audio;
|
||||
using MLEM.Extensions;
|
||||
|
||||
namespace MLEM.Sound {
|
||||
/// <summary>
|
||||
/// A sound effect info is a wrapper around <see cref="SoundEffect"/> that additionally stores <see cref="Volume"/>, <see cref="Pitch"/> and <see cref="Pan"/> information.
|
||||
/// Additionally, a <see cref="SoundEffectInstance"/> can be created using <see cref="CreateInstance"/>.
|
||||
/// Additionally, a <see cref="RandomPitchModifier"/> can be applied, a <see cref="SoundEffectInstance"/> can be created using <see cref="CreateInstance"/>, and more.
|
||||
/// </summary>
|
||||
public class SoundEffectInfo {
|
||||
|
||||
private static readonly Random Random = new Random();
|
||||
|
||||
/// <summary>
|
||||
/// The <see cref="SoundEffect"/> that is played by this info.
|
||||
/// </summary>
|
||||
public readonly SoundEffect Sound;
|
||||
|
||||
/// <summary>
|
||||
/// Volume, ranging from 0.0 (silence) to 1.0 (full volume). Volume during playback is scaled by SoundEffect.MasterVolume.
|
||||
/// </summary>
|
||||
public float Volume;
|
||||
/// <summary>
|
||||
/// Pitch adjustment, ranging from -1.0 (down an octave) to 0.0 (no change) to 1.0 (up an octave).
|
||||
/// To incorporate <see cref="RandomPitchModifier"/>, you can use <see cref="GetRandomPitch"/>.
|
||||
/// </summary>
|
||||
public float Pitch;
|
||||
/// <summary>
|
||||
/// Pan value ranging from -1.0 (left speaker) to 0.0 (centered), 1.0 (right speaker).
|
||||
/// </summary>
|
||||
public float Pan;
|
||||
/// <summary>
|
||||
/// A value that allows randomly modifying <see cref="Pitch"/> every time <see cref="Play"/> or <see cref="CreateInstance"/> are used.
|
||||
/// The random modifier that is added onto <see cref="Pitch"/> will be between -<see cref="RandomPitchModifier"/> and <see cref="RandomPitchModifier"/>.
|
||||
/// </summary>
|
||||
public float RandomPitchModifier;
|
||||
|
||||
/// <summary>
|
||||
/// Creates a new sound effect info with the given values.
|
||||
|
@ -39,12 +49,23 @@ namespace MLEM.Sound {
|
|||
this.Pan = pan;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Returns a random pitch for this sound effect info that is between <see cref="Pitch"/> - <see cref="RandomPitchModifier"/> and <see cref="Pitch"/> + <see cref="RandomPitchModifier"/>.
|
||||
/// If <see cref="RandomPitchModifier"/> is 0, this method always returns <see cref="Pitch"/>.
|
||||
/// </summary>
|
||||
/// <returns>A random pitch to use to play this sound effect</returns>
|
||||
public float GetRandomPitch() {
|
||||
if (this.RandomPitchModifier == 0)
|
||||
return this.Pitch;
|
||||
return this.Pitch + ((float) Random.NextDouble() * 2 - 1) * this.RandomPitchModifier;
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Plays this info's <see cref="Sound"/> once.
|
||||
/// </summary>
|
||||
/// <returns>False if more sounds are currently playing than the platform allows</returns>
|
||||
public bool Play() {
|
||||
return this.Sound.Play(this.Volume, this.Pitch, this.Pan);
|
||||
return this.Sound.Play(this.Volume, this.GetRandomPitch(), this.Pan);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
@ -53,7 +74,7 @@ namespace MLEM.Sound {
|
|||
/// <param name="isLooped">The value to set the returned instance's <see cref="SoundEffectInstance.IsLooped"/> to. Defaults to false.</param>
|
||||
/// <returns>A new sound effect instance, with this info's data applied</returns>
|
||||
public SoundEffectInstance CreateInstance(bool isLooped = false) {
|
||||
return this.Sound.CreateInstance(this.Volume, this.Pitch, this.Pan, isLooped);
|
||||
return this.Sound.CreateInstance(this.Volume, this.GetRandomPitch(), this.Pan, isLooped);
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue