【组件初始化链条】简化Unity组件的初始化

简介

       在游戏脚本中我们通过借助GetComponent或TryGetComponent方法获取组件,所以当需要获取较多组件时,我们不可避免地要书写一些重复代码,为了提升代码简洁程度,简化组件初始化逻辑,本文以"组件初始化链条"为核心探索组件的初始化。

       我们对于组件初始化面临以下几个问题:

       1.当需要从同一个游戏对象上获取不同组件时,如何简化?

       2.当获取组件时还需要对组件进行初始化或者获取组件的字段或属性,如何简化?

       3.当需要从多个游戏对象上获取相同类型组件时,如何简化?

       事实上,组件获取的逻辑大同小异,主要依赖于GetComponent或TryGetComponent方法,所以我们只需要关注从哪个GameObject上获取哪个Component即可,如果涉及到对组件进行一些自定义的处理,我们则可以借助委托类型的参数。除此之外,对于当前脚本而言,所需要的组件往往是必要的,缺一不可,所以我们仅关注所有组件是否被正确初始化,通过"组件初始化链条"则可以获取一个总的初始化结果值,如果需要自定义初始化结果值的收集可以自行改进本文代码。

       相较于手动初始化,我们需要重复书写GetComponent或TryGetComponent方法的调用,并且需要手动对每个组件的初始化结果值进行收集,这并不利于开发者专注于游戏逻辑的开发。

       采用统一的组件初始化方式,有利于团队协作,提升整体开发效率,方便组件初始化相关Bug的检测和处理。

代码示例

ComponentInitChain.cs

using System;
using UnityEngine;/// <summary>
/// 组件初始化链条
/// </summary>
public class ComponentInitChain
{private GameObject gameObject;/// <summary>/// 构造函数/// </summary>/// <param name="gameObject">组件所挂载的游戏对象</param>public ComponentInitChain(GameObject gameObject){this.gameObject = gameObject;}/// <summary>/// 初始化组件/// </summary>/// <typeparam name="T">组件类型</typeparam>/// <param name="component">组件的引用变量</param>/// <returns>当前组件初始化链条实例</returns>public ComponentInitChain InitComponent<T>(out T component) where T : Component{if (gameObject == null || !gameObject.TryGetComponent(out component)) component = null;return this;}/// <summary>/// 初始化组件/// </summary>/// <typeparam name="T">组件类型</typeparam>/// <param name="component">组件的引用变量</param>/// <param name="componentDeal">组件获取后的初始化处理</param>/// <returns>当前组件初始化链条实例</returns>public ComponentInitChain InitComponent<T>(out T component, Action<T> componentDeal) where T : Component{if (gameObject == null || !gameObject.TryGetComponent(out component)) component = null;if (component != null) componentDeal(component);return this;}/// <summary>/// 初始化组件/// </summary>/// <typeparam name="T0">组件类型0</typeparam>/// <typeparam name="T1">组件类型1</typeparam>/// <param name="component">T0类型组件的引用变量</param>/// <param name="component1">T1类型组件的引用变量</param>/// <returns>初始化结果值,组件均正确初始化则返回true,否则返回false</returns>public bool InitComponent<T0, T1>(out T0 component, out T1 component1) where T0 : Component where T1 : Component{InitComponent(out component).InitComponent(out component1);if (component == null || component1 == null) return false;return true;}/// <summary>/// 初始化组件/// </summary>/// <typeparam name="T0">组件类型0</typeparam>/// <typeparam name="T1">组件类型1</typeparam>/// <typeparam name="T2">组件类型2</typeparam>/// <param name="component">T0类型组件的引用变量</param>/// <param name="component1">T1类型组件的引用变量</param>/// <param name="component2">T2类型组件的引用变量</param>/// <returns>初始化结果值,组件均正确初始化则返回true,否则返回false</returns>public bool InitComponent<T0, T1, T2>(out T0 component, out T1 component1, out T2 component2)where T0 : Component where T1 : Component where T2 : Component{InitComponent(out component).InitComponent(out component1).InitComponent(out component2);if (component == null || component1 == null || component2 == null) return false;return true;}/// <summary>/// 初始化组件/// </summary>/// <typeparam name="T0">组件类型0</typeparam>/// <typeparam name="T1">组件类型1</typeparam>/// <typeparam name="T2">组件类型2</typeparam>/// <typeparam name="T3">组件类型3</typeparam>/// <param name="component">T0类型组件的引用变量</param>/// <param name="component1">T1类型组件的引用变量</param>/// <param name="component2">T2类型组件的引用变量</param>/// <param name="component3">T3类型组件的引用变量</param>/// <returns>初始化结果值,组件均正确初始化则返回true,否则返回false</returns>public bool InitComponent<T0, T1, T2, T3>(out T0 component, out T1 component1, out T2 component2, out T3 component3)where T0 : Component where T1 : Component where T2 : Component where T3 : Component{InitComponent(out component).InitComponent(out component1).InitComponent(out component2).InitComponent(out component3);if (component == null || component1 == null || component2 == null || component3 == null) return false;return true;}
}

