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
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
|
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using Microsoft.Xna.Framework.Content.Pipeline;
using Microsoft.Xna.Framework.Content.Pipeline.Graphics;
using MonoGame.Extended.Tiled;
using MonoGame.Extended.Tiled.Serialization;
using MonoGame.Framework.Utilities.Deflate;
using CompressionMode = System.IO.Compression.CompressionMode;
using GZipStream = System.IO.Compression.GZipStream;
namespace MonoGame.Extended.Content.Pipeline.Tiled
{
public static class TiledMapContentHelper
{
public static void Process(TiledMapObjectContent obj, ContentProcessorContext context)
{
if (!string.IsNullOrWhiteSpace(obj.TemplateSource))
{
var externalReference = new ExternalReference<TiledMapObjectLayerContent>(obj.TemplateSource);
var template = context.BuildAndLoadAsset<TiledMapObjectLayerContent, TiledMapObjectTemplateContent>(externalReference, "");
// Nothing says a template can't reference another template.
// Yay recusion!
Process(template.Object, context);
if (!obj._globalIdentifier.HasValue && template.Object._globalIdentifier.HasValue)
obj.GlobalIdentifier = template.Object.GlobalIdentifier;
if (!obj._height.HasValue && template.Object._height.HasValue)
obj.Height = template.Object.Height;
if (!obj._identifier.HasValue && template.Object._identifier.HasValue)
obj.Identifier = template.Object.Identifier;
if (!obj._rotation.HasValue && template.Object._rotation.HasValue)
obj.Rotation = template.Object.Rotation;
if (!obj._visible.HasValue && template.Object._visible.HasValue)
obj.Visible = template.Object.Visible;
if (!obj._width.HasValue && template.Object._width.HasValue)
obj.Width = template.Object.Width;
if (!obj._x.HasValue && template.Object._x.HasValue)
obj.X = template.Object.X;
if (!obj._y.HasValue && template.Object._y.HasValue)
obj.Y = template.Object.Y;
if (obj.Ellipse == null && template.Object.Ellipse != null)
obj.Ellipse = template.Object.Ellipse;
if (string.IsNullOrWhiteSpace(obj.Name) && !string.IsNullOrWhiteSpace(template.Object.Name))
obj.Name = template.Object.Name;
if (obj.Polygon == null && template.Object.Polygon != null)
obj.Polygon = template.Object.Polygon;
if (obj.Polyline == null && template.Object.Polyline != null)
obj.Polyline = template.Object.Polyline;
foreach (var tProperty in template.Object.Properties)
{
if (!obj.Properties.Exists(p => p.Name == tProperty.Name))
obj.Properties.Add(tProperty);
}
if (string.IsNullOrWhiteSpace(obj.Type) && !string.IsNullOrWhiteSpace(template.Object.Type))
obj.Type = template.Object.Type;
if (string.IsNullOrWhiteSpace(obj.Class) && !string.IsNullOrWhiteSpace(template.Object.Class))
obj.Class = template.Object.Class;
}
}
}
[ContentProcessor(DisplayName = "Tiled Map Processor - MonoGame.Extended")]
public class TiledMapProcessor : ContentProcessor<TiledMapContentItem, TiledMapContentItem>
{
public override TiledMapContentItem Process(TiledMapContentItem contentItem, ContentProcessorContext context)
{
try
{
ContentLogger.Logger = context.Logger;
var map = contentItem.Data;
if (map.Orientation == TiledMapOrientationContent.Hexagonal || map.Orientation == TiledMapOrientationContent.Staggered)
throw new NotSupportedException($"{map.Orientation} Tiled Maps are currently not implemented!");
foreach (var tileset in map.Tilesets)
{
if (string.IsNullOrWhiteSpace(tileset.Source))
{
// Load the Texture2DContent for the tileset as it will be saved into the map content file.
contentItem.BuildExternalReference<Texture2DContent>(context, tileset.Image);
}
else
{
// Link to the tileset for the content loader to load at runtime.
//var externalReference = new ExternalReference<TiledMapTilesetContent>(tileset.Source);
//tileset.Content = context.BuildAsset<TiledMapTilesetContent, TiledMapTilesetContent>(externalReference, "");
contentItem.BuildExternalReference<TiledMapTilesetContent>(context, tileset.Source);
}
}
ProcessLayers(contentItem, map, context, map.Layers);
return contentItem;
}
catch (Exception ex)
{
context.Logger.LogImportantMessage(ex.Message);
throw;
}
}
private static void ProcessLayers(TiledMapContentItem contentItem, TiledMapContent map, ContentProcessorContext context, List<TiledMapLayerContent> layers)
{
foreach (var layer in layers)
{
switch (layer)
{
case TiledMapImageLayerContent imageLayer:
ContentLogger.Log($"Processing image layer '{imageLayer.Name}'");
contentItem.BuildExternalReference<Texture2DContent>(context, imageLayer.Image);
ContentLogger.Log($"Processed image layer '{imageLayer.Name}'");
break;
case TiledMapTileLayerContent tileLayer when tileLayer.Data.Chunks.Count > 0:
throw new NotSupportedException($"{map.FilePath} contains data chunks. These are currently not supported.");
case TiledMapTileLayerContent tileLayer:
var data = tileLayer.Data;
var encodingType = data.Encoding ?? "xml";
var compressionType = data.Compression ?? "xml";
ContentLogger.Log($"Processing tile layer '{tileLayer.Name}': Encoding: '{encodingType}', Compression: '{compressionType}'");
var tileData = DecodeTileLayerData(encodingType, tileLayer);
var tiles = CreateTiles(map.RenderOrder, map.Width, map.Height, tileData);
tileLayer.Tiles = tiles;
ContentLogger.Log($"Processed tile layer '{tileLayer}': {tiles.Length} tiles");
break;
case TiledMapObjectLayerContent objectLayer:
ContentLogger.Log($"Processing object layer '{objectLayer.Name}'");
foreach (var obj in objectLayer.Objects)
TiledMapContentHelper.Process(obj, context);
ContentLogger.Log($"Processed object layer '{objectLayer.Name}'");
break;
case TiledMapGroupLayerContent groupLayer:
ProcessLayers(contentItem, map, context, groupLayer.Layers);
break;
}
}
}
private static List<TiledMapTileContent> DecodeTileLayerData(string encodingType, TiledMapTileLayerContent tileLayer)
{
List<TiledMapTileContent> tiles;
switch (encodingType)
{
case "xml":
tiles = tileLayer.Data.Tiles;
break;
case "csv":
tiles = DecodeCommaSeperatedValuesData(tileLayer.Data);
break;
case "base64":
tiles = DecodeBase64Data(tileLayer.Data, tileLayer.Width, tileLayer.Height);
break;
default:
throw new NotSupportedException($"The tile layer encoding '{encodingType}' is not supported.");
}
return tiles;
}
private static TiledMapTile[] CreateTiles(TiledMapTileDrawOrderContent renderOrder, int mapWidth, int mapHeight, List<TiledMapTileContent> tileData)
{
TiledMapTile[] tiles;
switch (renderOrder)
{
case TiledMapTileDrawOrderContent.LeftDown:
tiles = CreateTilesInLeftDownOrder(tileData, mapWidth, mapHeight).ToArray();
break;
case TiledMapTileDrawOrderContent.LeftUp:
tiles = CreateTilesInLeftUpOrder(tileData, mapWidth, mapHeight).ToArray();
break;
case TiledMapTileDrawOrderContent.RightDown:
tiles = CreateTilesInRightDownOrder(tileData, mapWidth, mapHeight).ToArray();
break;
case TiledMapTileDrawOrderContent.RightUp:
tiles = CreateTilesInRightUpOrder(tileData, mapWidth, mapHeight).ToArray();
break;
default:
throw new NotSupportedException($"{renderOrder} is not supported.");
}
return tiles.ToArray();
}
private static IEnumerable<TiledMapTile> CreateTilesInLeftDownOrder(List<TiledMapTileContent> tileLayerData, int mapWidth, int mapHeight)
{
for (var y = 0; y < mapHeight; y++)
{
for (var x = mapWidth - 1; x >= 0; x--)
{
var dataIndex = x + y * mapWidth;
var globalIdentifier = tileLayerData[dataIndex].GlobalIdentifier;
if (globalIdentifier == 0)
continue;
var tile = new TiledMapTile(globalIdentifier, (ushort)x, (ushort)y);
yield return tile;
}
}
}
private static IEnumerable<TiledMapTile> CreateTilesInLeftUpOrder(List<TiledMapTileContent> tileLayerData, int mapWidth, int mapHeight)
{
for (var y = mapHeight - 1; y >= 0; y--)
{
for (var x = mapWidth - 1; x >= 0; x--)
{
var dataIndex = x + y * mapWidth;
var globalIdentifier = tileLayerData[dataIndex].GlobalIdentifier;
if (globalIdentifier == 0)
continue;
var tile = new TiledMapTile(globalIdentifier, (ushort)x, (ushort)y);
yield return tile;
}
}
}
private static IEnumerable<TiledMapTile> CreateTilesInRightDownOrder(List<TiledMapTileContent> tileLayerData, int mapWidth, int mapHeight)
{
for (var y = 0; y < mapHeight; y++)
{
for (var x = 0; x < mapWidth; x++)
{
var dataIndex = x + y * mapWidth;
var globalIdentifier = tileLayerData[dataIndex].GlobalIdentifier;
if (globalIdentifier == 0)
continue;
var tile = new TiledMapTile(globalIdentifier, (ushort)x, (ushort)y);
yield return tile;
}
}
}
private static IEnumerable<TiledMapTile> CreateTilesInRightUpOrder(List<TiledMapTileContent> tileLayerData, int mapWidth, int mapHeight)
{
for (var y = mapHeight - 1; y >= 0; y--)
{
for (var x = mapWidth - 1; x >= 0; x--)
{
var dataIndex = x + y * mapWidth;
var globalIdentifier = tileLayerData[dataIndex].GlobalIdentifier;
if (globalIdentifier == 0)
continue;
var tile = new TiledMapTile(globalIdentifier, (ushort)x, (ushort)y);
yield return tile;
}
}
}
private static List<TiledMapTileContent> DecodeBase64Data(TiledMapTileLayerDataContent data, int width, int height)
{
var tileList = new List<TiledMapTileContent>();
var encodedData = data.Value.Trim();
var decodedData = Convert.FromBase64String(encodedData);
using (var stream = OpenStream(decodedData, data.Compression))
{
using (var reader = new BinaryReader(stream))
{
data.Tiles = new List<TiledMapTileContent>();
for (var y = 0; y < width; y++)
{
for (var x = 0; x < height; x++)
{
var gid = reader.ReadUInt32();
tileList.Add(new TiledMapTileContent
{
GlobalIdentifier = gid
});
}
}
}
}
return tileList;
}
private static List<TiledMapTileContent> DecodeCommaSeperatedValuesData(TiledMapTileLayerDataContent data)
{
return data.Value
.Split(new[] { ',' }, StringSplitOptions.RemoveEmptyEntries)
.Select(uint.Parse)
.Select(x => new TiledMapTileContent { GlobalIdentifier = x })
.ToList();
}
private static Stream OpenStream(byte[] decodedData, string compressionMode)
{
var memoryStream = new MemoryStream(decodedData, false);
return compressionMode switch
{
"gzip" => new GZipStream(memoryStream, CompressionMode.Decompress),
"zlib" => new ZlibStream(memoryStream, Framework.Utilities.Deflate.CompressionMode.Decompress),
_ => memoryStream
};
}
}
}
|