游戏主线程工作队列

作者:追风剑情 发布于:2024-7-25 11:27 分类:Unity3d

  1. using System;
  2. using System.Diagnostics;
  3. using System.Collections.Concurrent;
  4. using System.Threading;
  5. using UnityEngine;
  6. /// <summary>
  7. /// Unity主线程工作队列
  8. /// </summary>
  9. public class UnityWorkQueue : MonoBehaviour
  10. {
  11. private Thread _mainAppThread = null;
  12. private readonly ConcurrentQueue<Action> _mainThreadWorkQueue = new ConcurrentQueue<Action>();
  13.  
  14. public bool IsMainAppThread
  15. {
  16. get
  17. {
  18. UnityEngine.Debug.Assert(_mainAppThread != null, "This method can only be called once the object is awake.");
  19. return Thread.CurrentThread == _mainAppThread;
  20. }
  21. }
  22.  
  23. [Conditional("UNITY_ASSERTIONS")]
  24. public void EnsureIsMainAppThread()
  25. {
  26. UnityEngine.Debug.Assert(IsMainAppThread, "This method can only be called from the main Unity application thread.");
  27. }
  28.  
  29. protected virtual void Awake()
  30. {
  31. // Awake()方法总是从Unity主线程调用(the main Unity app thread)
  32. _mainAppThread = Thread.CurrentThread;
  33. }
  34.  
  35. protected virtual void Update()
  36. {
  37. if (_mainThreadWorkQueue.TryDequeue(out Action workload))
  38. {
  39. workload();
  40. }
  41. }
  42.  
  43. public void InvokeOnAppThread(Action action)
  44. {
  45. if (_mainAppThread != null && IsMainAppThread)
  46. {
  47. action();
  48. }
  49. else
  50. {
  51. _mainThreadWorkQueue.Enqueue(action);
  52. }
  53. }
  54. }

标签: Unity3d

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号