2017-08-18 00:42:14 +00:00
|
|
|
var CONST = require('../const');
|
|
|
|
var ScaleModes = require('../../renderer/ScaleModes');
|
|
|
|
var GetValue = require('../../utils/object/GetValue');
|
2017-06-29 23:32:18 +00:00
|
|
|
var InjectionMap = require('./InjectionMap');
|
2016-11-29 13:01:16 +00:00
|
|
|
|
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
|
|
|
|
2017-02-06 23:59:15 +00:00
|
|
|
op: CONST.BOOT,
|
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
|
|
|
|
|
|
|
// Loader payload array
|
|
|
|
|
2017-02-17 02:07:56 +00:00
|
|
|
data: {},
|
|
|
|
|
2017-04-26 15:03:14 +00:00
|
|
|
files: GetValue(config, 'files', 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
|
|
|
|
|
|
|
map: GetValue(config, 'map', InjectionMap),
|
|
|
|
|
2017-08-18 00:42:14 +00:00
|
|
|
// Physics
|
|
|
|
physics: GetValue(config, 'physics', {}),
|
|
|
|
|
2017-07-14 13:30:20 +00:00
|
|
|
// Scene Render Settings (applies only to this Scene)
|
2017-01-20 02:28:55 +00:00
|
|
|
|
2017-04-26 15:03:14 +00:00
|
|
|
scaleMode: GetValue(config, 'scaleMode', ScaleModes.DEFAULT),
|
|
|
|
roundPixels: GetValue(config, 'roundPixels', false),
|
2017-02-07 12:54:51 +00:00
|
|
|
|
2017-04-26 15:03:14 +00:00
|
|
|
dirtyRender: GetValue(config, 'dirtyRender', false),
|
|
|
|
renderToTexture: GetValue(config, 'renderToTexture', false),
|
2017-02-07 18:44:26 +00:00
|
|
|
|
|
|
|
// The following only apply if renderToTexture is true
|
2017-02-07 12:54:51 +00:00
|
|
|
|
2017-06-28 00:50:49 +00:00
|
|
|
autoResize: GetValue(config, 'autoResize', false)
|
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;
|