ccl4/blueberryPeak/Assets/Wwise/ProjectDatabase/Runtime/Handwritten/Common/WwiseSoundBankRef.cs
AgentSchmisch 9144907a10 ANGST
2025-06-12 18:45:34 +02:00

93 lines
3.4 KiB
C#

/*******************************************************************************
The content of this file includes portions of the proprietary AUDIOKINETIC Wwise
Technology released in source code form as part of the game integration package.
The content of this file may not be used without valid licenses to the
AUDIOKINETIC Wwise Technology.
Note that the use of the game engine is subject to the Unity(R) Terms of
Service at https://unity3d.com/legal/terms-of-service
License Usage
Licensees holding valid licenses to the AUDIOKINETIC Wwise Technology may use
this file in accordance with the end user license agreement provided with the
software or, alternatively, in accordance with the terms contained
in a written agreement between you and Audiokinetic Inc.
Copyright (c) 2025 Audiokinetic Inc.
*******************************************************************************/
#if UNITY_EDITOR
public class WwiseSoundBankRef: global::System.IDisposable
{
private global::System.IntPtr swigCPtr;
protected bool swigCMemOwn;
internal WwiseSoundBankRef(global::System.IntPtr cPtr, bool cMemoryOwn)
{
swigCMemOwn = cMemoryOwn;
swigCPtr = cPtr;
Medias = new WwiseMediaRefArray(cPtr);
Events = new WwiseEventRefArray(cPtr);
}
internal static global::System.IntPtr getCPtr(WwiseSoundBankRef obj)
{
return (obj == null) ? global::System.IntPtr.Zero : obj.swigCPtr;
}
internal virtual void setCPtr(global::System.IntPtr cPtr)
{
Dispose();
swigCPtr = cPtr;
}
~WwiseSoundBankRef()
{
Dispose(false);
}
public void Dispose()
{
Dispose(true);
global::System.GC.SuppressFinalize(this);
}
protected virtual void Dispose(bool disposing)
{
lock (this)
{
if (swigCPtr != global::System.IntPtr.Zero)
{
if (swigCMemOwn)
{
swigCMemOwn = false;
WwiseProjectDatabase.DeleteSoundBankRef(swigCPtr);
}
swigCPtr = global::System.IntPtr.Zero;
}
global::System.GC.SuppressFinalize(this);
}
}
public WwiseSoundBankRef(global::System.IntPtr cPtr) : this(cPtr, true)
{
}
public WwiseSoundBankRef(string soundBankName, string soundBankType) : this(WwiseProjectDatabase.GetSoundBankRefString(soundBankName, soundBankType), true)
{
}
public string Name => WwiseProjectDatabase.GetSoundBankName(swigCPtr);
public string Path => WwiseProjectDatabase.GetSoundBankPath(swigCPtr);
public string Language => WwiseProjectDatabase.GetSoundBankLanguage(swigCPtr);
public uint LanguageId => WwiseProjectDatabase.GetSoundBankLanguageId(swigCPtr);
public System.IntPtr Guid => WwiseProjectDatabase.GetSoundBankGuid(swigCPtr);
public uint ShortId => WwiseProjectDatabase.GetSoundBankShortId(swigCPtr);
public bool IsUserBank => WwiseProjectDatabase.IsUserBank(swigCPtr);
public bool IsInitBank => WwiseProjectDatabase.IsInitBank(swigCPtr);
public bool IsValid => WwiseProjectDatabase.IsSoundBankValid(swigCPtr);
public WwiseMediaRefArray Medias { get; }
public uint MediasCount => WwiseProjectDatabase.GetSoundBankMediasCount(swigCPtr);
public WwiseEventRefArray Events { get; }
public uint EventsCount => WwiseProjectDatabase.GetSoundBankEventsCount(swigCPtr);
}
#endif