Tagged Questions
6
votes
1answer
502 views
Processing component pools problem - Entity Subsystem
Architecture description
I'm creating (designing) an entity system and I ran into many problems. I'm trying to keep it Data-Oriented and efficient as much as possible. My components are POD ...
2
votes
1answer
277 views
How do i make player input object spawning data driven?
I'm using component based design and am at the stage or re-factoring simple player input to be data driven.
Currently i have a PlayerControlComponent, which an entity has if it should be player ...
5
votes
4answers
578 views
Drawbacks of using reflection for a component based system at loading-time
I'm coding a little casual game in Java using Slick2D.
This game use a lot of different "objects", managed in a composite way. So, firearms, furniture in the map, NPC and player character will be ...