Skip to content

Instantly share code, notes, and snippets.

@kyubuns
Last active May 19, 2021 00:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kyubuns/0edc9cceebbf52cd1af5ccb05fc9c34e to your computer and use it in GitHub Desktop.
Save kyubuns/0edc9cceebbf52cd1af5ccb05fc9c34e to your computer and use it in GitHub Desktop.
/*
AddressableWrapper
MIT License
Copyright (c) 2021 kyubuns
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 System.Linq;
using System.Threading;
using Cysharp.Threading.Tasks;
using UnityEditor;
namespace KyubunsSandbox.Editor
{
public static class AddressableLoaderMenu
{
private static string PlayerPrefsKey => $"{PlayerSettings.productName}.Addressable";
private const int Default = 0;
private const int Fast = 1;
private const int Slow = 2;
[InitializeOnEnterPlayMode]
private static void InitAddressableLoader(EnterPlayModeOptions options)
{
var v = EditorPrefs.GetInt(PlayerPrefsKey, 0);
if (v == Default) AddressableWrapper.AddressableLoader = new AddressableWrapper.DefaultAddressableLoader();
if (v == Fast) AddressableWrapper.AddressableLoader = new EditorOptimizedAddressable();
if (v == Slow) AddressableWrapper.AddressableLoader = new EditorSlowAddressable();
}
public class EditorOptimizedAddressable : AddressableWrapper.IAddressableLoader
{
public UniTask<IDisposableAsset<TObject>> LoadAssetAsync<TObject>(string address, CancellationToken cancellationToken) where TObject : UnityEngine.Object
{
return LoadAssetInternal<TObject>(address, cancellationToken);
}
public static UniTask<IDisposableAsset<TObject>> LoadAssetInternal<TObject>(string address, CancellationToken cancellationToken) where TObject : UnityEngine.Object
{
foreach (var entity in UnityEditor.AddressableAssets.AddressableAssetSettingsDefaultObject.Settings.groups.SelectMany(x => x.entries))
{
if (entity.address == address)
{
return UniTask.FromResult<IDisposableAsset<TObject>>(new DisposableAsset<TObject>((TObject) entity.TargetAsset, () => { }));
}
}
throw new Exception($"{address} is not found");
}
}
public class EditorSlowAddressable : AddressableWrapper.IAddressableLoader
{
public async UniTask<IDisposableAsset<TObject>> LoadAssetAsync<TObject>(string address, CancellationToken cancellationToken) where TObject : UnityEngine.Object
{
await UniTask.Delay(TimeSpan.FromSeconds(UnityEngine.Random.Range(0f, 1f)));
return await EditorOptimizedAddressable.LoadAssetInternal<TObject>(address, cancellationToken);
}
}
[MenuItem("Addressable/Default")]
public static void AddressableDefault() => EditorPrefs.SetInt(PlayerPrefsKey, Default);
[MenuItem("Addressable/Fast")]
public static void AddressableFast() => EditorPrefs.SetInt(PlayerPrefsKey, Fast);
[MenuItem("Addressable/Slow")]
public static void AddressableSlow() => EditorPrefs.SetInt(PlayerPrefsKey, Slow);
[MenuItem("Addressable/Default", true)]
public static bool AddressableDefaultValidate()
{
var v = EditorPrefs.GetInt(PlayerPrefsKey, 0);
Menu.SetChecked("Addressable/Default", v == Default);
Menu.SetChecked("Addressable/Fast", v == Fast);
Menu.SetChecked("Addressable/Slow", v == Slow);
return true;
}
}
}
/*
AddressableWrapper
MIT License
Copyright (c) 2021 kyubuns
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 System.Threading;
using Cysharp.Threading.Tasks;
using JetBrains.Annotations;
using UnityEngine.AddressableAssets;
using UnityEngine.ResourceManagement.AsyncOperations;
namespace KyubunsSandbox
{
public static class AddressableWrapper
{
private static IAddressableLoader _addressableLoader;
public static IAddressableLoader AddressableLoader
{
get => _addressableLoader ?? (_addressableLoader = new DefaultAddressableLoader());
set => _addressableLoader = value;
}
[MustUseReturnValue]
public static UniTask<IDisposableAsset<TObject>> Load<TObject>(string address, CancellationToken cancellationToken) where TObject : UnityEngine.Object
{
return AddressableLoader.LoadAssetAsync<TObject>(address, cancellationToken);
}
public interface IAddressableLoader
{
UniTask<IDisposableAsset<TObject>> LoadAssetAsync<TObject>(string address, CancellationToken cancellationToken) where TObject : UnityEngine.Object;
}
public class DefaultAddressableLoader : IAddressableLoader
{
public async UniTask<IDisposableAsset<TObject>> LoadAssetAsync<TObject>(string address, CancellationToken cancellationToken) where TObject : UnityEngine.Object
{
var handle = Addressables.LoadAssetAsync<TObject>(address);
await handle.ToUniTask(cancellationToken: cancellationToken);
if (handle.Status == AsyncOperationStatus.Succeeded)
{
return new DisposableAsset<TObject>(handle.Result, () => Addressables.Release(handle));
}
throw new Exception($"Failed to load {address} {handle.Status}");
}
}
}
public interface IDisposableAsset<out T> : IDisposable
{
T Value { get; }
}
public class DisposableAsset<T> : IDisposableAsset<T>
{
public T Value { get; }
private bool _disposed;
private readonly Action _dispose;
public DisposableAsset(T value, Action dispose)
{
Value = value;
_dispose = dispose;
}
public void Dispose()
{
if (_disposed) return;
_disposed = true;
_dispose();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment