UNPKG

phaser

Version:

A fast, free and fun HTML5 Game Framework for Desktop and Mobile web browsers.

98 lines (83 loc) 2.54 kB
/** * @author Richard Davey <rich@photonstorm.com> * @copyright 2018 Photon Storm Ltd. * @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License} */ var Class = require('../../utils/Class'); var CONST = require('../const'); var File = require('../File'); var FileTypesManager = require('../FileTypesManager'); /** * @classdesc * [description] * * @class TextFile * @extends Phaser.Loader.File * @memberOf Phaser.Loader.FileTypes * @constructor * @since 3.0.0 * * @param {string} key - [description] * @param {string} url - [description] * @param {string} path - [description] * @param {XHRSettingsObject} [xhrSettings] - [description] */ var TextFile = new Class({ Extends: File, initialize: function TextFile (key, url, path, xhrSettings) { var fileConfig = { type: 'text', extension: 'txt', responseType: 'text', key: key, url: url, path: path, xhrSettings: xhrSettings }; File.call(this, fileConfig); }, onProcess: function (callback) { this.state = CONST.FILE_PROCESSING; this.data = this.xhrLoader.responseText; this.onComplete(); callback(this); } }); /** * Adds a Text file to the current load queue. * * Note: This method will only be available if the Text File type has been built into Phaser. * * The file is **not** loaded immediately after calling this method. * Instead, the file is added to a queue within the Loader, which is processed automatically when the Loader starts. * * @method Phaser.Loader.LoaderPlugin#text * @since 3.0.0 * * @param {string} key - [description] * @param {string} url - [description] * @param {XHRSettingsObject} [xhrSettings] - [description] * * @return {Phaser.Loader.LoaderPlugin} The Loader. */ FileTypesManager.register('text', function (key, url, xhrSettings) { if (Array.isArray(key)) { for (var i = 0; i < key.length; i++) { // If it's an array it has to be an array of Objects, so we get everything out of the 'key' object this.addFile(new TextFile(key[i], url, this.path, xhrSettings)); } } else { this.addFile(new TextFile(key, url, this.path, xhrSettings)); } // For method chaining return this; }); module.exports = TextFile;