1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-05-21 08:17:00 +02:00
MLEM/Tests/DataTextureAtlasTests.cs

25 lines
785 B
C#
Raw Normal View History

2021-03-18 17:28:08 +01:00
using System.Linq;
using Microsoft.Xna.Framework;
2021-04-02 17:12:27 +02:00
using Microsoft.Xna.Framework.Graphics;
2021-03-18 17:28:08 +01:00
using MLEM.Data;
using MLEM.Data.Content;
2021-04-02 17:12:27 +02:00
using MLEM.Textures;
2021-03-18 17:28:08 +01:00
using NUnit.Framework;
namespace Tests {
public class TestDataTextureAtlas {
[Test]
public void Test() {
2021-04-02 17:12:27 +02:00
using var game = TestGame.Create();
using var texture = new Texture2D(game.GraphicsDevice, 1, 1);
var atlas = DataTextureAtlas.LoadAtlasData(new TextureRegion(texture), game.RawContent, "Texture.atlas");
2021-03-18 17:28:08 +01:00
Assert.AreEqual(atlas.Regions.Count(), 5);
var table = atlas["LongTableUp"];
Assert.AreEqual(table.Area, new Rectangle(0, 32, 64, 48));
Assert.AreEqual(table.PivotPixels, new Vector2(16, 48 - 32));
}
}
}