phaser/src/scene/Settings.js

91 lines
2.2 KiB
JavaScript
Raw Normal View History

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');
var Merge = require('../utils/object/Merge');
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-10-19 14:53:04 +00:00
* Takes a Scene configuration object and returns a fully formed System Settings object.
*
* @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.
*
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.
*/
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,
isTransition: false,
transitionFrom: null,
2018-04-14 03:24:05 +00:00
transitionDuration: 0,
transitionAllowInput: true,
// Loader payload array
2017-02-17 02:07:56 +00:00
data: {},
pack: GetValue(config, 'pack', 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
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-02-06 23:59:15 +00:00
2016-11-29 13:01:16 +00:00
};
module.exports = Settings;