Пример #1
0
 /// <summary>
 /// Creates a new factory initialized with variable volume and pitch for
 /// a 3D voice.
 /// </summary>
 /// <param name="volume">
 /// The volume of the audio. A variation of 0.1f will be applied to it.
 /// </param>
 /// <param name="pitch">
 /// The pitch of the audio. A variation of 0.1f will be applied to it.
 /// </param>
 /// <returns>The factory to modify.</returns>
 public static Factory Variable3D(float volume = 0.9f, float pitch = 1)
 {
     return(new Factory()
            .Volume(FloatVariance.Variance(volume, 0.1f))
            .Pitch(FloatVariance.Variance(pitch, 0.1f))
            .SpatialBlend(FloatVariance.Const(1)));
 }
Пример #2
0
 /// <summary>
 /// Creates a new factory initialized with constant volume and pitch for
 /// a 3D voice.
 /// </summary>
 /// <param name="volume">The volume of the audio.</param>
 /// <param name="pitch">The pitch of the audio.</param>
 /// <returns>The factory to modify.</returns>
 public static Factory Const3D(float volume = 1, float pitch = 1)
 {
     return(new Factory()
            .Volume(FloatVariance.Const(volume))
            .Pitch(FloatVariance.Const(pitch))
            .SpatialBlend(FloatVariance.Const(1)));
 }
Пример #3
0
 internal Factory(TransientParams p = null)
 {
     volume              = p?.volume ?? FloatVariance.Range(0.8f, 1.0f);
     pitch               = p?.pitch ?? FloatVariance.Variance(1.0f, 0.1f);
     normalizedTime      = p?.normalizedTime ?? FloatVariance.Const(0.0f);
     leftSilencePadding  = p?.leftSilencePadding ?? FloatVariance.Const(0.0f);
     rightSilencePadding = p?.rightSilencePadding ?? FloatVariance.Const(0.0f);
     panStereo           = p?.panStereo ?? FloatVariance.Const(0.0f);
     spatialBlend        = p?.spatialBlend ?? FloatVariance.Const(0.0f);
     mixerGroup          = p?.mixerGroup;
 }
Пример #4
0
 private TransientParams(Factory f)
 {
     volume              = f.volume;
     pitch               = f.pitch;
     normalizedTime      = f.normalizedTime;
     leftSilencePadding  = f.leftSilencePadding;
     rightSilencePadding = f.rightSilencePadding;
     panStereo           = f.panStereo;
     spatialBlend        = f.spatialBlend;
     mixerGroup          = f.mixerGroup;
 }
Пример #5
0
 /// <summary>
 /// Sets how much the voice is affected by 3D spatialisation
 /// calculations. 0 makes the audio full 2D, 1 makes it full 3D.
 /// </summary>
 /// <param name="spatialBlend">
 /// The spatial blend of the voice.
 /// </param>
 /// <returns>The factory, for chaining.</returns>
 public Factory SpatialBlend(FloatVariance spatialBlend)
 {
     this.spatialBlend = spatialBlend;
     return(this);
 }
Пример #6
0
 /// <summary>
 /// Pans a playing sound in a stereo way between the left and right
 /// speakers. This only affects mono and stereo sounds. Stereo
 /// panning affects the left-right balance of the sound before it is
 /// spatialised in 3D.
 /// </summary>
 /// <param name="panStereo">
 /// The panning of the voice.
 /// </param>
 /// <returns>The factory, for chaining.</returns>
 public Factory PanStereo(FloatVariance panStereo)
 {
     this.panStereo = panStereo;
     return(this);
 }
Пример #7
0
 /// <summary>
 /// The amount of silence in seconds that should be added to the
 /// end of a voice before it is destroyed. Useful if this voice will
 /// be looped and you want to insert space between the loops after
 /// it plays once.
 /// </summary>
 /// <param name="rightSilencePadding">
 /// The amount of silence in seconds.
 /// </param>
 /// <returns>The factory, for chaining.</returns>
 public Factory RightSilencePadding(FloatVariance rightSilencePadding)
 {
     this.rightSilencePadding = rightSilencePadding;
     return(this);
 }
Пример #8
0
 /// <summary>
 /// The amount of silence in seconds that should be added to the
 /// beginning of a voice before it actually generates sound.
 /// </summary>
 /// <param name="leftSilencePadding">
 /// The amount of silence in seconds.
 /// </param>
 /// <returns>The factory, for chaining.</returns>
 public Factory LeftSilencePadding(FloatVariance leftSilencePadding)
 {
     this.leftSilencePadding = leftSilencePadding;
     return(this);
 }
Пример #9
0
 /// <summary>
 /// The normalized, initial playback position for the voice. 0 is
 /// the beginning of the audio and 1 is the end of the audio.
 /// Generated values will be wrapped to the range [0, 1). If the
 /// voice has already started playing, this parameter will have no
 /// effect.
 /// </summary>
 /// <param name="normalizedTime">
 /// The normalized playback position.
 /// </param>
 /// <returns>The factory, for chaining.</returns>
 public Factory NormalizedTime(FloatVariance normalizedTime)
 {
     this.normalizedTime = normalizedTime;
     return(this);
 }
Пример #10
0
 /// <summary>
 /// The pitch of the voice.
 /// TODO: How do changes in the pitch value map to semitone changes?
 /// </summary>
 /// <param name="time">The pitch.</param>
 /// <returns>The factory, for chaining.</returns>
 public Factory Pitch(FloatVariance pitch)
 {
     this.pitch = pitch;
     return(this);
 }
Пример #11
0
 /// <summary>
 /// The volume of the voice. 1 is the default volume of the audio
 /// and 0 is muted.
 /// </summary>
 /// <param name="volume">The volume.</param>
 /// <returns>The factory, for chaining.</returns>
 public Factory Volume(FloatVariance volume)
 {
     this.volume = volume;
     return(this);
 }