1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-28 07:19:09 +02:00
MLEM/MLEM.Extended/Tiled/IndividualTiledMapRenderer.cs

120 lines
5 KiB
C#
Raw Normal View History

2019-09-18 14:09:15 +02:00
using System;
using System.Collections.Generic;
2019-09-18 14:09:15 +02:00
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
using MLEM.Extensions;
using MonoGame.Extended;
using MonoGame.Extended.Tiled;
namespace MLEM.Extended.Tiled {
public class IndividualTiledMapRenderer {
private TiledMap map;
private TileDrawInfo[,,] drawInfos;
private GetDepth depthFunction;
private List<TiledMapTilesetAnimatedTile> animatedTiles;
2019-09-18 14:09:15 +02:00
public IndividualTiledMapRenderer(TiledMap map = null, GetDepth depthFunction = null) {
2019-09-18 14:09:15 +02:00
if (map != null)
this.SetMap(map, depthFunction);
2019-09-18 14:09:15 +02:00
}
public void SetMap(TiledMap map, GetDepth depthFunction = null) {
2019-09-18 14:09:15 +02:00
this.map = map;
this.depthFunction = depthFunction ?? ((tile, layer, layerIndex, position) => 0);
2019-09-18 14:09:15 +02:00
this.drawInfos = new TileDrawInfo[map.TileLayers.Count, map.Width, map.Height];
for (var i = 0; i < map.TileLayers.Count; i++) {
for (var x = 0; x < map.Width; x++) {
for (var y = 0; y < map.Height; y++) {
this.UpdateDrawInfo(i, x, y);
2019-09-18 14:09:15 +02:00
}
}
}
this.animatedTiles = new List<TiledMapTilesetAnimatedTile>();
foreach (var tileset in map.Tilesets) {
foreach (var tile in tileset.Tiles) {
if (tile is TiledMapTilesetAnimatedTile animated) {
this.animatedTiles.Add(animated);
}
}
}
2019-09-18 14:09:15 +02:00
}
public void UpdateDrawInfo(int layerIndex, int x, int y) {
var layer = this.map.TileLayers[layerIndex];
var tile = layer.GetTile(x, y);
if (tile.IsBlank) {
this.drawInfos[layerIndex, x, y] = null;
return;
}
var tileset = tile.GetTileset(this.map);
var tilesetTile = tileset.GetTilesetTile(tile, this.map);
var pos = new Point(x, y);
var depth = this.depthFunction(tile, layer, layerIndex, pos);
2020-01-01 12:18:35 +01:00
this.drawInfos[layerIndex, x, y] = new TileDrawInfo(this, tile, tileset, tilesetTile, pos, depth);
}
2019-09-18 14:09:15 +02:00
public void Draw(SpriteBatch batch, RectangleF? frustum = null) {
for (var i = 0; i < this.map.TileLayers.Count; i++) {
this.DrawLayer(batch, i, frustum);
}
}
public void DrawLayer(SpriteBatch batch, int layerIndex, RectangleF? frustum = null) {
var frust = frustum ?? new RectangleF(0, 0, float.MaxValue, float.MaxValue);
var minX = Math.Max(0, frust.Left / this.map.TileWidth).Floor();
var minY = Math.Max(0, frust.Top / this.map.TileHeight).Floor();
var maxX = Math.Min(this.map.Width, frust.Right / this.map.TileWidth).Ceil();
var maxY = Math.Min(this.map.Height, frust.Bottom / this.map.TileHeight).Ceil();
for (var x = minX; x < maxX; x++) {
for (var y = minY; y < maxY; y++) {
var info = this.drawInfos[layerIndex, x, y];
if (info != null)
info.Draw(batch);
}
}
}
public void UpdateAnimations(GameTime time) {
foreach (var animation in this.animatedTiles)
animation.Update(time);
}
2019-09-18 14:09:15 +02:00
public delegate float GetDepth(TiledMapTile tile, TiledMapTileLayer layer, int layerIndex, Point position);
private class TileDrawInfo {
private readonly IndividualTiledMapRenderer renderer;
private readonly TiledMapTileset tileset;
2020-01-01 12:18:35 +01:00
private readonly TiledMapTilesetTile tilesetTile;
2019-09-18 14:09:15 +02:00
private readonly Point position;
private readonly float depth;
2020-01-01 12:18:35 +01:00
private readonly SpriteEffects flipping;
2019-09-18 14:09:15 +02:00
2020-01-01 12:18:35 +01:00
public TileDrawInfo(IndividualTiledMapRenderer renderer, TiledMapTile tile, TiledMapTileset tileset, TiledMapTilesetTile tilesetTile, Point position, float depth) {
2019-09-18 14:09:15 +02:00
this.renderer = renderer;
this.tileset = tileset;
2020-01-01 12:18:35 +01:00
this.tilesetTile = tilesetTile;
2019-09-18 14:09:15 +02:00
this.position = position;
this.depth = depth;
2020-01-01 12:18:35 +01:00
if (tile.IsFlippedHorizontally)
this.flipping |= SpriteEffects.FlipHorizontally;
if (tile.IsFlippedVertically)
this.flipping |= SpriteEffects.FlipVertically;
2019-09-18 14:09:15 +02:00
}
public void Draw(SpriteBatch batch) {
2020-01-01 12:18:35 +01:00
var id = this.tilesetTile.LocalTileIdentifier;
if (this.tilesetTile is TiledMapTilesetAnimatedTile animated)
id = animated.CurrentAnimationFrame.LocalTileIdentifier;
2019-09-18 14:09:15 +02:00
var drawPos = new Vector2(this.position.X * this.renderer.map.TileWidth, this.position.Y * this.renderer.map.TileHeight);
2020-01-01 12:18:35 +01:00
batch.Draw(this.tileset.Texture, drawPos, this.tileset.GetTileRegion(id), Color.White, 0, Vector2.Zero, 1, this.flipping, this.depth);
2019-09-18 14:09:15 +02:00
}
}
}
}