phaser/src/boot/Config.js

259 lines
10 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}
*/
var Class = require('../utils/Class');
2016-11-24 15:40:05 +00:00
var CONST = require('../const');
var GetValue = require('../utils/object/GetValue');
var MATH = require('../math/const');
var NOOP = require('../utils/NOOP');
var Plugins = require('../plugins');
2017-10-11 16:05:59 +00:00
var ValueToColor = require('../display/color/ValueToColor');
2016-11-24 15:40:05 +00:00
/**
* This callback type is completely empty, a no-operation.
*
* @callback NOOP
*/
/**
* @callback BootCallback
*
* @param {Phaser.Game} game - [description]
*/
2017-10-04 22:48:16 +00:00
/**
* @typedef {object} FPSConfig
*
2017-10-04 22:48:16 +00:00
* @property {integer} [min=10] - [description]
* @property {integer} [target=60] - [description]
* @property {boolean} [forceSetTimeOut=false] - [description]
* @property {integer} [deltaHistory=10] - [description]
* @property {integer} [panicMax=120] - [description]
*/
/**
2018-01-25 00:48:48 +00:00
* @typedef {object} LoaderConfig
2017-10-04 22:48:16 +00:00
*
2018-01-25 00:48:48 +00:00
* @property {string} [baseURL] - [description]
* @property {string} [path] - [description]
* @property {integer} [maxParallelDownloads=32] - [description]
2018-03-20 14:58:02 +00:00
* @property {(string|undefined)} [crossOrigin=undefined] - [description]
2018-01-25 00:48:48 +00:00
* @property {string} [responseType] - [description]
* @property {boolean} [async=true] - [description]
* @property {string} [user] - [description]
* @property {string} [password] - [description]
* @property {integer} [timeout=0] - [description]
*/
/**
* @typedef {object} GameConfig
*
2018-03-20 14:58:02 +00:00
* @property {(integer|string)} [width=1024] - [description]
* @property {(integer|string)} [height=768] - [description]
2017-10-04 22:48:16 +00:00
* @property {number} [zoom=1] - [description]
* @property {number} [resolution=1] - [description]
* @property {number} [type=CONST.AUTO] - [description]
* @property {*} [parent=null] - [description]
* @property {HTMLCanvasElement} [canvas=null] - [description]
* @property {string} [canvasStyle=null] - [description]
* @property {object} [scene=null] - [description]
2018-03-19 16:55:21 +00:00
* @property {string[]} [seed] - [description]
2017-10-04 22:48:16 +00:00
* @property {string} [title=''] - [description]
* @property {string} [url='http://phaser.io'] - [description]
* @property {string} [version=''] - [description]
2018-03-27 11:30:00 +00:00
* @property {(boolean|object)} [input] - [description]
2017-10-04 22:48:16 +00:00
* @property {boolean} [input.keyboard=true] - [description]
2018-03-27 11:30:00 +00:00
* @property {*} [input.keyboard.target=window] - [description]
* @property {(boolean|object)} [input.mouse=true] - [description]
* @property {*} [input.mouse.target=null] - [description]
2017-10-04 22:48:16 +00:00
* @property {boolean} [input.touch=true] - [description]
* @property {*} [input.touch.target=null] - [description]
* @property {boolean} [input.touch.capture=true] - [description]
2018-03-27 11:30:00 +00:00
* @property {(boolean|object)} [input.gamepad=false] - [description]
2017-10-04 22:48:16 +00:00
* @property {boolean} [disableContextMenu=false] - [description]
2018-03-27 11:30:00 +00:00
* @property {(boolean|object)} [banner=false] - [description]
2017-10-04 22:48:16 +00:00
* @property {boolean} [banner.hidePhaser=false] - [description]
* @property {string} [banner.text='#ffffff'] - [description]
2018-03-19 16:55:21 +00:00
* @property {string[]} [banner.background] - [description]
* @property {FPSConfig} [fps] - [description]
2018-03-16 00:52:21 +00:00
* @property {boolean} [antialias=true] - [description]
2017-10-04 22:48:16 +00:00
* @property {boolean} [pixelArt=false] - [description]
* @property {boolean} [autoResize=false] - [description]
2018-02-28 14:26:02 +00:00
* @property {boolean} [roundPixels=false] - [description]
* @property {boolean} [transparent=false] - [description]
2017-10-04 22:48:16 +00:00
* @property {boolean} [clearBeforeRender=true] - [description]
* @property {boolean} [premultipliedAlpha=true] - [description]
2018-03-16 00:52:21 +00:00
* @property {boolean} [preserveDrawingBuffer=false] - [description]
* @property {boolean} [failIfMajorPerformanceCaveat=false] - [description]
* @property {boolean} [powerPreference='default'] - "high-performance", "low-power" or "default"
2018-03-20 14:58:02 +00:00
* @property {(string|number)} [backgroundColor=0x000000] - [description]
* @property {object} [callbacks] - [description]
* @property {BootCallback} [callbacks.preBoot=NOOP] - [description]
* @property {BootCallback} [callbacks.postBoot=NOOP] - [description]
* @property {LoaderConfig} [loader] - [description]
* @property {object} [images] - [description]
2017-10-04 22:48:16 +00:00
* @property {string} [images.default] - [description]
* @property {string} [images.missing] - [description]
2018-04-07 15:18:48 +00:00
* @property {object} [physics] - [description]
2017-10-04 22:48:16 +00:00
*/
2018-02-07 15:27:21 +00:00
/**
* @classdesc
* [description]
*
* @class Config
* @memberOf Phaser.Boot
* @constructor
* @since 3.0.0
*
2018-03-19 16:55:21 +00:00
* @param {GameConfig} [GameConfig] - The configuration object for your Phaser Game instance.
2018-02-07 15:27:21 +00:00
*
*/
var Config = new Class({
initialize:
function Config (config)
{
if (config === undefined) { config = {}; }
2016-11-24 15:40:05 +00:00
var defaultBannerColor = [
'#ff0000',
'#ffff00',
'#00ff00',
'#00ffff',
'#000000'
];
2016-11-24 15:40:05 +00:00
var defaultBannerTextColor = '#ffffff';
this.width = GetValue(config, 'width', 1024);
this.height = GetValue(config, 'height', 768);
this.zoom = GetValue(config, 'zoom', 1);
2016-11-24 15:40:05 +00:00
this.resolution = GetValue(config, 'resolution', 1);
2016-11-24 15:40:05 +00:00
this.renderType = GetValue(config, 'type', CONST.AUTO);
2016-11-24 15:40:05 +00:00
this.parent = GetValue(config, 'parent', null);
this.canvas = GetValue(config, 'canvas', null);
this.canvasStyle = GetValue(config, 'canvasStyle', null);
2016-11-24 15:40:05 +00:00
this.sceneConfig = GetValue(config, 'scene', null);
2016-11-24 15:40:05 +00:00
this.seed = GetValue(config, 'seed', [ (Date.now() * Math.random()).toString() ]);
2016-11-24 15:40:05 +00:00
MATH.RND.init(this.seed);
2017-01-25 12:01:52 +00:00
this.gameTitle = GetValue(config, 'title', '');
2018-01-28 04:10:44 +00:00
this.gameURL = GetValue(config, 'url', 'https://phaser.io');
this.gameVersion = GetValue(config, 'version', '');
2016-11-24 15:40:05 +00:00
// Input
this.inputKeyboard = GetValue(config, 'input.keyboard', true);
this.inputKeyboardEventTarget = GetValue(config, 'input.keyboard.target', window);
this.inputMouse = GetValue(config, 'input.mouse', true);
this.inputMouseEventTarget = GetValue(config, 'input.mouse.target', null);
this.inputMouseCapture = GetValue(config, 'input.mouse.capture', true);
this.inputTouch = GetValue(config, 'input.touch', true);
this.inputTouchEventTarget = GetValue(config, 'input.touch.target', null);
this.inputTouchCapture = GetValue(config, 'input.touch.capture', true);
this.inputGamepad = GetValue(config, 'input.gamepad', false);
2017-09-09 02:17:13 +00:00
this.disableContextMenu = GetValue(config, 'disableContextMenu', false);
this.audio = GetValue(config, 'audio');
// If you do: { banner: false } it won't display any banner at all
this.hideBanner = (GetValue(config, 'banner', null) === false);
2016-11-24 15:40:05 +00:00
this.hidePhaser = GetValue(config, 'banner.hidePhaser', false);
this.bannerTextColor = GetValue(config, 'banner.text', defaultBannerTextColor);
this.bannerBackgroundColor = GetValue(config, 'banner.background', defaultBannerColor);
2017-10-04 22:48:16 +00:00
if (this.gameTitle === '' && this.hidePhaser)
{
this.hideBanner = true;
}
// Frame Rate config
// fps: {
// min: 10,
// target: 60,
// forceSetTimeOut: false,
// deltaHistory: 10
// }
this.fps = GetValue(config, 'fps', null);
2017-02-07 18:41:53 +00:00
// Renderer Settings
// These can either be in a `render` object within the Config, or specified on their own
var renderConfig = GetValue(config, 'render', config);
this.antialias = GetValue(renderConfig, 'antialias', true);
this.pixelArt = GetValue(renderConfig, 'pixelArt', false);
this.autoResize = GetValue(renderConfig, 'autoResize', false);
this.roundPixels = GetValue(renderConfig, 'roundPixels', false);
this.transparent = GetValue(renderConfig, 'transparent', false);
this.clearBeforeRender = GetValue(renderConfig, 'clearBeforeRender', true);
this.premultipliedAlpha = GetValue(renderConfig, 'premultipliedAlpha', true);
this.preserveDrawingBuffer = GetValue(renderConfig, 'preserveDrawingBuffer', false);
this.failIfMajorPerformanceCaveat = GetValue(renderConfig, 'failIfMajorPerformanceCaveat', false);
this.powerPreference = GetValue(renderConfig, 'powerPreference', 'default');
var bgc = GetValue(config, 'backgroundColor', 0);
this.backgroundColor = ValueToColor(bgc);
if (bgc === 0 && this.transparent)
{
this.backgroundColor.alpha = 0;
}
// Callbacks
this.preBoot = GetValue(config, 'callbacks.preBoot', NOOP);
this.postBoot = GetValue(config, 'callbacks.postBoot', NOOP);
2017-08-15 22:34:39 +00:00
// Physics
// physics: {
// system: 'impact',
// setBounds: true,
2017-08-15 22:34:39 +00:00
// gravity: 0,
// cellSize: 64
2017-08-15 22:34:39 +00:00
// }
this.physics = GetValue(config, 'physics', {});
this.defaultPhysicsSystem = GetValue(this.physics, 'default', false);
2017-08-15 22:34:39 +00:00
// Loader Defaults
this.loaderBaseURL = GetValue(config, 'loader.baseURL', '');
this.loaderPath = GetValue(config, 'loader.path', '');
this.loaderMaxParallelDownloads = GetValue(config, 'loader.maxParallelDownloads', 32);
this.loaderCrossOrigin = GetValue(config, 'loader.crossOrigin', undefined);
this.loaderResponseType = GetValue(config, 'loader.responseType', '');
this.loaderAsync = GetValue(config, 'loader.async', true);
this.loaderUser = GetValue(config, 'loader.user', '');
this.loaderPassword = GetValue(config, 'loader.password', '');
this.loaderTimeout = GetValue(config, 'loader.timeout', 0);
// Scene Plugins
this.defaultPlugins = GetValue(config, 'plugins', Plugins.DefaultScene);
// Default / Missing Images
var pngPrefix = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAg';
2017-03-28 22:56:00 +00:00
this.defaultImage = GetValue(config, 'images.default', pngPrefix + 'AQMAAABJtOi3AAAAA1BMVEX///+nxBvIAAAAAXRSTlMAQObYZgAAABVJREFUeF7NwIEAAAAAgKD9qdeocAMAoAABm3DkcAAAAABJRU5ErkJggg==');
this.missingImage = GetValue(config, 'images.missing', pngPrefix + 'CAIAAAD8GO2jAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAJ9JREFUeNq01ssOwyAMRFG46v//Mt1ESmgh+DFmE2GPOBARKb2NVjo+17PXLD8a1+pl5+A+wSgFygymWYHBb0FtsKhJDdZlncG2IzJ4ayoMDv20wTmSMzClEgbWYNTAkQ0Z+OJ+A/eWnAaR9+oxCF4Os0H8htsMUp+pwcgBBiMNnAwF8GqIgL2hAzaGFFgZauDPKABmowZ4GL369/0rwACp2yA/ttmvsQAAAABJRU5ErkJggg==');
}
});
module.exports = Config;