94 lines
3.9 KiB
C#
94 lines
3.9 KiB
C#
|
|
// Copyright (c) 2010-2014 SharpDX - Alexandre Mutel
|
||
|
|
//
|
||
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||
|
|
// of this software and associated documentation files (the "Software"), to deal
|
||
|
|
// in the Software without restriction, including without limitation the rights
|
||
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||
|
|
// copies of the Software, and to permit persons to whom the Software is
|
||
|
|
// furnished to do so, subject to the following conditions:
|
||
|
|
//
|
||
|
|
// The above copyright notice and this permission notice shall be included in
|
||
|
|
// all copies or substantial portions of the Software.
|
||
|
|
//
|
||
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||
|
|
// THE SOFTWARE.
|
||
|
|
using System;
|
||
|
|
using SharpDX.XAudio2;
|
||
|
|
|
||
|
|
namespace SharpDX.XAPO
|
||
|
|
{
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Implements this class to call an existing unmanaged AudioProcessor which supports parameter.
|
||
|
|
/// </summary>
|
||
|
|
/// <typeparam name="T">the parameter type of this AudioProcessor</typeparam>
|
||
|
|
public abstract partial class AudioProcessorParamNative<T> : AudioProcessorNative where T : struct
|
||
|
|
{
|
||
|
|
private readonly XAudio2.XAudio2 device;
|
||
|
|
private static readonly Guid CLSID_ParameterProvider_27 = new Guid("a90bc001-e897-e897-55e4-9e4700000001");
|
||
|
|
|
||
|
|
private ParameterProviderNative _parameterProviderNative;
|
||
|
|
private int _sizeOfParamT = Utilities.SizeOf<T>();
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Initializes a new instance of the <see cref="AudioProcessorParamNative<T>" /> class.
|
||
|
|
/// </summary>
|
||
|
|
/// <param name="device">The device.</param>
|
||
|
|
protected AudioProcessorParamNative(SharpDX.XAudio2.XAudio2 device) : base(IntPtr.Zero)
|
||
|
|
{
|
||
|
|
if (device == null) throw new ArgumentNullException("device");
|
||
|
|
this.device = device;
|
||
|
|
}
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Update the Native Pointer. Rebuild ParameterProviderNative.
|
||
|
|
/// </summary>
|
||
|
|
protected override void NativePointerUpdated(IntPtr oldPointer)
|
||
|
|
{
|
||
|
|
base.NativePointerUpdated(oldPointer);
|
||
|
|
|
||
|
|
if (NativePointer != IntPtr.Zero)
|
||
|
|
{
|
||
|
|
IntPtr parameterProviderPtr;
|
||
|
|
var guid = device.Version == XAudio2Version.Version27
|
||
|
|
? CLSID_ParameterProvider_27
|
||
|
|
: Utilities.GetGuidFromType(typeof(ParameterProvider));
|
||
|
|
QueryInterface(guid, out parameterProviderPtr);
|
||
|
|
_parameterProviderNative = new ParameterProviderNative(parameterProviderPtr);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
/// <summary>
|
||
|
|
/// Get or Set the parameters for this AudioProcessor
|
||
|
|
/// </summary>
|
||
|
|
public T Parameter
|
||
|
|
{
|
||
|
|
get
|
||
|
|
{
|
||
|
|
unsafe
|
||
|
|
{
|
||
|
|
T param = default(T);
|
||
|
|
byte* pParameters = stackalloc byte[_sizeOfParamT];
|
||
|
|
_parameterProviderNative.GetParameters(new DataStream(pParameters, _sizeOfParamT, true,true,false));
|
||
|
|
Utilities.Read((IntPtr) pParameters, ref param);
|
||
|
|
return param;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
set
|
||
|
|
{
|
||
|
|
unsafe
|
||
|
|
{
|
||
|
|
byte* pParameters = stackalloc byte[_sizeOfParamT];
|
||
|
|
Utilities.Write((IntPtr)pParameters, ref value);
|
||
|
|
_parameterProviderNative.SetParameters(new DataStream(pParameters, _sizeOfParamT, true, true, false));
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
}
|