forked from MonoGame/MonoGame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BitmapContentTests.cs
292 lines (262 loc) · 11.4 KB
/
BitmapContentTests.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Content.Pipeline.Graphics;
using NUnit.Framework;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.InteropServices;
using Microsoft.Xna.Framework.Graphics;
namespace MonoGame.Tests.ContentPipeline
{
class BitmapContentTests
{
// Needed to copy from an array of struct to a byte array
static byte[] ToByteArray<T>(T[] source) where T : struct
{
GCHandle handle = GCHandle.Alloc(source, GCHandleType.Pinned);
try
{
IntPtr pointer = handle.AddrOfPinnedObject();
byte[] destination = new byte[source.Length * Marshal.SizeOf(typeof(T))];
Marshal.Copy(pointer, destination, 0, destination.Length);
return destination;
}
finally
{
if (handle.IsAllocated)
handle.Free();
}
}
static void Fill<T>(PixelBitmapContent<T> content, T color)
where T : struct, IEquatable<T>
{
var src = Enumerable.Repeat(color, content.Width * content.Height).ToArray();
var dest = ToByteArray(src);
content.SetPixelData(dest);
}
void BitmapCopyFullNoResize<T>(T color1)
where T: struct, IEquatable<T>
{
var b1 = new PixelBitmapContent<T>(8, 8);
Fill(b1, color1);
var b2 = new PixelBitmapContent<T>(8, 8);
BitmapContent.Copy(b1, b2);
for (var y = 0; y < b2.Height; y++)
for (var x = 0; x < b2.Width; x++)
Assert.AreEqual(color1, b2.GetPixel(x, y));
}
void BitmapCopyFullResize<T>(T color1, IEqualityComparer<T> comparer)
where T : struct, IEquatable<T>
{
var b1 = new PixelBitmapContent<T>(8, 8);
Fill(b1, color1);
var b2 = new PixelBitmapContent<T>(4, 4);
BitmapContent.Copy(b1, b2);
for (var y = 0; y < b2.Height; y++)
for (var x = 0; x < b2.Width; x++)
Assert.That(color1, Is.EqualTo(b2.GetPixel(x, y)).Using(comparer));
}
void BitmapConvertFullNoResize<T, U>(T color1, U color2)
where T : struct, IEquatable<T>
where U: struct, IEquatable<U>
{
var b1 = new PixelBitmapContent<T>(8, 8);
Fill(b1, color1);
var b2 = new PixelBitmapContent<U>(8, 8);
BitmapContent.Copy(b1, b2);
for (var y = 0; y < b2.Height; y++)
for (var x = 0; x < b2.Width; x++)
Assert.AreEqual(color2, b2.GetPixel(x, y));
}
void BitmapCompressFullNoResize<T>(T color1)
where T : struct, IEquatable<T>
{
var b1 = new PixelBitmapContent<T>(8, 8);
Fill(b1, color1);
var b2 = new Dxt1BitmapContent(8, 8);
BitmapContent.Copy(b1, b2);
}
void BitmapCompressFullResize<T>(T color1)
where T : struct, IEquatable<T>
{
var b1 = new PixelBitmapContent<T>(16, 16);
Fill(b1, color1);
var b2 = new Dxt1BitmapContent(8, 8);
BitmapContent.Copy(b1, b2);
}
void BitmapCopySameRegionNoResize<T>(T color1, T color2)
where T : struct, IEquatable<T>
{
var b1 = new PixelBitmapContent<T>(8, 8);
Fill(b1, color1);
var b2 = new PixelBitmapContent<T>(8, 8);
Fill(b2, color2);
BitmapContent.Copy(b1, new Rectangle(0, 0, 4, 4), b2, new Rectangle(0, 0, 4, 4));
for (var y = 0; y < b2.Height; y++)
for (var x = 0; x < b2.Width; x++)
Assert.AreEqual(x < 4 && y < 4 ? color1 : color2, b2.GetPixel(x, y));
}
void BitmapCopyMoveRegionNoResize<T>(T color1, T color2)
where T : struct, IEquatable<T>
{
var b1 = new PixelBitmapContent<T>(8, 8);
Fill(b1, color1);
var b2 = new PixelBitmapContent<T>(8, 8);
Fill(b2, color2);
BitmapContent.Copy(b1, new Rectangle(0, 0, 4, 4), b2, new Rectangle(4, 4, 4, 4));
for (var y = 0; y < b2.Height; y++)
for (var x = 0; x < b2.Width; x++)
Assert.AreEqual(x >= 4 && y >= 4 ? color1 : color2, b2.GetPixel(x, y));
}
void BitmapCopyRegionResize<T>(T color1, T color2, IEqualityComparer<T> comparer)
where T : struct, IEquatable<T>
{
var b1 = new PixelBitmapContent<T>(8, 8);
Fill(b1, color1);
var b2 = new PixelBitmapContent<T>(8, 8);
Fill(b2, color2);
BitmapContent.Copy(b1, new Rectangle(0, 0, 4, 4), b2, new Rectangle(0, 0, 3, 6));
for (var y = 0; y < b2.Height; y++)
for (var x = 0; x < b2.Width; x++)
Assert.That(x < 3 && y < 6 ? color1 : color2, Is.EqualTo(b2.GetPixel(x, y)).Using(comparer));
}
[Test]
public void BitmapCopyFullNoResize()
{
#if !XNA
BitmapCopyFullNoResize<byte>(56);
#endif
BitmapCopyFullNoResize<float>(0.56f);
BitmapCopyFullNoResize<Color>(Color.Red);
BitmapCopyFullNoResize<Vector4>(new Vector4(1.0f, 0.0f, 0.0f, 1.0f));
}
[Test]
public void BitmapCopyFullResize()
{
#if !XNA
BitmapCopyFullResize<byte>(56, ByteComparer.Equal);
#endif
BitmapCopyFullResize<float>(0.56f, FloatComparer.Epsilon);
BitmapCopyFullResize<Color>(Color.Red, ColorComparer.Equal);
BitmapCopyFullResize<Vector4>(new Vector4(1.0f, 0.0f, 0.0f, 1.0f), Vector4Comparer.Epsilon);
}
[Test]
public void BitmapConvertFullNoResize()
{
#if !XNA
BitmapConvertFullNoResize<byte, Color>(byte.MaxValue, Color.Red);
#endif
BitmapConvertFullNoResize<float, Color>(1.0f, Color.Red);
BitmapConvertFullNoResize<Color, Vector4>(Color.Red, new Vector4(1.0f, 0.0f, 0.0f, 1.0f));
BitmapConvertFullNoResize<Vector4, Color>(new Vector4(1.0f, 0.0f, 0.0f, 1.0f), Color.Red);
}
[Test]
public void BitmapCompressFullNoResize()
{
#if !XNA
BitmapCompressFullNoResize<byte>(56);
#endif
BitmapCompressFullNoResize<float>(0.56f);
BitmapCompressFullNoResize<Color>(Color.Red);
BitmapCompressFullNoResize<Vector4>(new Vector4(1.0f, 0.0f, 0.0f, 1.0f));
}
[Test]
public void BitmapCompressFullResize()
{
#if !XNA
BitmapCompressFullResize<byte>(56);
#endif
BitmapCompressFullResize<float>(0.56f);
BitmapCompressFullResize<Color>(Color.Red);
BitmapCompressFullResize<Vector4>(new Vector4(1.0f, 0.0f, 0.0f, 1.0f));
}
static BitmapContent BitmapConvert(Type bitmapType, Color color, int w, int h)
{
var b1 = new PixelBitmapContent<Color>(w, h);
Fill(b1, color);
var b2 = (BitmapContent)Activator.CreateInstance(bitmapType, b1.Width, b1.Height);
BitmapContent.Copy(b1, b2);
return b2;
}
static void BitmapAssert(BitmapContent bitmap, Color color, int range)
{
byte[] rgba;
if (bitmap is Dxt1BitmapContent)
rgba = DxtUtil.DecompressDxt1(bitmap.GetPixelData(), bitmap.Width, bitmap.Height);
else if (bitmap is Dxt3BitmapContent)
rgba = DxtUtil.DecompressDxt3(bitmap.GetPixelData(), bitmap.Width, bitmap.Height);
else if (bitmap is Dxt5BitmapContent)
rgba = DxtUtil.DecompressDxt5(bitmap.GetPixelData(), bitmap.Width, bitmap.Height);
else
rgba = bitmap.GetPixelData();
for (var p = 0; p < rgba.Length; p += 4)
{
Assert.That(rgba[p + 0], Is.EqualTo(color.R).Within(range));
Assert.That(rgba[p + 1], Is.EqualTo(color.G).Within(range));
Assert.That(rgba[p + 2], Is.EqualTo(color.B).Within(range));
Assert.That(rgba[p + 3], Is.EqualTo(color.A).Within(range));
}
}
static void BitmapConvertAssert(Type bitmapType, Color color, int w, int h, int range)
{
var b = BitmapConvert(bitmapType, color, w, h);
BitmapAssert(b, color, range);
}
static void BitmapConvertAssert(Type bitmapType, Color color, int w, int h, Color compare, int range)
{
var b = BitmapConvert(bitmapType, color, w, h);
BitmapAssert(b, compare, range);
}
[Test]
public void BitmapCompress()
{
var Transparent = new Color(0, 0, 0, 0);
var Grey16Premult = new Color(16, 16, 16, 16);
BitmapConvertAssert(typeof(Dxt1BitmapContent), Color.Red, 64, 64, 0);
BitmapConvertAssert(typeof(Dxt1BitmapContent), Color.Green, 32, 34, 2);
BitmapConvertAssert(typeof(Dxt1BitmapContent), Color.Blue, 8, 9, 0);
BitmapConvertAssert(typeof(Dxt1BitmapContent), Transparent, 16, 16, 0);
//BitmapConvertAssert(typeof(Dxt1BitmapContent), Grey16Premult, 16, 16, Transparent, 0);
BitmapConvertAssert(typeof(Dxt3BitmapContent), Color.Red, 64, 64, 0);
BitmapConvertAssert(typeof(Dxt3BitmapContent), Color.Green, 32, 34, 2);
BitmapConvertAssert(typeof(Dxt3BitmapContent), Color.Blue, 8, 9, 0);
BitmapConvertAssert(typeof(Dxt3BitmapContent), Transparent, 16, 16, 0);
BitmapConvertAssert(typeof(Dxt3BitmapContent), Grey16Premult, 16, 16, Grey16Premult, 1);
BitmapConvertAssert(typeof(Dxt5BitmapContent), Color.Red, 64, 64, 0);
BitmapConvertAssert(typeof(Dxt5BitmapContent), Color.Green, 32, 34, 2);
BitmapConvertAssert(typeof(Dxt5BitmapContent), Color.Blue, 8, 9, 0);
BitmapConvertAssert(typeof(Dxt5BitmapContent), Transparent, 16, 16, 0);
BitmapConvertAssert(typeof(Dxt5BitmapContent), Grey16Premult, 16, 16, Grey16Premult, 0);
}
[Test]
public void BitmapCopySameRegionNoResize()
{
#if !XNA
BitmapCopySameRegionNoResize<byte>(56, 48);
#endif
BitmapCopySameRegionNoResize<float>(0.56f, 0.48f);
BitmapCopySameRegionNoResize<Color>(Color.Red, Color.Blue);
BitmapCopySameRegionNoResize<Vector4>(new Vector4(1.0f, 0.0f, 0.0f, 1.0f), new Vector4(0.0f, 0.0f, 1.0f, 1.0f));
}
[Test]
public void BitmapCopyMoveRegionNoResize()
{
#if !XNA
BitmapCopyMoveRegionNoResize<byte>(56, 48);
#endif
BitmapCopyMoveRegionNoResize<float>(0.56f, 0.48f);
BitmapCopyMoveRegionNoResize<Color>(Color.Red, Color.Blue);
BitmapCopyMoveRegionNoResize<Vector4>(new Vector4(1.0f, 0.0f, 0.0f, 1.0f), new Vector4(0.0f, 0.0f, 1.0f, 1.0f));
}
[Test]
public void BitmapCopyRegionResize()
{
#if !XNA
BitmapCopyRegionResize<byte>(56, 48, ByteComparer.Equal);
#endif
BitmapCopyRegionResize<float>(0.56f, 0.48f, FloatComparer.Epsilon);
BitmapCopyRegionResize<Color>(Color.Red, Color.Blue, ColorComparer.Equal);
BitmapCopyRegionResize<Vector4>(new Vector4(1.0f, 0.0f, 0.0f, 1.0f), new Vector4(0.0f, 0.0f, 1.0f, 1.0f), Vector4Comparer.Epsilon);
}
}
}