X-Git-Url: https://git.dogcows.com/gitweb?a=blobdiff_plain;f=CarFire%2FCarFire%2FCarFire%2FMap.cs;h=f4d7ea4fa61a2637b90abff61392efcf52d58ce1;hb=beb1ce501897ce4c00f7e97c6923ba0af2451732;hp=4fb11cb93ec65fd7b49ed08161b1cd4fbefb0102;hpb=df831ce5a969f0e59c6ea22d5d47fbd4c8d9b987;p=chaz%2Fcarfire diff --git a/CarFire/CarFire/CarFire/Map.cs b/CarFire/CarFire/CarFire/Map.cs index 4fb11cb..f4d7ea4 100644 --- a/CarFire/CarFire/CarFire/Map.cs +++ b/CarFire/CarFire/CarFire/Map.cs @@ -158,7 +158,7 @@ namespace CarFire /// /// Get and set the zoom of the map view. The default zoom is - /// PixelsToUnitSquares. + /// Map.PixelsToUnitSquares. /// public float Zoom { @@ -277,21 +277,23 @@ namespace CarFire /// Get all the entities loaded from the map file. Exceptions could be /// thrown if there are entities without associated classes. /// + /// The game reference to be passed to entities. /// List of entity objects loaded. - public List GetAllEntities() + public List GetAllEntities(Game game) { - return mData.GetAllEntities(); + return mData.GetAllEntities(game); } /// /// Get the entities of a certain type loaded from the map file. Exceptions /// could be thrown if there are entities without associated classes. /// + /// The game reference to be passed to entities. /// Type of the entity you want a list of. /// List of entity objects loaded. - public List GetEntities() + public List GetEntities(Game game) { - return mData.GetEntities(); + return mData.GetEntities(game); } @@ -426,9 +428,9 @@ namespace CarFire } - public List GetAllEntities() + public List GetAllEntities(Game game) { - List list = new List(); + List list = new List(); foreach (RawEntity raw in mEntities) { @@ -436,16 +438,20 @@ namespace CarFire { string typename = raw.Attributes["type"]; - object[] args = new object[3]; + object[] args = new object[4]; args[0] = raw.Id; args[1] = raw.Position; args[2] = raw.Attributes; + args[3] = game; try { - - object entity = Activator.CreateInstance(System.Type.GetType("CarFire." + typename), args); - if (entity != null) list.Add(entity); + IEntity entity = (IEntity)Activator.CreateInstance(System.Type.GetType("CarFire." + typename), args); + if (entity != null) + { + entity.LoadContent(game.ContentManager); + list.Add(entity); + } else throw new RuntimeException(); } #pragma warning disable 0168 @@ -464,7 +470,7 @@ namespace CarFire return list; } - public List GetEntities() + public List GetEntities(Game game) { System.Type type = typeof(T); List list = new List(); @@ -474,13 +480,18 @@ namespace CarFire { if (raw.Attributes.ContainsKey("type") && typename == raw.Attributes["type"]) { - object[] args = new object[3]; + object[] args = new object[4]; args[0] = raw.Id; args[1] = raw.Position; args[2] = raw.Attributes; + args[3] = game; T entity = (T)Activator.CreateInstance(type, args); - if (entity != null) list.Add(entity); + if (entity != null) + { + ((IEntity)entity).LoadContent(game.ContentManager); + list.Add(entity); + } else throw new RuntimeException("Entity of type " + typename + " not loaded because an entity class can't be found."); } }