To start, some classes:
public abstract class Component
{
GenericSystem mySystem;
public Component() { mySystem = null;}
public void SetSystem(GenericSystem aSystem) { mySystem = aSystem; }
}
public class PhysicsComponent : Component
{
int pos;
public PhysicsComponent(int x) : base() { pos = x; }
}
public abstract class GenericSystem : List<Component>
{
public Type ComponentType;
public GenericSystem(Type componentType)
{ ComponentType = componentType; }
public void RegisterComponent(c)
{
Add(c);
c.SetSystem(this);
}
}
public class PhysicsSystem : GenericSystem
{
public PhysicsSystem() : base(typeof(PhysicsComponent)) { }
}
public static GenericEngine
{
List<GenericSystem> systems = new List<GenericSystem>();
//... Code here that adds some GenericSystems to the systems ...
public static void RegisterComponent(Component c)
{
foreach(GenericSystem aSystem in systems)
{
Type t = aSystem.ComponentType;
//PROBLEM IS HERE
t c_as_t = c as t;
//
if ( c_as_t != null)
aSystem.RegisterComponent(c);
}
}
}
The error I get is "The type or namespace 't' could not be found."
I want each GenericSystem to have a Component type that it wants registered to it. This way, anything registering a new Component c simply calls GenericEngine.RegisterComponent(c) and all systems interested in that type of component register it.
Ideally, I'd like to have the code more along the lines of:
//where T must be a child of Component
public abstract class GenericSystem<T> : List<Component> { /... }
public class PhysicsSystem : GenericSystem<PhysicsComponent>
I suspect this isn't a terribly complicated question, and I'm missing something about how C# deals with types (or, more embarrassingly, generics in general) so if it's an easy question, please just point me in the direction of some reading material. Thanks in advance!
where T : Component. This type of registering + notifications sounds like the Observer Design Pattern, so you may want to check it out. I think you'll want to do two layers of that pattern. – Merlyn Morgan-Graham Aug 26 '11 at 22:38