phaser/src/tilemaps/parsers/tiled/ParseTilesets.js

190 lines
6.2 KiB
JavaScript
Raw Normal View History

2018-02-12 16:01:20 +00:00
/**
* @author Richard Davey <rich@photonstorm.com>
2020-01-15 12:07:09 +00:00
* @copyright 2020 Photon Storm Ltd.
2019-05-10 15:15:04 +00:00
* @license {@link https://opensource.org/licenses/MIT|MIT License}
2018-02-12 16:01:20 +00:00
*/
var Tileset = require('../../Tileset');
var ImageCollection = require('../../ImageCollection');
var ParseObject = require('./ParseObject');
var ParseWangsets = require('./ParseWangsets');
2018-02-10 01:50:48 +00:00
/**
2021-02-16 11:44:49 +00:00
* Tilesets and Image Collections.
2018-02-10 01:50:48 +00:00
*
* @function Phaser.Tilemaps.Parsers.Tiled.ParseTilesets
* @since 3.0.0
*
2020-04-27 15:13:40 +00:00
* @param {object} json - The Tiled JSON data.
2018-02-10 01:50:48 +00:00
*
2020-04-27 15:13:40 +00:00
* @return {object} An object containing the tileset and image collection data.
2018-02-10 01:50:48 +00:00
*/
var ParseTilesets = function (json)
{
var tilesets = [];
var imageCollections = [];
var lastSet = null;
var stringID;
for (var i = 0; i < json.tilesets.length; i++)
{
// name, firstgid, width, height, margin, spacing, properties
var set = json.tilesets[i];
if (set.source)
{
console.warn('External tilesets unsupported. Use Embed Tileset and re-export');
}
else if (set.image)
{
var newSet = new Tileset(set.name, set.firstgid, set.tilewidth, set.tileheight, set.margin, set.spacing, undefined, undefined, set.tileoffset);
if (json.version > 1)
{
var datas = undefined;
var props = undefined;
2021-02-16 11:44:49 +00:00
if (Array.isArray(set.tiles))
{
datas = datas || {};
props = props || {};
// Tiled 1.2+
for (var t = 0; t < set.tiles.length; t++)
{
var tile = set.tiles[t];
// Convert tileproperties.
if (tile.properties)
{
var newPropData = {};
tile.properties.forEach(function (propData)
{
newPropData[propData['name']] = propData['value'];
});
props[tile.id] = newPropData;
}
// Convert objectgroup
if (tile.objectgroup)
{
(datas[tile.id] || (datas[tile.id] = {})).objectgroup = tile.objectgroup;
if (tile.objectgroup.objects)
{
var parsedObjects2 = tile.objectgroup.objects.map(function (obj)
{
return ParseObject(obj);
});
datas[tile.id].objectgroup.objects = parsedObjects2;
}
}
2018-10-17 13:12:41 +00:00
// Copy animation data
2018-10-19 12:51:32 +00:00
if (tile.animation)
{
(datas[tile.id] || (datas[tile.id] = {})).animation = tile.animation;
2018-10-17 13:12:41 +00:00
}
// Copy tile `type` field
// (see https://doc.mapeditor.org/en/latest/manual/custom-properties/#typed-tiles).
if (tile.type)
{
(datas[tile.id] || (datas[tile.id] = {})).type = tile.type;
}
}
}
2021-02-16 11:44:49 +00:00
if (Array.isArray(set.wangsets))
{
datas = datas || {};
props = props || {};
2021-02-16 11:44:49 +00:00
ParseWangsets(set.wangsets, datas);
}
2021-02-16 11:44:49 +00:00
if (datas) // Implies also props is set.
{
newSet.tileData = datas;
newSet.tileProperties = props;
}
}
else
{
// Tiled 1
// Properties stored per-tile in object with string indexes starting at "0"
if (set.tileproperties)
{
newSet.tileProperties = set.tileproperties;
}
// Object & terrain shapes stored per-tile in object with string indexes starting at "0"
if (set.tiles)
{
newSet.tileData = set.tiles;
// Parse the objects into Phaser format to match handling of other Tiled objects
for (stringID in newSet.tileData)
{
var objectGroup = newSet.tileData[stringID].objectgroup;
if (objectGroup && objectGroup.objects)
{
var parsedObjects1 = objectGroup.objects.map(function (obj)
{
return ParseObject(obj);
});
newSet.tileData[stringID].objectgroup.objects = parsedObjects1;
}
}
}
}
// For a normal sliced tileset the row/count/size information is computed when updated.
// This is done (again) after the image is set.
newSet.updateTileData(set.imagewidth, set.imageheight);
tilesets.push(newSet);
}
else
{
var newCollection = new ImageCollection(set.name, set.firstgid, set.tilewidth, set.tileheight, set.margin, set.spacing, set.properties);
var maxId = 0;
for (t = 0; t < set.tiles.length; t++)
{
tile = set.tiles[t];
var image = tile.image;
var tileId = parseInt(tile.id, 10);
var gid = set.firstgid + tileId;
newCollection.addImage(gid, image);
maxId = Math.max(tileId, maxId);
}
newCollection.maxId = maxId;
imageCollections.push(newCollection);
}
// We've got a new Tileset, so set the lastgid into the previous one
if (lastSet)
{
lastSet.lastgid = set.firstgid - 1;
}
lastSet = set;
}
return { tilesets: tilesets, imageCollections: imageCollections };
};
module.exports = ParseTilesets;