phaser/src/scene/Settings.js

77 lines
1.6 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 InjectionMap = require('./InjectionMap');
2016-11-29 13:01:16 +00:00
2018-02-12 15:18:31 +00:00
/**
* Takes a Scene configuration object and returns a fully formed Systems object.
*
* @function Phaser.Scenes.Settings.create
* @since 3.0.0
*
* @param {object} config - [description]
*
* @return {object} [description]
*/
2017-02-06 23:59:15 +00:00
var Settings = {
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', InjectionMap),
// 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;