Entity Component System (ECS) - Definition and Simple Implementation

Поділитися
Вставка
  • Опубліковано 28 кві 2024
  • ➤ The Code: gitlab.com/falconerd/ember-ecs
    ➤ Support the channel: ko-fi.com/falconerd
    ➤ Website: dylanfalconer.com
    ➤ GitHub: github.com/Falconerd
    ➤ Twitch: / falconerd
    ➤ Discord: / discord

КОМЕНТАРІ • 130

  • @beepisinthezipper9503
    @beepisinthezipper9503 3 роки тому +31

    I am working on implementing my own basic ECS for the first time and this video is extremely helpful! Thank you!

  • @ishdx9374
    @ishdx9374 3 роки тому +27

    I'm glad you used C as example, because that's exactly the language I'm using

    • @climatechangedoesntbargain9140
      @climatechangedoesntbargain9140 2 роки тому +1

      wish it was Rust

    • @ishdx9374
      @ishdx9374 2 роки тому +5

      @@climatechangedoesntbargain9140 rust has too many features that can obsturct the original concept

    • @climatechangedoesntbargain9140
      @climatechangedoesntbargain9140 2 роки тому

      @@ishdx9374 explain that

    • @ishdx9374
      @ishdx9374 2 роки тому +2

      @@climatechangedoesntbargain9140 the point of an ECS is to have a low-level control of your memory, rust while allows that, it's unpractical, because of the friction it imposes (yes I already programmed in rust for around a year)

    • @climatechangedoesntbargain9140
      @climatechangedoesntbargain9140 2 роки тому

      @@ishdx9374 explain how it is unpractical in this context

  • @yrds96
    @yrds96 2 роки тому +10

    Thanks for this well explained video, this gonna help me a lot to implement ECS in my game that I am writing in c++. You made one of few videos that really implemented ECS and no just a bunch of components with logic implemented in.

  • @JohnDoe-mr6mq
    @JohnDoe-mr6mq 3 роки тому +6

    I like topics discussed on this channel
    Appreciate what you're doing!

  • @barondominiclexertux6334
    @barondominiclexertux6334 3 роки тому +19

    I've shattered up. The clean code that does the job better (100 times) than code of mine (about 10k lines of code I was proud of). Okay, the man of great mind, you beat me. I realized than my programming skills isn't that great as yours.

    • @DylanFalconer
      @DylanFalconer  3 роки тому +8

      Hah, and then you go on to find a memory leak in my code :D I hope you learned something from this video, the system does have limitations which other commenters have pointed out

  • @Salantor
    @Salantor 3 роки тому +9

    This really helped me to finally understand what the hell ECS actually is. Thank you, kind sir.

  • @osx8227
    @osx8227 Рік тому +1

    I found your channel just recently and I love your videos and the knowledge it provides.

  • @LongestYardstick
    @LongestYardstick 2 роки тому

    Thanks for the rundown!

  • @bithunter3215
    @bithunter3215 Рік тому +1

    Thanks. Very useful information. Even if the concept is not new, its sometimes hard to see through the jungle of buzzwords. Also liked you showing code in C, which makes it very easy to understand.

  • @itsugo_
    @itsugo_ 2 роки тому +1

    Thanks for the clear explanation!

  • @leonlysak4927
    @leonlysak4927 Рік тому +1

    Damn I wish this was the first video I came across trying to learn this. Thanks for the very clear explanations and walkthrough dude

  • @RickoDeSea
    @RickoDeSea 2 роки тому +1

    Best video on ECS so far.

  • @AntonioIvoDaSilvaGomes
    @AntonioIvoDaSilvaGomes 18 днів тому

    Nice explanation. What font are you using in your terminal?!

  • @ChronoWrinkle
    @ChronoWrinkle Рік тому

    Wow tht is amazingly helpful as i learn unity dots, getting understanding of it under the hood is priceless, thank you!

  • @VoyivodaFTW1
    @VoyivodaFTW1 3 місяці тому +1

    This has to be in the top 5 UA-cam videos on the subject. You should be a professor or run paid courses because that was the best explanation on the subject.

    • @DylanFalconer
      @DylanFalconer  3 місяці тому

      Why thank you very much, I'm glad you found it useful :)

  • @vapandris
    @vapandris 3 роки тому +9

    it would have been intresting to see how you'd add a new type of entity with it's own behaviour.
    I was thinking about adding a new flag array (or expand alive-array), that stores what is the type of the entity, and use that, but then if you'll have tons of entities, the system part can be overloaded with if statements.
    Anyway loved the video! :D

    • @DylanFalconer
      @DylanFalconer  3 роки тому +5

      Generally with these types of systems "types" are just a combination of unique component sets. However, as you said, you may want more types of flags without making separate components, like IS_ON_FIRE, IS_FROZEN, etc. In that case you could end up with a bunch of if statements or you could use something like a state machine.

  • @anonimowelwiatko9811
    @anonimowelwiatko9811 Місяць тому

    Cherno mentioned something really important. If you create entities that can have multiple components, store them as pointers or even worse, create them inside Entity, you will end up with high memory usage and in case of iterating through components and dealing with elements, it will become a huge mess with bad performance. Idea of having entity just as an ID or keep this connection to component but within systems, iterate over components, not entities itself is much more appealing and performant.

  • @bollebips9491
    @bollebips9491 3 роки тому +4

    Nice video. I have a question though. Since you use a bitmask on the entities to store which components they have, that heavily depends on the order in which you register the components. If you suddenly change the order in which you register them, the system fails. Do you have any plans for handling that? I'm asking because I'm working on my own ECS as well, but can't figure out how to solve this problem.

    • @DylanFalconer
      @DylanFalconer  3 роки тому +2

      I'm not actually using an ECS in the game I'm working on, but I see the issue. If one day you decide that component C is not necessary anymore, but you still register A, B, D, then they will be misaligned. You could just continue to register C until you need another kind of component later on. Not the most appealing solution, but should work okay.
      Is there another reason you may want to change the registration order?

    • @bollebips9491
      @bollebips9491 3 роки тому +2

      @@DylanFalconer Thx for the reply. I understand that, if you know the internals of your own engine well, this is not really a big issue, as you can just take this small inconvenience into account. I was mostly thinking from the perspective of other people using your ECS.
      I actually found a pretty nice solution online, where you keep track inside your systems, which entities and components are relevant for that system, not the other way around, where the entity keeps track of that. This way, the order of the components or systems is not important anymore :)
      Again, great video, and thanks for the reply :)

  • @astroid-ws4py
    @astroid-ws4py 3 роки тому +2

    Wow nice video, Found this randomly, Will follow your channel

  • @cyanuranus6456
    @cyanuranus6456 Рік тому

    I Love Default Cubes in Any Kinds of 3D Game Engines

  • @kavorkagames
    @kavorkagames 3 роки тому +7

    Nice straight forward code. Maybe use an enum to help with the remembering part that makes you uneasy.

  • @eien7228
    @eien7228 2 роки тому

    what is that pig generator project called? i rly wanna start making one but i might need some hints

  • @spacedoctor5620
    @spacedoctor5620 Рік тому +2

    How does your ecs_query handle many systems and many (MANY) entities? I really like the approach you've laid out here, it's helped me in developing my own, but this seems to be a possible bottleneck since this must be queried on every call of your system function. I guess since you don't have a concept of a 'system' in your framework (meaning you aren't keeping any internal state for systems), it's hard to get around this problem, though.

    • @DylanFalconer
      @DylanFalconer  Рік тому

      I haven't thought about this problem in a long time, but my first approach would be to benchmark and if it's actually an issue then look into caching results.

  • @cyanuranus6456
    @cyanuranus6456 Рік тому

    I Love Default Cubes in 3D Game Engines

  • @phee3D
    @phee3D 5 місяців тому +1

    does using a bit field to filter entities in this implementation mean the number of component types we can create is extremely limited? For example would using a 64 bit int as the bit field mean our application can only have 64 component types? If so then this really isn't going to be enough for many applications, what would you suggest as an alternative to using a bitfield here?

    • @cipherpunk7409
      @cipherpunk7409 3 місяці тому

      No reason you couldn't have multiple bit fields to handle additional component types.

    • @phee3D
      @phee3D 3 місяці тому

      @@cipherpunk7409 i ended up using sparse sets after reading the article "ecs back and forth" by the creator of entt which solves this problem. But yes multiple bitfields could do however I'm not sure how nicely it would scale if you had, say 200 or more components which is not an unrealistic number especially if your game engine itself uses ecs internally as well as for gameplay programming.

    • @cipherpunk7409
      @cipherpunk7409 3 місяці тому +1

      @@phee3D Nice solution. I've definitely heard of people doing the multiple bit field solution for 200+ components without performance issues. But it definitely depends on what you're making. Glad you found your path forward!

  • @cyanuranus6456
    @cyanuranus6456 Рік тому

    I Love 3D Game Engines Entity Component System

  • @RockAristote
    @RockAristote Рік тому

    Powerful

  • @Arctecflare
    @Arctecflare 3 роки тому +1

    I missed u

  • @anonymoussloth6687
    @anonymoussloth6687 Рік тому

    What did you use to create the ui at 10:13? Imgui?

    • @DylanFalconer
      @DylanFalconer  Рік тому

      Similar, github.com/Immediate-Mode-UI/Nuklear

  • @911WasActuallyBears
    @911WasActuallyBears 2 роки тому +3

    17:50 lol

  • @3rdGen-Media
    @3rdGen-Media Рік тому

    Crashes on first call to ecs_query if enough entities aren't registered to trigger the realloc bc state.query_result.list was never malloc'd within ecs_init

  • @danieleccleston7928
    @danieleccleston7928 3 роки тому

    Would a game like smash brothers ultimate benifit from an ECS structures?

    • @DylanFalconer
      @DylanFalconer  3 роки тому +4

      ECS is mostly useful for engine makers rather than game-makers. If you know the types of entities you want to have in your game then you can design a straightforward system for your game with that information. If your game design is fluid and/or experimental then you may benefit from ECS's flexibility.

    • @danieleccleston7928
      @danieleccleston7928 3 роки тому

      @@DylanFalconer alright thanks

  • @tastyham
    @tastyham Рік тому +1

    " not working on a game "
    Unity : *ECS*

  • @islandcave8738
    @islandcave8738 Рік тому

    Are you sure you don't want to make your tiles entities. Seems like you could make the behaviour of your tiles more flexible by being able to swap in and out different components on the fly and have systems that work on those components.

    • @DylanFalconer
      @DylanFalconer  Рік тому +1

      Indeed you can do that, it really depends what kind of functionality you want for your tiles. If your tiles can perform actions then it's something to consider for sure. For pure aesthetics, probably not. Minecraft has a type of split system where most solid blocks are just Blocks but more complex things like pistons and furnaces are TileEntities.

    • @sanderbos4243
      @sanderbos4243 Рік тому

      The downside of mixing tiles with regular entities is that tile position components will be mixed with entity position components. This could be bad if you have a huge number of tiles and you want to for example do collision checking between the entities, because at least in this video's implementation you'd also loop over every tile while just looking for entity position components. A more efficient and complex implementation should totally sidestep this issue. And the other issue with this video's implementation is of course that adding more components makes things slightly slower. Look up enTT on The Cherno's channel for a showcase of such an efficient implementation.

  • @danieleccleston7928
    @danieleccleston7928 3 роки тому +1

    Nice slides, might I ask which software?

    • @DylanFalconer
      @DylanFalconer  3 роки тому +2

      Cheers! For this one I actually just used images and OBS's "image slide show" option.

    • @danieleccleston7928
      @danieleccleston7928 3 роки тому +1

      @@DylanFalconer oh that's cool thanks

  • @cyanuranus6456
    @cyanuranus6456 Рік тому

    Together with 3D Game Engines RGB-Colored Arrows 3D XYZ Axis

  • @joshopelisabeth2248
    @joshopelisabeth2248 3 місяці тому

    This is a very clear explanation! Thank you! But you microphone or recording application is disaster! 😅❤

  • @arikfm
    @arikfm Рік тому

    The video started off well but it lost me around the 10 min mark.

  • @ugurcan969
    @ugurcan969 2 місяці тому +1

    This is a bad example of ECS, go look for a better implementation.

    • @DylanFalconer
      @DylanFalconer  Місяць тому

      Can you explain why it's bad? I bet you can't