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

81 lines
2.7 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 WwiseMediaRef: global::System.IDisposable
{
private global::System.IntPtr swigCPtr;
protected bool swigCMemOwn;
internal WwiseMediaRef(global::System.IntPtr cPtr, bool cMemoryOwn)
{
swigCMemOwn = cMemoryOwn;
swigCPtr = cPtr;
}
internal static global::System.IntPtr getCPtr(WwiseMediaRef obj)
{
return (obj == null) ? global::System.IntPtr.Zero : obj.swigCPtr;
}
internal virtual void setCPtr(global::System.IntPtr cPtr)
{
Dispose();
swigCPtr = cPtr;
}
~WwiseMediaRef()
{
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.DeleteMediaRef(swigCPtr);
}
swigCPtr = global::System.IntPtr.Zero;
}
global::System.GC.SuppressFinalize(this);
}
}
public WwiseMediaRef(global::System.IntPtr cPtr) : this(cPtr, true)
{
}
public string Name => WwiseProjectDatabase.GetMediaName(swigCPtr);
public string Path => WwiseProjectDatabase.GetMediaPath(swigCPtr);
public uint ShortId => WwiseProjectDatabase.GetMediaShortId(swigCPtr);
public string Language => WwiseProjectDatabase.GetMediaLanguage(swigCPtr);
public bool IsStreaming => WwiseProjectDatabase.GetMediaIsStreaming(swigCPtr);
public uint Location => WwiseProjectDatabase.GetMediaLocation(swigCPtr);
public string CachePath => WwiseProjectDatabase.GetMediaCachePath(swigCPtr);
}
#endif