ShaderGraphAnalytics.cs 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. using System.Collections.Generic;
  2. using System.Linq;
  3. using UnityEngine.Analytics;
  4. using UnityEngine;
  5. namespace UnityEditor.ShaderGraph
  6. {
  7. class ShaderGraphAnalytics
  8. {
  9. static bool s_EventRegistered = false;
  10. const int k_MaxEventsPerHour = 1000;
  11. const int k_MaxNumberOfElements = 1000;
  12. const string k_VendorKey = "unity.shadergraph";
  13. const string k_EventName = "uShaderGraphUsage";
  14. static bool EnableAnalytics()
  15. {
  16. AnalyticsResult result = EditorAnalytics.RegisterEventWithLimit(k_EventName, k_MaxEventsPerHour, k_MaxNumberOfElements, k_VendorKey);
  17. if (result == AnalyticsResult.Ok)
  18. s_EventRegistered = true;
  19. return s_EventRegistered;
  20. }
  21. struct AnalyticsData
  22. {
  23. public string nodes;
  24. public int node_count;
  25. public string asset_guid;
  26. public int subgraph_count;
  27. }
  28. internal static void SendShaderGraphEvent(string assetGuid, GraphData graph)
  29. {
  30. //The event shouldn't be able to report if this is disabled but if we know we're not going to report
  31. //Lets early out and not waste time gathering all the data
  32. if (!EditorAnalytics.enabled)
  33. return;
  34. if (!EnableAnalytics())
  35. return;
  36. Dictionary<string, int> nodeTypeAndCount = new Dictionary<string, int>();
  37. var nodes = graph.GetNodes<AbstractMaterialNode>();
  38. int subgraphCount = 0;
  39. foreach (var materialNode in nodes)
  40. {
  41. string nType = materialNode.GetType().ToString().Split('.').Last();
  42. if (nType == "SubGraphNode")
  43. {
  44. subgraphCount += 1;
  45. }
  46. if (!nodeTypeAndCount.ContainsKey(nType))
  47. {
  48. nodeTypeAndCount[nType] = 1;
  49. }
  50. else
  51. {
  52. nodeTypeAndCount[nType] += 1;
  53. }
  54. }
  55. var jsonRepr = DictionaryToJson(nodeTypeAndCount);
  56. var data = new AnalyticsData()
  57. {
  58. nodes = jsonRepr,
  59. node_count = nodes.Count(),
  60. asset_guid = assetGuid,
  61. subgraph_count = subgraphCount
  62. };
  63. EditorAnalytics.SendEventWithLimit(k_EventName, data);
  64. }
  65. static string DictionaryToJson(Dictionary<string, int> dict)
  66. {
  67. var entries = dict.Select(d => $"\"{d.Key}\":{string.Join(",", d.Value)}");
  68. return "{" + string.Join(",", entries) + "}";
  69. }
  70. }
  71. }