7502018d20
There is an asset in the store I grabbed. the coding is WAY above my head, I got about half of it and integrated and adapted what I can to it. im going as far as I can with it and ill come back in a few month when I understand t better.
86 lines
2.6 KiB
C#
86 lines
2.6 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
namespace UnityEditor.AddressableAssets.Build.AnalyzeRules
|
|
{
|
|
/// <summary>
|
|
/// Represents the data acquired after analyzing Addressable assets.
|
|
/// </summary>
|
|
[Obsolete("This has been made obsolete and is no longer functional. Analyze result data is handled internally.")]
|
|
public class AnalyzeResultData : ScriptableObject, ISerializationCallbackReceiver
|
|
{
|
|
/// <summary>
|
|
/// Retrieves serialized data after a domain reload.
|
|
/// </summary>
|
|
public void OnAfterDeserialize()
|
|
{
|
|
//Do nothing
|
|
}
|
|
|
|
/// <summary>
|
|
/// Converts our data to a serialized structure before a domain reload.
|
|
/// </summary>
|
|
public void OnBeforeSerialize()
|
|
{
|
|
//Do nothing
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Represents the data acquired after analyzing Addressable assets.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class AddressablesAnalyzeResultData : ISerializationCallbackReceiver
|
|
{
|
|
[Serializable]
|
|
private class RuleToResults
|
|
{
|
|
[SerializeField] public string RuleName;
|
|
[SerializeField] public List<AnalyzeRule.AnalyzeResult> Results;
|
|
|
|
public RuleToResults(string ruleName, List<AnalyzeRule.AnalyzeResult> results)
|
|
{
|
|
RuleName = ruleName;
|
|
Results = results;
|
|
}
|
|
}
|
|
|
|
[SerializeField] private List<RuleToResults> m_RuleToResults = new List<RuleToResults>();
|
|
|
|
internal Dictionary<string, List<AnalyzeRule.AnalyzeResult>> Data =
|
|
new Dictionary<string, List<AnalyzeRule.AnalyzeResult>>();
|
|
|
|
/// <summary>
|
|
/// Retrieves serialized data after a domain reload.
|
|
/// </summary>
|
|
public void OnAfterDeserialize()
|
|
{
|
|
for (int i = 0; i < m_RuleToResults.Count; i++)
|
|
Data.Add(m_RuleToResults[i].RuleName, m_RuleToResults[i].Results);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Converts our data to a serialized structure before a domain reload.
|
|
/// </summary>
|
|
public void OnBeforeSerialize()
|
|
{
|
|
m_RuleToResults.Clear();
|
|
|
|
foreach (var key in Data.Keys)
|
|
m_RuleToResults.Add(new RuleToResults(key, Data[key]));
|
|
}
|
|
|
|
internal void Clear(AnalyzeRule rule)
|
|
{
|
|
Clear(rule.ruleName);
|
|
}
|
|
|
|
internal void Clear(string ruleName)
|
|
{
|
|
if (Data.ContainsKey(ruleName))
|
|
Data[ruleName].Clear();
|
|
}
|
|
}
|
|
}
|