123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492 |
- var BABYLON = BABYLON || {};
- (function () {
- BABYLON.StandardMaterial = function (name, scene) {
- this.name = name;
- this.id = name;
- this._scene = scene;
- scene.materials.push(this);
- this.diffuseTexture = null;
- this.ambientTexture = null;
- this.opacityTexture = null;
- this.reflectionTexture = null;
- this.emissiveTexture = null;
- this.specularTexture = null;
- this.bumpTexture = null;
- this.ambientColor = new BABYLON.Color3(0, 0, 0);
- this.diffuseColor = new BABYLON.Color3(1, 1, 1);
- this.specularColor = new BABYLON.Color3(1, 1, 1);
- this.specularPower = 64;
- this.emissiveColor = new BABYLON.Color3(0, 0, 0);
- this._cachedDefines = null;
- this._renderTargets = new BABYLON.Tools.SmartArray(16);
- // Internals
- this._worldViewProjectionMatrix = BABYLON.Matrix.Zero();
- this._lightMatrix = BABYLON.Matrix.Zero();
- this._globalAmbientColor = new BABYLON.Color3(0, 0, 0);
- this._baseColor = new BABYLON.Color3();
- this._scaledDiffuse = new BABYLON.Color3();
- this._scaledSpecular = new BABYLON.Color3();
- };
- BABYLON.StandardMaterial.prototype = Object.create(BABYLON.Material.prototype);
- // Properties
- BABYLON.StandardMaterial.prototype.needAlphaBlending = function () {
- return (this.alpha < 1.0) || (this.opacityTexture != null);
- };
- BABYLON.StandardMaterial.prototype.needAlphaTesting = function () {
- return this.diffuseTexture != null && this.diffuseTexture.hasAlpha;
- };
- // Methods
- BABYLON.StandardMaterial.prototype.isReady = function (mesh) {
- if (!this.checkReadyOnEveryCall) {
- if (this._renderId === this._scene.getRenderId()) {
- return true;
- }
- }
- var engine = this._scene.getEngine();
- var defines = [];
- // Textures
- if (this.diffuseTexture) {
- if (!this.diffuseTexture.isReady()) {
- return false;
- } else {
- defines.push("#define DIFFUSE");
- }
- }
- if (this.ambientTexture) {
- if (!this.ambientTexture.isReady()) {
- return false;
- } else {
- defines.push("#define AMBIENT");
- }
- }
- if (this.opacityTexture) {
- if (!this.opacityTexture.isReady()) {
- return false;
- } else {
- defines.push("#define OPACITY");
- }
- }
- if (this.reflectionTexture) {
- if (!this.reflectionTexture.isReady()) {
- return false;
- } else {
- defines.push("#define REFLECTION");
- }
- }
- if (this.emissiveTexture) {
- if (!this.emissiveTexture.isReady()) {
- return false;
- } else {
- defines.push("#define EMISSIVE");
- }
- }
- if (this.specularTexture) {
- if (!this.specularTexture.isReady()) {
- return false;
- } else {
- defines.push("#define SPECULAR");
- }
- }
- if (this._scene.getEngine().getCaps().standardDerivatives && this.bumpTexture) {
- if (!this.bumpTexture.isReady()) {
- return false;
- } else {
- defines.push("#define BUMP");
- }
- }
- // Effect
- if (BABYLON.clipPlane) {
- defines.push("#define CLIPPLANE");
- }
- if (engine.getAlphaTesting()) {
- defines.push("#define ALPHATEST");
- }
- // Fog
- if (this._scene.fogMode !== BABYLON.Scene.FOGMODE_NONE) {
- defines.push("#define FOG");
- }
- var shadowsActivated = false;
- var lightIndex = 0;
- for (var index = 0; index < this._scene.lights.length; index++) {
- var light = this._scene.lights[index];
- if (!light.isEnabled) {
- continue;
- }
- defines.push("#define LIGHT" + lightIndex);
- if (light instanceof BABYLON.SpotLight) {
- defines.push("#define SPOTLIGHT" + lightIndex);
- } else if (light instanceof BABYLON.HemisphericLight) {
- defines.push("#define HEMILIGHT" + lightIndex);
- } else {
- defines.push("#define POINTDIRLIGHT" + lightIndex);
- }
- // Shadows
- var shadowGenerator = light.getShadowGenerator();
- if (mesh && mesh.receiveShadows && shadowGenerator) {
- defines.push("#define SHADOW" + lightIndex);
- if (!shadowsActivated) {
- defines.push("#define SHADOWS");
- shadowsActivated = true;
- }
- if (shadowGenerator.useVarianceShadowMap) {
- defines.push("#define SHADOWVSM" + lightIndex);
- }
- }
- lightIndex++;
- if (lightIndex == 4)
- break;
- }
- var attribs = [BABYLON.VertexBuffer.PositionKind, BABYLON.VertexBuffer.NormalKind];
- if (mesh) {
- if (mesh.isVerticesDataPresent(BABYLON.VertexBuffer.UVKind)) {
- attribs.push(BABYLON.VertexBuffer.UVKind);
- defines.push("#define UV1");
- }
- if (mesh.isVerticesDataPresent(BABYLON.VertexBuffer.UV2Kind)) {
- attribs.push(BABYLON.VertexBuffer.UV2Kind);
- defines.push("#define UV2");
- }
- if (mesh.isVerticesDataPresent(BABYLON.VertexBuffer.ColorKind)) {
- attribs.push(BABYLON.VertexBuffer.ColorKind);
- defines.push("#define VERTEXCOLOR");
- }
- if (mesh.skeleton && mesh.isVerticesDataPresent(BABYLON.VertexBuffer.MatricesIndicesKind) && mesh.isVerticesDataPresent(BABYLON.VertexBuffer.MatricesWeightsKind)) {
- attribs.push(BABYLON.VertexBuffer.MatricesIndicesKind);
- attribs.push(BABYLON.VertexBuffer.MatricesWeightsKind);
- defines.push("#define BONES");
- defines.push("#define BonesPerMesh " + mesh.skeleton.bones.length);
- }
- }
- // Get correct effect
- var join = defines.join("\n");
- if (this._cachedDefines != join) {
- this._cachedDefines = join;
- // IE patch
- var shaderName = "default";
- if (BABYLON.Tools.isIE()) {
- shaderName = "iedefault";
- }
- this._effect = this._scene.getEngine().createEffect(shaderName,
- attribs,
- ["world", "view", "worldViewProjection", "viewProjection", "vEyePosition", "vLightsType", "vAmbientColor", "vDiffuseColor", "vSpecularColor", "vEmissiveColor",
- "vLightData0", "vLightDiffuse0", "vLightSpecular0", "vLightDirection0", "vLightGround0", "lightMatrix0",
- "vLightData1", "vLightDiffuse1", "vLightSpecular1", "vLightDirection1", "vLightGround1", "lightMatrix1",
- "vLightData2", "vLightDiffuse2", "vLightSpecular2", "vLightDirection2", "vLightGround2", "lightMatrix2",
- "vLightData3", "vLightDiffuse3", "vLightSpecular3", "vLightDirection3", "vLightGround3", "lightMatrix3",
- "vFogInfos", "vFogColor",
- "vDiffuseInfos", "vAmbientInfos", "vOpacityInfos", "vReflectionInfos", "vEmissiveInfos", "vSpecularInfos", "vBumpInfos",
- "mBones",
- "vClipPlane", "diffuseMatrix", "ambientMatrix", "opacityMatrix", "reflectionMatrix", "emissiveMatrix", "specularMatrix", "bumpMatrix"],
- ["diffuseSampler", "ambientSampler", "opacitySampler", "reflectionCubeSampler", "reflection2DSampler", "emissiveSampler", "specularSampler", "bumpSampler",
- "shadowSampler0", "shadowSampler1", "shadowSampler2", "shadowSampler3"
- ],
- join);
- }
- if (!this._effect.isReady()) {
- return false;
- }
- this._renderId = this._scene.getRenderId();
- return true;
- };
- BABYLON.StandardMaterial.prototype.getRenderTargetTextures = function () {
- this._renderTargets.reset();
- if (this.reflectionTexture && this.reflectionTexture.isRenderTarget) {
- this._renderTargets.push(this.reflectionTexture);
- }
- return this._renderTargets;
- };
- BABYLON.StandardMaterial.prototype.unbind = function () {
- if (this.reflectionTexture && this.reflectionTexture.isRenderTarget) {
- this._effect.setTexture("reflection2DSampler", null);
- }
- };
- BABYLON.StandardMaterial.prototype.bind = function (world, mesh) {
- this._baseColor.copyFrom(this.diffuseColor);
- // Matrices
- this._effect.setMatrix("world", world);
- // Bones
- if (mesh.skeleton && mesh.isVerticesDataPresent(BABYLON.VertexBuffer.MatricesIndicesKind) && mesh.isVerticesDataPresent(BABYLON.VertexBuffer.MatricesWeightsKind)) {
- this._effect.setMatrix("viewProjection", this._scene.getTransformMatrix());
- this._effect.setMatrices("mBones", mesh.skeleton.getTransformMatrices());
- } else {
- world.multiplyToRef(this._scene.getTransformMatrix(), this._worldViewProjectionMatrix);
- this._effect.setMatrix("worldViewProjection", this._worldViewProjectionMatrix);
- }
- // Textures
- if (this.diffuseTexture) {
- this._effect.setTexture("diffuseSampler", this.diffuseTexture);
- this._effect.setFloat2("vDiffuseInfos", this.diffuseTexture.coordinatesIndex, this.diffuseTexture.level);
- this._effect.setMatrix("diffuseMatrix", this.diffuseTexture._computeTextureMatrix());
- this._baseColor.copyFromFloats(1, 1, 1);
- }
- if (this.ambientTexture) {
- this._effect.setTexture("ambientSampler", this.ambientTexture);
- this._effect.setFloat2("vAmbientInfos", this.ambientTexture.coordinatesIndex, this.ambientTexture.level);
- this._effect.setMatrix("ambientMatrix", this.ambientTexture._computeTextureMatrix());
- }
- if (this.opacityTexture) {
- this._effect.setTexture("opacitySampler", this.opacityTexture);
- this._effect.setFloat2("vOpacityInfos", this.opacityTexture.coordinatesIndex, this.opacityTexture.level);
- this._effect.setMatrix("opacityMatrix", this.opacityTexture._computeTextureMatrix());
- }
- if (this.reflectionTexture) {
- if (this.reflectionTexture.isCube) {
- this._effect.setTexture("reflectionCubeSampler", this.reflectionTexture);
- } else {
- this._effect.setTexture("reflection2DSampler", this.reflectionTexture);
- }
- this._effect.setMatrix("reflectionMatrix", this.reflectionTexture._computeReflectionTextureMatrix());
- this._effect.setFloat3("vReflectionInfos", this.reflectionTexture.coordinatesMode, this.reflectionTexture.level, this.reflectionTexture.isCube ? 1 : 0);
- }
- if (this.emissiveTexture) {
- this._effect.setTexture("emissiveSampler", this.emissiveTexture);
- this._effect.setFloat2("vEmissiveInfos", this.emissiveTexture.coordinatesIndex, this.emissiveTexture.level);
- this._effect.setMatrix("emissiveMatrix", this.emissiveTexture._computeTextureMatrix());
- }
- if (this.specularTexture) {
- this._effect.setTexture("specularSampler", this.specularTexture);
- this._effect.setFloat2("vSpecularInfos", this.specularTexture.coordinatesIndex, this.specularTexture.level);
- this._effect.setMatrix("specularMatrix", this.specularTexture._computeTextureMatrix());
- }
- if (this.bumpTexture && this._scene.getEngine().getCaps().standardDerivatives) {
- this._effect.setTexture("bumpSampler", this.bumpTexture);
- this._effect.setFloat2("vBumpInfos", this.bumpTexture.coordinatesIndex, this.bumpTexture.level);
- this._effect.setMatrix("bumpMatrix", this.bumpTexture._computeTextureMatrix());
- }
- // Colors
- this._scene.ambientColor.multiplyToRef(this.ambientColor, this._globalAmbientColor);
- this._effect.setVector3("vEyePosition", this._scene.activeCamera.position);
- this._effect.setColor3("vAmbientColor", this._globalAmbientColor);
- this._effect.setColor4("vDiffuseColor", this._baseColor, this.alpha * mesh.visibility);
- this._effect.setColor4("vSpecularColor", this.specularColor, this.specularPower);
- this._effect.setColor3("vEmissiveColor", this.emissiveColor);
- var lightIndex = 0;
- for (var index = 0; index < this._scene.lights.length; index++) {
- var light = this._scene.lights[index];
- if (!light.isEnabled) {
- continue;
- }
- if (light instanceof BABYLON.PointLight) {
- // Point Light
- this._effect.setFloat4("vLightData" + lightIndex, light.position.x, light.position.y, light.position.z, 0);
- } else if (light instanceof BABYLON.DirectionalLight) {
- // Directional Light
- this._effect.setFloat4("vLightData" + lightIndex, light.direction.x, light.direction.y, light.direction.z, 1);
- } else if (light instanceof BABYLON.SpotLight) {
- // Spot Light
- this._effect.setFloat4("vLightData" + lightIndex, light.position.x, light.position.y, light.position.z, light.exponent);
- var normalizeDirection = BABYLON.Vector3.Normalize(light.direction);
- this._effect.setFloat4("vLightDirection" + lightIndex, normalizeDirection.x, normalizeDirection.y, normalizeDirection.z, Math.cos(light.angle * 0.5));
- } else if (light instanceof BABYLON.HemisphericLight) {
- // Hemispheric Light
- var normalizeDirection = BABYLON.Vector3.Normalize(light.direction);
- this._effect.setFloat4("vLightData" + lightIndex, normalizeDirection.x, normalizeDirection.y, normalizeDirection.z, 0);
- this._effect.setColor3("vLightGround" + lightIndex, light.groundColor.scale(light.intensity));
- }
- light.diffuse.scaleToRef(light.intensity, this._scaledDiffuse);
- light.specular.scaleToRef(light.intensity, this._scaledSpecular);
- this._effect.setColor3("vLightDiffuse" + lightIndex, this._scaledDiffuse);
- this._effect.setColor3("vLightSpecular" + lightIndex, this._scaledSpecular);
- // Shadows
- var shadowGenerator = light.getShadowGenerator();
- if (mesh.receiveShadows && shadowGenerator) {
- world.multiplyToRef(shadowGenerator.getTransformMatrix(), this._lightMatrix);
- this._effect.setMatrix("lightMatrix" + lightIndex, this._lightMatrix);
- this._effect.setTexture("shadowSampler" + lightIndex, shadowGenerator.getShadowMap());
- }
- lightIndex++;
- if (lightIndex == 4)
- break;
- }
- if (BABYLON.clipPlane) {
- this._effect.setFloat4("vClipPlane", BABYLON.clipPlane.normal.x, BABYLON.clipPlane.normal.y, BABYLON.clipPlane.normal.z, BABYLON.clipPlane.d);
- }
- // View
- if (this._scene.fogMode !== BABYLON.Scene.FOGMODE_NONE || this.reflectionTexture) {
- this._effect.setMatrix("view", this._scene.getViewMatrix());
- }
- // Fog
- if (this._scene.fogMode !== BABYLON.Scene.FOGMODE_NONE) {
- this._effect.setFloat4("vFogInfos", this._scene.fogMode, this._scene.fogStart, this._scene.fogEnd, this._scene.fogDensity);
- this._effect.setColor3("vFogColor", this._scene.fogColor);
- }
- };
- BABYLON.StandardMaterial.prototype.getAnimatables = function () {
- var results = [];
- if (this.diffuseTexture && this.diffuseTexture.animations && this.diffuseTexture.animations.length > 0) {
- results.push(this.diffuseTexture);
- }
- if (this.ambientTexture && this.ambientTexture.animations && this.ambientTexture.animations.length > 0) {
- results.push(this.ambientTexture);
- }
- if (this.opacityTexture && this.opacityTexture.animations && this.opacityTexture.animations.length > 0) {
- results.push(this.opacityTexture);
- }
- if (this.reflectionTexture && this.reflectionTexture.animations && this.reflectionTexture.animations.length > 0) {
- results.push(this.reflectionTexture);
- }
- if (this.emissiveTexture && this.emissiveTexture.animations && this.emissiveTexture.animations.length > 0) {
- results.push(this.emissiveTexture);
- }
- if (this.specularTexture && this.specularTexture.animations && this.specularTexture.animations.length > 0) {
- results.push(this.specularTexture);
- }
- if (this.bumpTexture && this.bumpTexture.animations && this.bumpTexture.animations.length > 0) {
- results.push(this.bumpTexture);
- }
- return results;
- };
- BABYLON.StandardMaterial.prototype.dispose = function () {
- if (this.diffuseTexture) {
- this.diffuseTexture.dispose();
- }
- if (this.ambientTexture) {
- this.ambientTexture.dispose();
- }
- if (this.opacityTexture) {
- this.opacityTexture.dispose();
- }
- if (this.reflectionTexture) {
- this.reflectionTexture.dispose();
- }
- if (this.emissiveTexture) {
- this.emissiveTexture.dispose();
- }
- if (this.specularTexture) {
- this.specularTexture.dispose();
- }
- if (this.bumpTexture) {
- this.bumpTexture.dispose();
- }
- this.baseDispose();
- };
- BABYLON.StandardMaterial.prototype.clone = function (name) {
- var newStandardMaterial = new BABYLON.StandardMaterial(name, this._scene);
- // Base material
- newStandardMaterial.checkReadyOnEveryCall = this.checkReadyOnEveryCall;
- newStandardMaterial.alpha = this.alpha;
- newStandardMaterial.wireframe = this.wireframe;
- newStandardMaterial.backFaceCulling = this.backFaceCulling;
- // Standard material
- if (this.diffuseTexture && this.diffuseTexture.clone) {
- newStandardMaterial.diffuseTexture = this.diffuseTexture.clone();
- }
- if (this.ambientTexture && this.ambientTexture.clone) {
- newStandardMaterial.ambientTexture = this.ambientTexture.clone();
- }
- if (this.opacityTexture && this.opacityTexture.clone) {
- newStandardMaterial.opacityTexture = this.opacityTexture.clone();
- }
- if (this.reflectionTexture && this.reflectionTexture.clone) {
- newStandardMaterial.reflectionTexture = this.reflectionTexture.clone();
- }
- if (this.emissiveTexture && this.emissiveTexture.clone) {
- newStandardMaterial.emissiveTexture = this.emissiveTexture.clone();
- }
- if (this.specularTexture && this.specularTexture.clone) {
- newStandardMaterial.specularTexture = this.specularTexture.clone();
- }
- if (this.bumpTexture && this.bumpTexture.clone) {
- newStandardMaterial.bumpTexture = this.bumpTexture.clone();
- }
- newStandardMaterial.ambientColor = this.ambientColor.clone();
- newStandardMaterial.diffuseColor = this.diffuseColor.clone();
- newStandardMaterial.specularColor = this.specularColor.clone();
- newStandardMaterial.specularPower = this.specularPower;
- newStandardMaterial.emissiveColor = this.emissiveColor.clone();
- return newStandardMaterial;
- };
- })();
|