Git LFS
for it to work properly, zip
downloads won't work.Our very WIP understanding of Unreal Engine 5's experimental Entity Component System (ECS) plugin with a small sample project. We are not affiliated with Epic Games and this system is actively being changed often so this information might not be totally accurate.
We are totally open to contributions, If something is wrong or you think it could be improved, feel free to open an issue or submit a pull request.
Currently built for the Unreal Engine 5 latest version binary from the Epic Games launcher. This documentation will be updated often!
There is a bug in 5.2 for setting Execution Flags for the world and Mass processors that can be resolved either in the Mass config or engine changes here!
Git
version control:
After installing the requirements from above, follow these steps:
Right-Click where you wish to hold your project, then press Git Bash Here
.
Within the terminal, clone the project:
git clone https://github.com/Megafunk/MassSample.git
Pull LFS:
git lfs pull
Once LFS finishes, close the terminal.
<a name="tocs"></a>
<!--ProposalFUNK: How about a "FAQ" of sorts for debugging etc? like: --> <!--Why isn't anything being used in my query?--> <!--When should I use Mass?--> <!--General debug UI info etc--> <!-- REVIEWMEVORI: I would split it in two different subsections: - Common issues - Mass FAQ Although I don't know if these should have their own section each one, or if we can group them under the same section (making the subsections). -->
- Mass
- Entity Component System
- Sample Project
- Mass Concepts
4.1 Entities
4.2 Fragments
4.2.1 Shared Fragments
4.3 Tags
4.4 Subsystems
4.5 The archetype model
4.5.1 Tags in the archetype model
4.5.2 Fragments in the archetype model
4.6 Processors
4.7 Queries
4.7.1 Access requirements
4.7.2 Presence requirements
4.7.3 Iterating Queries
4.7.3 Mutating entities with Defer()
4.8 Traits
4.9 Observers
4.9.1 Observers limitations
4.9.2 Observing multiple Fragment/Tags
4.10 Multithreading- Common Mass operations
5.1 Spawning entities
5.2 Destroying entities
5.3 Operating Entities- Mass Plugins and Modules
6.1 MassEntity
6.2 MassGameplay
6.3 MassAI- Other Resources
<a name="mass"></a>
Mass is Unreal's in-house ECS framework! Technically, Sequencer already used one internally but it wasn't intended for gameplay code. Mass was created by the AI team at Epic Games to facilitate massive crowd simulations, but has grown to include many other features as well. It was featured in the Matrix Awakens demo Epic released in 2021.
<a name="ecs"></a>
Mass is an archetype-based Entity Componenet System. If you already know what that is you can skip ahead to the next section.
In Mass, some ECS terminology differs from the norm in order to not get confused with existing unreal code:
ECS | Mass |
---|---|
Entity | Entity |
Component | Fragment |
System | Processor |
Typical Unreal Engine game code is expressed as Actor objects that inherit from parent classes to change their data and functionality based on what they are. In an ECS, an entity is only composed of fragments that get manipulated by processors based on which ECS components they have.
An entity is really just a small unique identifier that points to some fragments. A Processor defines a query that filters only for entities that have specific fragments. For example, a basic "movement" Processor could query for entities that have a transform and velocity component to add the velocity to their current transform position.
Fragments are stored in memory as tightly packed arrays of other identical fragment arrangements called archetypes. Because of this, the aforementioned movement processor can be incredibly high performance because it does a simple operation on a small amount of data all at once. New functionality can easily be added by creating new fragments and processors.
Internally, Mass is similar to the existing Unity DOTS and FLECS archetype-based ECS libraries. There are many more!
<a name="sample"></a>
Currently, the sample features the following:
<a name="massconcepts"></a>
4.1 Entities
4.2 Fragments
4.3 Tags
4.4 Subsystems
4.5 The archetype model
4.6 Processors
4.7 Queries
4.8 Traits
4.9 Observers
<a name="mass-entities"></a>
Small unique identifiers that point to a combination of fragments and tags in memory. Entities are mainly a simple integer ID. For example, entity 103 might point to a single projectile with transform, velocity, and damage data.
<!-- TODO: Document the different ways in which we can identify an entity in mass and their purpose? FMassEntityHandle, FMassEntity, FMassEntityView?? --><a name="mass-fragments"></a>
Data-only UStructs
that entities can own and processors can query on. To create a fragment, inherit from FMassFragment
.
USTRUCT() struct MASSCOMMUNITYSAMPLE_API FLifeTimeFragment : public FMassFragment { GENERATED_BODY() float Time; };
With FMassFragment
s each entity gets its own fragment data, to share data across many entities, we can use a shared fragment.
<a name="mass-fragments-sf"></a>
A Shared Fragment is a type of Fragment that multiple entities can point to. This is often used for configuration common to a group of entities, like LOD or replication settings. To create a shared fragment, inherit from FMassSharedFragment
.
USTRUCT() struct MASSCOMMUNITYSAMPLE_API FVisibilityDistanceSharedFragment : public FMassSharedFragment { GENERATED_BODY() UPROPERTY() float Distance; };
In the example above, all the entities containing the FVisibilityDistanceSharedFragment
will see the same Distance
value. If an entity modifies the Distance
value, the rest of the entities with this fragment will see the change as they share it through the archetype. Shared fragments are generally added from Mass Traits.
Make sure your shared fragments are Crc hashable or else you may not actually create a new instance when you call GetOrCreateSharedFragmentByHash
. You can actually pass in your own hash with GetOrCreateSharedFragmentByHash
, which can help if you prefer to control what makes each one unique.
Thanks to this sharing data requirement, the Mass entity manager only needs to store one Shared Fragment for the entities that use it.
<a name="mass-tags"></a>
Empty UScriptStructs
that processors can use to filter entities to process based on their presence/absence. To create a tag, inherit from FMassTag
.
USTRUCT() struct MASSCOMMUNITYSAMPLE_API FProjectileTag : public FMassTag { GENERATED_BODY() };
Note: Tags should never contain member properties.
<a name="mass-subsystems"></a>
Starting in UE 5.1, Mass enhanced its API to support UWorldSubsystems
in our Processors. This provides a way to create encapsulated functionality to operate Entities. First, inherit from UWorldSubsystem
and define its basic interface alongside your functions and variables:
UCLASS() class MASSCOMMUNITYSAMPLE_API UMyWorldSubsystem : public UWorldSubsystem { GENERATED_BODY() public: void Write(int32 InNumber); int32 Read() const; protected: // UWorldSubsystem begin interface virtual void Initialize(FSubsystemCollectionBase& Collection) override; virtual void Deinitialize() override; // UWorldSubsystem end interface private: UE_MT_DECLARE_RW_ACCESS_DETECTOR(AccessDetector); int Number = 0; };
Following next, we present an implementation example of the provided interface above (see MassEntityTestTypes.h
):
void UMyWorldSubsystem::Initialize(FSubsystemCollectionBase& Collection) { // Initialize dependent subsystems before calling super Collection.InitializeDependency(UMyOtherSubsystemOne::StaticClass()); Collection.InitializeDependency(UMyOtherSubsystemTwo::StaticClass()); Super::Initialize(Collection); // In here you can hook to delegates! // ie: OnFireHandle = FExample::OnFireDelegate.AddUObject(this, &UMyWorldSubsystem::OnFire); } void UMyWorldSubsystem::Deinitialize() { // In here you can unhook from delegates // ie: FExample::OnFireDelegate.Remove(OnFireHandle); Super::Deinitialize(); } void UMyWorldSubsystem::Write(int32 InNumber) { UE_MT_SCOPED_WRITE_ACCESS(AccessDetector); Number = InNumber; } int32 UMyWorldSubsystem::Read() const { UE_MT_SCOPED_READ_ACCESS(AccessDetector); return Number; }
The code above is multithread-friendly, hence the UE_MT_X
tokens.
Finally, to make this world subsystem compatible with Mass, you must define its subsystem traits, which inform Mass about its parallel capabilities. In this case, our subsystem supports parallel reads:
/** * Traits describing how a given piece of code can be used by Mass. * We require author or user of a given subsystem to * define its traits. To do it add the following in an accessible location. */ template<> struct TMassExternalSubsystemTraits<UMyWorldSubsystem> final { enum { ThreadSafeRead = true, ThreadSafeWrite = false, }; }; /** * this will let Mass know it can access UMyWorldSubsystem on any thread. * * This information is being used to calculate processor and query * dependencies as well as appropriate distribution of * calculations across threads. */
If you want to use a UWorldSubsystem
that has not had its traits defined before and you cannot modify its header explicitly, you can add the subsystem trait information in a separate header file (see MassGameplayExternalTraits.h
).
<a name="mass-arch-mod"></a>
As mentioned previously, an entity is a unique combination of fragments and tags. Mass calls each of these combinations archetypes. For example, given three different combinations used by our entities, we would generate three archetypes:
The FMassArchetypeData
struct represents an archetype in Mass internally.
<a name="mass-arch-mod-tags"></a>
Each archetype (FMassArchetypeData
) holds a bitset (TScriptStructTypeBitSet<FMassTag>
) that contains the tag presence information, whereas each bit in the bitset represents whether a tag exists in the archetype or not.
Following the previous example, Archetype 0 and Archetype 2 contain the tags: TagA, TagC and TagD; while Archetype 1 contains TagC and TagD. Which makes the combination of Fragment A and Fragment B to be split in two different archetypes.
<a name="mass-arch-mod-fragments"></a>
At the same time, each archetype holds an array of chunks (FMassArchetypeChunk
) with fragment data.
Each chunk contains a subset of the entities included in our archetype where data is organized in a pseudo-struct-of-arrays way:
The following Figure represents the archetypes from the example above in memory:
By having this pseudo-struct-of-arrays data layout divided in multiple chunks, we are allowing a great number of whole-entities to fit in the CPU cache.
This is thanks to the chunk partitoning, since without it, we wouldn't have as many whole-entities fit in cache, as the following diagram displays:
In the above example, the Chunked Archetype gets whole-entities in cache, while the Linear Archetype gets all the A Fragments in cache, but cannot fit each fragment of an entity.
The Linear approach would be fast if we would only access the A Fragment when iterating entities, however, this is almost never the case. Usually, when we iterate entities we tend to access multiple fragments, so it is convenient to have them all in cache, which is what the chunk partitioning provides.
The chunk size (UE::Mass::ChunkSize
) has been conveniently set based on next-gen cache sizes (128 bytes per line and 1024 cache lines). This means that archetypes with more
字节跳动发布的AI编程神器IDE
Trae是一种自适应的集成开发环境(IDE),通过自动化和多元协作改变开发流程。利用Trae,团队能够更快速、精确地编写和部署代码,从而提高编程效率和项目交付速度。Trae具备上下文感知和代码自动完成功能,是提升开发效率的理想工具。
全能AI智能助手,随时解答生活与工作的多样问题
问小白,由元石科技研发的AI智能助手,快速准确地解答各种生活和工作问题,包括但不限于搜索、规划和社交互动,帮助用户在日常生活中提高效率,轻松管理个人事务。
实时语音翻译/同声传译工具
Transly是一个多场景的AI大语言模型驱动的同声传译、专业翻译助手,它拥有超精准的音频识别翻译能力,几乎零延迟的使用体验和支持多国语言可以让你带它走遍全球,无论你是留学生、商务人士、韩剧美剧爱好者,还是出国游玩、多国会议、跨国追星等等,都可以满足你所有需要同传的场景需求,线上线下通用,扫除语言障碍,让全世界的语言交流不再有国界。
一键生成PPT和Word,让学习生活更轻松
讯飞智文是一个利用 AI 技术的项目,能够帮助用户生成 PPT 以及各类文档。无论是商业领域的市场分析报告、年度目标制定,还是学生群体的职业生涯规划、实习避坑指南,亦或是活动策划、旅游攻略等内容,它都能提供支持,帮助用户精准表达,轻松呈现各种信息。
深度推理能力全新升级,全面对标OpenAI o1
科大讯飞的星火大模型,支持语言理解、知识问答和文本创作等多功能,适用于多种文件和业务场景,提升办公和日常生活的效率。讯飞星火是一个提供丰富智能服务的平台,涵盖科技资讯、图像创作、写作辅助、编程解答、科研文献解读等功能,能为不同需求的用户提供便捷高效的帮助,助力用户轻松获取信息、解决问题,满足多样化使用场景。
一种基于大语言模型的高效单流解耦语音令牌文本到语音合成模型
Spark-TTS 是一个基于 PyTorch 的开源文本到语音合成项目,由多个知名机构联合参与。该项目提供了高效的 LLM(大语言模型)驱动的语音合成方案,支持语音克隆和语音创建功能,可通过命令行界面(CLI)和 Web UI 两种方式使用。用户可以根据需求调整语音的性别、音高、速度等参数,生成高质量的语音。该项目适用于多种场景,如有声读物制作、智能语音助手开发等。
AI助力,做PPT更简单!
咔片是一款轻量化在线演示设计工具,借助 AI 技术,实现从内容生成到智能设计的一站式 PPT 制作服务。支持多种文档格式导入生成 PPT,提供海量模板、智能美化、素材替换等功能,适用于销售、教师、学生等各类人群,能高效制作出高品质 PPT,满足不同场景演示需求。
选题、配图、成文,一站式创作,让内容运营更高效
讯飞绘文,一个AI集成平台,支持写作、选题、配图、排版和发布。高效生成适用于各类媒体的定制内容,加速品牌传播,提升内容营销效果。
专业的AI公文写作平台,公文写作神器
AI 材料星,专业的 AI 公文写作辅助平台,为体制内工作人员提供高效的公文写作解决方案。拥有海量公文文库、9 大核心 AI 功能,支持 30 + 文稿类型生成,助力快速完成领导讲话、工作总结、述职报告等材料,提升办公效率,是体制打工人的得力写作神器。
OpenAI Agents SDK,助力开发者便捷使用 OpenAI 相关功能。
openai-agents-python 是 OpenAI 推出的一款强大 Python SDK,它为开发者提供了与 OpenAI 模型交互的高效工具,支持工具调用、结果处理、追踪等功能,涵盖多种应用场景,如研究助手、财务研究等,能显著提升开发效率,让开发者更轻松地利用 OpenAI 的技术优势。
最新AI工具、AI资讯
独家AI资源、AI项目落地
微信扫一扫关注公众号