As a game dev, I'm starting to feel like ECS isn't the right paradigm. Seeing this 700 nodes graph with all the dependencies screams technical debt and domino effect (changing one small system would impact a lot of other ones). Not sure if there's anything better right now, but seeing everyone copy what Unity did feels like there isn't a ton of innovation in how to build gameplay systems. Lots of engines are being ma…
Show HN: Interactive ECS Systems/Component Explorer for Cities: Skylines 2
21–30 of 50 posts
Re: Show HN: Interactive ECS Systems/Component Explorer for Cities: Skylines 2
#22Earlier quoted context omitted.
Slightly off topic, but does anyone know what the status is of Unity's patent on ECS? I remember this thread [0] from a few years ago, and it looks like the patent is still valid [1], but I still see ECS all over the place outside of Unity contexts. Is Unity just not interested in enforcing the patent? Do they know they'd lose if they tried? Or am I missing a recent development? [0] https://news.ycombinator.com/item?…
Here's cart's analysis: https://i.imgur.com/Kmokcmq.png Cart is the creator of Bevy (ECS engine in Rust) and Sander is the creator of Flecs (ECS engine in C) Assume they lose if they try to enforce it, but don't know of any attempts yet.
Re: Show HN: Interactive ECS Systems/Component Explorer for Cities: Skylines 2
#23As a game dev, I'm starting to feel like ECS isn't the right paradigm. Seeing this 700 nodes graph with all the dependencies screams technical debt and domino effect (changing one small system would impact a lot of other ones). Not sure if there's anything better right now, but seeing everyone copy what Unity did feels like there isn't a ton of innovation in how to build gameplay systems. Lots of engines are being ma…
Would you not expect that in a sim game though? I mean, why would you have a nice tree when everything interacts with almost everything?
Re: Show HN: Interactive ECS Systems/Component Explorer for Cities: Skylines 2
#24what do you mean by this?
Re: Show HN: Interactive ECS Systems/Component Explorer for Cities: Skylines 2
#25> it's one of the first games that is using ECS what do you mean by this?
Re: Show HN: Interactive ECS Systems/Component Explorer for Cities: Skylines 2
#26As a game dev, I'm starting to feel like ECS isn't the right paradigm. Seeing this 700 nodes graph with all the dependencies screams technical debt and domino effect (changing one small system would impact a lot of other ones). Not sure if there's anything better right now, but seeing everyone copy what Unity did feels like there isn't a ton of innovation in how to build gameplay systems. Lots of engines are being ma…
> (changing one small system would impact a lot of other ones) Would you not expect that in a sim game though? I mean, why would you have a nice tree when everything interacts with almost everything?
Re: Show HN: Interactive ECS Systems/Component Explorer for Cities: Skylines 2
#27> it's one of the first games that is using ECS what do you mean by this?
Re: Show HN: Interactive ECS Systems/Component Explorer for Cities: Skylines 2
#28Earlier quoted context omitted.
> (changing one small system would impact a lot of other ones) Would you not expect that in a sim game though? I mean, why would you have a nice tree when everything interacts with almost everything?
Of course, but their use of the ECS seems excessive. I'd have expected a few big systems for each area of the game, clicking on Game.Simulation.AdjustElectricityConsumptionSystem for example reveals quite a lot of things that could be within one system. I bet the current design passes and queries data all over the place, very redundantly.
Re: Show HN: Interactive ECS Systems/Component Explorer for Cities: Skylines 2
#29As a game dev, I'm starting to feel like ECS isn't the right paradigm. Seeing this 700 nodes graph with all the dependencies screams technical debt and domino effect (changing one small system would impact a lot of other ones). Not sure if there's anything better right now, but seeing everyone copy what Unity did feels like there isn't a ton of innovation in how to build gameplay systems. Lots of engines are being ma…
This is a misunderstanding.
_Components_ don't depend on each other, nor do they (or should they) access each other, because they don't contain any logic. _Systems_ access components.
Re: Show HN: Interactive ECS Systems/Component Explorer for Cities: Skylines 2
#30Earlier quoted context omitted.
Here's cart's analysis: https://i.imgur.com/Kmokcmq.png Cart is the creator of Bevy (ECS engine in Rust) and Sander is the creator of Flecs (ECS engine in C) Assume they lose if they try to enforce it, but don't know of any attempts yet.
So, uh, am I reading that right? One part is “use array of structs for ECS” and the other is “use struct of arrays for ECS”? Really?