mirror of
https://github.com/photonstorm/phaser
synced 2024-12-11 22:03:09 +00:00
86 lines
2.4 KiB
JavaScript
86 lines
2.4 KiB
JavaScript
/**
|
|
* @author Richard Davey <rich@photonstorm.com>
|
|
* @copyright 2016 Photon Storm Ltd.
|
|
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
|
|
*/
|
|
|
|
var CONST = require('../const');
|
|
var CanvasPool = require('../dom/CanvasPool');
|
|
var Features = require('../device/Features');
|
|
var CanvasRenderer = require('../renderer/canvas/CanvasRenderer');
|
|
var WebGLRenderer = require('../renderer/webgl/WebGLRenderer');
|
|
var CanvasInterpolation = require('../dom/CanvasInterpolation');
|
|
|
|
/**
|
|
* Checks if the device is capable of using the requested renderer and sets it up or an alternative if not.
|
|
*
|
|
* @method Phaser.Game#setUpRenderer
|
|
* @protected
|
|
*/
|
|
var CreateRenderer = function (game)
|
|
{
|
|
var config = game.config;
|
|
|
|
// Game either requested Canvas,
|
|
// or requested AUTO or WEBGL but the browser doesn't support it, so fall back to Canvas
|
|
if (config.renderType === CONST.CANVAS || (config.renderType !== CONST.CANVAS && !Features.webGL))
|
|
{
|
|
if (Features.canvas)
|
|
{
|
|
// They requested Canvas and their browser supports it
|
|
config.renderType = CONST.CANVAS;
|
|
}
|
|
else
|
|
{
|
|
throw new Error('Cannot create Canvas or WebGL context, aborting.');
|
|
}
|
|
}
|
|
else
|
|
{
|
|
// Game requested WebGL and browser says it supports it
|
|
config.renderType = CONST.WEBGL;
|
|
}
|
|
|
|
// Does the game config provide its own canvas element to use?
|
|
if (config.canvas)
|
|
{
|
|
game.canvas = config.canvas;
|
|
}
|
|
else
|
|
{
|
|
game.canvas = CanvasPool.create(game, config.width, config.height, config.renderType);
|
|
}
|
|
|
|
// Does the game config provide some canvas css styles to use?
|
|
if (config.canvasStyle)
|
|
{
|
|
game.canvas.style = config.canvasStyle;
|
|
}
|
|
|
|
// Pixel Art mode?
|
|
if (config.pixelArt)
|
|
{
|
|
CanvasInterpolation.setCrisp(game.canvas);
|
|
}
|
|
|
|
// Zoomed?
|
|
if (config.zoom !== 1)
|
|
{
|
|
game.canvas.style.width = (config.width * config.zoom).toString() + 'px';
|
|
game.canvas.style.height = (config.height * config.zoom).toString() + 'px';
|
|
}
|
|
|
|
// Create the renderer
|
|
if (config.renderType === CONST.WEBGL)
|
|
{
|
|
game.renderer = new WebGLRenderer(game);
|
|
game.context = null;
|
|
}
|
|
else
|
|
{
|
|
game.renderer = new CanvasRenderer(game);
|
|
game.context = game.renderer.context;
|
|
}
|
|
};
|
|
|
|
module.exports = CreateRenderer;
|