12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160 |
- "use strict";
- var BABYLON = BABYLON || {};
- (function () {
- BABYLON.Engine = function (canvas, antialias, options) {
- var that = this;
- this._renderingCanvas = canvas;
- options = options || {};
- options.antialias = antialias;
- // GL
- try {
- this._gl = canvas.getContext("webgl", options) || canvas.getContext("experimental-webgl", options);
- } catch (e) {
- throw new Error("WebGL not supported");
- }
- if (!this._gl) {
- throw new Error("WebGL not supported");
- }
- this._windowIsBackground = false;
- this._onBlur = function () {
- that._windowIsBackground = true;
- };
- this._onFocus = function () {
- that._windowIsBackground = false;
- };
- window.addEventListener("blur", this._onBlur);
- window.addEventListener("focus", this._onFocus);
- // Options
- this.forceWireframe = false;
- this.cullBackFaces = true;
- this.renderEvenInBackground = true;
- // Scenes
- this.scenes = [];
- // Textures
- this._workingCanvas = document.createElement("canvas");
- this._workingContext = this._workingCanvas.getContext("2d");
- // Viewport
- this._hardwareScalingLevel = 1.0 / (window.devicePixelRatio || 1.0);
- this.resize();
- // Caps
- this._caps = {};
- this._caps.maxTexturesImageUnits = this._gl.getParameter(this._gl.MAX_TEXTURE_IMAGE_UNITS);
- this._caps.maxTextureSize = this._gl.getParameter(this._gl.MAX_TEXTURE_SIZE);
- this._caps.maxCubemapTextureSize = this._gl.getParameter(this._gl.MAX_CUBE_MAP_TEXTURE_SIZE);
- this._caps.maxRenderTextureSize = this._gl.getParameter(this._gl.MAX_RENDERBUFFER_SIZE);
- // Extensions
- this._caps.standardDerivatives = (this._gl.getExtension('OES_standard_derivatives') !== null);
- this._caps.s3tc = this._gl.getExtension('WEBGL_compressed_texture_s3tc');
- this._caps.textureFloat = (this._gl.getExtension('OES_texture_float') !== null);
- this._caps.textureAnisotropicFilterExtension = this._gl.getExtension('EXT_texture_filter_anisotropic') || this._gl.getExtension('WEBKIT_EXT_texture_filter_anisotropic') || this._gl.getExtension('MOZ_EXT_texture_filter_anisotropic');
- this._caps.maxAnisotropy = this._caps.textureAnisotropicFilterExtension ? this._gl.getParameter(this._caps.textureAnisotropicFilterExtension.MAX_TEXTURE_MAX_ANISOTROPY_EXT) : 0;
- // Cache
- this._loadedTexturesCache = [];
- this._activeTexturesCache = [];
- this._currentEffect = null;
- this._currentState = {
- culling: null
- };
- this._compiledEffects = {};
- this._gl.enable(this._gl.DEPTH_TEST);
- this._gl.depthFunc(this._gl.LEQUAL);
- // Fullscreen
- this.isFullscreen = false;
- this._onFullscreenChange = function () {
- if (document.fullscreen !== undefined) {
- that.isFullscreen = document.fullscreen;
- } else if (document.mozFullScreen !== undefined) {
- that.isFullscreen = document.mozFullScreen;
- } else if (document.webkitIsFullScreen !== undefined) {
- that.isFullscreen = document.webkitIsFullScreen;
- } else if (document.msIsFullScreen !== undefined) {
- that.isFullscreen = document.msIsFullScreen;
- }
- // Pointer lock
- if (that.isFullscreen && that._pointerLockRequested) {
- canvas.requestPointerLock = canvas.requestPointerLock ||
- canvas.msRequestPointerLock ||
- canvas.mozRequestPointerLock ||
- canvas.webkitRequestPointerLock;
- if (canvas.requestPointerLock) {
- canvas.requestPointerLock();
- }
- }
- };
- document.addEventListener("fullscreenchange", this._onFullscreenChange, false);
- document.addEventListener("mozfullscreenchange", this._onFullscreenChange, false);
- document.addEventListener("webkitfullscreenchange", this._onFullscreenChange, false);
- document.addEventListener("msfullscreenchange", this._onFullscreenChange, false);
- // Pointer lock
- this.isPointerLock = false;
- this._onPointerLockChange = function () {
- that.isPointerLock = (document.mozPointerLockElement === canvas ||
- document.webkitPointerLockElement === canvas ||
- document.msPointerLockElement === canvas ||
- document.pointerLockElement === canvas
- );
- };
- document.addEventListener("pointerlockchange", this._onPointerLockChange, false);
- document.addEventListener("mspointerlockchange", this._onPointerLockChange, false);
- document.addEventListener("mozpointerlockchange", this._onPointerLockChange, false);
- document.addEventListener("webkitpointerlockchange", this._onPointerLockChange, false);
- };
- // Properties
- BABYLON.Engine.prototype.getAspectRatio = function (camera) {
- var viewport = camera.viewport;
- return (this._renderingCanvas.width * viewport.width) / (this._renderingCanvas.height * viewport.height);
- };
- BABYLON.Engine.prototype.getRenderWidth = function () {
- return this._renderingCanvas.width;
- };
- BABYLON.Engine.prototype.getRenderHeight = function () {
- return this._renderingCanvas.height;
- };
- BABYLON.Engine.prototype.getRenderingCanvas = function () {
- return this._renderingCanvas;
- };
- BABYLON.Engine.prototype.setHardwareScalingLevel = function (level) {
- this._hardwareScalingLevel = level;
- this.resize();
- };
- BABYLON.Engine.prototype.getHardwareScalingLevel = function () {
- return this._hardwareScalingLevel;
- };
- BABYLON.Engine.prototype.getLoadedTexturesCache = function () {
- return this._loadedTexturesCache;
- };
- BABYLON.Engine.prototype.getCaps = function () {
- return this._caps;
- };
- // Methods
- BABYLON.Engine.prototype.setDepthFunctionToGreater = function() {
- this._gl.depthFunc(this._gl.GREATER);
- };
- BABYLON.Engine.prototype.setDepthFunctionToGreaterOrEqual = function () {
- this._gl.depthFunc(this._gl.GEQUAL);
- };
- BABYLON.Engine.prototype.setDepthFunctionToLess = function () {
- this._gl.depthFunc(this._gl.LESS);
- };
- BABYLON.Engine.prototype.setDepthFunctionToLessOrEqual = function () {
- this._gl.depthFunc(this._gl.LEQUAL);
- };
- BABYLON.Engine.prototype.stopRenderLoop = function () {
- this._renderFunction = null;
- this._runningLoop = false;
- };
- BABYLON.Engine.prototype._renderLoop = function () {
- var shouldRender = true;
- if (!this.renderEvenInBackground && this._windowIsBackground) {
- shouldRender = false;
- }
- if (shouldRender) {
- // Start new frame
- this.beginFrame();
- if (this._renderFunction) {
- this._renderFunction();
- }
- // Present
- this.endFrame();
- }
- if (this._runningLoop) {
- // Register new frame
- var that = this;
- BABYLON.Tools.QueueNewFrame(function () {
- that._renderLoop();
- });
- }
- };
- BABYLON.Engine.prototype.runRenderLoop = function (renderFunction) {
- this._runningLoop = true;
- this._renderFunction = renderFunction;
- var that = this;
- BABYLON.Tools.QueueNewFrame(function () {
- that._renderLoop();
- });
- };
- BABYLON.Engine.prototype.switchFullscreen = function (requestPointerLock) {
- if (this.isFullscreen) {
- BABYLON.Tools.ExitFullscreen();
- } else {
- this._pointerLockRequested = requestPointerLock;
- BABYLON.Tools.RequestFullscreen(this._renderingCanvas);
- }
- };
- BABYLON.Engine.prototype.clear = function (color, backBuffer, depthStencil) {
- this._gl.clearColor(color.r, color.g, color.b, color.a !== undefined ? color.a : 1.0);
- this._gl.clearDepth(1.0);
- var mode = 0;
- if (backBuffer)
- mode |= this._gl.COLOR_BUFFER_BIT;
- if (depthStencil)
- mode |= this._gl.DEPTH_BUFFER_BIT;
- this._gl.clear(mode);
- };
-
- BABYLON.Engine.prototype.setViewport = function (viewport, requiredWidth, requiredHeight) {
- var width = requiredWidth || this._renderingCanvas.width;
- var height = requiredHeight || this._renderingCanvas.height;
- var x = viewport.x || 0;
- var y = viewport.y || 0;
-
- this._cachedViewport = viewport;
-
- this._gl.viewport(x * width, y * height, width * viewport.width, height * viewport.height);
- };
-
- BABYLON.Engine.prototype.setDirectViewport = function (x, y, width, height) {
- this._cachedViewport = null;
- this._gl.viewport(x, y, width, height);
- };
- BABYLON.Engine.prototype.beginFrame = function () {
- BABYLON.Tools._MeasureFps();
- };
- BABYLON.Engine.prototype.endFrame = function () {
- this.flushFramebuffer();
- };
- BABYLON.Engine.prototype.resize = function () {
- this._renderingCanvas.width = this._renderingCanvas.clientWidth / this._hardwareScalingLevel;
- this._renderingCanvas.height = this._renderingCanvas.clientHeight / this._hardwareScalingLevel;
- };
- BABYLON.Engine.prototype.bindFramebuffer = function (texture) {
- var gl = this._gl;
- gl.bindFramebuffer(gl.FRAMEBUFFER, texture._framebuffer);
- this._gl.viewport(0, 0, texture._width, texture._height);
- this.wipeCaches();
- };
- BABYLON.Engine.prototype.unBindFramebuffer = function (texture) {
- if (texture.generateMipMaps) {
- var gl = this._gl;
- gl.bindTexture(gl.TEXTURE_2D, texture);
- gl.generateMipmap(gl.TEXTURE_2D);
- gl.bindTexture(gl.TEXTURE_2D, null);
- }
- this._gl.bindFramebuffer(this._gl.FRAMEBUFFER, null);
- };
- BABYLON.Engine.prototype.flushFramebuffer = function () {
- this._gl.flush();
- };
- BABYLON.Engine.prototype.restoreDefaultFramebuffer = function () {
- this._gl.bindFramebuffer(this._gl.FRAMEBUFFER, null);
- this.setViewport(this._cachedViewport);
- this.wipeCaches();
- };
- // VBOs
- BABYLON.Engine.prototype.createVertexBuffer = function (vertices) {
- var vbo = this._gl.createBuffer();
- this._gl.bindBuffer(this._gl.ARRAY_BUFFER, vbo);
- this._gl.bufferData(this._gl.ARRAY_BUFFER, new Float32Array(vertices), this._gl.STATIC_DRAW);
- this._gl.bindBuffer(this._gl.ARRAY_BUFFER, null);
- vbo.references = 1;
- return vbo;
- };
- BABYLON.Engine.prototype.createDynamicVertexBuffer = function (capacity) {
- var vbo = this._gl.createBuffer();
- this._gl.bindBuffer(this._gl.ARRAY_BUFFER, vbo);
- this._gl.bufferData(this._gl.ARRAY_BUFFER, capacity, this._gl.DYNAMIC_DRAW);
- this._gl.bindBuffer(this._gl.ARRAY_BUFFER, null);
- vbo.references = 1;
- return vbo;
- };
- BABYLON.Engine.prototype.updateDynamicVertexBuffer = function (vertexBuffer, vertices, length) {
- this._gl.bindBuffer(this._gl.ARRAY_BUFFER, vertexBuffer);
- if (length && length != vertices.length) {
- this._gl.bufferSubData(this._gl.ARRAY_BUFFER, 0, new Float32Array(vertices, 0, length));
- } else {
- if (vertices instanceof Float32Array) {
- this._gl.bufferSubData(this._gl.ARRAY_BUFFER, 0, vertices);
- } else {
- this._gl.bufferSubData(this._gl.ARRAY_BUFFER, 0, new Float32Array(vertices));
- }
- }
-
- this._gl.bindBuffer(this._gl.ARRAY_BUFFER, null);
- };
- BABYLON.Engine.prototype.createIndexBuffer = function (indices) {
- var vbo = this._gl.createBuffer();
- this._gl.bindBuffer(this._gl.ELEMENT_ARRAY_BUFFER, vbo);
- this._gl.bufferData(this._gl.ELEMENT_ARRAY_BUFFER, new Uint16Array(indices), this._gl.STATIC_DRAW);
- this._gl.bindBuffer(this._gl.ELEMENT_ARRAY_BUFFER, null);
- vbo.references = 1;
- return vbo;
- };
- BABYLON.Engine.prototype.bindBuffers = function (vertexBuffer, indexBuffer, vertexDeclaration, vertexStrideSize, effect) {
- if (this._cachedVertexBuffers !== vertexBuffer || this._cachedEffectForVertexBuffers !== effect) {
- this._cachedVertexBuffers = vertexBuffer;
- this._cachedEffectForVertexBuffers = effect;
- this._gl.bindBuffer(this._gl.ARRAY_BUFFER, vertexBuffer);
- var offset = 0;
- for (var index = 0; index < vertexDeclaration.length; index++) {
- var order = effect.getAttribute(index);
- if (order >= 0) {
- this._gl.vertexAttribPointer(order, vertexDeclaration[index], this._gl.FLOAT, false, vertexStrideSize, offset);
- }
- offset += vertexDeclaration[index] * 4;
- }
- }
- if (this._cachedIndexBuffer !== indexBuffer) {
- this._cachedIndexBuffer = indexBuffer;
- this._gl.bindBuffer(this._gl.ELEMENT_ARRAY_BUFFER, indexBuffer);
- }
- };
- BABYLON.Engine.prototype.bindMultiBuffers = function (vertexBuffers, indexBuffer, effect) {
- if (this._cachedVertexBuffers !== vertexBuffers || this._cachedEffectForVertexBuffers !== effect) {
- this._cachedVertexBuffers = vertexBuffers;
- this._cachedEffectForVertexBuffers = effect;
- var attributes = effect.getAttributesNames();
- for (var index = 0; index < attributes.length; index++) {
- var order = effect.getAttribute(index);
- if (order >= 0) {
- var vertexBuffer = vertexBuffers[attributes[index]];
- var stride = vertexBuffer.getStrideSize();
- this._gl.bindBuffer(this._gl.ARRAY_BUFFER, vertexBuffer._buffer);
- this._gl.vertexAttribPointer(order, stride, this._gl.FLOAT, false, stride * 4, 0);
- }
- }
- }
- if (this._cachedIndexBuffer !== indexBuffer) {
- this._cachedIndexBuffer = indexBuffer;
- this._gl.bindBuffer(this._gl.ELEMENT_ARRAY_BUFFER, indexBuffer);
- }
- };
- BABYLON.Engine.prototype._releaseBuffer = function (buffer) {
- buffer.references--;
- if (buffer.references === 0) {
- this._gl.deleteBuffer(buffer);
- }
- };
- BABYLON.Engine.prototype.draw = function (useTriangles, indexStart, indexCount) {
- this._gl.drawElements(useTriangles ? this._gl.TRIANGLES : this._gl.LINES, indexCount, this._gl.UNSIGNED_SHORT, indexStart * 2);
- };
- // Shaders
- BABYLON.Engine.prototype._releaseEffect = function (effect) {
- if (this._compiledEffects[effect._key]) {
- delete this._compiledEffects[effect._key];
- if (effect._program) {
- this._gl.deleteProgram(effect._program);
- }
- }
- };
- BABYLON.Engine.prototype.createEffect = function (baseName, attributesNames, uniformsNames, samplers, defines, optionalDefines, onCompiled, onError) {
- var vertex = baseName.vertexElement || baseName.vertex || baseName;
- var fragment = baseName.fragmentElement || baseName.fragment || baseName;
-
- var name = vertex + "+" + fragment + "@" + defines;
- if (this._compiledEffects[name]) {
- return this._compiledEffects[name];
- }
- var effect = new BABYLON.Effect(baseName, attributesNames, uniformsNames, samplers, this, defines, optionalDefines, onCompiled, onError);
- effect._key = name;
- this._compiledEffects[name] = effect;
- return effect;
- };
- var compileShader = function (gl, source, type, defines) {
- var shader = gl.createShader(type === "vertex" ? gl.VERTEX_SHADER : gl.FRAGMENT_SHADER);
- gl.shaderSource(shader, (defines ? defines + "\n" : "") + source);
- gl.compileShader(shader);
- if (!gl.getShaderParameter(shader, gl.COMPILE_STATUS)) {
- throw new Error(gl.getShaderInfoLog(shader));
- }
- return shader;
- };
- BABYLON.Engine.prototype.createShaderProgram = function (vertexCode, fragmentCode, defines) {
- var vertexShader = compileShader(this._gl, vertexCode, "vertex", defines);
- var fragmentShader = compileShader(this._gl, fragmentCode, "fragment", defines);
- var shaderProgram = this._gl.createProgram();
- this._gl.attachShader(shaderProgram, vertexShader);
- this._gl.attachShader(shaderProgram, fragmentShader);
- this._gl.linkProgram(shaderProgram);
- var error = this._gl.getProgramInfoLog(shaderProgram);
- if (error) {
- throw new Error(error);
- }
- this._gl.deleteShader(vertexShader);
- this._gl.deleteShader(fragmentShader);
- return shaderProgram;
- };
- BABYLON.Engine.prototype.getUniforms = function (shaderProgram, uniformsNames) {
- var results = [];
- for (var index = 0; index < uniformsNames.length; index++) {
- results.push(this._gl.getUniformLocation(shaderProgram, uniformsNames[index]));
- }
- return results;
- };
- BABYLON.Engine.prototype.getAttributes = function (shaderProgram, attributesNames) {
- var results = [];
- for (var index = 0; index < attributesNames.length; index++) {
- try {
- results.push(this._gl.getAttribLocation(shaderProgram, attributesNames[index]));
- } catch (e) {
- results.push(-1);
- }
- }
- return results;
- };
- BABYLON.Engine.prototype.enableEffect = function (effect) {
- if (!effect || !effect.getAttributesCount() || this._currentEffect === effect) {
- return;
- }
- // Use program
- this._gl.useProgram(effect.getProgram());
- for (var index = 0; index < effect.getAttributesCount() ; index++) {
- // Attributes
- var order = effect.getAttribute(index);
- if (order >= 0) {
- this._gl.enableVertexAttribArray(effect.getAttribute(index));
- }
- }
- this._currentEffect = effect;
- };
-
- BABYLON.Engine.prototype.setArray = function (uniform, array) {
- if (!uniform)
- return;
- this._gl.uniform1fv(uniform, array);
- };
- BABYLON.Engine.prototype.setMatrices = function (uniform, matrices) {
- if (!uniform)
- return;
- this._gl.uniformMatrix4fv(uniform, false, matrices);
- };
- BABYLON.Engine.prototype.setMatrix = function (uniform, matrix) {
- if (!uniform)
- return;
- this._gl.uniformMatrix4fv(uniform, false, matrix.toArray());
- };
-
- BABYLON.Engine.prototype.setFloat = function (uniform, value) {
- if (!uniform)
- return;
- this._gl.uniform1f(uniform, value);
- };
- BABYLON.Engine.prototype.setFloat2 = function (uniform, x, y) {
- if (!uniform)
- return;
- this._gl.uniform2f(uniform, x, y);
- };
- BABYLON.Engine.prototype.setFloat3 = function (uniform, x, y, z) {
- if (!uniform)
- return;
- this._gl.uniform3f(uniform, x, y, z);
- };
-
- BABYLON.Engine.prototype.setBool = function (uniform, bool) {
- if (!uniform)
- return;
- this._gl.uniform1i(uniform, bool);
- };
- BABYLON.Engine.prototype.setFloat4 = function (uniform, x, y, z, w) {
- if (!uniform)
- return;
- this._gl.uniform4f(uniform, x, y, z, w);
- };
- BABYLON.Engine.prototype.setColor3 = function (uniform, color3) {
- if (!uniform)
- return;
- this._gl.uniform3f(uniform, color3.r, color3.g, color3.b);
- };
- BABYLON.Engine.prototype.setColor4 = function (uniform, color3, alpha) {
- if (!uniform)
- return;
- this._gl.uniform4f(uniform, color3.r, color3.g, color3.b, alpha);
- };
- // States
- BABYLON.Engine.prototype.setState = function (culling) {
- // Culling
- if (this._currentState.culling !== culling) {
- if (culling) {
- this._gl.cullFace(this.cullBackFaces ? this._gl.BACK : this._gl.FRONT);
- this._gl.enable(this._gl.CULL_FACE);
- } else {
- this._gl.disable(this._gl.CULL_FACE);
- }
- this._currentState.culling = culling;
- }
- };
- BABYLON.Engine.prototype.setDepthBuffer = function (enable) {
- if (enable) {
- this._gl.enable(this._gl.DEPTH_TEST);
- } else {
- this._gl.disable(this._gl.DEPTH_TEST);
- }
- };
- BABYLON.Engine.prototype.setDepthWrite = function (enable) {
- this._gl.depthMask(enable);
- };
- BABYLON.Engine.prototype.setColorWrite = function (enable) {
- this._gl.colorMask(enable, enable, enable, enable);
- };
- BABYLON.Engine.prototype.setAlphaMode = function (mode) {
- switch (mode) {
- case BABYLON.Engine.ALPHA_DISABLE:
- this.setDepthWrite(true);
- this._gl.disable(this._gl.BLEND);
- break;
- case BABYLON.Engine.ALPHA_COMBINE:
- this.setDepthWrite(false);
- this._gl.blendFuncSeparate(this._gl.SRC_ALPHA, this._gl.ONE_MINUS_SRC_ALPHA, this._gl.ONE, this._gl.ONE);
- this._gl.enable(this._gl.BLEND);
- break;
- case BABYLON.Engine.ALPHA_ADD:
- this.setDepthWrite(false);
- this._gl.blendFuncSeparate(this._gl.ONE, this._gl.ONE, this._gl.ZERO, this._gl.ONE);
- this._gl.enable(this._gl.BLEND);
- break;
- }
- };
- BABYLON.Engine.prototype.setAlphaTesting = function (enable) {
- this._alphaTest = enable;
- };
- BABYLON.Engine.prototype.getAlphaTesting = function () {
- return this._alphaTest;
- };
- // Textures
- BABYLON.Engine.prototype.wipeCaches = function () {
- this._activeTexturesCache = [];
- this._currentEffect = null;
- this._currentState = {
- culling: null
- };
- this._cachedVertexBuffers = null;
- this._cachedVertexBuffers = null;
- this._cachedEffectForVertexBuffers = null;
- };
- var getExponantOfTwo = function (value, max) {
- var count = 1;
- do {
- count *= 2;
- } while (count < value);
- if (count > max)
- count = max;
- return count;
- };
- var prepareWebGLTexture = function (texture, scene, width, height, invertY, noMipmap, processFunction) {
- var engine = scene.getEngine();
- var potWidth = getExponantOfTwo(width, engine._caps.maxTextureSize);
- var potHeight = getExponantOfTwo(height, engine._caps.maxTextureSize);
- engine._gl.bindTexture(engine._gl.TEXTURE_2D, texture);
- engine._gl.pixelStorei(engine._gl.UNPACK_FLIP_Y_WEBGL, invertY === undefined ? true : invertY);
- processFunction(potWidth, potHeight);
- engine._gl.texParameteri(engine._gl.TEXTURE_2D, engine._gl.TEXTURE_MAG_FILTER, engine._gl.LINEAR);
- if (noMipmap) {
- engine._gl.texParameteri(engine._gl.TEXTURE_2D, engine._gl.TEXTURE_MIN_FILTER, engine._gl.LINEAR);
- } else {
- engine._gl.texParameteri(engine._gl.TEXTURE_2D, engine._gl.TEXTURE_MIN_FILTER, engine._gl.LINEAR_MIPMAP_LINEAR);
- engine._gl.generateMipmap(engine._gl.TEXTURE_2D);
- }
- engine._gl.bindTexture(engine._gl.TEXTURE_2D, null);
- engine._activeTexturesCache = [];
- texture._baseWidth = width;
- texture._baseHeight = height;
- texture._width = potWidth;
- texture._height = potHeight;
- texture.isReady = true;
- scene._removePendingData(texture);
- };
- BABYLON.Engine.prototype.createTexture = function (url, noMipmap, invertY, scene) {
- var texture = this._gl.createTexture();
- var that = this;
- var isDDS = this.getCaps().s3tc && (url.substr(url.length - 4, 4).toLowerCase() === ".dds");
- scene._addPendingData(texture);
- texture.url = url;
- texture.noMipmap = noMipmap;
- texture.references = 1;
- this._loadedTexturesCache.push(texture);
- if (isDDS) {
- BABYLON.Tools.LoadFile(url, function (data) {
- var info = BABYLON.Tools.GetDDSInfo(data);
- var loadMipmap = info.mipmapCount > 1 && !noMipmap;
- prepareWebGLTexture(texture, scene, info.width, info.height, invertY, !loadMipmap, function (potWidth, potHeight) {
- BABYLON.Tools.UploadDDSLevels(that._gl, that.getCaps().s3tc, data, loadMipmap);
- });
- }, null, scene.database, true);
- } else {
- var onload = function(img) {
- prepareWebGLTexture(texture, scene, img.width, img.height, invertY, noMipmap, function (potWidth, potHeight) {
- var isPot = (img.width == potWidth && img.height == potHeight);
- if (!isPot) {
- that._workingCanvas.width = potWidth;
- that._workingCanvas.height = potHeight;
- that._workingContext.drawImage(img, 0, 0, img.width, img.height, 0, 0, potWidth, potHeight);
- }
- that._gl.texImage2D(that._gl.TEXTURE_2D, 0, that._gl.RGBA, that._gl.RGBA, that._gl.UNSIGNED_BYTE, isPot ? img : that._workingCanvas);
- });
- };
- var onerror = function() {
- scene._removePendingData(texture);
- };
- BABYLON.Tools.LoadImage(url, onload, onerror, scene.database);
- }
- return texture;
- };
- BABYLON.Engine.prototype.createDynamicTexture = function (width, height, generateMipMaps) {
- var texture = this._gl.createTexture();
- width = getExponantOfTwo(width, this._caps.maxTextureSize);
- height = getExponantOfTwo(height, this._caps.maxTextureSize);
- this._gl.bindTexture(this._gl.TEXTURE_2D, texture);
- this._gl.texParameteri(this._gl.TEXTURE_2D, this._gl.TEXTURE_MAG_FILTER, this._gl.LINEAR);
- if (!generateMipMaps) {
- this._gl.texParameteri(this._gl.TEXTURE_2D, this._gl.TEXTURE_MIN_FILTER, this._gl.LINEAR);
- } else {
- this._gl.texParameteri(this._gl.TEXTURE_2D, this._gl.TEXTURE_MIN_FILTER, this._gl.LINEAR_MIPMAP_LINEAR);
- }
- this._gl.bindTexture(this._gl.TEXTURE_2D, null);
- this._activeTexturesCache = [];
- texture._baseWidth = width;
- texture._baseHeight = height;
- texture._width = width;
- texture._height = height;
- texture.isReady = false;
- texture.generateMipMaps = generateMipMaps;
- texture.references = 1;
- this._loadedTexturesCache.push(texture);
- return texture;
- };
- BABYLON.Engine.prototype.updateDynamicTexture = function (texture, canvas, invertY) {
- this._gl.bindTexture(this._gl.TEXTURE_2D, texture);
- this._gl.pixelStorei(this._gl.UNPACK_FLIP_Y_WEBGL, invertY);
- this._gl.texImage2D(this._gl.TEXTURE_2D, 0, this._gl.RGBA, this._gl.RGBA, this._gl.UNSIGNED_BYTE, canvas);
- if (texture.generateMipMaps) {
- this._gl.generateMipmap(this._gl.TEXTURE_2D);
- }
- this._gl.bindTexture(this._gl.TEXTURE_2D, null);
- this._activeTexturesCache = [];
- texture.isReady = true;
- };
- BABYLON.Engine.prototype.updateVideoTexture = function (texture, video, invertY) {
- this._gl.bindTexture(this._gl.TEXTURE_2D, texture);
- this._gl.pixelStorei(this._gl.UNPACK_FLIP_Y_WEBGL, invertY ? false : true); // Video are upside down by default
- // Scale the video if it is a NPOT
- if (video.videoWidth !== texture._width || video.videoHeight !== texture._height) {
- if (!texture._workingCanvas) {
- texture._workingCanvas = document.createElement("canvas");
- texture._workingContext = texture._workingCanvas.getContext("2d");
- texture._workingCanvas.width = texture._width;
- texture._workingCanvas.height = texture._height;
- }
- texture._workingContext.drawImage(video, 0, 0, video.videoWidth, video.videoHeight, 0, 0, texture._width, texture._height);
- this._gl.texImage2D(this._gl.TEXTURE_2D, 0, this._gl.RGBA, this._gl.RGBA, this._gl.UNSIGNED_BYTE, texture._workingCanvas);
- } else {
- this._gl.texImage2D(this._gl.TEXTURE_2D, 0, this._gl.RGBA, this._gl.RGBA, this._gl.UNSIGNED_BYTE, video);
- }
- if (texture.generateMipMaps) {
- this._gl.generateMipmap(this._gl.TEXTURE_2D);
- }
- this._gl.bindTexture(this._gl.TEXTURE_2D, null);
- this._activeTexturesCache = [];
- texture.isReady = true;
- };
- BABYLON.Engine.prototype.createRenderTargetTexture = function (size, options) {
- // old version had a "generateMipMaps" arg instead of options.
- // if options.generateMipMaps is undefined, consider that options itself if the generateMipmaps value
- // in the same way, generateDepthBuffer is defaulted to true
- var generateMipMaps = false;
- var generateDepthBuffer = true;
- var samplingMode = BABYLON.Texture.TRILINEAR_SAMPLINGMODE;
- if (options !== undefined) {
- generateMipMaps = options.generateMipMaps === undefined ? options : options.generateMipmaps;
- generateDepthBuffer = options.generateDepthBuffer === undefined ? true : options.generateDepthBuffer;
- if (options.samplingMode !== undefined) {
- samplingMode = options.samplingMode;
- }
- }
- var gl = this._gl;
-
- var texture = gl.createTexture();
- gl.bindTexture(gl.TEXTURE_2D, texture);
- var width = size.width || size;
- var height = size.height || size;
- var magFilter = gl.NEAREST;
- var minFilter = gl.NEAREST;
- if (samplingMode === BABYLON.Texture.BILINEAR_SAMPLINGMODE) {
- magFilter = gl.LINEAR;
- if (generateMipMaps) {
- minFilter = gl.LINEAR_MIPMAP_NEAREST;
- } else {
- minFilter = gl.LINEAR;
- }
- } else if (samplingMode === BABYLON.Texture.TRILINEAR_SAMPLINGMODE) {
- magFilter = gl.LINEAR;
- if (generateMipMaps) {
- minFilter = gl.LINEAR_MIPMAP_LINEAR;
- } else {
- minFilter = gl.LINEAR;
- }
- }
- gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MAG_FILTER, magFilter);
- gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_MIN_FILTER, minFilter);
- gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_S, gl.CLAMP_TO_EDGE);
- gl.texParameteri(gl.TEXTURE_2D, gl.TEXTURE_WRAP_T, gl.CLAMP_TO_EDGE);
- gl.texImage2D(gl.TEXTURE_2D, 0, gl.RGBA, width, height, 0, gl.RGBA, gl.UNSIGNED_BYTE, null);
- var depthBuffer;
- // Create the depth buffer
- if (generateDepthBuffer) {
- depthBuffer = gl.createRenderbuffer();
- gl.bindRenderbuffer(gl.RENDERBUFFER, depthBuffer);
- gl.renderbufferStorage(gl.RENDERBUFFER, gl.DEPTH_COMPONENT16, width, height);
- }
- // Create the framebuffer
- var framebuffer = gl.createFramebuffer();
- gl.bindFramebuffer(gl.FRAMEBUFFER, framebuffer);
- gl.framebufferTexture2D(gl.FRAMEBUFFER, gl.COLOR_ATTACHMENT0, gl.TEXTURE_2D, texture, 0);
- if (generateDepthBuffer) {
- gl.framebufferRenderbuffer(gl.FRAMEBUFFER, gl.DEPTH_ATTACHMENT, gl.RENDERBUFFER, depthBuffer);
- }
- // Unbind
- gl.bindTexture(gl.TEXTURE_2D, null);
- gl.bindRenderbuffer(gl.RENDERBUFFER, null);
- gl.bindFramebuffer(gl.FRAMEBUFFER, null);
- texture._framebuffer = framebuffer;
- if (generateDepthBuffer) {
- texture._depthBuffer = depthBuffer;
- }
- texture._width = width;
- texture._height = height;
- texture.isReady = true;
- texture.generateMipMaps = generateMipMaps;
- texture.references = 1;
- this._activeTexturesCache = [];
- this._loadedTexturesCache.push(texture);
- return texture;
- };
-
- var cascadeLoad = function (rootUrl, index, loadedImages, scene, onfinish, extensions) {
- var img;
-
- var onload = function () {
- loadedImages.push(img);
- scene._removePendingData(img);
- if (index != extensions.length - 1) {
- cascadeLoad(rootUrl, index + 1, loadedImages, scene, onfinish, extensions);
- } else {
- onfinish(loadedImages);
- }
- };
- var onerror = function () {
- scene._removePendingData(img);
- };
-
- img = BABYLON.Tools.LoadImage(rootUrl + extensions[index], onload, onerror, scene.database);
- scene._addPendingData(img);
- };
- BABYLON.Engine.prototype.createCubeTexture = function (rootUrl, scene, extensions, noMipmap) {
- var gl = this._gl;
- var texture = gl.createTexture();
- texture.isCube = true;
- texture.url = rootUrl;
- texture.references = 1;
- this._loadedTexturesCache.push(texture);
- var that = this;
- cascadeLoad(rootUrl, 0, [], scene, function (imgs) {
- var width = getExponantOfTwo(imgs[0].width, that._caps.maxCubemapTextureSize);
- var height = width;
- that._workingCanvas.width = width;
- that._workingCanvas.height = height;
- var faces = [
- gl.TEXTURE_CUBE_MAP_POSITIVE_X, gl.TEXTURE_CUBE_MAP_POSITIVE_Y, gl.TEXTURE_CUBE_MAP_POSITIVE_Z,
- gl.TEXTURE_CUBE_MAP_NEGATIVE_X, gl.TEXTURE_CUBE_MAP_NEGATIVE_Y, gl.TEXTURE_CUBE_MAP_NEGATIVE_Z
- ];
- gl.bindTexture(gl.TEXTURE_CUBE_MAP, texture);
- gl.pixelStorei(gl.UNPACK_FLIP_Y_WEBGL, false);
- for (var index = 0; index < faces.length; index++) {
- that._workingContext.drawImage(imgs[index], 0, 0, imgs[index].width, imgs[index].height, 0, 0, width, height);
- gl.texImage2D(faces[index], 0, gl.RGBA, gl.RGBA, gl.UNSIGNED_BYTE, that._workingCanvas);
- }
- if (!noMipmap) {
- gl.generateMipmap(gl.TEXTURE_CUBE_MAP);
- }
-
- gl.texParameteri(gl.TEXTURE_CUBE_MAP, gl.TEXTURE_MAG_FILTER, gl.LINEAR);
- gl.texParameteri(gl.TEXTURE_CUBE_MAP, gl.TEXTURE_MIN_FILTER, noMipmap ? gl.LINEAR : gl.LINEAR_MIPMAP_LINEAR);
- gl.texParameteri(gl.TEXTURE_CUBE_MAP, gl.TEXTURE_WRAP_S, gl.CLAMP_TO_EDGE);
- gl.texParameteri(gl.TEXTURE_CUBE_MAP, gl.TEXTURE_WRAP_T, gl.CLAMP_TO_EDGE);
- gl.bindTexture(gl.TEXTURE_CUBE_MAP, null);
- that._activeTexturesCache = [];
- texture._width = width;
- texture._height = height;
- texture.isReady = true;
- }, extensions);
- return texture;
- };
- BABYLON.Engine.prototype._releaseTexture = function (texture) {
- var gl = this._gl;
- if (texture._framebuffer) {
- gl.deleteFramebuffer(texture._framebuffer);
- }
- if (texture._depthBuffer) {
- gl.deleteRenderbuffer(texture._depthBuffer);
- }
- gl.deleteTexture(texture);
- // Unbind channels
- for (var channel = 0; channel < this._caps.maxTexturesImageUnits; channel++) {
- this._gl.activeTexture(this._gl["TEXTURE" + channel]);
- this._gl.bindTexture(this._gl.TEXTURE_2D, null);
- this._gl.bindTexture(this._gl.TEXTURE_CUBE_MAP, null);
- this._activeTexturesCache[channel] = null;
- }
- var index = this._loadedTexturesCache.indexOf(texture);
- if (index !== -1) {
- this._loadedTexturesCache.splice(index, 1);
- }
- };
- BABYLON.Engine.prototype.bindSamplers = function (effect) {
- this._gl.useProgram(effect.getProgram());
- var samplers = effect.getSamplers();
- for (var index = 0; index < samplers.length; index++) {
- var uniform = effect.getUniform(samplers[index]);
- this._gl.uniform1i(uniform, index);
- }
- this._currentEffect = null;
- };
- BABYLON.Engine.prototype._bindTexture = function (channel, texture) {
- this._gl.activeTexture(this._gl["TEXTURE" + channel]);
- this._gl.bindTexture(this._gl.TEXTURE_2D, texture);
-
- this._activeTexturesCache[channel] = null;
- };
- BABYLON.Engine.prototype.setTextureFromPostProcess = function (channel, postProcess) {
- this._bindTexture(channel, postProcess._textures.data[postProcess._currentRenderTextureInd]);
- };
- BABYLON.Engine.prototype.setTexture = function (channel, texture) {
- if (channel < 0) {
- return;
- }
- // Not ready?
- if (!texture || !texture.isReady()) {
- if (this._activeTexturesCache[channel] != null) {
- this._gl.activeTexture(this._gl["TEXTURE" + channel]);
- this._gl.bindTexture(this._gl.TEXTURE_2D, null);
- this._gl.bindTexture(this._gl.TEXTURE_CUBE_MAP, null);
- this._activeTexturesCache[channel] = null;
- }
- return;
- }
- // Video
- if (texture instanceof BABYLON.VideoTexture) {
- if (texture._update()) {
- this._activeTexturesCache[channel] = null;
- }
- } else if (texture.delayLoadState == BABYLON.Engine.DELAYLOADSTATE_NOTLOADED) { // Delay loading
- texture.delayLoad();
- return;
- }
- if (this._activeTexturesCache[channel] == texture) {
- return;
- }
- this._activeTexturesCache[channel] = texture;
- var internalTexture = texture.getInternalTexture();
- this._gl.activeTexture(this._gl["TEXTURE" + channel]);
- if (internalTexture.isCube) {
- this._gl.bindTexture(this._gl.TEXTURE_CUBE_MAP, internalTexture);
- if (internalTexture._cachedCoordinatesMode !== texture.coordinatesMode) {
- internalTexture._cachedCoordinatesMode = texture.coordinatesMode;
- this._gl.texParameteri(this._gl.TEXTURE_CUBE_MAP, this._gl.TEXTURE_WRAP_S, texture.coordinatesMode !== BABYLON.CubeTexture.CUBIC_MODE ? this._gl.REPEAT : this._gl.CLAMP_TO_EDGE);
- this._gl.texParameteri(this._gl.TEXTURE_CUBE_MAP, this._gl.TEXTURE_WRAP_T, texture.coordinatesMode !== BABYLON.CubeTexture.CUBIC_MODE ? this._gl.REPEAT : this._gl.CLAMP_TO_EDGE);
- }
- this._setAnisotropicLevel(this._gl.TEXTURE_CUBE_MAP, texture);
- } else {
- this._gl.bindTexture(this._gl.TEXTURE_2D, internalTexture);
- if (internalTexture._cachedWrapU !== texture.wrapU) {
- internalTexture._cachedWrapU = texture.wrapU;
- switch (texture.wrapU) {
- case BABYLON.Texture.WRAP_ADDRESSMODE:
- this._gl.texParameteri(this._gl.TEXTURE_2D, this._gl.TEXTURE_WRAP_S, this._gl.REPEAT);
- break;
- case BABYLON.Texture.CLAMP_ADDRESSMODE:
- this._gl.texParameteri(this._gl.TEXTURE_2D, this._gl.TEXTURE_WRAP_S, this._gl.CLAMP_TO_EDGE);
- break;
- case BABYLON.Texture.MIRROR_ADDRESSMODE:
- this._gl.texParameteri(this._gl.TEXTURE_2D, this._gl.TEXTURE_WRAP_S, this._gl.MIRRORED_REPEAT);
- break;
- }
- }
- if (internalTexture._cachedWrapV !== texture.wrapV) {
- internalTexture._cachedWrapV = texture.wrapV;
- switch (texture.wrapV) {
- case BABYLON.Texture.WRAP_ADDRESSMODE:
- this._gl.texParameteri(this._gl.TEXTURE_2D, this._gl.TEXTURE_WRAP_T, this._gl.REPEAT);
- break;
- case BABYLON.Texture.CLAMP_ADDRESSMODE:
- this._gl.texParameteri(this._gl.TEXTURE_2D, this._gl.TEXTURE_WRAP_T, this._gl.CLAMP_TO_EDGE);
- break;
- case BABYLON.Texture.MIRROR_ADDRESSMODE:
- this._gl.texParameteri(this._gl.TEXTURE_2D, this._gl.TEXTURE_WRAP_T, this._gl.MIRRORED_REPEAT);
- break;
- }
- }
- this._setAnisotropicLevel(this._gl.TEXTURE_2D, texture);
- }
- };
- BABYLON.Engine.prototype._setAnisotropicLevel = function (key, texture) {
- var anisotropicFilterExtension = this._caps.textureAnisotropicFilterExtension;
- if (anisotropicFilterExtension && texture._cachedAnisotropicFilteringLevel !== texture.anisotropicFilteringLevel) {
- this._gl.texParameterf(key, anisotropicFilterExtension.TEXTURE_MAX_ANISOTROPY_EXT, Math.min(texture.anisotropicFilteringLevel, this._caps.maxAnisotropy));
- texture._cachedAnisotropicFilteringLevel = texture.anisotropicFilteringLevel;
- }
- };
- // Dispose
- BABYLON.Engine.prototype.dispose = function () {
- // Release scenes
- while (this.scenes.length) {
- this.scenes[0].dispose();
- }
- // Release effects
- for (var name in this._compiledEffects.length) {
- this._gl.deleteProgram(this._compiledEffects[name]._program);
- }
- // Events
- window.removeEventListener("blur", this._onBlur);
- window.removeEventListener("focus", this._onFocus);
- document.removeEventListener("fullscreenchange", this._onFullscreenChange);
- document.removeEventListener("mozfullscreenchange", this._onFullscreenChange);
- document.removeEventListener("webkitfullscreenchange", this._onFullscreenChange);
- document.removeEventListener("msfullscreenchange", this._onFullscreenChange);
- document.removeEventListener("pointerlockchange", this._onPointerLockChange);
- document.removeEventListener("mspointerlockchange", this._onPointerLockChange);
- document.removeEventListener("mozpointerlockchange", this._onPointerLockChange);
- document.removeEventListener("webkitpointerlockchange", this._onPointerLockChange);
- };
- // Statics
- BABYLON.Engine.ShadersRepository = "Babylon/Shaders/";
- BABYLON.Engine.ALPHA_DISABLE = 0;
- BABYLON.Engine.ALPHA_ADD = 1;
- BABYLON.Engine.ALPHA_COMBINE = 2;
-
- // Statics
- BABYLON.Engine.DELAYLOADSTATE_NONE = 0;
- BABYLON.Engine.DELAYLOADSTATE_LOADED = 1;
- BABYLON.Engine.DELAYLOADSTATE_LOADING = 2;
- BABYLON.Engine.DELAYLOADSTATE_NOTLOADED = 4;
- BABYLON.Engine.epsilon = 0.001;
- BABYLON.Engine.collisionsEpsilon = 0.001;
- BABYLON.Engine.isSupported = function () {
- try {
- var tempcanvas = document.createElement("canvas");
- var gl = tempcanvas.getContext("webgl") || tempcanvas.getContext("experimental-webgl");
- return gl != null && !!window.WebGLRenderingContext;
- } catch (e) {
- return false;
- }
- };
- })();
|