Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 1.72 KB

README.md

File metadata and controls

34 lines (24 loc) · 1.72 KB

Exploring Options of Entity-Component-System Design Pattern: A Case Study

Overview

This project explores the Entity-Component-System (ECS) design pattern and evaluates the performance of existing ECS libraries for C# on the concrete game. The primary goal is to compare the benefits and drawbacks of ECS and determine each library's relative performance.

Game

The game used to test the ECS libraries will be a small one with a large number of entities, making it easy to measure performance.

Shared Code Base

The project includes the shared codebase (namespace WorldSimulator.ECS.AbstractECS) that defines interfaces for ECS libraries. Each library will have its own wrapper classes that use these interfaces. The focus of this project is on measuring the update time of systems, so the performance of creating/destroying entities or adding/removing components is not measured.

The shared codebase for ECS may be changed in the future.

ECS Libraries

The following ECS libraries will be compared in this project (may change in the future):

ECS Comparisons

This project was inspired by the following repositories: