Anyways, I started programming a simple Component Entity System, just so that I could see how I like it. Well, after getting through a bit of it, I my base Component class had a single pure virtual function: void OnUpdate(float deltaTime). Further into it, I noticed that I never had any code in my overridden OnUpdate functions in derived classes. For example, I created a RenderComponent which held a renderable object (I'm using SFML by the way), and a z-order. I couldn't have the components handle their own rendering, because I had to rearrange them by their z order, so things were rendered in the correct way. With a CollisionComponent, I needed the CollisionSystem to actually check for the collisions.
As I thought about this more and more, I realized that the OnUpdate function was essentially useless to me. Since the updating code was the same, I decided to just put it into the System that managed that component. So that System would iterate through each component and update it accordingly. In this way, each entity isn't updating it's own set of components, rather each component is being updated, independent of the entity.
Are there any real qualms to this design? I could easily force the OnUpdate in the Component, have the RenderSystem order them correctly, then have each RenderComponent render itself. And in the CollisionComponent, I suppose I'd simply have the System handle the detection, and the OnUpdate resolve the collision.
Sorry if this makes little sense, I'm on a lack of sleep, and I'm just turning this over in my mind, trying to decide if I should fit the Update function in, before I get too much farther in. I appreciate any response
