phaser/src/loader/BaseLoader.js

542 lines
14 KiB
JavaScript
Raw Normal View History

var Class = require('../utils/Class');
var CONST = require('./const');
2017-10-04 22:48:16 +00:00
var CustomSet = require('../structs/Set');
var EventEmitter = require('eventemitter3');
var ParseXMLBitmapFont = require('../gameobjects/bitmaptext/ParseXMLBitmapFont');
var XHRSettings = require('./XHRSettings');
2018-01-19 14:47:16 +00:00
var FileTypesManager = require('./FileTypesManager');
var PluginManager = require('../plugins/PluginManager');
// Phaser.Loader.BaseLoader
2016-12-05 15:29:53 +00:00
// To finish the loader ...
//
// 3) Progress update
2016-12-05 15:29:53 +00:00
var BaseLoader = new Class({
Extends: EventEmitter,
initialize:
function BaseLoader (scene)
{
EventEmitter.call(this);
this.scene = scene;
2018-01-19 14:47:16 +00:00
this.systems = scene.sys;
if (!scene.sys.settings.isBooted)
{
scene.sys.events.once('boot', this.boot, this);
}
this._multilist = {};
// Inject the available filetypes into the Loader
FileTypesManager.install(this);
// Move to a 'setURL' method?
this.baseURL = '';
this.path = '';
// Read from Game / Scene Config
this.enableParallel = true;
this.maxParallelDownloads = 4;
// xhr specific global settings (can be overridden on a per-file basis)
this.xhr = XHRSettings();
this.crossOrigin = undefined;
2017-10-04 22:48:16 +00:00
this.list = new CustomSet();
this.inflight = new CustomSet();
this.failed = new CustomSet();
this.queue = new CustomSet();
this.storage = new CustomSet();
this.state = CONST.LOADER_IDLE;
},
2018-01-19 14:47:16 +00:00
boot: function ()
{
var eventEmitter = this.systems.events;
eventEmitter.on('shutdown', this.shutdown, this);
eventEmitter.on('destroy', this.destroy, this);
},
setPath: function (path)
{
if (path.substr(-1) !== '/')
{
path = path.concat('/');
}
this.path = path;
return this;
},
addFile: function (file)
{
if (!this.isReady())
{
return -1;
}
file.path = this.path;
2016-12-12 22:35:47 +00:00
this.list.set(file);
return this;
},
// Is the Loader actively loading (or processing loaded files)
isLoading: function ()
{
return (this.state === CONST.LOADER_LOADING || this.state === CONST.LOADER_PROCESSING);
},
// Is the Loader ready to start a new load?
isReady: function ()
{
return (this.state === CONST.LOADER_IDLE || this.state === CONST.LOADER_COMPLETE || this.state === CONST.LOADER_FAILED);
},
start: function ()
{
console.log(this.scene.sys.settings.key, '- BaseLoader start. Files to load:', this.list.size);
if (!this.isReady())
{
return;
}
this.emit('start', this);
if (this.list.size === 0)
{
this.finishedLoading();
}
else
{
this.state = CONST.LOADER_LOADING;
this.failed.clear();
this.inflight.clear();
this.queue.clear();
this.queue.debug = true;
this.updateProgress();
this.processLoadQueue();
}
},
updateProgress: function ()
{
},
processLoadQueue: function ()
{
// console.log('======== BaseLoader processLoadQueue');
// console.log('List size', this.list.size);
// console.log(this.inflight.size, 'items still in flight. Can load another', (this.maxParallelDownloads - this.inflight.size));
this.list.each(function (file)
{
2017-10-04 22:48:16 +00:00
if (file.state === CONST.FILE_PENDING && this.inflight.size < this.maxParallelDownloads)
{
2017-10-04 22:48:16 +00:00
this.inflight.set(file);
2017-10-04 22:48:16 +00:00
this.list.delete(file);
2017-10-04 22:48:16 +00:00
this.loadFile(file);
}
2017-10-04 22:48:16 +00:00
if (this.inflight.size === this.maxParallelDownloads)
{
// Tells the Set iterator to abort
return false;
}
2017-10-04 22:48:16 +00:00
}, this);
},
// private
loadFile: function (file)
{
2016-12-06 15:25:24 +00:00
// console.log('LOADING', file.key);
// If the file doesn't have its own crossOrigin set,
// we'll use the Loaders (which is undefined by default)
if (!file.crossOrigin)
{
file.crossOrigin = this.crossOrigin;
}
file.load(this.nextFile.bind(this), this.baseURL);
},
nextFile: function (previousFile, success)
{
2016-12-06 15:25:24 +00:00
// console.log('LOADED:', previousFile.src, success);
// Move the file that just loaded from the inflight list to the queue or failed Set
if (success)
{
2016-12-12 22:35:47 +00:00
this.queue.set(previousFile);
}
else
{
2016-12-12 22:35:47 +00:00
this.failed.set(previousFile);
}
this.inflight.delete(previousFile);
if (this.list.size > 0)
{
2016-12-06 15:25:24 +00:00
// console.log('nextFile - still something in the list');
this.processLoadQueue();
}
else if (this.inflight.size === 0)
{
2016-12-06 15:25:24 +00:00
// console.log('nextFile calling finishedLoading');
this.finishedLoading();
}
},
finishedLoading: function ()
{
// console.log('---> BaseLoader.finishedLoading PROCESSING', this.queue.size, 'files');
if(this.state === CONST.LOADER_PROCESSING)
{
return;
}
this.state = CONST.LOADER_PROCESSING;
this.storage.clear();
this.queue.each(function (file)
{
// console.log('%c Calling process on ' + file.key, 'color: #000000; background: #ffff00;');
2017-10-04 22:48:16 +00:00
file.onProcess(this.processUpdate.bind(this));
}, this);
2016-12-07 00:27:56 +00:00
},
// Called automatically by the File when it has finished processing
2016-12-07 00:27:56 +00:00
processUpdate: function (file)
{
// console.log('-> processUpdate', file.key, file.state);
// This file has failed to load, so move it to the failed Set
if (file.state === CONST.FILE_ERRORED)
{
2016-12-12 22:35:47 +00:00
this.failed.set(file);
if (file.linkFile)
{
this.queue.delete(file.linkFile);
}
return this.removeFromQueue(file);
}
// If we got here, then the file loaded
// Special handling for multi-part files
if (file.linkFile)
{
if (file.state === CONST.FILE_COMPLETE && file.linkFile.state === CONST.FILE_COMPLETE)
{
// Partner has loaded, so add them both to Storage
2016-12-12 22:35:47 +00:00
this.storage.set({ type: file.linkType, fileA: file, fileB: file.linkFile });
this.queue.delete(file.linkFile);
this.removeFromQueue(file);
}
}
else
2016-12-07 00:27:56 +00:00
{
2016-12-12 22:35:47 +00:00
this.storage.set(file);
this.removeFromQueue(file);
2016-12-07 00:27:56 +00:00
}
},
removeFromQueue: function (file)
{
this.queue.delete(file);
if (this.queue.size === 0 && this.state === CONST.LOADER_PROCESSING)
{
// We've processed all the files we loaded
this.processComplete();
}
},
2016-12-07 00:27:56 +00:00
processComplete: function ()
{
console.log(this.scene.sys.settings.key, '- Loader Complete. Loaded:', this.storage.size, 'Failed:', this.failed.size);
this.list.clear();
this.inflight.clear();
this.queue.clear();
this.processCallback();
this.state = CONST.LOADER_COMPLETE;
this.emit('complete', this, this.storage.size, this.failed.size);
},
// The Loader has finished
processCallback: function ()
{
if (this.storage.size === 0)
{
return;
}
// The global Texture Manager
var cache = this.scene.sys.cache;
var textures = this.scene.sys.textures;
var anims = this.scene.sys.anims;
// Process multiatlas groups first
var file;
var fileA;
var fileB;
for (var key in this._multilist)
{
var data = [];
var images = [];
var keys = this._multilist[key];
for (var i = 0; i < keys.length; i++)
{
file = this.storage.get('key', keys[i]);
if (file)
{
if (file.type === 'image')
{
images.push(file.data);
}
else if (file.type === 'json')
{
data.push(file.data);
}
this.storage.delete(file);
}
}
// Do we have everything needed?
if (images.length + data.length === keys.length)
{
// Yup, add them to the Texture Manager
// Is the data JSON Hash or JSON Array?
if (Array.isArray(data[0].frames))
{
textures.addAtlasJSONArray(key, images, data);
}
else
{
textures.addAtlasJSONHash(key, images, data);
}
}
}
// Process all of the files
// Because AnimationJSON may require images to be loaded first, we process them last
var animJSON = [];
this.storage.each(function (file)
{
switch (file.type)
{
case 'animationJSON':
animJSON.push(file);
break;
case 'image':
case 'svg':
case 'html':
textures.addImage(file.key, file.data);
break;
case 'atlasjson':
fileA = file.fileA;
fileB = file.fileB;
if (fileA.type === 'image')
{
textures.addAtlas(fileA.key, fileA.data, fileB.data);
}
else
{
textures.addAtlas(fileB.key, fileB.data, fileA.data);
}
break;
case 'unityatlas':
fileA = file.fileA;
fileB = file.fileB;
if (fileA.type === 'image')
{
textures.addUnityAtlas(fileA.key, fileA.data, fileB.data);
}
else
{
textures.addUnityAtlas(fileB.key, fileB.data, fileA.data);
}
break;
case 'bitmapfont':
fileA = file.fileA;
fileB = file.fileB;
if (fileA.type === 'image')
{
cache.bitmapFont.add(fileB.key, { data: ParseXMLBitmapFont(fileB.data), texture: fileA.key, frame: null });
textures.addImage(fileA.key, fileA.data);
}
else
{
cache.bitmapFont.add(fileA.key, { data: ParseXMLBitmapFont(fileA.data), texture: fileB.key, frame: null });
textures.addImage(fileB.key, fileB.data);
}
break;
case 'spritesheet':
textures.addSpriteSheet(file.key, file.data, file.config);
break;
case 'json':
cache.json.add(file.key, file.data);
break;
case 'xml':
cache.xml.add(file.key, file.data);
break;
case 'text':
cache.text.add(file.key, file.data);
break;
2017-12-07 02:18:40 +00:00
case 'obj':
cache.obj.add(file.key, file.data);
break;
case 'binary':
cache.binary.add(file.key, file.data);
break;
case 'audio':
cache.audio.add(file.key, file.data);
break;
case 'audioSprite':
var files = [ file.fileA, file.fileB ];
files.forEach(function (file)
{
cache[file.type].add(file.key, file.data);
});
break;
case 'glsl':
cache.shader.add(file.key, file.data);
break;
case 'tilemapCSV':
case 'tilemapJSON':
2018-01-18 00:30:22 +00:00
cache.tilemap.add(file.key, { format: file.tilemapFormat, data: file.data });
break;
}
});
animJSON.forEach(function (file)
{
anims.fromJSON(file.data);
});
this.storage.clear();
},
saveJSON: function (data, filename)
{
return this.save(JSON.stringify(data), filename);
},
save: function (data, filename, filetype)
{
if (filename === undefined) { filename = 'file.json'; }
if (filetype === undefined) { filetype = 'application/json'; }
var blob = new Blob([data], { type: filetype });
var url = URL.createObjectURL(blob);
var a = document.createElement('a');
a.download = filename;
a.textContent = 'Download ' + filename;
a.href = url;
a.click();
return this;
},
reset: function ()
{
this.list.clear();
this.inflight.clear();
this.failed.clear();
this.queue.clear();
this.storage.clear();
this.removeAllListeners('start');
this.removeAllListeners('complete');
2017-02-07 12:54:20 +00:00
this.tag = '';
this.path = '';
this.baseURL = '';
this.state = CONST.LOADER_IDLE;
},
destroy: function ()
{
this.reset();
this.state = CONST.LOADER_DESTROYED;
}
});
2018-01-19 14:47:16 +00:00
PluginManager.register('Loader', Loader, 'load');
module.exports = BaseLoader;