ComponentsInitChain.cs

using System.Linq;
using UnityEngine;/// <summary>
/// 组成集初始化链条
/// </summary>
public class ComponentsInitChain
{/// <summary>/// 初始化组件集/// </summary>/// <typeparam name="T">组件类型</typeparam>/// <param name="components">组件集的引用变量</param>/// <param name="gameObjects">组件所挂载的游戏对象集</param>/// <returns>组件集初始化结果值,若所有组件成功初始化则返回true,否则返回false</returns>public static bool InitComponents<T>(in T[] components, params GameObject[] gameObjects) where T : Component{if (components == null || components.Length == 0) return false;if (gameObjects == null || gameObjects.Length == 0) return false;if (components.Length == gameObjects.Length){for (int i = 0; i < gameObjects.Length; i++){components[i] = gameObjects[i].GetComponent<T>();}return components.All(c => c != null);}return false;}/// <summary>/// 初始化组件集/// </summary>/// <typeparam name="T0">组件类型0</typeparam>/// <typeparam name="T1">组件类型1</typeparam>/// <param name="component">T0类型组件的引用变量</param>/// <param name="component1">T1类型组件的引用变量</param>/// <param name="gameObjects">T0、T1类型组件所挂载的游戏对象</param>/// <returns>组件初始化结果值,若所有组件成功初始化则返回true,否则返回false</returns>public static bool InitComponents<T0, T1>(out T0 component, out T1 component1, params GameObject[] gameObjects)where T0 : Component where T1 : Component{component = null;component1 = null;if (gameObjects?.Length == 2){component = gameObjects[0].GetComponent<T0>();component1 = gameObjects[1].GetComponent<T1>();}return component != null && component1 != null;}/// <summary>/// 初始化组件集/// </summary>/// <typeparam name="T0">组件类型0</typeparam>/// <typeparam name="T1">组件类型1</typeparam>/// <typeparam name="T2">组件类型2</typeparam>/// <param name="component">T0类型组件的引用变量</param>/// <param name="component1">T1类型组件的引用变量</param>/// <param name="component2">T2类型组件的引用变量</param>/// <param name="gameObjects">T0、T1、T2类型组件所挂载的游戏对象</param>/// <returns>组件初始化结果值,若所有组件成功初始化则返回true,否则返回false</returns>public static bool InitComponents<T0, T1, T2>(out T0 component, out T1 component1, out T2 component2, params GameObject[] gameObjects)where T0 : Component where T1 : Component where T2 : Component{component = null;component1 = null;component2 = null;if (gameObjects?.Length == 3){component = gameObjects[0].GetComponent<T0>();component1 = gameObjects[1].GetComponent<T1>();component2 = gameObjects[2].GetComponent<T2>();}return component != null && component1 != null && component2 != null;}/// <summary>/// 初始化组件集/// </summary>/// <typeparam name="T0">组件类型0</typeparam>/// <typeparam name="T1">组件类型1</typeparam>/// <typeparam name="T2">组件类型2</typeparam>/// <typeparam name="T3">组件类型3</typeparam>/// <param name="component">T0类型组件的引用变量</param>/// <param name="component1">T1类型组件的引用变量</param>/// <param name="component2">T2类型组件的引用变量</param>/// <param name="component3">T3类型组件的引用变量</param>/// <param name="gameObjects">T0、T1、T2、T3类型组件所挂载的游戏对象</param>/// <returns>组件初始化结果值,若所有组件成功初始化则返回true,否则返回false</returns>public static bool InitComponents<T0, T1, T2, T3>(out T0 component, out T1 component1, out T2 component2, out T3 component3, params GameObject[] gameObjects)where T0 : Component where T1 : Component where T2 : Component where T3 : Component{component = null;component1 = null;component2 = null;component3 = null;if (gameObjects?.Length == 4){component = gameObjects[0].GetComponent<T0>();component1 = gameObjects[1].GetComponent<T1>();component2 = gameObjects[2].GetComponent<T2>();component3 = gameObjects[3].GetComponent<T3>();}return component != null && component1 != null && component2 != null && component3 != null;}
}

测试代码

