EntryLoadCfg_Client.cs 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. using System;
  5. using YooAsset;
  6. using ET.EventType;
  7. using System.Threading.Tasks;
  8. namespace ET
  9. {
  10. [Event]
  11. public class EntryLoadCfg_Client : BEvent<ET.EventType.EntryLoadCfg>
  12. {
  13. protected override async ETTask OnEvent(EntryLoadCfg args)
  14. {
  15. Dictionary<Type, byte[]> configBytes = new Dictionary<Type, byte[]>();
  16. HashSet<Type> configTypes = EventSystem.Instance.GetTypes(typeof(ConfigAttribute));
  17. foreach (Type configType in configTypes)
  18. {
  19. var op = await YooAssetProxy.GetRawFileAsync(configType.Name);
  20. var cfg = op.GetRawBytes();
  21. if (cfg != null)
  22. {
  23. configBytes[configType] = cfg;
  24. Log.Debug($"load config {configType} ok.");
  25. }
  26. else
  27. {
  28. Log.Error($"load config {configType} failed.");
  29. }
  30. }
  31. var listTasks = ListComponent<Task>.Create();
  32. foreach (Type type in configBytes.Keys)
  33. {
  34. byte[] oneConfigBytes = configBytes[type];
  35. Task task = Task.Run(() => LoadOneInThread(type, oneConfigBytes));
  36. listTasks.Add(task);
  37. }
  38. await Task.WhenAll(listTasks.ToArray());
  39. Log.Debug("register all config ok");
  40. }
  41. private void LoadOneInThread(Type configType, byte[] oneConfigBytes)
  42. {
  43. object category = SerializeHelper.Deserialize(configType, oneConfigBytes, 0, oneConfigBytes.Length);
  44. (category as ISingleton).Register();
  45. Log.Debug($"Deserialize: {configType} ok");
  46. }
  47. }
  48. }