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

38 lines
1 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
*/
2018-02-10 01:50:48 +00:00
/**
2018-09-28 14:00:55 +00:00
* Decode base-64 encoded data, for example as exported by Tiled.
2018-02-10 01:50:48 +00:00
*
* @function Phaser.Tilemaps.Parsers.Tiled.Base64Decode
* @since 3.0.0
*
2018-09-28 14:00:55 +00:00
* @param {object} data - Base-64 encoded data to decode.
2018-02-10 01:50:48 +00:00
*
2018-09-28 14:00:55 +00:00
* @return {array} Array containing the decoded bytes.
2018-02-10 01:50:48 +00:00
*/
var Base64Decode = function (data)
{
var binaryString = window.atob(data);
var len = binaryString.length;
var bytes = new Array(len / 4);
// Interpret binaryString as an array of bytes representing little-endian encoded uint32 values.
for (var i = 0; i < len; i += 4)
{
bytes[i / 4] = (
binaryString.charCodeAt(i) |
binaryString.charCodeAt(i + 1) << 8 |
binaryString.charCodeAt(i + 2) << 16 |
binaryString.charCodeAt(i + 3) << 24
) >>> 0;
}
return bytes;
};
module.exports = Base64Decode;