mirror of
https://github.com/wassname/phaser.git
synced 2026-07-10 00:30:50 +08:00
Tileset working, map coming next.
This commit is contained in:
+4
-6
@@ -151,16 +151,14 @@ Phaser.Cache.prototype = {
|
||||
* @method Phaser.Cache#addTilemap
|
||||
* @param {string} key - The unique key by which you will reference this object.
|
||||
* @param {string} url - URL of the tilemap image.
|
||||
* @param {object} data - Tilemap data.
|
||||
* @param {object} mapData - The tilemap data object.
|
||||
* @param {number} format - The format of the tilemap data.
|
||||
*/
|
||||
addTilemap: function (key, url, data, mapData, format) {
|
||||
addTilemap: function (key, url, mapData, format) {
|
||||
|
||||
this._tilemaps[key] = { url: url, data: data, spriteSheet: true, mapData: mapData, format: format };
|
||||
this._tilemaps[key] = { url: url, mapData: mapData, format: format };
|
||||
|
||||
PIXI.BaseTextureCache[key] = new PIXI.BaseTexture(data);
|
||||
PIXI.TextureCache[key] = new PIXI.Texture(PIXI.BaseTextureCache[key]);
|
||||
this._tilemaps[key].mapData = Phaser.TilemapParser.parse(this.game, mapData, format);
|
||||
|
||||
},
|
||||
|
||||
@@ -443,7 +441,7 @@ Phaser.Cache.prototype = {
|
||||
|
||||
if (this._tilesets[key])
|
||||
{
|
||||
return this._tilesets[key];
|
||||
return this._tilesets[key].tileData;
|
||||
}
|
||||
|
||||
return null;
|
||||
|
||||
+39
-6
@@ -343,18 +343,24 @@ Phaser.Loader.prototype = {
|
||||
* @param {object} [mapData] - An optional JSON data object (can be given in place of a URL).
|
||||
* @param {string} [format] - The format of the map data.
|
||||
*/
|
||||
tilemap: function (key, tilesetURL, mapDataURL, mapData, format) {
|
||||
tilemap: function (key, mapDataURL, mapData, format) {
|
||||
|
||||
if (typeof mapDataURL === "undefined") { mapDataURL = null; }
|
||||
if (typeof mapData === "undefined") { mapData = null; }
|
||||
if (typeof format === "undefined") { format = Phaser.Tilemap.CSV; }
|
||||
|
||||
if (mapDataURL == null && mapData == null)
|
||||
{
|
||||
console.warn('Phaser.Loader.tilemap - Both mapDataURL and mapData are null. One must be set.');
|
||||
return;
|
||||
}
|
||||
|
||||
if (this.checkKeyExists(key) === false)
|
||||
{
|
||||
// A URL to a json/csv file has been given
|
||||
if (mapDataURL)
|
||||
{
|
||||
this.addToFileList('tilemap', key, tilesetURL, { mapDataURL: mapDataURL, format: format });
|
||||
this.addToFileList('tilemap', key, mapDataURL, { format: format });
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -374,7 +380,7 @@ Phaser.Loader.prototype = {
|
||||
break;
|
||||
}
|
||||
|
||||
this.addToFileList('tilemap', key, tilesetURL, { mapDataURL: null, mapData: mapData, format: format });
|
||||
this.game.cache.addTilemap(key, null, mapData, format);
|
||||
|
||||
}
|
||||
}
|
||||
@@ -637,7 +643,6 @@ Phaser.Loader.prototype = {
|
||||
case 'spritesheet':
|
||||
case 'textureatlas':
|
||||
case 'bitmapfont':
|
||||
case 'tilemap':
|
||||
case 'tileset':
|
||||
file.data = new Image();
|
||||
file.data.name = file.key;
|
||||
@@ -701,6 +706,29 @@ Phaser.Loader.prototype = {
|
||||
|
||||
break;
|
||||
|
||||
case 'tilemap':
|
||||
this._xhr.open("GET", this.baseURL + file.url, true);
|
||||
this._xhr.responseType = "text";
|
||||
|
||||
if (file.format == Phaser.Tilemap.JSON)
|
||||
{
|
||||
this._xhr.onload = function () {
|
||||
return _this.jsonLoadComplete(file.key);
|
||||
};
|
||||
}
|
||||
else if (file.format == Phaser.Tilemap.CSV)
|
||||
{
|
||||
this._xhr.onload = function () {
|
||||
return _this.csvLoadComplete(file.key);
|
||||
};
|
||||
}
|
||||
|
||||
this._xhr.onerror = function () {
|
||||
return _this.dataLoadError(file.key);
|
||||
};
|
||||
this._xhr.send();
|
||||
break;
|
||||
|
||||
case 'text':
|
||||
this._xhr.open("GET", this.baseURL + file.url, true);
|
||||
this._xhr.responseType = "text";
|
||||
@@ -798,8 +826,12 @@ Phaser.Loader.prototype = {
|
||||
this.game.cache.addTileset(file.key, file.url, file.data, file.tileWidth, file.tileHeight, file.tileMax);
|
||||
break;
|
||||
|
||||
/*
|
||||
case 'tilemap':
|
||||
|
||||
file.data = this._xhr.response;
|
||||
this.game.cache.addTilemap(file.key, file.url, file.data, file.format);
|
||||
|
||||
if (file.mapDataURL == null)
|
||||
{
|
||||
this.game.cache.addTilemap(file.key, file.url, file.data, file.mapData, file.format);
|
||||
@@ -830,6 +862,7 @@ Phaser.Loader.prototype = {
|
||||
this._xhr.send();
|
||||
}
|
||||
break;
|
||||
*/
|
||||
|
||||
case 'textureatlas':
|
||||
|
||||
@@ -944,7 +977,7 @@ Phaser.Loader.prototype = {
|
||||
|
||||
if (file.type == 'tilemap')
|
||||
{
|
||||
this.game.cache.addTilemap(file.key, file.url, file.data, data, file.format);
|
||||
this.game.cache.addTilemap(file.key, file.url, data, file.format);
|
||||
}
|
||||
else
|
||||
{
|
||||
@@ -966,7 +999,7 @@ Phaser.Loader.prototype = {
|
||||
var data = this._xhr.response;
|
||||
var file = this._fileList[key];
|
||||
|
||||
this.game.cache.addTilemap(file.key, file.url, file.data, data, file.format);
|
||||
this.game.cache.addTilemap(file.key, file.url, data, file.format);
|
||||
|
||||
this.nextFile(key, true);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user