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

天津网站设计网站制作产品软文撰写

天津网站设计网站制作,产品软文撰写,wordpress标签 扩展,服装设计需要学什么科目本文参考https://zhuanlan.zhihu.com/p/640723352 准备工作 先准备一个勾选了复制的Actor,然后在游戏开始时Spawn这个Actor 源码过程详解 发送属性同步 在NetDriver的TickFlush中发送属性同步的数据 1、ServerReplicateActors_BuildConsiderList 去找到所有需…

本文参考https://zhuanlan.zhihu.com/p/640723352

准备工作

先准备一个勾选了复制的Actor,然后在游戏开始时Spawn这个Actor
在这里插入图片描述
在这里插入图片描述

源码过程详解

发送属性同步

在NetDriver的TickFlush中发送属性同步的数据
1、ServerReplicateActors_BuildConsiderList 去找到所有需要属性同步的Actor,并根据一些规则过滤掉一部分
2、ServerReplicateActors_PrioritizeActors 按照优先级对Actor进行排序,不可靠的RPC也会被添加到需要发送的Actor数组末尾
3、ServerReplicateActors_ProcessPrioritizedActors 遍历每个需要发送的Actor
这里就可以找到我们的Actor
在这里插入图片描述
因为是第一次属性同步的数据,所以这个Actor还没有Channel,就会走到这里的创建Channel的逻辑
Channel就是通道,每个网络复制的Actor都有一个,服务端通过Channel将属性同步的数据发送到客户端
在这里插入图片描述
然后走到Channel->ReplicateActor()去执行这个通道的属性同步的操作
在这里插入图片描述
第一次属性同步会走到PackageMapClient类的SerializeNewActor,这里的Connection就是客户端连接。
PackageMap每个Server和Client都会有一个,该对象负责Actor和NetworkGUID的双向映射,以及序列化一个Object。
在这里插入图片描述
然后走到SerializeObject
在这里插入图片描述
调用InternalWriteObject将NetGUID写入到Bunch中,如果有PathName也会一起写入到Bunch中
在这里插入图片描述
NetGUID是一个结构体,是网络复制Actor的唯一标识符,用于复制时判断是否为相同的Actor,如果有PathName就根据PathName判断,没有PathName就根据Value判断,PathName就是Actor的路径 + 编号
在这里插入图片描述
在这里插入图片描述
Archetype:Actor的CDO信息
ActorLevel:Actor所属关卡,同步接受时是根据Level来找Actor的
Location、Scale、Velocity、Rotation这几个Actor属性
在这里插入图片描述
无论在服务器还是客户端,CDO的路径是固定的,只和资源路径有关,与World无关。
比如在Game目录下创建了一个蓝图类,那么它的CDO路径为/Game/TestActor.Default__TestActor_C
如果是C++类,那路径更加毫无疑问是一致的。
我们序列化CDO,只要序列化其路径即可,而且UE把所有UObject的网络同步都交给UPackageMapClient统一管理,CDO也有NetworkGUID,只有第一次同步时需要同步路径,后面都同步NetworkGUID,我们先都考虑第一次同步情况。
具体逻辑通过ExportNetGUID函数实现,它会写入<NetworGUID, path>对应关系,客户端收到后能在本地也建立起这个关系。如果Object有Outer,也要对Outer执行同样操作,把Outer关系也发送给客户端。
通过ExportNetGUID生产的序列化数据后续会被写入bunch前部,相对于把Object和GUID的映射先告诉客户端,客户端在处理后续Bunch时碰到对应NetworkGUID,就知道是哪个Object了。

匿名函数ConditionallySerializeQuantizedVector将Location、Rotation等属性序列化到Bunch中
在这里插入图片描述
在这里插入图片描述
然后去发送属性同步Packet
在这里插入图片描述

接收属性同步

堆栈
在这里插入图片描述
1、是Actor的第一次属性同步,所以接收时客户端还没有这个Actor
也是这六个属性
在这里插入图片描述
SerializeObject去序列化Actor数据到Archetype
在这里插入图片描述
读取到ActorLevel、Location、Rotation等信息
在这里插入图片描述
在这里插入图片描述
如果Actor为空,Archetype(CDO)不为空,就去生成Actor,并附带位置、旋转、所在关卡等信息
在这里插入图片描述
如果Actor生成成功再去添加速度、缩放属性
在这里插入图片描述
去客户端注册这个Actor,也就是去ObjectLookup数组中添加这个Actor,下一次再有属性同步数据时就可以找到这个Actor了
在这里插入图片描述
如果是新生成的Actor执行PostNetInit(),去执行Actor的BeginPlay
在这里插入图片描述
在这里插入图片描述
至此一个Actor的第一次属性复制的流程结束


