X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fcarfire;a=blobdiff_plain;f=CarFire%2FCarFire%2FCarFire%2FMap.cs;h=504a68ce7f9dca706131c80835b2c67c3b1fcce1;hp=95a8c2c9b75253b17cc4debd169d312ca3cf43f5;hb=08f41ef45f3c41ca6302150bc6d5270c8e7143db;hpb=c8f76edcbc66e1466db1cfef4bc314a7261670e8 diff --git a/CarFire/CarFire/CarFire/Map.cs b/CarFire/CarFire/CarFire/Map.cs index 95a8c2c..504a68c 100644 --- a/CarFire/CarFire/CarFire/Map.cs +++ b/CarFire/CarFire/CarFire/Map.cs @@ -7,6 +7,7 @@ using System.Runtime.Serialization; using System.Diagnostics; using Microsoft.Xna.Framework; using Microsoft.Xna.Framework.Graphics; +using System.Reflection; namespace CarFire { @@ -18,9 +19,6 @@ namespace CarFire /// public class Map { - // DEBUG: Tilesets not implemented at all. - public static Texture2D DefaultTile; - #region Public Constants public const float PixelsToUnitSquares = 64.0f; @@ -33,7 +31,7 @@ namespace CarFire /// /// The type of a map helps determine how the map is intended to be used. /// - public enum Type + public enum Mode { None, Campaign, @@ -46,18 +44,29 @@ namespace CarFire public class Metadata { public string Name; - public Type Type; + public Mode Type; public string Author; + public string Next; public HashSet NumPlayers = new HashSet(); public string Tileset; public int GridWidth; public int GridHeight; } + /// + /// The container class for information about an entity defined in the map. + /// + public class RawEntity + { + public char Id; + public Point Position; + public Dictionary Attributes = new Dictionary(); + } + #endregion - #region Public Attributes + #region Public Properties /// /// Get the name of the map. @@ -67,13 +76,18 @@ namespace CarFire /// /// Get the type of the map. /// - //public Type Type { get { return mData.mMetadata.Type; } } + public Mode Type { get { return mData.Metadata.Type; } } /// /// Get the author of the map. /// public string Author { get { return mData.Metadata.Author; } } + /// + /// Get the name of the next map to load after this one. + /// + public string Next { get { return mData.Metadata.Next; } } + /// /// Get a set of integers containing each allowable number of players. /// @@ -89,13 +103,33 @@ namespace CarFire /// public int Height { get { return mData.Metadata.GridHeight; } } - // TODO: This should return whatever object we end up using for tilesets. + /// + /// Get the name of the tileset. + /// public string Tileset { get { return mData.Metadata.Tileset; } } + /// + /// Get the current grid of open cells. On the grid, true means + /// the cell is open (i.e. an entity can occupy that cell), and false + /// means the cell is closed. Note that, just like Map.IsCellOpen, + /// only static scenery is considered; the grid cannot tell you + /// whether or not an entity is already occupying the cell. + /// + public bool[,] Grid { get { return mData.Grid; } } + + /// + /// Get a list of the raw entity containers loaded with the map. If you + /// want to get the actual entity objects, use Map.GetEntities and + /// Map.GetAllEntities instead. + /// + public List RawEntities { get { return mData.Entities; } } + /// /// Get and set the coordinate of the grid cell that should be in - /// the center of the screen when the map is drawn. + /// the center of the screen when the map is drawn. Setting this + /// will change the viewport of the map and will effect the return + /// values of Map.GetPointFromCoordinates and Map.GetRectangleFromCoordinates. /// public Vector2 CenterCell { @@ -103,6 +137,25 @@ namespace CarFire set { mView.CenterCell = value; } } + /// + /// Get and set the tilemap with its associated texture and tile + /// character to coordinate mappings. This effects what the map looks + /// like when it is drawn. You will need to reset any map instances + /// after setting a new tilemap. You should also set a tilemap before + /// instantiating any maps. + /// + public static Tilemap Tilemap; + + /// + /// Get and set the zoom of the map view. The default zoom is + /// Map.PixelsToUnitSquares. + /// + public float Zoom + { + get { return mView.Zoom; } + set { mView.Zoom = value; } + } + #endregion @@ -111,10 +164,13 @@ namespace CarFire /// /// Construct a map with the provided map data. /// - /// Map data. - public Map(Metadata metadata, char[,] grid, Dictionary> entities) + /// The metadata. + /// The grid. + /// The entities. + public Map(Metadata metadata, char[,] grid, char defaultTile, + List entities, Point[] playerPositions) { - mData = new Modal(metadata, grid, entities); + mData = new Model(metadata, grid, defaultTile, entities, playerPositions); mView = new View(mData); } @@ -183,10 +239,20 @@ namespace CarFire return mData.IsCellOpen(x, y); } + /// + /// created by Brady for AI precalculations + /// + /// X-coordinate. + /// Y-coordinate. + public bool IsWall(int x, int y) + { + return mData.IsWall(x, y); + } + /// /// Determine whether or not a cell can be occupied by a game entity. /// - /// X,Y-coordinates. + /// X,Y-coordinates. /// True if cell can be occupied, false otherwise. public bool IsCellOpen(Point point) { @@ -195,14 +261,91 @@ namespace CarFire /// - /// Get the entities loaded from the map file. + /// Get the starting position of a player. /// - /// Dictionary of entities. The keys are the entity - /// identifiers and the value is a dictionary of key-value pairs - /// associated with that entity. - public Dictionary> GetEntities() + /// The number of the player (i.e. 1-4). + /// This number must be a valid player number. + /// The starting position of the player. + public Point GetStartingPositionForPlayer(int playerNumber) { - return mData.Entities; + Debug.Assert(1 <= playerNumber && playerNumber <= NumPlayers.Max()); + return mData.PlayerPositions[playerNumber]; + } + + + /// + /// 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(Game game) + { + 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(Game game) + { + return mData.GetEntities(game); + } + + + /// + /// Set the tile of a cell. + /// + /// X-coordinate. + /// Y-coordinate. + /// The character representing the tile. + public void SetCell(int x, int y, char tile) + { + mData.SetCell(x, y, tile); + } + + /// + /// Set the tile of a cell. + /// + /// X,Y-coordinates. + /// The character representing the tile. + public void SetCell(Point point, char tile) + { + mData.SetCell(point.X, point.Y, tile); + } + + + /// + /// Clear a cell to the default tile. + /// + /// X-coordinate. + /// Y-coordinate. + public void ClearCell(int x, int y) + { + mData.ClearCell(x, y); + } + + /// + /// Clear a cell to the default tile. + /// + /// X,Y-coordinates. + public void ClearCell(Point point) + { + mData.ClearCell(point.X, point.Y); + } + + + /// + /// Reset the map to the state it was at right after loading. + /// + public void Reset() + { + mData.Reset(); + mView.Reset(); } #endregion @@ -210,22 +353,30 @@ namespace CarFire #region Private Types - class Modal + class Model { - Metadata mMetadata; - char[,] mGrid; - Dictionary> mEntities; + public Metadata Metadata { get { return mMetadata; } } + public List Entities { get { return mEntities; } } + public Point[] PlayerPositions { get { return mPlayerPositions; } } + public bool[,] Grid { get { return mBooleanGrid; } } + - public Modal(Metadata metadata, char[,] grid, Dictionary> entities) + public Model(Metadata metadata, char[,] grid, char defaultTile, + List entities, Point[] playerPositions) { Debug.Assert(metadata != null); Debug.Assert(grid != null); Debug.Assert(entities != null); Debug.Assert(metadata.GridWidth * metadata.GridHeight == grid.Length); + Debug.Assert(Tilemap != null); mMetadata = metadata; - mGrid = grid; + mCleanGrid = grid; + mDefaultTile = defaultTile; mEntities = entities; + mPlayerPositions = playerPositions; + + Reset(); #if DEBUG Console.WriteLine("Loaded map {0} of type {1} written by {2}.", @@ -236,64 +387,201 @@ namespace CarFire } - public Metadata Metadata { get { return mMetadata; } } - public Dictionary> Entities { get { return mEntities; } } + public void Reset() + { + mGrid = (char[,])mCleanGrid.Clone(); + + mBooleanGrid = new bool[mMetadata.GridWidth, mMetadata.GridHeight]; + for (int x = 0; x < mMetadata.GridWidth; x++) + { + for (int y = 0; y < mMetadata.GridHeight; y++) + { + mBooleanGrid[x, y] = IsCellOpen(x, y); + } + } + } public bool IsCellOpen(int x, int y) { - // TODO: Still need to define characters for types of scenery. - return mGrid[x, y] == ' '; + if (!IsOnMap(x, y)) return false; + return (Tilemap.GetTileFlags(mGrid[x, y]) & TileFlags.Open) == TileFlags.Open; + } + + //created by Brady for AI precalculations + public bool IsWall(int x, int y) + { + if (!IsOnMap(x, y)) return false; + return (Tilemap.GetTileFlags(mGrid[x, y]) & TileFlags.Wall) == TileFlags.Wall; + } + + public void SetCell(int x, int y, char tile) + { + if (IsOnMap(x, y)) + { + mGrid[x, y] = tile; + mBooleanGrid[x, y] = IsCellOpen(x, y); + } + } + + public char GetCell(int x, int y) + { + if (IsOnMap(x, y)) return mGrid[x, y]; + return mDefaultTile; + } + + public void ClearCell(int x, int y) + { + SetCell(x, y, mDefaultTile); } + + public bool IsOnMap(int x, int y) + { + return 0 <= x && x < Metadata.GridWidth && 0 <= y && y < Metadata.GridHeight; + } + + + public List GetAllEntities(Game game) + { + List list = new List(); + + foreach (RawEntity raw in mEntities) + { + if (raw.Attributes.ContainsKey("type")) + { + string typename = raw.Attributes["type"]; + + object[] args = new object[4]; + args[0] = raw.Id; + args[1] = raw.Position; + args[2] = raw.Attributes; + args[3] = game; + + try + { + IEntity entity = (IEntity)Activator.CreateInstance(System.Type.GetType("CarFire." + typename), args); + if (entity != null) + { + entity.LoadContent(game.ContentManager); + list.Add(entity); + } + else throw new Exception(); + } +#pragma warning disable 0168 + catch (System.Exception ex) +#pragma warning restore 0168 + { + throw new Exception("Entity of type " + typename + " not loaded because an entity class can't be found."); + } + } + else + { + Console.WriteLine("Ignoring entity with identifier " + raw.Id + " since it has no type key."); + } + } + + return list; + } + + public List GetEntities(Game game) + { + System.Type type = typeof(T); + List list = new List(); + + string typename = typeof(T).Name; + foreach (RawEntity raw in mEntities) + { + if (raw.Attributes.ContainsKey("type") && typename == raw.Attributes["type"]) + { + 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) + { + ((IEntity)entity).LoadContent(game.ContentManager); + list.Add(entity); + } + else throw new Exception("Entity of type " + typename + " not loaded because an entity class can't be found."); + } + } + + return list; + } + + + Metadata mMetadata; + char[,] mGrid; + char[,] mCleanGrid; + bool[,] mBooleanGrid; + char mDefaultTile; + List mEntities; + Point[] mPlayerPositions; } class View { - Modal mData; - public Vector2 CenterCell; - Viewport mViewport; + public float Zoom; - public View(Modal data) + public View(Model data) { Debug.Assert(data != null); mData = data; + + Reset(); + } + + + public void Reset() + { + CenterCell = Vector2.Zero; + Zoom = PixelsToUnitSquares; } + public void Draw(SpriteBatch spriteBatch) { + if (Tilemap == null) throw new Exception("Cannot draw map without first setting the tilemap."); mViewport = spriteBatch.GraphicsDevice.Viewport; - // TODO: There is no culling yet, but it runs so fast that it probably won't ever need it. for (int y = 0; y < mData.Metadata.GridHeight; y++) { for (int x = 0; x < mData.Metadata.GridWidth; x++) { - if (mData.IsCellOpen(x, y)) - { - spriteBatch.Draw(Map.DefaultTile, GetRectangleFromCoordinates(x, y), Color.White); - } - else - { - spriteBatch.Draw(Map.DefaultTile, GetRectangleFromCoordinates(x, y), Color.DarkBlue); - } + Tilemap.Draw(spriteBatch, mData.GetCell(x, y), GetRectangleFromCoordinates(x, y)); } } } - /// - /// Get a matrix to transform a point from grid-space to screen coordinates. This - /// method uses the viewport to bound the edges of the map such that the camera - /// will not show anything outside of the grid. - /// - /// The point to put in the center. - /// The transformation matrix. + + public Point GetPointFromCoordinates(float x, float y) + { + Matrix transform = GetTransformation(CenterCell); + Vector2 point = Vector2.Transform(new Vector2(x, y), transform); + + return new Point((int)point.X, (int)point.Y); + } + + public Rectangle GetRectangleFromCoordinates(float x, float y) + { + Matrix transform = GetTransformation(CenterCell); + Vector2 point = Vector2.Transform(new Vector2(x, y), transform); + + return new Rectangle((int)Math.Round(point.X, 0), (int)Math.Round(point.Y, 0), (int)Math.Round(Zoom, 0), (int)Math.Round(Zoom, 0)); + } + + + Matrix GetTransformation(Vector2 center) { - float halfRatio = PixelsToUnitSquares * 0.5f; + float halfRatio = Zoom * 0.5f; Matrix transform = Matrix.CreateTranslation(-center.X, -center.Y, 0.0f); - transform *= Matrix.CreateScale(PixelsToUnitSquares); + transform *= Matrix.CreateScale(Zoom); transform *= Matrix.CreateTranslation(mViewport.Width * 0.5f - halfRatio, mViewport.Height * 0.5f - halfRatio, 0.0f); @@ -314,21 +602,8 @@ namespace CarFire } - public Point GetPointFromCoordinates(float x, float y) - { - Matrix transform = GetTransformation(CenterCell); - Vector2 point = Vector2.Transform(new Vector2(x, y), transform); - - return new Point((int)point.X, (int)point.Y); - } - - public Rectangle GetRectangleFromCoordinates(float x, float y) - { - Matrix transform = GetTransformation(CenterCell); - Vector2 point = Vector2.Transform(new Vector2(x, y), transform); - - return new Rectangle((int)point.X, (int)point.Y, (int)PixelsToUnitSquares, (int)PixelsToUnitSquares); - } + Model mData; + Viewport mViewport; } #endregion @@ -336,7 +611,7 @@ namespace CarFire #region Private Variables - Modal mData; + Model mData; View mView; #endregion