using UnityEngine;public class Test : MonoBehaviour
{public GameObject[] GameObjects;private AudioListener audioListener;private SpriteRenderer spriteRenderer;private CircleCollider2D circleCollider2D;private Room[] rooms;private Room a;private Room b;private Room c;private Room d;private Sprite sprite;private void Awake(){// 组件链式初始化,适用于该情景"需要获取同一个游戏对象上较多的组件且针对不同组件存在不同的初始化逻辑"// new ComponentInitChain(gameObject).InitComponent(out audioListener)// .InitComponent(out spriteRenderer, c => sprite = c.sprite)// .InitComponent(out circleCollider2D, c => c.isTrigger = true);// 组件单步初始化,适用于该情景"需要获取同一个游戏对象上较少的组件,不需要对各组件的初始化进行代理"// bool res = new ComponentInitChain(gameObject).InitComponent(out audioListener, out spriteRenderer, out circleCollider2D);// Debug.Log(res);// Debug.Log(audioListener);// Debug.Log(spriteRenderer);// Debug.Log(circleCollider2D);// 获取不同游戏对象上的某种组件类型的组件合集// rooms = new Room[GameObjects.Length];// bool res = ComponentsInitChain.InitComponents(rooms, GameObjects);// Debug.Log(res);// for (int i = 0; i < rooms?.Length; i++)// {//     Debug.Log(rooms[i]);// }// 获取不同游戏对象上的相同类型组件// bool res = ComponentsInitChain.InitComponents(out a, out b, out c, out d, GameObjects);// Debug.Log(res);// Debug.Log(a);// Debug.Log(b);// Debug.Log(c);// Debug.Log(d);}
}

代码说明

        ComponentInitChain适用于对单个游戏对象的组件进行初始化的情景,所以在实例化时需要传递对应的游戏对象,后续的组件初始化操作都针对该游戏对象。

        ComponentsInitChain适用于对多个游戏对象的组件进行初始化的情景,相关方法都属于静态方法,所以调用方法时需要传递游戏对象。

        测试代码中则针对四种常见的应用情况进行举例。

 如果这篇文章对你有帮助,请给作者点个赞吧!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/742945.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

Springboot的配置文件及其优先级

配置文件 内置配置文件 配置文件的作用&#xff1a;修改SpringBoot自动配置的默认值&#xff1b;SpringBoot在底层都给我们自动配置好&#xff1b;SpringBoot使用一个全局的配置文件&#xff0c;配置文件名是固定的&#xff1a; application.propertiesapplication.yml 以上…

网络建设与运维培训介绍和能力介绍

1.开过的发票 3.培训获奖的证书 4合同签署 5.实训设备

利用 boost::asio::ssl C/C++ 检查SSL/PEM证书文件的有效性

我们可以通过 boost::asio::ssl::context &#xff08;SSL上下文&#xff09;对象实例成员接口来检查SSL证书文件的有效性。 1、use_certificate_chain_file 使用证书链文件&#xff08;CA*&#xff09; 2、use_certificate_file 使用证书文件&#xff08;公钥&am…

[ThinkPHP]Arr返回1

$detailId (int)Arr::get($detail, null); var_dump($detailId); 打印结果&#xff1a;int(1) 原因&#xff1a; vendor/topthink/think-helper/src/helper/Arr.php

干洗店管理系统洗鞋店预约上门小程序洗护流程;

干洗店洗鞋店收银管理系统&#xfe63;智能线上预约洗衣店小程序软件; 闪站侠洗衣洗鞋店收银管理系统&#xff0c;一款集进销存、收衣、收银、会员管理等实用功能于一体的洗护管理软件&#xff0c;适用于各大中小型企业个体工商户&#xff0c;功能强大&#xff0c;操作简单&…

瑞_23种设计模式_命令模式

文章目录 1 命令模式&#xff08;Command Pattern&#xff09;1.1 介绍1.2 概述1.3 命令模式的结构1.4 命令模式的优缺点1.5 命令模式的使用场景 2 案例一2.1 需求2.2 代码实现 3 案例二3.1 需求3.2 代码实现 4 JDK源码解析&#xff08;Runable&#xff09; &#x1f64a; 前言…

【机器学习智能硬件开发全解】(二)—— 政安晨:嵌入式系统基本素养【处理器原理】

嵌入式系统的基本素养包括以下几个方面&#xff1a; 硬件知识&#xff1a;嵌入式系统通常由硬件和软件组成&#xff0c;了解和熟悉硬件的基本知识&#xff0c;包括微处理器、存储器、外设等&#xff0c;并了解它们的工作原理和特性。 软件编程&#xff1a;熟悉至少一种编程语言…

人工智能迷惑行为大赏——需求与科技的较量

目录 前言 一、 机器行为学 二、人工智能迷惑行为的现象 三、产生迷惑行为的技术原因 四、社会影响分析 五、解决措施 总结 前言 随着ChatGPT热度的攀升&#xff0c;越来越多的公司也相继推出了自己的AI大模型&#xff0c;如文心一言、通义千问等。各大应用也开始内置…

WPF图表库LiveCharts的使用

这个LiveCharts非常考究版本&#xff0c;它有非常多个版本&#xff0c;.net6对应的是LiveChart2 我这里的wpf项目是.net6&#xff0c;所以安装的是这三个&#xff0c;搜索的时候要将按钮“包括愈发行版”打勾 git&#xff1a;https://github.com/beto-rodriguez/LiveCharts2?…

webpack面试题

1、webpack是干什么的 Webpack是一个现代的JavaScript应用程序的静态模块打包工具。当webpack处理应用程序时&#xff0c;它会在内部构建一个依赖图&#xff0c;此依赖图对应映射到项目所需的每个模块&#xff0c;然后将所有这些模块打包成一个或多个bundle。Webpack的主要功能…

趣学前端 | 平平无奇的JavaScript函数

背景 最近睡前习惯翻会书&#xff0c;重温了《JavaScript权威指南》。这本书&#xff0c;文字小&#xff0c;内容多。两年了&#xff0c;我才翻到第十章。因为书太厚&#xff0c;平时都充当电脑支架。 JavaScript函数 读这章之前&#xff0c;我感觉我三十年开发功力&#xf…

经典卷积神经网络LeNet-5、AlexNet、VGG-16

一、LeNet-5 这里只讲一下C5&#xff0c;卷积核大小是5*5&#xff0c;通道数是120&#xff0c;所以卷积完成之后是1*1*120&#xff0c;这里形成120个卷积结果。每个都与上一层的16个图相连。所以共有(5x5x161)x120 48120个参数&#xff0c;同样有48120个连接。 其他卷积层和池…

Maven: There are test failures.(已解决)

问题解决办法 进行package打包时报错如下&#xff1a; 然后这些并不能看出是测试的哪里的问题&#xff0c;可以点击上一级进行查看更详细的错误&#xff0c;越向上日志越详细&#xff0c;可以看到是52行出了错误&#xff0c; 52对应代码如下&#xff1a; 原因是存在注册的测…

HTML5+CSS3+JS小实例:全屏范围滑块

实例:全屏范围滑块 技术栈:HTML+CSS+JS 效果: 源码: 【HTML】 <!DOCTYPE html> <html lang="zh-CN"> <head><meta charset="UTF-8"><meta name="viewport" content="width=device-width, initial-scale…

R语言系列4——R语言统计分析基础

目录 写在开头1. 描述性统计分析1.1 描述性统计分析的定义与重要性1.2 R语言中的描述性统计分析功能1.3 常用的描述性统计量及其在R中的计算方法1.4 使用R语言进行描述性统计分析的实际示例1.5 描述性统计分析的局限性和应用注意事项 2. 假设检验基础2.1. 假设检验的基本原理和…

Mybatis多表映射之一对多映射

上文总结了一对一关联关系中的映射方法。那么&#xff0c;如果存在一对多关系&#xff0c;又该定义映射关系呢&#xff1f; 1. 需求说明 假设目前存在顾客表与订单表&#xff0c;一个顾客与多个订单对应。因此&#xff0c;在顾客实体类中&#xff0c;应该有一个订单类型的lis…

机试:偶数分解

题目描述: 代码示例: #include <bits/stdc.h> using namespace std; int main(){ // 算法思想1:遍历小于该偶数的所有素数,存入数组中,遍历数组找出两个数之和等于偶数的数int n;cout << "输入样例" << endl;cin >> n;int nums[n];int k …

LeetCode98题:验证二叉搜索树(python3)

代码思路&#xff1a; 二叉搜索树的具体定义&#xff1a; 节点的左子树只包含小于当前节点的数。 节点的右子树只包含大于当前节点的数。 也可以理解为&#xff1a; 当前节点的值是其左子树的值的上界&#xff08;最大值&#xff09; 当前节点的值是其右子树的值的下界&#xf…

计算机网络-第7章 网络安全(1)

主要内容&#xff1a;安全威胁与问题、对称密钥密码体制和公钥密码体制、数字签名与鉴别、网络层和运输层安全协议、应用层电子邮件、系统安全&#xff1a;防火墙与入侵检测 当网络中的用户都来自社会各个阶层和部门时&#xff0c;网络中存储和传输的数据需要保护。 7.1 网络安…

Vue2(五):收集表单数据、过滤器、内置指令和自定义指令

一、回顾 总结Vue监视数据 1.Vue监视数据的原理&#xff1a; 1.vue会监视data中所有层次的数据。 2.如何监测对象中的数据?通过setter实现监视&#xff0c;且要在new Vue时就传入要监测的数据。(1&#xff09;.对象中后追加的属性&#xff0c;Vue默认不做响应式处理(2&#…