2022-02-23 05:14:32 +00:00
|
|
|
|
using System;
|
2021-02-27 00:17:26 +00:00
|
|
|
|
|
|
|
|
|
namespace MoonWorks.Audio
|
|
|
|
|
{
|
2022-02-23 05:14:32 +00:00
|
|
|
|
public abstract class AudioResource : IDisposable
|
|
|
|
|
{
|
|
|
|
|
public AudioDevice Device { get; }
|
|
|
|
|
|
|
|
|
|
public bool IsDisposed { get; private set; }
|
|
|
|
|
|
|
|
|
|
private WeakReference<AudioResource> selfReference;
|
|
|
|
|
|
|
|
|
|
public AudioResource(AudioDevice device)
|
|
|
|
|
{
|
|
|
|
|
Device = device;
|
|
|
|
|
|
|
|
|
|
selfReference = new WeakReference<AudioResource>(this);
|
|
|
|
|
Device.AddResourceReference(selfReference);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected abstract void Destroy();
|
|
|
|
|
|
|
|
|
|
protected virtual void Dispose(bool disposing)
|
|
|
|
|
{
|
|
|
|
|
if (!IsDisposed)
|
|
|
|
|
{
|
|
|
|
|
Destroy();
|
|
|
|
|
|
|
|
|
|
if (selfReference != null)
|
|
|
|
|
{
|
|
|
|
|
Device.RemoveResourceReference(selfReference);
|
|
|
|
|
selfReference = null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
IsDisposed = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
~AudioResource()
|
|
|
|
|
{
|
|
|
|
|
// Do not change this code. Put cleanup code in 'Dispose(bool disposing)' method
|
|
|
|
|
Dispose(disposing: false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
|
{
|
|
|
|
|
// Do not change this code. Put cleanup code in 'Dispose(bool disposing)' method
|
|
|
|
|
Dispose(disposing: true);
|
|
|
|
|
GC.SuppressFinalize(this);
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-02-27 00:17:26 +00:00
|
|
|
|
}
|