-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathPartnerAssetsManager.cs
137 lines (114 loc) · 4.77 KB
/
PartnerAssetsManager.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Newtonsoft.Json;
using ReadyPlayerMe.Core;
using UnityEngine;
namespace ReadyPlayerMe.AvatarCreator
{
/// <summary>
/// For downloading and filtering all partner assets.
/// </summary>
public class PartnerAssetsManager : IDisposable
{
private const string TAG = nameof(PartnerAssetsManager);
private const string EYE_MASK_SIZE_SIZE = "?w=256";
private const string ASSET_ICON_SIZE = "?w=64";
private readonly AssetsApi assetsApi;
private Dictionary<Category, List<PartnerAsset>> assetsByCategory;
public Action<string> OnError { get; set; }
public PartnerAssetsManager()
{
assetsApi = new AssetsApi(CoreSettingsHandler.CoreSettings.AppId);
assetsByCategory = new Dictionary<Category, List<PartnerAsset>>();
}
public async Task<Dictionary<Category,List<PartnerAsset>>> GetAssets(BodyType bodyType, OutfitGender gender, CancellationToken token = default)
{
var startTime = Time.time;
var assets = await assetsApi.Get(bodyType, gender, token);
assetsByCategory = assets.GroupBy(asset => asset.Category).ToDictionary(
group => group.Key,
group => group.ToList()
);
if (assets.Length != 0)
{
SDKLogger.Log(TAG, $"All assets received: {Time.time - startTime:F2}s");
}
return assetsByCategory;
}
public List<string> GetAssetsByCategory(Category category)
{
return assetsByCategory.TryGetValue(category, out List<PartnerAsset> _) ? assetsByCategory[category].Select(x => x.Id).ToList() : new List<string>();
}
public async Task DownloadIconsByCategory(Category category, Action<string, Texture> onDownload, CancellationToken token = default)
{
var startTime = Time.time;
var chunkList = assetsByCategory[category].ChunkBy(20);
foreach (var list in chunkList)
{
try
{
await DownloadIcons(list, onDownload, token);
SDKLogger.Log(TAG, $"Download chunk of {category} icons: " + (Time.time - startTime) + "s");
}
catch (Exception e)
{
OnError?.Invoke(e.Message);
return;
}
if (token.IsCancellationRequested)
{
return;
}
await Task.Yield();
}
}
public bool IsLockedAssetCategories(Category category, string id)
{
if (!assetsByCategory.ContainsKey(category))
{
return false;
}
var asset = assetsByCategory[category].FirstOrDefault(x => x.Id == id);
return asset.LockedCategories != null && asset.LockedCategories.Length > 0;
}
private async Task DownloadIcons(List<PartnerAsset> chunk, Action<string, Texture> onDownload, CancellationToken token = default)
{
var assetIconMap = new Dictionary<string, Task<Texture>>();
foreach (var asset in chunk)
{
var url = asset.Category == Category.EyeColor ? asset.Mask + EYE_MASK_SIZE_SIZE : asset.Icon + ASSET_ICON_SIZE;
var linkedTokenSource = CancellationTokenSource.CreateLinkedTokenSource(token);
var iconTask = ImageApi.DownloadImageAsync(url, icon =>
{
onDownload?.Invoke(asset.Id, icon);
},
linkedTokenSource.Token);
assetIconMap.Add(asset.Id, iconTask);
}
while (!assetIconMap.Values.All(x => x.IsCompleted) && !token.IsCancellationRequested)
{
await Task.Yield();
}
}
public void DeleteAssets()
{
assetsByCategory.Clear();
}
public void Dispose() => DeleteAssets();
public PrecompileData GetPrecompileData(Category[] categories, int numberOfAssetsPerCategory)
{
var categoriesFromMap = CategoryHelper.PartnerCategoryMap
.Where(kvp => categories.Contains(kvp.Value))
.Select(kvp => kvp.Key)
.ToArray();
var dictionary = categoriesFromMap.ToDictionary(category => category, category =>
GetAssetsByCategory(CategoryHelper.PartnerCategoryMap[category])
.Take(numberOfAssetsPerCategory)
.ToArray());
return new PrecompileData { data = dictionary };
}
}
}