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;
|
2021-04-02 17:12:27 +02:00
|
|
|
using MLEM.Textures;
|
2021-03-18 17:28:08 +01:00
|
|
|
using NUnit.Framework;
|
|
|
|
|
2022-12-13 13:11:36 +01:00
|
|
|
namespace Tests;
|
2022-10-27 10:22:25 +02:00
|
|
|
|
2024-10-26 14:41:36 +02:00
|
|
|
public class TestDataTextureAtlas : GameTestFixture {
|
2022-10-27 10:22:25 +02:00
|
|
|
|
|
|
|
[Test]
|
|
|
|
public void Test([Values(0, 4)] int regionX, [Values(0, 4)] int regionY) {
|
2024-10-26 14:41:36 +02:00
|
|
|
using var texture = new Texture2D(this.Game.GraphicsDevice, 1, 1);
|
2022-10-27 10:22:25 +02:00
|
|
|
var region = new TextureRegion(texture, regionX, regionY, 1, 1);
|
2024-10-26 14:41:36 +02:00
|
|
|
var atlas = DataTextureAtlas.LoadAtlasData(region, this.Game.RawContent, "Texture.atlas");
|
2022-10-27 10:22:25 +02:00
|
|
|
Assert.AreEqual(12, atlas.Regions.Count());
|
|
|
|
|
|
|
|
// no pivot
|
|
|
|
var plant = atlas["Plant"];
|
|
|
|
Assert.AreEqual(plant.Area, new Rectangle(96 + regionX, 0 + regionY, 16, 32));
|
|
|
|
Assert.AreEqual(plant.PivotPixels, Vector2.Zero);
|
|
|
|
|
|
|
|
// no added offset
|
|
|
|
var table = atlas["LongTableUp"];
|
|
|
|
Assert.AreEqual(table.Area, new Rectangle(0 + regionX, 32 + regionY, 64, 48));
|
|
|
|
Assert.AreEqual(table.PivotPixels, new Vector2(16, 48 - 32));
|
|
|
|
|
|
|
|
// added offset
|
|
|
|
var table2 = atlas["LongTableDown"];
|
|
|
|
Assert.AreEqual(table2.Area, new Rectangle(64 + regionX, 32 + regionY, 64, 48));
|
|
|
|
Assert.AreEqual(table2.PivotPixels, new Vector2(112 - 64, 48 - 32));
|
|
|
|
|
|
|
|
// negative pivot
|
|
|
|
var negativePivot = atlas["TestRegionNegativePivot"];
|
|
|
|
Assert.AreEqual(negativePivot.Area, new Rectangle(0 + regionX, 32 + regionY, 16, 16));
|
|
|
|
Assert.AreEqual(negativePivot.PivotPixels, new Vector2(-32, 46 - 32));
|
|
|
|
|
|
|
|
// cpy (pivot pixels should be identical to LongTableUp because they're region-internal)
|
|
|
|
var copy1 = atlas["Copy1"];
|
|
|
|
Assert.AreEqual(copy1.Area, new Rectangle(0 + 16 + regionX, 32 + regionY, 64, 48));
|
|
|
|
Assert.AreEqual(copy1.PivotPixels, new Vector2(16, 48 - 32));
|
|
|
|
var copy2 = atlas["Copy2"];
|
|
|
|
Assert.AreEqual(copy2.Area, new Rectangle(0 + 32 + regionX, 32 + 4 + regionY, 64, 48));
|
|
|
|
Assert.AreEqual(copy2.PivotPixels, new Vector2(16, 48 - 32));
|
|
|
|
|
|
|
|
// frm
|
|
|
|
var copy3 = atlas["Copy3"];
|
|
|
|
Assert.AreEqual(copy3.Area, new Rectangle(0 + 2 + regionX, 32 + 4 + regionY, 64, 48));
|
|
|
|
Assert.AreEqual(copy3.PivotPixels, new Vector2(16, 48 - 32));
|
|
|
|
|
|
|
|
// data
|
|
|
|
var data = atlas["DataTest"];
|
|
|
|
Assert.AreEqual("ThisIsSomeData", data.GetData<string>("DataPoint1"));
|
|
|
|
Assert.AreEqual("3.5", data.GetData<string>("DataPoint2"));
|
|
|
|
Assert.AreEqual("---", data.GetData<string>("DataPoint3"));
|
2021-03-18 17:28:08 +01:00
|
|
|
}
|
2022-10-27 10:22:25 +02:00
|
|
|
|
2022-06-17 18:23:47 +02:00
|
|
|
}
|