2018-02-12 16:01:20 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
2019-01-15 16:20:22 +00:00
|
|
|
* @copyright 2019 Photon Storm Ltd.
|
2019-05-10 15:15:04 +00:00
|
|
|
* @license {@link https://opensource.org/licenses/MIT|MIT License}
|
2018-02-12 16:01:20 +00:00
|
|
|
*/
|
|
|
|
|
2018-01-16 19:49:13 +00:00
|
|
|
var CONST = require('./const');
|
|
|
|
var GetValue = require('../utils/object/GetValue');
|
2018-04-09 19:16:45 +00:00
|
|
|
var Merge = require('../utils/object/Merge');
|
2017-06-29 23:32:18 +00:00
|
|
|
var InjectionMap = require('./InjectionMap');
|
2016-11-29 13:01:16 +00:00
|
|
|
|
2018-04-16 14:11:51 +00:00
|
|
|
/**
|
|
|
|
* @namespace Phaser.Scenes.Settings
|
|
|
|
*/
|
2018-03-22 12:51:30 +00:00
|
|
|
|
2017-02-06 23:59:15 +00:00
|
|
|
var Settings = {
|
|
|
|
|
2018-03-21 13:41:17 +00:00
|
|
|
/**
|
2018-10-19 14:53:04 +00:00
|
|
|
* Takes a Scene configuration object and returns a fully formed System Settings object.
|
2018-03-21 13:41:17 +00:00
|
|
|
*
|
|
|
|
* @function Phaser.Scenes.Settings.create
|
|
|
|
* @since 3.0.0
|
|
|
|
*
|
2019-05-09 11:37:37 +00:00
|
|
|
* @param {(string|Phaser.Types.Scenes.SettingsConfig)} config - The Scene configuration object used to create this Scene Settings.
|
2018-03-21 13:41:17 +00:00
|
|
|
*
|
2019-05-09 11:37:37 +00:00
|
|
|
* @return {Phaser.Types.Scenes.SettingsObject} The Scene Settings object created as a result of the config and default settings.
|
2018-03-21 13:41:17 +00:00
|
|
|
*/
|
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
|
|
|
|
2017-07-03 11:24:18 +00:00
|
|
|
key: GetValue(config, 'key', ''),
|
2017-04-26 15:03:14 +00:00
|
|
|
active: GetValue(config, 'active', false),
|
|
|
|
visible: GetValue(config, 'visible', true),
|
2017-02-07 18:44:26 +00:00
|
|
|
|
2018-01-18 13:59:32 +00:00
|
|
|
isBooted: false,
|
|
|
|
|
2018-04-13 19:12:29 +00:00
|
|
|
isTransition: false,
|
|
|
|
transitionFrom: null,
|
2018-04-14 03:24:05 +00:00
|
|
|
transitionDuration: 0,
|
|
|
|
transitionAllowInput: true,
|
2018-04-13 19:12:29 +00:00
|
|
|
|
2017-02-07 18:44:26 +00:00
|
|
|
// Loader payload array
|
|
|
|
|
2017-02-17 02:07:56 +00:00
|
|
|
data: {},
|
|
|
|
|
2018-05-04 13:33:28 +00:00
|
|
|
pack: GetValue(config, 'pack', false),
|
2016-11-29 13:01:16 +00:00
|
|
|
|
2017-06-29 15:49:05 +00:00
|
|
|
// Cameras
|
2017-01-26 04:06:10 +00:00
|
|
|
|
2017-06-29 15:49:05 +00:00
|
|
|
cameras: GetValue(config, 'cameras', null),
|
|
|
|
|
2017-07-14 13:30:20 +00:00
|
|
|
// Scene Property Injection Map
|
2017-06-29 23:32:18 +00:00
|
|
|
|
2018-04-09 19:16:45 +00:00
|
|
|
map: GetValue(config, 'map', Merge(InjectionMap, GetValue(config, 'mapAdd', {}))),
|
2017-06-29 23:32:18 +00:00
|
|
|
|
2017-08-18 00:42:14 +00:00
|
|
|
// Physics
|
2018-01-18 05:18:45 +00:00
|
|
|
|
2017-08-18 00:42:14 +00:00
|
|
|
physics: GetValue(config, 'physics', {}),
|
|
|
|
|
2018-01-19 16:56:41 +00:00
|
|
|
// Loader
|
|
|
|
|
|
|
|
loader: GetValue(config, 'loader', {}),
|
|
|
|
|
2018-01-18 05:18:45 +00:00
|
|
|
// Plugins
|
|
|
|
|
2018-06-08 14:16:09 +00:00
|
|
|
plugins: GetValue(config, 'plugins', false),
|
|
|
|
|
|
|
|
// Input
|
|
|
|
|
|
|
|
input: GetValue(config, 'input', {})
|
2017-02-06 23:59:15 +00:00
|
|
|
|
|
|
|
};
|
2017-06-29 15:49:05 +00:00
|
|
|
}
|
2017-02-06 23:59:15 +00:00
|
|
|
|
2016-11-29 13:01:16 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = Settings;
|