phaser/src/scene/Settings.js

111 lines
3.1 KiB
JavaScript
Raw Normal View History

2018-02-12 16:01:20 +00:00
/**
* @author Richard Davey <rich@photonstorm.com>
* @copyright 2018 Photon Storm Ltd.
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
*/
2018-01-16 19:49:13 +00:00
var CONST = require('./const');
var GetValue = require('../utils/object/GetValue');
var Merge = require('../utils/object/Merge');
var InjectionMap = require('./InjectionMap');
2016-11-29 13:01:16 +00:00
2018-03-22 12:51:30 +00:00
// TODO 22/03/2018 Fix "plugins" type
2018-02-12 15:18:31 +00:00
/**
* @typedef {object} SettingsConfig
2018-02-12 15:18:31 +00:00
*
* @property {string} [key] - [description]
* @property {boolean} [active=false] - [description]
* @property {boolean} [visible=true] - [description]
2018-03-22 12:51:30 +00:00
* @property {(false|LoaderFileObject[])} [files=false] - [description]
* @property {?(InputJSONCameraObject|InputJSONCameraObject[])} [cameras=null] - [description]
* @property {Object.<string, string>} [map] - [description]
* @property {object} [physics={}] - [description]
* @property {object} [loader={}] - [description]
2018-03-22 12:51:30 +00:00
* @property {(false|*)} [plugins=false] - [description]
*/
/**
* @typedef {object} SettingsObject
2018-02-12 15:18:31 +00:00
*
* @property {number} status - [description]
* @property {string} key - [description]
* @property {boolean} active - [description]
* @property {boolean} visible - [description]
* @property {boolean} isBooted - [description]
* @property {object} data - [description]
2018-03-22 12:51:30 +00:00
* @property {(false|LoaderFileObject[])} files - [description]
* @property {?(InputJSONCameraObject|InputJSONCameraObject[])} cameras - [description]
* @property {Object.<string, string>} map - [description]
* @property {object} physics - [description]
* @property {object} loader - [description]
2018-03-22 12:51:30 +00:00
* @property {(false|*)} plugins - [description]
2018-02-12 15:18:31 +00:00
*/
2017-02-06 23:59:15 +00:00
var Settings = {
/**
* Takes a Scene configuration object and returns a fully formed Systems object.
*
* @function Phaser.Scenes.Settings.create
* @since 3.0.0
*
* @param {(string|SettingsConfig)} config - [description]
*
* @return {SettingsObject} [description]
*/
2017-02-06 23:59:15 +00:00
create: function (config)
2016-11-29 13:01:16 +00:00
{
2017-02-06 23:59:15 +00:00
if (typeof config === 'string')
{
config = { key: config };
}
else if (config === undefined)
{
// Pass the 'hasOwnProperty' checks
config = {};
}
2016-11-29 13:01:16 +00:00
2017-02-06 23:59:15 +00:00
return {
2016-11-29 13:01:16 +00:00
2017-02-06 23:59:15 +00:00
status: CONST.PENDING,
2016-11-29 13:01:16 +00:00
key: GetValue(config, 'key', ''),
active: GetValue(config, 'active', false),
visible: GetValue(config, 'visible', true),
isBooted: false,
// Loader payload array
2017-02-17 02:07:56 +00:00
data: {},
files: GetValue(config, 'files', false),
2016-11-29 13:01:16 +00:00
// Cameras
cameras: GetValue(config, 'cameras', null),
// Scene Property Injection Map
map: GetValue(config, 'map', Merge(InjectionMap, GetValue(config, 'mapAdd', {}))),
// Physics
physics: GetValue(config, 'physics', {}),
// Loader
loader: GetValue(config, 'loader', {}),
// Plugins
plugins: GetValue(config, 'plugins', false)
2017-02-06 23:59:15 +00:00
};
}
2017-02-06 23:59:15 +00:00
2016-11-29 13:01:16 +00:00
};
module.exports = Settings;