⭐ Unity 封装工具类 在非主线程中调用主线程的逻辑

① UnityMainThreadDispatcher作为工具类,用于在非主线程中将任务调度到主线程执行
using System;
using System.Collections.Generic;
using UnityEngine;

public class UnityMainThreadDispatcher : MonoBehaviour
{
    // 用于存储需要在主线程中执行的任务队列
    private static readonly Queue<Action> _executionQueue = new Queue<Action>();

    // 单例实例
    private static UnityMainThreadDispatcher _instance = null;

    // 获取单例实例的方法
    public static UnityMainThreadDispatcher Instance()
    {
        // 如果实例为空,尝试在场景中查找
        if (_instance == null)
        {
            _instance = FindObjectOfType<UnityMainThreadDispatcher>();

            // 如果场景中没有找到,创建一个新的 GameObject 并附加此脚本
            if (_instance == null)
            {
                _instance = new GameObject("UnityMainThreadDispatcher").AddComponent<UnityMainThreadDispatcher>();
            }
        }

        return _instance;
    }

    // 每帧调用,用于执行队列中的任务
    private void Update()
    {
        // 使用锁确保线程安全
        lock (_executionQueue)
        {
            // 遍历队列并执行所有任务
            while (_executionQueue.Count > 0)
            {
                _executionQueue.Dequeue().Invoke();
            }
        }
    }

    // 将任务添加到队列中
    public void Enqueue(Action action)
    {
        // 使用锁确保线程安全
        lock (_executionQueue)
        {
            _executionQueue.Enqueue(action);
        }
    }

    // 在场景加载前初始化单例实例
    [RuntimeInitializeOnLoadMethod(RuntimeInitializeLoadType.BeforeSceneLoad)]
    private static void Initialize()
    {
        // 调用 Instance() 方法以确保实例被创建
        Instance();
    }
}
  使用示例脚本:
  1. 在 Start 中创建一个新线程并启动,模拟在非主线程中执行任务。
  2. DoWork() 方法
    这是一个在非主线程中运行的方法。它模拟了一些耗时操作(如 Thread.Sleep(1000)),然后通过 UnityMainThreadDispatcher 将任务添加到主线程队列中。
using System.Threading;
using UnityEngine;

public class Example : MonoBehaviour
{
    void Start()
    {
        // 创建一个新线程并启动
        Thread thread = new Thread(DoWork);
        thread.Start();
    }

    void DoWork()
    {
        // 模拟一些耗时操作
        Thread.Sleep(1000);

        // 将任务添加到主线程队列中
        UnityMainThreadDispatcher.Instance().Enqueue(() =>
        {
            Debug.Log("This is executed on the main thread.");
            Debug.Log("GameObject active state: " + gameObject.activeSelf);
        });
    }
}

感谢大家的观看,您的点赞和关注是我最大的动力

不定时更新知识点和干货呦~

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值