Files
MonoGame.Extended/Source/MonoGame.Extended.Tiled/TiledMapTileLayer.cs
T
2018-01-17 23:33:45 +10:00

61 lines
1.7 KiB
C#

using System.Collections.Generic;
using Microsoft.Xna.Framework;
namespace MonoGame.Extended.Tiled
{
public class TiledMapTileLayer : TiledMapLayer
{
public TiledMapTileLayer(string name, int width, int height, int tileWidth, int tileHeight, IEnumerable<TiledMapTile> tiles,
Vector2? offset = null, float opacity = 1, bool isVisible = true)
: base(name, offset, opacity, isVisible)
{
Width = width;
Height = height;
TileWidth = tileWidth;
TileHeight = tileHeight;
Tiles = new List<TiledMapTile>(tiles);
}
public int Width { get; }
public int Height { get; }
public int TileWidth { get; }
public int TileHeight { get; }
public List<TiledMapTile> Tiles { get; }
public int GetTileIndex(ushort x, ushort y)
{
return x + y * Width;
}
public bool TryGetTile(ushort x, ushort y, out TiledMapTile? tile)
{
var index = GetTileIndex(x, y);
if (index < 0 || index >= Tiles.Count)
{
tile = null;
return false;
}
tile = Tiles[index];
return true;
}
public TiledMapTile GetTile(ushort x, ushort y)
{
var index = GetTileIndex(x, y);
return Tiles[index];
}
public void SetTile(ushort x, ushort y, uint globalIdentifier)
{
var index = GetTileIndex(x, y);
Tiles[index] = new TiledMapTile(globalIdentifier, x, y);
}
public void RemoveTile(ushort x, ushort y)
{
SetTile(x, y, 0);
}
}
}