123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212 |
- var BABYLON = BABYLON || {};
- (function () {
- BABYLON.LensFlareSystem = function (name, emitter, scene) {
- this.lensFlares = [];
- this._scene = scene;
- this._emitter = emitter;
- this.name = name;
- scene.lensFlareSystems.push(this);
- this.meshesSelectionPredicate = function(m) {
- return m.material && m.isVisible && m.isEnabled() && m.checkCollisions;
- };
-
- // VBO
- var vertices = [];
- vertices.push(1, 1);
- vertices.push(-1, 1);
- vertices.push(-1, -1);
- vertices.push(1, -1);
- this._vertexDeclaration = [2];
- this._vertexStrideSize = 2 * 4;
- this._vertexBuffer = scene.getEngine().createVertexBuffer(vertices);
- // Indices
- var indices = [];
- indices.push(0);
- indices.push(1);
- indices.push(2);
- indices.push(0);
- indices.push(2);
- indices.push(3);
- this._indexBuffer = scene.getEngine().createIndexBuffer(indices);
- // Effects
- this._effect = this._scene.getEngine().createEffect("lensFlare",
- ["position"],
- ["color", "viewportMatrix"],
- ["textureSampler"], "");
- };
- // Members
- BABYLON.LensFlareSystem.prototype.borderLimit = 300;
-
- // Properties
- BABYLON.LensFlareSystem.prototype.getScene = function() {
- return this._scene;
- };
-
- BABYLON.LensFlareSystem.prototype.getEmitterPosition = function() {
- return this._emitter.getAbsolutePosition ? this._emitter.getAbsolutePosition() : this._emitter.position;
- };
- // Methods
- BABYLON.LensFlareSystem.prototype.computeEffectivePosition = function (globalViewport) {
- var position = this.getEmitterPosition();
- position = BABYLON.Vector3.Project(position, BABYLON.Matrix.Identity(), this._scene.getTransformMatrix(), globalViewport);
- this._positionX = position.x;
- this._positionY = position.y;
- position = BABYLON.Vector3.TransformCoordinates(this.getEmitterPosition(), this._scene.getViewMatrix());
- if (position.z > 0) {
- if ((this._positionX > globalViewport.x) && (this._positionX < globalViewport.x + globalViewport.width)) {
- if ((this._positionY > globalViewport.y) && (this._positionY < globalViewport.y + globalViewport.height))
- return true;
- }
- }
- return false;
- };
- BABYLON.LensFlareSystem.prototype._isVisible = function () {
- var emitterPosition = this.getEmitterPosition();
- var direction = emitterPosition.subtract(this._scene.activeCamera.position);
- var distance = direction.length();
- direction.normalize();
-
- var ray = new BABYLON.Ray(this._scene.activeCamera.position, direction);
- var pickInfo = this._scene.pickWithRay(ray, this.meshesSelectionPredicate, true);
- return !pickInfo.hit || pickInfo.distance > distance;
- };
- BABYLON.LensFlareSystem.prototype.render = function () {
- if (!this._effect.isReady())
- return false;
- var engine = this._scene.getEngine();
- var viewport = this._scene.activeCamera.viewport;
- var globalViewport = viewport.toGlobal(engine);
-
- // Position
- if (!this.computeEffectivePosition(globalViewport)) {
- return false;
- }
-
- // Visibility
- if (!this._isVisible()) {
- return false;
- }
- // Intensity
- var awayX;
- var awayY;
- if (this._positionX < this.borderLimit + globalViewport.x) {
- awayX = this.borderLimit + globalViewport.x - this._positionX;
- } else if (this._positionX > globalViewport.x + globalViewport.width - this.borderLimit) {
- awayX = this._positionX - globalViewport.x - globalViewport.width + this.borderLimit;
- } else {
- awayX = 0;
- }
- if (this._positionY < this.borderLimit + globalViewport.y) {
- awayY = this.borderLimit + globalViewport.y - this._positionY;
- } else if (this._positionY > globalViewport.y + globalViewport.height - this.borderLimit) {
- awayY = this._positionY - globalViewport.y - globalViewport.height + this.borderLimit;
- } else {
- awayY = 0;
- }
- var away = (awayX > awayY) ? awayX : awayY;
- if (away > this.borderLimit) {
- away = this.borderLimit;
- }
- var intensity = 1.0 - (away / this.borderLimit);
- if (intensity < 0) {
- return false;
- }
-
- if (intensity > 1.0) {
- intensity = 1.0;
- }
- // Position
- var centerX = globalViewport.x + globalViewport.width / 2;
- var centerY = globalViewport.y + globalViewport.height / 2;
- var distX = centerX - this._positionX;
- var distY = centerY - this._positionY;
- // Effects
- engine.enableEffect(this._effect);
- engine.setState(false);
- engine.setDepthBuffer(false);
- engine.setAlphaMode(BABYLON.Engine.ALPHA_ADD);
-
- // VBOs
- engine.bindBuffers(this._vertexBuffer, this._indexBuffer, this._vertexDeclaration, this._vertexStrideSize, this._effect);
- // Flares
- for (var index = 0; index < this.lensFlares.length; index++) {
- var flare = this.lensFlares[index];
- var x = centerX - (distX * flare.position);
- var y = centerY - (distY * flare.position);
-
- var cw = flare.size;
- var ch = flare.size * engine.getAspectRatio();
- var cx = 2 * (x / globalViewport.width) - 1.0;
- var cy = 1.0 - 2 * (y / globalViewport.height);
-
- var viewportMatrix = BABYLON.Matrix.FromValues(
- cw / 2, 0, 0, 0,
- 0, ch / 2, 0, 0,
- 0, 0, 1, 0,
- cx, cy, 0, 1);
- this._effect.setMatrix("viewportMatrix", viewportMatrix);
-
- // Texture
- this._effect.setTexture("textureSampler", flare.texture);
- // Color
- this._effect.setFloat4("color", flare.color.r * intensity, flare.color.g * intensity, flare.color.b * intensity, 1.0);
- // Draw order
- engine.draw(true, 0, 6);
- }
-
- engine.setDepthBuffer(true);
- engine.setAlphaMode(BABYLON.Engine.ALPHA_DISABLE);
- return true;
- };
- BABYLON.LensFlareSystem.prototype.dispose = function () {
- if (this._vertexBuffer) {
- this._scene.getEngine()._releaseBuffer(this._vertexBuffer);
- this._vertexBuffer = null;
- }
- if (this._indexBuffer) {
- this._scene.getEngine()._releaseBuffer(this._indexBuffer);
- this._indexBuffer = null;
- }
- while (this.lensFlares.length) {
- this.lensFlares[0].dispose();
- }
- // Remove from scene
- var index = this._scene.lensFlareSystems.indexOf(this);
- this._scene.lensFlareSystems.splice(index, 1);
- };
- })();
|