| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
-
- namespace YooAsset
- {
- public class RawFileHandle : HandleBase
- {
- private System.Action<RawFileHandle> _callback;
- internal RawFileHandle(ProviderOperation provider) : base(provider)
- {
- }
- internal override void InvokeCallback()
- {
- _callback?.Invoke(this);
- }
- /// <summary>
- /// 完成委托
- /// </summary>
- public event System.Action<RawFileHandle> Completed
- {
- add
- {
- if (IsValidWithWarning == false)
- throw new System.Exception($"{nameof(RawFileHandle)} is invalid");
- if (Provider.IsDone)
- value.Invoke(this);
- else
- _callback += value;
- }
- remove
- {
- if (IsValidWithWarning == false)
- throw new System.Exception($"{nameof(RawFileHandle)} is invalid");
- _callback -= value;
- }
- }
- /// <summary>
- /// 等待异步执行完毕
- /// </summary>
- public void WaitForAsyncComplete()
- {
- if (IsValidWithWarning == false)
- return;
- Provider.WaitForAsyncComplete();
- }
- /// <summary>
- /// 获取原生文件的二进制数据
- /// </summary>
- public byte[] GetRawFileData()
- {
- if (IsValidWithWarning == false)
- return null;
- return Provider.BundleResultObject.ReadBundleFileData();
- }
- /// <summary>
- /// 获取原生文件的文本数据
- /// </summary>
- public string GetRawFileText()
- {
- if (IsValidWithWarning == false)
- return null;
- return Provider.BundleResultObject.ReadBundleFileText();
- }
- /// <summary>
- /// 获取原生文件的路径
- /// </summary>
- public string GetRawFilePath()
- {
- if (IsValidWithWarning == false)
- return string.Empty;
- return Provider.BundleResultObject.GetBundleFilePath();
- }
- }
- }
|