phaser/v3/src/renderer/webgl/WebGLRenderer.js

226 lines
6.1 KiB
JavaScript
Raw Normal View History

2016-12-07 02:28:22 +00:00
/**
* @author Richard Davey <rich@photonstorm.com>
* @author Mat Groves (@Doormat23)
* @copyright 2016 Photon Storm Ltd.
* @license {@link https://github.com/photonstorm/phaser/blob/master/license.txt|MIT License}
*/
2016-12-07 03:42:41 +00:00
var CONST = require('../../const');
2016-12-07 02:28:22 +00:00
var CreateEmptyTexture = require('./utils/CreateEmptyTexture');
var WebGLRenderer = function (game)
{
this.game = game;
2016-12-07 03:42:41 +00:00
this.type = CONST.WEBGL;
2016-12-07 02:28:22 +00:00
2016-12-07 03:42:41 +00:00
this.width = game.config.width * game.config.resolution;
this.height = game.config.height * game.config.resolution;
this.resolution = game.config.resolution;
2016-12-07 02:28:22 +00:00
this.view = game.canvas;
// All of these settings will be able to be controlled via the Game Config
this.config = {
clearBeforeRender: true,
transparent: false,
autoResize: false,
preserveDrawingBuffer: false,
2016-12-07 02:28:22 +00:00
WebGLContextOptions: {
alpha: true,
antialias: true,
premultipliedAlpha: true,
stencil: true,
preserveDrawingBuffer: false
}
2016-12-07 02:28:22 +00:00
};
this.contextLost = false;
this.maxTextures = 1;
this.multiTexture = false;
this.blendModes = [];
2016-12-07 02:28:22 +00:00
this.gl = null;
2016-12-07 02:28:22 +00:00
this.init();
};
WebGLRenderer.prototype.constructor = WebGLRenderer;
WebGLRenderer.prototype = {
init: function ()
{
this.gl = this.view.getContext('webgl', this.config.WebGLContextOptions) || this.view.getContext('experimental-webgl', this.config.WebGLContextOptions);
2016-12-07 02:28:22 +00:00
if (!this.gl)
{
this.contextLost = true;
throw new Error('This browser does not support WebGL. Try using the Canvas renderer.');
}
var gl = this.gl;
/*
// Will need supporting
2016-12-07 02:28:22 +00:00
this.maxTextures = gl.getParameter(gl.MAX_TEXTURE_IMAGE_UNITS);
if (this.maxTextures === 1)
{
this.multiTexture = false;
}
else
{
this.createMultiEmptyTextures();
}
this.emptyTexture = CreateEmptyTexture(this.gl, 1, 1, 0, 0);
*/
2016-12-07 02:28:22 +00:00
gl.disable(gl.DEPTH_TEST);
gl.disable(gl.CULL_FACE);
gl.enable(gl.BLEND);
2016-12-07 03:42:41 +00:00
gl.clearColor(1, 0, 0, 1);
2016-12-07 02:28:22 +00:00
this.resize(this.width, this.height);
/*
// Will need supporting
2016-12-07 02:28:22 +00:00
this.extensions.compression = {};
var etc1 = gl.getExtension('WEBGL_compressed_texture_etc1') || gl.getExtension('WEBKIT_WEBGL_compressed_texture_etc1');
var pvrtc = gl.getExtension('WEBGL_compressed_texture_pvrtc') || gl.getExtension('WEBKIT_WEBGL_compressed_texture_pvrtc');
var s3tc = gl.getExtension('WEBGL_compressed_texture_s3tc') || gl.getExtension('WEBKIT_WEBGL_compressed_texture_s3tc');
if (etc1)
{
this.extensions.compression.ETC1 = etc1;
}
if (pvrtc)
{
this.extensions.compression.PVRTC = pvrtc;
}
if (s3tc)
{
this.extensions.compression.S3TC = s3tc;
}
*/
2016-12-07 02:28:22 +00:00
// Map Blend Modes
var add = [ gl.SRC_ALPHA, gl.DST_ALPHA ];
var normal = [ gl.ONE, gl.ONE_MINUS_SRC_ALPHA ];
var multiply = [ gl.DST_COLOR, gl.ONE_MINUS_SRC_ALPHA ];
var screen = [ gl.SRC_ALPHA, gl.ONE ];
this.blendModes = [
normal, add, multiply, screen, normal,
normal, normal, normal, normal,
normal, normal, normal, normal,
normal, normal, normal, normal
];
},
resize: function (width, height)
{
2016-12-07 03:42:41 +00:00
var res = this.game.config.resolution;
this.width = width * res;
this.height = height * res;
2016-12-07 02:28:22 +00:00
this.view.width = this.width;
this.view.height = this.height;
if (this.autoResize)
{
2016-12-07 03:42:41 +00:00
this.view.style.width = (this.width / res) + 'px';
this.view.style.height = (this.height / res) + 'px';
2016-12-07 02:28:22 +00:00
}
this.gl.viewport(0, 0, this.width, this.height);
// Needed?
// this.clipUnitX = 2 / this.width;
// this.clipUnitY = 2 / this.height;
2016-12-07 02:28:22 +00:00
// Needed?
// this.projection.x = (this.width / 2) / res;
// this.projection.y = -(this.height / 2) / res;
2016-12-07 02:28:22 +00:00
},
/**
* Renders the State.
*
* @method render
* @param {Phaser.State} state - The State to be rendered.
* @param {number} interpolationPercentage - The cumulative amount of time that hasn't been simulated yet, divided
* by the amount of time that will be simulated the next time update()
* runs. Useful for interpolating frames.
*/
render: function (state, interpolationPercentage)
{
2016-12-07 03:42:41 +00:00
// console.log('%c render start ', 'color: #ffffff; background: #00ff00;');
2016-12-07 02:28:22 +00:00
// No point rendering if our context has been blown up!
if (this.contextLost)
{
return;
}
// Add Pre-render hook
var gl = this.gl;
/*
// This is the old render loop - add what you need here to replace it,
// but please allow each State to render to its own Quad FBO
2016-12-07 02:28:22 +00:00
var fbo = state.sys.fbo;
fbo.activate();
// clear is needed for the FBO, otherwise corruption ...
gl.clear(gl.COLOR_BUFFER_BIT);
2016-12-07 03:42:41 +00:00
this.setBlendMode(CONST.blendModes.NORMAL);
2016-12-07 02:28:22 +00:00
this.batch.start();
// Could move to the State Systems or MainLoop
this.game.state.renderChildren(this, state, interpolationPercentage);
this.batch.stop();
// Call state.render here, so we can do some extra shizzle on the top
// Maybe pass in the FBO texture too?
fbo.render(null);
// Unbind the fbo texture and replace it with an empty texture.
// If we forget this we corrupt the main context texture!
// or get `RENDER WARNING: there is no texture bound to the unit 0` spam in the console
gl.bindTexture(gl.TEXTURE_2D, this.emptyTexture);
*/
2016-12-07 02:28:22 +00:00
// console.log('%c render end ', 'color: #ffffff; background: #ff0000;');
// Add Post-render hook
},
destroy: function ()
{
this.gl = null;
}
};
module.exports = WebGLRenderer;