forked from MonoGame/MonoGame
-
Notifications
You must be signed in to change notification settings - Fork 0
/
FontDescriptionProcessorTests.cs
184 lines (175 loc) · 8.17 KB
/
FontDescriptionProcessorTests.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
using System;
using System.IO;
using System.Xml;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Content.Pipeline;
using Microsoft.Xna.Framework.Content.Pipeline.Graphics;
using Microsoft.Xna.Framework.Content.Pipeline.Processors;
using Microsoft.Xna.Framework.Content.Pipeline.Serialization.Intermediate;
using NUnit.Framework;
namespace MonoGame.Tests.ContentPipeline
{
class FontDescriptionProcessorTests
{
static object[] textureFormats = new object[] {
new object[] {
TargetPlatform.DesktopGL,
TextureProcessorOutputFormat.Color,
},
new object[] {
TargetPlatform.DesktopGL,
TextureProcessorOutputFormat.Color16Bit,
},
new object[] {
TargetPlatform.DesktopGL,
TextureProcessorOutputFormat.Compressed,
},
new object[] {
TargetPlatform.Android,
TextureProcessorOutputFormat.Etc1Compressed,
},
new object[] {
TargetPlatform.iOS,
TextureProcessorOutputFormat.PvrCompressed,
},
new object[] {
TargetPlatform.iOS,
TextureProcessorOutputFormat.Compressed,
},
new object[] {
TargetPlatform.Android,
TextureProcessorOutputFormat.Compressed,
},
new object[] {
TargetPlatform.Windows,
TextureProcessorOutputFormat.Compressed,
},
};
[Test]
[TestCaseSource("textureFormats")]
public void BuildLocalizedFont (TargetPlatform platform, TextureProcessorOutputFormat format)
{
var context = new TestProcessorContext(platform, "Localized.xnb");
var processor = new LocalizedFontProcessor()
{
TextureFormat = format,
PremultiplyAlpha = true,
};
LocalizedFontDescription fontDescription = null;
using (var fs = File.OpenRead(Path.Combine("Assets", "Fonts", "Localized.spritefont")))
using (var input = XmlReader.Create(new StreamReader(fs)))
fontDescription = IntermediateSerializer.Deserialize<LocalizedFontDescription>(input, "");
fontDescription.Identity = new ContentIdentity("Localized.spritefont");
var output = processor.Process(fontDescription, context);
Assert.IsNotNull(output, "output should not be null");
Assert.IsNotNull(output.Texture, "output.Texture should not be null");
var textureType = output.Texture.Faces[0][0].GetType();
switch (format)
{
case TextureProcessorOutputFormat.Color:
Assert.IsTrue(textureType == typeof(PixelBitmapContent<Color>));
break;
case TextureProcessorOutputFormat.Color16Bit:
Assert.IsTrue(textureType == typeof(PixelBitmapContent<Microsoft.Xna.Framework.Graphics.PackedVector.Bgr565>));
break;
case TextureProcessorOutputFormat.Compressed:
switch (platform)
{
case TargetPlatform.Windows:
case TargetPlatform.DesktopGL:
Assert.IsTrue(textureType == typeof(Dxt3BitmapContent));
break;
case TargetPlatform.iOS:
Assert.IsTrue(textureType == typeof(PixelBitmapContent<Microsoft.Xna.Framework.Graphics.PackedVector.Bgra4444>));
break;
case TargetPlatform.Android:
Assert.IsTrue(textureType == typeof(PixelBitmapContent<Microsoft.Xna.Framework.Graphics.PackedVector.Bgra4444>));
break;
}
break;
case TextureProcessorOutputFormat.PvrCompressed:
// because the font is not power of 2 we should use Brga4444
Assert.IsTrue(textureType == typeof(PixelBitmapContent<Microsoft.Xna.Framework.Graphics.PackedVector.Bgra4444>));
break;
case TextureProcessorOutputFormat.Etc1Compressed:
// because the font has Alpha we should use Brga4444
Assert.IsTrue(textureType == typeof(PixelBitmapContent<Microsoft.Xna.Framework.Graphics.PackedVector.Bgra4444>));
break;
default:
Assert.Fail("Test not written for " + format);
break;
}
}
[Test]
[TestCaseSource("textureFormats")]
public void BuildFontFromDescription (TargetPlatform platform, TextureProcessorOutputFormat format)
{
var context = new TestProcessorContext(platform, "Arial.xnb");
var processor = new FontDescriptionProcessor()
{
TextureFormat = format,
PremultiplyAlpha = true,
};
FontDescription fontDescription = null;
using (var input = XmlReader.Create(new StringReader (ArialFont)))
fontDescription = IntermediateSerializer.Deserialize<FontDescription>(input, "");
fontDescription.Identity = new ContentIdentity("Arial.spritefont");
var output = processor.Process(fontDescription, context);
Assert.IsNotNull(output, "output should not be null");
Assert.IsNotNull(output.Texture, "output.Texture should not be null");
var textureType = output.Texture.Faces[0][0].GetType();
switch (format)
{
case TextureProcessorOutputFormat.Color:
Assert.IsTrue(textureType == typeof(PixelBitmapContent<Color>));
break;
case TextureProcessorOutputFormat.Color16Bit:
Assert.IsTrue(textureType == typeof(PixelBitmapContent<Microsoft.Xna.Framework.Graphics.PackedVector.Bgr565>));
break;
case TextureProcessorOutputFormat.Compressed:
switch (platform)
{
case TargetPlatform.Windows:
case TargetPlatform.DesktopGL:
Assert.IsTrue(textureType == typeof(Dxt3BitmapContent));
break;
case TargetPlatform.iOS:
Assert.IsTrue(textureType == typeof(PixelBitmapContent<Microsoft.Xna.Framework.Graphics.PackedVector.Bgra4444>));
break;
case TargetPlatform.Android:
Assert.IsTrue(textureType == typeof(PixelBitmapContent<Microsoft.Xna.Framework.Graphics.PackedVector.Bgra4444>));
break;
}
break;
case TextureProcessorOutputFormat.PvrCompressed:
// because the font is not power of 2 we should use Brga4444
Assert.IsTrue(textureType == typeof(PixelBitmapContent<Microsoft.Xna.Framework.Graphics.PackedVector.Bgra4444>));
break;
case TextureProcessorOutputFormat.Etc1Compressed:
// because the font has Alpha we should use Brga4444
Assert.IsTrue(textureType == typeof(PixelBitmapContent<Microsoft.Xna.Framework.Graphics.PackedVector.Bgra4444>));
break;
default:
Assert.Fail("Test not written for " + format);
break;
}
}
static string ArialFont = @"<?xml version=""1.0"" encoding=""utf-8""?>
<XnaContent xmlns:Graphics=""Microsoft.Xna.Framework.Content.Pipeline.Graphics"">
<Asset Type=""Graphics:FontDescription"">
<FontName>Arial</FontName>
<Size>20</Size>
<Spacing>0</Spacing>
<UseKerning>true</UseKerning>
<Style>Bold</Style>
<CharacterRegions>
<CharacterRegion>
<Start> </Start>
<End>~</End>
</CharacterRegion>
</CharacterRegions>
</Asset>
</XnaContent>
";
}
}