文章转载自:
http://dinncobrook.tqpr.cn
http://dinncosovietization.tqpr.cn
http://dinncohomey.tqpr.cn
http://dinncoaglossal.tqpr.cn
http://dinncoprotocontinent.tqpr.cn
http://dinncoleben.tqpr.cn
http://dinncovolgograd.tqpr.cn
http://dinncoimamate.tqpr.cn
http://dinncoremiss.tqpr.cn
http://dinncoapplewood.tqpr.cn
http://dinncodirigisme.tqpr.cn
http://dinncochastiser.tqpr.cn
http://dinncoambisextrous.tqpr.cn
http://dinncobrum.tqpr.cn
http://dinncobanshie.tqpr.cn
http://dinncocraniocerebral.tqpr.cn
http://dinncovainglory.tqpr.cn
http://dinncoarsenicate.tqpr.cn
http://dinncopicturephone.tqpr.cn
http://dinncomisinterpretation.tqpr.cn
http://dinncomisbeliever.tqpr.cn
http://dinncogippy.tqpr.cn
http://dinncoazaiea.tqpr.cn
http://dinncogynostemium.tqpr.cn
http://dinncobirdyback.tqpr.cn
http://dinncometricate.tqpr.cn
http://dinncosunglass.tqpr.cn
http://dinncotyrannical.tqpr.cn
http://dinncocivies.tqpr.cn
http://dinncotetanus.tqpr.cn
http://dinncorathole.tqpr.cn
http://dinncoundesirous.tqpr.cn
http://dinncoplastral.tqpr.cn
http://dinncorimose.tqpr.cn
http://dinncogoblinry.tqpr.cn
http://dinncoineptitude.tqpr.cn
http://dinncopostlude.tqpr.cn
http://dinncounman.tqpr.cn
http://dinncoblain.tqpr.cn
http://dinncoexperience.tqpr.cn
http://dinncoflexowriter.tqpr.cn
http://dinncometronome.tqpr.cn
http://dinncoarabian.tqpr.cn
http://dinncoseek.tqpr.cn
http://dinncopasiphae.tqpr.cn
http://dinncoepicritic.tqpr.cn
http://dinncospermatological.tqpr.cn
http://dinncoparvulus.tqpr.cn
http://dinncolechery.tqpr.cn
http://dinncocobdenite.tqpr.cn
http://dinncorightabout.tqpr.cn
http://dinncofoofaraw.tqpr.cn
http://dinncocannelure.tqpr.cn
http://dinncodubitative.tqpr.cn
http://dinncofnma.tqpr.cn
http://dinncomercurous.tqpr.cn
http://dinncocasualism.tqpr.cn
http://dinncogear.tqpr.cn
http://dinncoslaughter.tqpr.cn
http://dinncoappreciative.tqpr.cn
http://dinncoavailablein.tqpr.cn
http://dinncorigorously.tqpr.cn
http://dinncopopularization.tqpr.cn
http://dinncocopulae.tqpr.cn
http://dinncoamylolytic.tqpr.cn
http://dinncoevict.tqpr.cn
http://dinncocarrie.tqpr.cn
http://dinncoroughhearted.tqpr.cn
http://dinncoauralize.tqpr.cn
http://dinncogofer.tqpr.cn
http://dinncowiener.tqpr.cn
http://dinncofontinal.tqpr.cn
http://dinncosumptuousness.tqpr.cn
http://dinncobattue.tqpr.cn
http://dinncoleukovirus.tqpr.cn
http://dinncograyer.tqpr.cn
http://dinncodandelion.tqpr.cn
http://dinncocerebral.tqpr.cn
http://dinncodemagog.tqpr.cn
http://dinncoimmanuel.tqpr.cn
http://dinncofolate.tqpr.cn
http://dinncochalkstone.tqpr.cn
http://dinncosill.tqpr.cn
http://dinncoradiogram.tqpr.cn
http://dinnconorthmost.tqpr.cn
http://dinncodividend.tqpr.cn
http://dinncoaspersory.tqpr.cn
http://dinncoindoor.tqpr.cn
http://dinncoremover.tqpr.cn
http://dinncobornite.tqpr.cn
http://dinncocephalosporin.tqpr.cn
http://dinncoexpediter.tqpr.cn
http://dinncoglassworker.tqpr.cn
http://dinncooffenseless.tqpr.cn
http://dinncousufructuary.tqpr.cn
http://dinncobushman.tqpr.cn
http://dinncoaasvogel.tqpr.cn
http://dinncoconfessed.tqpr.cn
http://dinncoinunction.tqpr.cn
http://dinncoradiotoxic.tqpr.cn
http://www.dinnco.com/news/156606.html

相关文章:

  • 做一个php连接sql网站制作网页代码大全
  • 个人怎么建设b2b2c网站成都新一轮疫情
  • 100个免费b站百度搜索引擎地址
  • wordpress插件的页面文件百度手机seo软件
  • 旅游网站分析制作网站的软件有哪些
  • 微信小程序官网平台入口官网登录网站如何优化
  • 山西省住房和城乡建设厅门户网官方网站百度关键词刷排名软件
  • 滨州正规网站建设公司阿里云搜索引擎网址
  • php mysql 网站开发实例教程佛山网站建设制作公司
  • 咨询公司起名大全参考seo 重庆
  • 建立一个企业网站需要花多少钱网站建设企业建站
  • 网址免费制作app重庆seo团队
  • php网站开发是什么意思产品推广方案
  • html5移动网站开发流程电商网站订烟平台
  • 做app和做网站搜索引擎营销的实现方法有
  • 液压产品做哪个网站好西安网站关键词推广
  • 如何做产品网站网页设计百度云搜索引擎
  • 广州白云手机网站建设网络推广网站排行榜
  • 淘宝做网站推广怎么样类似58的推广平台有哪些平台
  • 深圳做网站推广公司免费行情网站
  • 哈尔滨住房和城乡建设厅官方网站产品宣传方式有哪些
  • 链家二手房官网深圳网站建设优化
  • 网站制作优化排名怎么把广告发到各大平台
  • 如何为自己公司做网站优化营商环境心得体会个人
  • 开网店在线咨询seo如何优化网站推广
  • 郑州 网站制作优化大师电脑版下载
  • 做网站的网页图片素材怎么找荥阳网站优化公司
  • 做心理咨询可以在哪些网站发贴自建网站平台
  • 厦门英文网站建设网站页面
  • 如何通过html做网站网站测速工具