2016-11-24 01:35:02 +00:00
|
|
|
/**
|
|
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
|
|
* @copyright 2016 Photon Storm Ltd.
|
|
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
|
|
*/
|
|
|
|
|
2017-01-25 12:01:52 +00:00
|
|
|
var MATH = require('../math');
|
2016-11-24 15:40:05 +00:00
|
|
|
var CONST = require('../const');
|
2016-11-28 16:55:13 +00:00
|
|
|
var NOOP = require('../utils/NOOP');
|
2017-04-26 15:03:14 +00:00
|
|
|
var GetValue = require('../utils/object/GetValue');
|
2017-02-11 08:18:22 +00:00
|
|
|
var ValueToColor = require('../graphics/color/ValueToColor');
|
2016-11-24 15:40:05 +00:00
|
|
|
|
|
|
|
var defaultBannerColor = [
|
|
|
|
'#ff0000',
|
|
|
|
'#ffff00',
|
|
|
|
'#00ff00',
|
|
|
|
'#00ffff',
|
|
|
|
'#000000'
|
|
|
|
];
|
|
|
|
|
|
|
|
var defaultBannerTextColor = '#ffffff';
|
|
|
|
|
2017-01-16 22:43:46 +00:00
|
|
|
var Config = function (config)
|
2016-11-24 01:35:02 +00:00
|
|
|
{
|
|
|
|
if (config === undefined) { config = {}; }
|
|
|
|
|
2017-04-26 15:03:14 +00:00
|
|
|
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
|
|
|
|
2017-04-26 15:03:14 +00:00
|
|
|
this.resolution = GetValue(config, 'resolution', 1);
|
2016-11-24 15:40:05 +00:00
|
|
|
|
2017-04-26 15:03:14 +00:00
|
|
|
this.renderType = GetValue(config, 'type', CONST.AUTO);
|
2016-11-24 15:40:05 +00:00
|
|
|
|
2017-04-26 15:03:14 +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
|
|
|
|
2017-04-26 15:03:14 +00:00
|
|
|
this.stateConfig = GetValue(config, 'state', null);
|
2016-11-24 15:40:05 +00:00
|
|
|
|
2017-04-26 15:03:14 +00:00
|
|
|
this.seed = GetValue(config, 'seed', [ (Date.now() * Math.random()).toString() ]);
|
2016-11-24 15:40:05 +00:00
|
|
|
|
2017-01-25 12:01:52 +00:00
|
|
|
MATH.RND.init(this.seed);
|
|
|
|
|
2017-04-26 15:03:14 +00:00
|
|
|
this.gameTitle = GetValue(config, 'title', '');
|
|
|
|
this.gameURL = GetValue(config, 'url', 'http://phaser.io');
|
|
|
|
this.gameVersion = GetValue(config, 'version', '');
|
2016-11-24 15:40:05 +00:00
|
|
|
|
2017-02-21 01:04:11 +00:00
|
|
|
// Input
|
2017-04-26 15:03:14 +00:00
|
|
|
this.inputKeyboard = GetValue(config, 'input.keyboard', true);
|
|
|
|
this.inputKeyboardEventTarget = GetValue(config, 'input.keyboard.target', window);
|
2017-02-21 01:04:11 +00:00
|
|
|
|
2016-11-24 15:40:05 +00:00
|
|
|
// If you do: { banner: false } it won't display any banner at all
|
2017-04-26 15:03:14 +00:00
|
|
|
this.hideBanner = (GetValue(config, 'banner', null) === false);
|
2016-11-24 15:40:05 +00:00
|
|
|
|
2017-04-26 15:03:14 +00:00
|
|
|
this.hidePhaser = GetValue(config, 'banner.hidePhaser', false);
|
|
|
|
this.bannerTextColor = GetValue(config, 'banner.text', defaultBannerTextColor);
|
|
|
|
this.bannerBackgroundColor = GetValue(config, 'banner.background', defaultBannerColor);
|
2016-11-29 15:25:14 +00:00
|
|
|
|
2017-05-03 16:07:15 +00:00
|
|
|
// Frame Rate config
|
|
|
|
// fps: {
|
|
|
|
// min: 10,
|
|
|
|
// target: 60,
|
|
|
|
// max: 120
|
|
|
|
// forceSetTimeOut: false,
|
|
|
|
// deltaHistory: 10
|
|
|
|
// }
|
|
|
|
|
|
|
|
this.fps = GetValue(config, 'fps', null);
|
2017-02-07 18:41:53 +00:00
|
|
|
|
2017-04-26 15:03:14 +00:00
|
|
|
this.pixelArt = GetValue(config, 'pixelArt', false);
|
|
|
|
this.transparent = GetValue(config, 'transparent', false);
|
|
|
|
this.clearBeforeRender = GetValue(config, 'clearBeforeRender', true);
|
|
|
|
this.backgroundColor = ValueToColor(GetValue(config, 'backgroundColor', 0));
|
|
|
|
this.preserveDrawingBuffer = ValueToColor(GetValue(config, 'preserveDrawingBuffer', false));
|
2016-11-25 02:08:33 +00:00
|
|
|
|
2016-11-28 16:55:13 +00:00
|
|
|
// Callbacks
|
2017-04-26 15:03:14 +00:00
|
|
|
this.preBoot = GetValue(config, 'callbacks.preBoot', NOOP);
|
|
|
|
this.postBoot = GetValue(config, 'callbacks.postBoot', NOOP);
|
2017-02-07 12:43:20 +00:00
|
|
|
|
2017-04-27 02:11:56 +00:00
|
|
|
this.useTicker = GetValue(config, 'useTicker', false);
|
|
|
|
|
2017-02-07 12:43:20 +00:00
|
|
|
// Default / Missing Images
|
2017-03-28 22:56:00 +00:00
|
|
|
var pngPrefix = 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAg';
|
|
|
|
|
2017-04-26 15:03:14 +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==');
|
2017-01-16 22:43:46 +00:00
|
|
|
};
|
2016-11-24 01:35:02 +00:00
|
|
|
|
|
|
|
Config.prototype.constructor = Config;
|
|
|
|
|
|
|
|
module.exports = Config;
|