博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
【转】 Understanding Component-Entity-Systems
阅读量:7118 次
发布时间:2019-06-28

本文共 5595 字,大约阅读时间需要 18 分钟。

http://www.gamedev.net/page/resources/_/technical/game-programming/understanding-component-entity-systems-r3013
The traditional way to implement game entities was to use object-oriented programming. Each entity was an object, which intuitively allowed for an instantiation system based on classes and enabled entities to extend others through polymorphism. This led to large, rigid class hierarchies. As the number of entities grew, it became increasingly difficult to place a new entity in the hierarchy, especially if the entity needed a lot of different types of functionality. Here, you can see a simple class hierarchy. A static enemy does not fit well into the tree.
To solve this, game programmers started to build entities through composition instead of inheritance. An entity is simply an aggregation (technically a composition) of components. This has some major benefits over the object-oriented architecture described above:
  1. It's easy to add new, complex entities
  2. It's easy to define new entities in data
  3. It's more efficient
Here's how a few of the entities above would be implemented. Notice that the components are all pure data - no methods. This will be explained in detail below.

The Component

A component can be likened to a C struct. It has no methods and is only capable of storing data, not acting upon it. In a typical implementation, each different component type will derive from an abstract
Component class, which provides facilities for getting a component's type and containing entity at runtime. Each component describes a certain aspect of an entity and its parameters. By themselves, components are practically meaningless, but when used in conjunction with entities and systems, they become extremely powerful. Empty components are useful for tagging entities.

Examples

  • Position (x, y)
  • Velocity (x, y)
  • Physics (body)
  • Sprite (images, animations)
  • Health (value)
  • Character (name, level)
  • Player (empty)

The Entity

An entity is something that exists in your game world. Again, an entity is little more than a list of components. Because they are so simple, most implementations won't define an entity as a concrete piece of data. Instead, an entity is a unique ID, and all components that make up an entity will be tagged with that ID. The entity is an implicit aggregation of the components tagged with its ID. If you want, you can allow components to be dynamically added to and removed from entities. This allows you to "mutate" entities on the fly. For example, you could have a spell that makes its target freeze. To do this, you could simply remove the
Velocity component.

Examples

  • Rock (Position, Sprite)
  • Crate (Position, Sprite, Health)
  • Sign (Position, Sprite, Text)
  • Ball (Position, Velocity, Physics, Sprite)
  • Enemy (Position, Velocity, Sprite, Character, Input, AI)
  • Player (Position, Velocity, Sprite, Character, Input, Player)

The System

Notice that I've neglected to mention any form of game logic. This is the job of the systems. A system operates on related groups of components, i.e. components that belong to the same entity. For example, the character movement system might operate on a
Position, a
Velocity, a
Collider, and an
Input. Each system will be updated once per frame in a logical order. To make a character jump, first the
keyJump field of the Input data is checked. If it is true, the system will look through the contacts contained in the
Collider data and check if there is one with the ground. If so, it will set the
Velocity's
y field to make the character jump.
Because a system only operates on components if the whole group is present, components implicitly define the behaviour an entity will have. For example, an entity with a
Position component but not a
Velocity component will be static. Since the
Movement system uses a
Position and a
Velocity, it won't operate on the
Position contained within that entity. Adding a
Velocity component will make the
Movement system work on that entity, thus making the entity dynamic and affected by gravity. This behaviour can be exploited with "tag components" (explained above) to reuse components in different contexts. For example, the
Input component defines generic flags for jumping, moving, and shooting. Adding an empty
Player component will tag the entity for the
PlayerControl system so that the
Input data will be populated based on controller inputs.

Examples

  • Movement (Position, Velocity) - Adds velocity to position
  • Gravity (Velocity) - Accelerates velocity due to gravity
  • Render (Position, Sprite) - Draws sprites
  • PlayerControl (Input, Player) - Sets the player-controlled entity's input according to a controller
  • BotControl (Input, AI) - Sets a bot-controlled entity's input according to an AI agent

Conclusion

To wrap up, OOP-based entity hierarchies need to be left behind in favour of Component-Entity-Systems. Entities are your game objects, which are implicitly defined by a collection of components. These components are pure data and are operated on in functional groups by the systems.
I hope I've managed to help you to understand how Component-Entity-Systems work, and to convince you that they are better than traditional OOP. If you have any questions about the article, I'd appreciate a comment or message.
A follow-up article has been posted, which provides a sample C implementation and solves some design problems.

Article Update Log

1 April 2013 - Initial submission
2 April 2013 - Initial publication; cleaned up formatting
29 September 2013 - Added notice of follow-up article; changed some formatting)

 

转载于:https://www.cnblogs.com/freebird92/p/4283710.html

你可能感兴趣的文章
我学习图像处理的小结
查看>>
条件触发和边缘触发 及 epoll 的长处
查看>>
tiny-cnn开源库的使用(MNIST)
查看>>
Java IO流中 File文件对象与Properties类(四)
查看>>
android makefile文件批量拷贝文件的方法
查看>>
3.2存储器层次结构
查看>>
canvas图形绘制
查看>>
[LeetCode] 4 Keys Keyboard 四键的键盘
查看>>
【树莓派】服务配置相关3:基于Ubuntu Server的服务配置
查看>>
Linux常用的基础组件
查看>>
线上系统问题定位
查看>>
springboot的application.properties与.yml的区别
查看>>
P1330 封锁阳光大学
查看>>
xtrabackup-增量备份
查看>>
[Python]Python Class 中的 函数定义中的 self
查看>>
操作系统习题
查看>>
pip安装-mac电脑
查看>>
Java IO编程全解(六)——4种I/O的对比与选型
查看>>
HBase流量限制和表负载均衡剖析
查看>>
一个多maven项目聚合的实例
查看>>