当前位置: 首页 > article >正文

【Unity3D】ECS入门学习(九)SystemBase

SystemBase:支持主线程或多线程执行筛选实体任务。
主要介绍是内部成员:Entities的各种筛选方法,其内部成员还有EntityManager

ForEach方法筛选,传递一个有参委托函数进去,参数ref xxx组件类(可填多个)代表筛选条件。

WithAll:&& 形式筛选组件
WithAny: || 形式筛选组件
WithNone: 筛选出不带某组件的
WithChangeFilter:监听组件数据变化时触发筛选
WithSharedComponentFilter:筛选共享组件(指定特定数据)
WithStoreEntityQueryInField(ref EntityQuery对象):存储筛选结果
WithEntityQueryOptions(EntityQueryOptions):
        EntityQueryOptions.FilterWriteGroup:筛选带[WriteGroup(typeof(xxx))特性的组件
        EntityQueryOptions.IncludeDisabled:具有Disabled(已禁用)组件的实体
        EntityQueryOptions.IncludePrefab:具有Prefab组件的实体
WithoutBurst:不使用Burst编译
WithBurst:使用Burst编译

Run:主线程(单线程执行)
Schedule:多线程并发
ScheduleParallel:多线程并行

using System.Collections;
using System.Collections.Generic;
using Unity.Collections;
using Unity.Entities;
using Unity.Mathematics;
using Unity.Transforms;
using UnityEngine;
/// <summary>
/// 可操作主线程或多线程; ComponentSystem单线程 JobComponentSystem多线程
/// </summary>
public class MySystemBase : SystemBase
{
    EntityQuery query;
    //以下方法从上到下按顺序执行
    protected override void OnCreate()
    {
        Debug.Log("OnCreate");
    }

    protected override void OnStartRunning()
    {
        Debug.Log("OnStartRunning");
    }

    protected override void OnUpdate()
    {
        Debug.Log("OnUpdate");

        //使用内部成员Entities遍历所有实体筛选出Translation组件的实体进行修改
        Entities.ForEach((ref Translation trans) =>
        {
            trans.Value = new Unity.Mathematics.float3(0, 5, 0);
        }).Run();


        //使用WithAll增加筛选条件,必须带有PrintTestComponentData组件的
        //使用Run()代表是主线程执行
        Entities.ForEach((ref Translation trans) =>
        {
            trans.Value = new Unity.Mathematics.float3(0, 5, 0);
        }).WithAll<PrintTestComponentData>().Run();

        //WithAny 只要带任意一个即可满足筛选
        Entities.ForEach((ref Translation trans) =>
        {
            trans.Value = new Unity.Mathematics.float3(0, 5, 0);
        }).WithAny<PrintTestComponentData>().Run();

        //WithNone 不包含xxx的
        Entities.ForEach((ref Translation trans) =>
        {
            trans.Value = new Unity.Mathematics.float3(0, 5, 0);
        }).WithNone<PrintTestComponentData>().Run();

        //WithChangeFilter 监听组件值变化时才触发方法体,参数必须带上ref PrintTestComponentData  否则会报错
        Entities.ForEach((ref Translation trans, ref PrintTestComponentData data) =>
        {
            trans.Value = new Unity.Mathematics.float3(0, 5, 0);
        }).WithChangeFilter<PrintTestComponentData>().Run();

        //WithSharedComponentFilter 筛选共享组件 特定值为2的
        Entities.ForEach((ref Translation trans) =>
        {
            trans.Value = new Unity.Mathematics.float3(0, 5, 0);
        }).WithSharedComponentFilter(new MyShareComponentData() { data = 2 }).Run();

        //存储筛选结果        
        Entities.ForEach((ref Translation trans) =>
        {
            trans.Value = new Unity.Mathematics.float3(0, 5, 0);
        }).WithStoreEntityQueryInField(ref query).Run();

        NativeArray<Entity> array = query.ToEntityArray(Unity.Collections.Allocator.TempJob);
        foreach (var v in array)
        {
            //do something
        }

        //过滤出带[WriteGroup]特性的组件实体  [WriteGroup(typeof(PrintTestComponentData))] 查询会根据查询中指定的组件的WriteGroupAttribute属性筛选所选实体
        Entities.ForEach((ref Translation trans) =>
        {
            trans.Value = new Unity.Mathematics.float3(0, 5, 0);
        }).WithEntityQueryOptions(EntityQueryOptions.FilterWriteGroup).Run();

        //过滤出带[DisableAutoCreation]特性的组件实体  该查询不会隐式的排除具有Disabled(已禁用)组件的实体
        Entities.ForEach((ref Translation trans) =>
        {
            trans.Value = new Unity.Mathematics.float3(0, 5, 0);
        }).WithEntityQueryOptions(EntityQueryOptions.IncludeDisabled).Run();

        //过滤出预制体实体  [DisableAutoCreation]  该查询不会隐式的排除具有Prefab组件的实体
        Entities.ForEach((ref Translation trans) =>
        {
            trans.Value = new Unity.Mathematics.float3(0, 5, 0);
        }).WithEntityQueryOptions(EntityQueryOptions.IncludePrefab).Run();

        //Schedule 多线程并发执行 ; WithoutBurst 不使用Burst编译
        Entities.ForEach((ref Translation trans) =>
        {
            trans.Value = new Unity.Mathematics.float3(0, 5, 0);
        }).WithoutBurst().Schedule();

        //ScheduleParallel 配合Job 多线程并行执行 WithBurst 使用Burst编译
        Entities.ForEach((ref Translation trans) =>
        {
            trans.Value = new Unity.Mathematics.float3(0, 5, 0);
        }).WithBurst().ScheduleParallel();

        query.Dispose();
        array.Dispose();
    }

    protected override void OnStopRunning()
    {
        Debug.Log("OnStopRunning");
    }

    protected override void OnDestroy()
    {
        Debug.Log("OnDestroy");
    }
}


http://www.kler.cn/a/457541.html

相关文章:

  • 信息科技伦理与道德1:研究方法
  • 库伦值自动化功耗测试工具
  • C++模板相关概念汇总
  • 【C语言的小角落】--- 深度理解取余/取模运算
  • HTTP Scheme 通常指的是在 URL 中用于指定使用 HTTP 协议的方案(scheme)
  • 单片机常用外设开发流程(1)(IMX6ULL为例)
  • Docker中的分层(Layer)
  • 【漫话机器学习系列】021.类别特征(Categorical Feature)
  • 砝码称重(2021年蓝桥杯)
  • 一文读懂高斯混合模型
  • c++ 17 里新出现的修饰符 [ [ maybe_unused ] ]
  • [Leetcode] 最大子数组和 [击败99%的解法]
  • 向bash shell脚本传参
  • 基于Vue+SSM+SpringCloudAlibaba书籍管理系统
  • 十六、流编辑器sed(stream editor)
  • 【超级详细】七牛云配置阿里云域名详细过程记录
  • Tomcat(103)Tomcat的连接器故障排除
  • 嵌入式入门Day35
  • WSL2桥接模式配置(可与外部设备互ping)
  • workman服务端开发模式-应用开发-vue-element-admin封装websocket
  • 139.《python中的正则详解》
  • 解决编译Wireshark4.4.2源码失败的问题
  • Java8-Function的使用之读取文件
  • 【Linux基础】进程(上) —— 概念、状态、优先级与环境变量
  • 前端Python应用指南(六)构建RESTful API:使用Flask和Django实现用户认证与授权
  • 使用Quick 录屏为视频生成二维码