123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263 |
- /**
- * @author supereggbert / http://www.paulbrunt.co.uk/
- * @author mrdoob / http://mrdoob.com/
- * @author alteredq / http://alteredqualia.com/
- */
- THREE.WebGLRenderer = function ( scene ) {
-
- // Currently you can use just up to 5 directional / point lights total.
- // Chrome barfs on shader linking when there are more than 5 lights :(
-
- // It seems problem comes from having too many varying vectors.
-
- // Weirdly, this is not GPU limitation as the same shader works ok in Firefox.
- // This difference could come from Chrome using ANGLE on Windows,
- // thus going DirectX9 route (while FF uses OpenGL).
-
- var _canvas = document.createElement( 'canvas' ), _gl, _program,
- _modelViewMatrix = new THREE.Matrix4(), _normalMatrix,
-
- BASIC = 0, LAMBERT = 1, PHONG = 2, DEPTH = 3, NORMAL = 4, // material constants used in shader
-
- maxLightCount = allocateLights( scene, 5 );
-
- this.domElement = _canvas;
- this.autoClear = true;
- initGL();
- initProgram( maxLightCount.directional, maxLightCount.point );
-
- // Querying via gl.getParameter() reports different values for CH and FF for many max parameters.
- // On my GPU Chrome reports MAX_VARYING_VECTORS = 8, FF reports 0 yet compiles shaders with many
- // more varying vectors (up to 29 lights are ok, more start to throw warnings to FF error console
- // and then crash the browser).
-
- //alert( dumpObject( getGLParams() ) );
-
-
- function allocateLights( scene, maxLights ) {
- // heuristics to create shader parameters according to lights in the scene
- // (not to blow over maxLights budget)
-
- if ( scene ) {
- var l, ll, light, dirLights = pointLights = maxDirLights = maxPointLights = 0;
-
- for ( l = 0, ll = scene.lights.length; l < ll; l++ ) {
-
- light = scene.lights[ l ];
-
- if ( light instanceof THREE.DirectionalLight ) dirLights++;
- if ( light instanceof THREE.PointLight ) pointLights++;
-
- }
-
- if ( ( pointLights + dirLights ) <= maxLights ) {
-
- maxDirLights = dirLights;
- maxPointLights = pointLights;
-
- } else {
-
- maxDirLights = Math.ceil( maxLights * dirLights / ( pointLights + dirLights ) );
- maxPointLights = maxLights - maxDirLights;
-
- }
-
- return { 'directional' : maxDirLights, 'point' : maxPointLights };
-
- }
-
- return { 'directional' : 1, 'point' : maxLights - 1 };
-
- };
- this.setSize = function ( width, height ) {
- _canvas.width = width;
- _canvas.height = height;
- _gl.viewport( 0, 0, _canvas.width, _canvas.height );
- };
- this.clear = function () {
- _gl.clear( _gl.COLOR_BUFFER_BIT | _gl.DEPTH_BUFFER_BIT );
- };
- this.setupLights = function ( scene ) {
- var l, ll, light, r, g, b,
- ambientLights = [], pointLights = [], directionalLights = [],
- colors = [], positions = [];
- _gl.uniform1i( _program.enableLighting, scene.lights.length );
- for ( l = 0, ll = scene.lights.length; l < ll; l++ ) {
- light = scene.lights[ l ];
- if ( light instanceof THREE.AmbientLight ) {
- ambientLights.push( light );
- } else if ( light instanceof THREE.DirectionalLight ) {
- directionalLights.push( light );
- } else if( light instanceof THREE.PointLight ) {
- pointLights.push( light );
-
- }
- }
-
- // sum all ambient lights
- r = g = b = 0.0;
-
- for ( l = 0, ll = ambientLights.length; l < ll; l++ ) {
-
- r += ambientLights[ l ].color.r;
- g += ambientLights[ l ].color.g;
- b += ambientLights[ l ].color.b;
-
- }
-
- _gl.uniform3f( _program.ambientLightColor, r, g, b );
- // pass directional lights as float arrays
-
- colors = []; positions = [];
-
- for ( l = 0, ll = directionalLights.length; l < ll; l++ ) {
-
- light = directionalLights[ l ];
-
- colors.push( light.color.r * light.intensity );
- colors.push( light.color.g * light.intensity );
- colors.push( light.color.b * light.intensity );
- positions.push( light.position.x );
- positions.push( light.position.y );
- positions.push( light.position.z );
-
- }
-
- if ( directionalLights.length ) {
- _gl.uniform1i( _program.directionalLightNumber, directionalLights.length );
- _gl.uniform3fv( _program.directionalLightDirection, positions );
- _gl.uniform3fv( _program.directionalLightColor, colors );
-
- }
- // pass point lights as float arrays
-
- colors = []; positions = [];
-
- for ( l = 0, ll = pointLights.length; l < ll; l++ ) {
-
- light = pointLights[ l ];
-
- colors.push( light.color.r * light.intensity );
- colors.push( light.color.g * light.intensity );
- colors.push( light.color.b * light.intensity );
- positions.push( light.position.x );
- positions.push( light.position.y );
- positions.push( light.position.z );
-
- }
-
- if ( pointLights.length ) {
- _gl.uniform1i( _program.pointLightNumber, pointLights.length );
- _gl.uniform3fv( _program.pointLightPosition, positions );
- _gl.uniform3fv( _program.pointLightColor, colors );
-
- }
-
- };
- this.createBuffers = function ( object, mf ) {
- var f, fl, fi, face, vertexNormals, normal, uv, v1, v2, v3, v4, m, ml, i, l,
- materialFaceGroup = object.materialFaceGroup[ mf ],
- faceArray = [],
- lineArray = [],
- vertexArray = [],
- normalArray = [],
- uvArray = [],
- vertexIndex = 0,
- useSmoothNormals = false;
- // need to find out if there is any material in the object
- // (among all mesh materials and also face materials)
- // which would need smooth normals
- function needsSmoothNormals( material ) {
- return material && material.shading != undefined && material.shading == THREE.SmoothShading;
- }
- for ( m = 0, ml = object.material.length; m < ml; m++ ) {
- meshMaterial = object.material[ m ];
- if ( meshMaterial instanceof THREE.MeshFaceMaterial ) {
- for ( i = 0, l = materialFaceGroup.material.length; i < l; i++ ) {
-
- if ( needsSmoothNormals( materialFaceGroup.material[ i ] ) ) {
-
- useSmoothNormals = true;
- break;
-
- }
- }
- } else {
- if ( needsSmoothNormals( meshMaterial ) ) {
-
- useSmoothNormals = true;
- break;
-
- }
- }
-
- if ( useSmoothNormals ) break;
- }
-
- for ( f = 0, fl = materialFaceGroup.faces.length; f < fl; f++ ) {
- fi = materialFaceGroup.faces[f];
- face = object.geometry.faces[ fi ];
- vertexNormals = face.vertexNormals;
- normal = face.normal;
- uv = object.geometry.uvs[ fi ];
- if ( face instanceof THREE.Face3 ) {
- v1 = object.geometry.vertices[ face.a ].position;
- v2 = object.geometry.vertices[ face.b ].position;
- v3 = object.geometry.vertices[ face.c ].position;
- vertexArray.push( v1.x, v1.y, v1.z );
- vertexArray.push( v2.x, v2.y, v2.z );
- vertexArray.push( v3.x, v3.y, v3.z );
- if ( vertexNormals.length == 3 && useSmoothNormals ) {
- normalArray.push( vertexNormals[0].x, vertexNormals[0].y, vertexNormals[0].z );
- normalArray.push( vertexNormals[1].x, vertexNormals[1].y, vertexNormals[1].z );
- normalArray.push( vertexNormals[2].x, vertexNormals[2].y, vertexNormals[2].z );
- } else {
- normalArray.push( normal.x, normal.y, normal.z );
- normalArray.push( normal.x, normal.y, normal.z );
- normalArray.push( normal.x, normal.y, normal.z );
- }
- if ( uv ) {
- uvArray.push( uv[0].u, uv[0].v );
- uvArray.push( uv[1].u, uv[1].v );
- uvArray.push( uv[2].u, uv[2].v );
- }
- faceArray.push( vertexIndex, vertexIndex + 1, vertexIndex + 2 );
- // TODO: don't add lines that already exist (faces sharing edge)
- lineArray.push( vertexIndex, vertexIndex + 1 );
- lineArray.push( vertexIndex, vertexIndex + 2 );
- lineArray.push( vertexIndex + 1, vertexIndex + 2 );
- vertexIndex += 3;
- } else if ( face instanceof THREE.Face4 ) {
- v1 = object.geometry.vertices[ face.a ].position;
- v2 = object.geometry.vertices[ face.b ].position;
- v3 = object.geometry.vertices[ face.c ].position;
- v4 = object.geometry.vertices[ face.d ].position;
- vertexArray.push( v1.x, v1.y, v1.z );
- vertexArray.push( v2.x, v2.y, v2.z );
- vertexArray.push( v3.x, v3.y, v3.z );
- vertexArray.push( v4.x, v4.y, v4.z );
- if ( vertexNormals.length == 4 && useSmoothNormals ) {
- normalArray.push( vertexNormals[0].x, vertexNormals[0].y, vertexNormals[0].z );
- normalArray.push( vertexNormals[1].x, vertexNormals[1].y, vertexNormals[1].z );
- normalArray.push( vertexNormals[2].x, vertexNormals[2].y, vertexNormals[2].z );
- normalArray.push( vertexNormals[3].x, vertexNormals[3].y, vertexNormals[3].z );
- } else {
- normalArray.push( normal.x, normal.y, normal.z );
- normalArray.push( normal.x, normal.y, normal.z );
- normalArray.push( normal.x, normal.y, normal.z );
- normalArray.push( normal.x, normal.y, normal.z );
- }
- if ( uv ) {
- uvArray.push( uv[0].u, uv[0].v );
- uvArray.push( uv[1].u, uv[1].v );
- uvArray.push( uv[2].u, uv[2].v );
- uvArray.push( uv[3].u, uv[3].v );
- }
- faceArray.push( vertexIndex, vertexIndex + 1, vertexIndex + 2 );
- faceArray.push( vertexIndex, vertexIndex + 2, vertexIndex + 3 );
- // TODO: don't add lines that already exist (faces sharing edge)
- lineArray.push( vertexIndex, vertexIndex + 1 );
- lineArray.push( vertexIndex, vertexIndex + 2 );
- lineArray.push( vertexIndex, vertexIndex + 3 );
- lineArray.push( vertexIndex + 1, vertexIndex + 2 );
- lineArray.push( vertexIndex + 2, vertexIndex + 3 );
- vertexIndex += 4;
-
- }
- }
- if ( !vertexArray.length ) {
- return;
- }
- materialFaceGroup.__webGLVertexBuffer = _gl.createBuffer();
- _gl.bindBuffer( _gl.ARRAY_BUFFER, materialFaceGroup.__webGLVertexBuffer );
- _gl.bufferData( _gl.ARRAY_BUFFER, new Float32Array( vertexArray ), _gl.STATIC_DRAW );
- materialFaceGroup.__webGLNormalBuffer = _gl.createBuffer();
- _gl.bindBuffer( _gl.ARRAY_BUFFER, materialFaceGroup.__webGLNormalBuffer );
- _gl.bufferData( _gl.ARRAY_BUFFER, new Float32Array( normalArray ), _gl.STATIC_DRAW );
- materialFaceGroup.__webGLUVBuffer = _gl.createBuffer();
- _gl.bindBuffer( _gl.ARRAY_BUFFER, materialFaceGroup.__webGLUVBuffer );
- _gl.bufferData( _gl.ARRAY_BUFFER, new Float32Array( uvArray ), _gl.STATIC_DRAW );
- materialFaceGroup.__webGLFaceBuffer = _gl.createBuffer();
- _gl.bindBuffer( _gl.ELEMENT_ARRAY_BUFFER, materialFaceGroup.__webGLFaceBuffer );
- _gl.bufferData( _gl.ELEMENT_ARRAY_BUFFER, new Uint16Array( faceArray ), _gl.STATIC_DRAW );
- materialFaceGroup.__webGLLineBuffer = _gl.createBuffer();
- _gl.bindBuffer( _gl.ELEMENT_ARRAY_BUFFER, materialFaceGroup.__webGLLineBuffer );
- _gl.bufferData( _gl.ELEMENT_ARRAY_BUFFER, new Uint16Array( lineArray ), _gl.STATIC_DRAW );
- materialFaceGroup.__webGLFaceCount = faceArray.length;
- materialFaceGroup.__webGLLineCount = lineArray.length;
- };
- this.renderBuffer = function ( material, materialFaceGroup ) {
- var mColor, mOpacity, mReflectivity,
- mWireframe, mLineWidth, mBlending,
- mAmbient, mSpecular, mShininess,
- mMap, envMap;
-
- if ( material instanceof THREE.MeshPhongMaterial ||
- material instanceof THREE.MeshLambertMaterial ||
- material instanceof THREE.MeshBasicMaterial ) {
-
- mColor = material.color;
- mOpacity = material.opacity;
- mReflectivity = material.reflectivity;
-
- mWireframe = material.wireframe;
- mLineWidth = material.wireframe_linewidth;
-
- mBlending = material.blending;
-
- mMap = material.map;
- envMap = material.env_map;
-
- _gl.uniform4f( _program.mColor, mColor.r * mOpacity, mColor.g * mOpacity, mColor.b * mOpacity, mOpacity );
- _gl.uniform1f( _program.mReflectivity, mReflectivity );
- }
-
- if ( material instanceof THREE.MeshNormalMaterial ) {
-
- mOpacity = material.opacity;
- mBlending = material.blending;
-
- _gl.uniform1f( _program.mOpacity, mOpacity );
-
- _gl.uniform1i( _program.material, NORMAL );
-
- } else if ( material instanceof THREE.MeshDepthMaterial ) {
-
- mOpacity = material.opacity;
-
- mWireframe = material.wireframe;
- mLineWidth = material.wireframe_linewidth;
-
- _gl.uniform1f( _program.mOpacity, mOpacity );
-
- _gl.uniform1f( _program.m2Near, material.__2near );
- _gl.uniform1f( _program.mFarPlusNear, material.__farPlusNear );
- _gl.uniform1f( _program.mFarMinusNear, material.__farMinusNear );
-
- _gl.uniform1i( _program.material, DEPTH );
-
- } else if ( material instanceof THREE.MeshPhongMaterial ) {
- mAmbient = material.ambient;
- mSpecular = material.specular;
- mShininess = material.shininess;
-
- _gl.uniform4f( _program.mAmbient, mAmbient.r, mAmbient.g, mAmbient.b, mOpacity );
- _gl.uniform4f( _program.mSpecular, mSpecular.r, mSpecular.g, mSpecular.b, mOpacity );
- _gl.uniform1f( _program.mShininess, mShininess );
-
- _gl.uniform1i( _program.material, PHONG );
- } else if ( material instanceof THREE.MeshLambertMaterial ) {
-
- _gl.uniform1i( _program.material, LAMBERT );
- } else if ( material instanceof THREE.MeshBasicMaterial ) {
- _gl.uniform1i( _program.material, BASIC );
- }
-
- if ( mMap ) {
- if ( !material.__webGLTexture && material.map.image.loaded ) {
- material.__webGLTexture = _gl.createTexture();
- _gl.bindTexture( _gl.TEXTURE_2D, material.__webGLTexture );
- _gl.texImage2D( _gl.TEXTURE_2D, 0, _gl.RGBA, _gl.RGBA, _gl.UNSIGNED_BYTE, material.map.image ) ;
- _gl.texParameteri( _gl.TEXTURE_2D, _gl.TEXTURE_MAG_FILTER, _gl.LINEAR );
- _gl.texParameteri( _gl.TEXTURE_2D, _gl.TEXTURE_MIN_FILTER, _gl.LINEAR_MIPMAP_LINEAR );
- _gl.generateMipmap( _gl.TEXTURE_2D );
- _gl.bindTexture( _gl.TEXTURE_2D, null );
- }
- _gl.activeTexture( _gl.TEXTURE0 );
- _gl.bindTexture( _gl.TEXTURE_2D, material.__webGLTexture );
- _gl.uniform1i( _program.tMap, 0 );
- _gl.uniform1i( _program.enableMap, 1 );
- } else {
-
- _gl.uniform1i( _program.enableMap, 0 );
-
- }
-
- if ( envMap ) {
-
- if ( material.env_map &&
- material.env_map instanceof THREE.TextureCube &&
- material.env_map.image.length == 6 ) {
-
- if ( !material.__webGLTextureCube && !material.__cubeMapInitialized && material.env_map.image.loadCount == 6 ) {
-
- material.__webGLTextureCube = _gl.createTexture();
-
- _gl.bindTexture( _gl.TEXTURE_CUBE_MAP, material.__webGLTextureCube );
-
- _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.texParameteri( _gl.TEXTURE_CUBE_MAP, _gl.TEXTURE_MAG_FILTER, _gl.LINEAR );
- _gl.texParameteri( _gl.TEXTURE_CUBE_MAP, _gl.TEXTURE_MIN_FILTER, _gl.LINEAR_MIPMAP_LINEAR );
-
- _gl.texImage2D( _gl.TEXTURE_CUBE_MAP_POSITIVE_X, 0, _gl.RGBA, _gl.RGBA, _gl.UNSIGNED_BYTE, material.env_map.image[0] );
- _gl.texImage2D( _gl.TEXTURE_CUBE_MAP_NEGATIVE_X, 0, _gl.RGBA, _gl.RGBA, _gl.UNSIGNED_BYTE, material.env_map.image[1] );
- _gl.texImage2D( _gl.TEXTURE_CUBE_MAP_POSITIVE_Y, 0, _gl.RGBA, _gl.RGBA, _gl.UNSIGNED_BYTE, material.env_map.image[2] );
- _gl.texImage2D( _gl.TEXTURE_CUBE_MAP_NEGATIVE_Y, 0, _gl.RGBA, _gl.RGBA, _gl.UNSIGNED_BYTE, material.env_map.image[3] );
- _gl.texImage2D( _gl.TEXTURE_CUBE_MAP_POSITIVE_Z, 0, _gl.RGBA, _gl.RGBA, _gl.UNSIGNED_BYTE, material.env_map.image[4] );
- _gl.texImage2D( _gl.TEXTURE_CUBE_MAP_NEGATIVE_Z, 0, _gl.RGBA, _gl.RGBA, _gl.UNSIGNED_BYTE, material.env_map.image[5] );
-
- _gl.generateMipmap( _gl.TEXTURE_CUBE_MAP );
-
- _gl.bindTexture( _gl.TEXTURE_CUBE_MAP, null );
-
- material.__cubeMapInitialized = true;
-
- }
-
- _gl.activeTexture( _gl.TEXTURE1 );
- _gl.bindTexture( _gl.TEXTURE_CUBE_MAP, material.__webGLTextureCube );
- _gl.uniform1i( _program.tCube, 1 );
-
- }
-
- _gl.uniform1i( _program.enableCubeMap, 1 );
-
- } else {
-
- _gl.uniform1i( _program.enableCubeMap, 0 );
-
- }
-
- // vertices
-
- _gl.bindBuffer( _gl.ARRAY_BUFFER, materialFaceGroup.__webGLVertexBuffer );
- _gl.vertexAttribPointer( _program.position, 3, _gl.FLOAT, false, 0, 0 );
- // normals
-
- _gl.bindBuffer( _gl.ARRAY_BUFFER, materialFaceGroup.__webGLNormalBuffer );
- _gl.vertexAttribPointer( _program.normal, 3, _gl.FLOAT, false, 0, 0 );
- // uvs
-
- if ( mMap ) {
- _gl.bindBuffer( _gl.ARRAY_BUFFER, materialFaceGroup.__webGLUVBuffer );
- _gl.enableVertexAttribArray( _program.uv );
- _gl.vertexAttribPointer( _program.uv, 2, _gl.FLOAT, false, 0, 0 );
- } else {
- _gl.disableVertexAttribArray( _program.uv );
- }
- // render triangles
-
- if ( ! mWireframe ) {
- _gl.bindBuffer( _gl.ELEMENT_ARRAY_BUFFER, materialFaceGroup.__webGLFaceBuffer );
- _gl.drawElements( _gl.TRIANGLES, materialFaceGroup.__webGLFaceCount, _gl.UNSIGNED_SHORT, 0 );
- // render lines
-
- } else {
- _gl.lineWidth( mLineWidth );
- _gl.bindBuffer( _gl.ELEMENT_ARRAY_BUFFER, materialFaceGroup.__webGLLineBuffer );
- _gl.drawElements( _gl.LINES, materialFaceGroup.__webGLLineCount, _gl.UNSIGNED_SHORT, 0 );
- }
- };
- this.renderPass = function ( object, materialFaceGroup, blending ) {
-
- var i, l, m, ml, material, meshMaterial;
-
- for ( m = 0, ml = object.material.length; m < ml; m++ ) {
- meshMaterial = object.material[ m ];
- if ( meshMaterial instanceof THREE.MeshFaceMaterial ) {
- for ( i = 0, l = materialFaceGroup.material.length; i < l; i++ ) {
- material = materialFaceGroup.material[ i ];
- if ( material && material.blending == blending ) {
-
- this.setBlending( material.blending );
- this.renderBuffer( material, materialFaceGroup );
-
- }
- }
- } else {
- material = meshMaterial;
- if ( material && material.blending == blending ) {
-
- this.setBlending( material.blending );
- this.renderBuffer( material, materialFaceGroup );
- }
- }
- }
-
- };
- this.render = function( scene, camera ) {
-
- var o, ol;
-
- this.initWebGLObjects( scene );
-
- if ( this.autoClear ) {
- this.clear();
- }
- camera.autoUpdateMatrix && camera.updateMatrix();
- _gl.uniform3f( _program.cameraPosition, camera.position.x, camera.position.y, camera.position.z );
- this.setupLights( scene );
- // opaque pass
-
- for ( o = 0, ol = scene.__webGLObjects.length; o < ol; o++ ) {
-
- webGLObject = scene.__webGLObjects[ o ];
-
- this.setupMatrices( webGLObject.__object, camera );
- this.renderPass( webGLObject.__object, webGLObject, THREE.NormalBlending );
-
- }
-
- // transparent pass
-
- for ( o = 0, ol = scene.__webGLObjects.length; o < ol; o++ ) {
-
- webGLObject = scene.__webGLObjects[ o ];
-
- this.setupMatrices( webGLObject.__object, camera );
- this.renderPass( webGLObject.__object, webGLObject, THREE.AdditiveBlending );
- this.renderPass( webGLObject.__object, webGLObject, THREE.SubtractiveBlending );
-
- }
-
- };
-
- this.initWebGLObjects = function( scene ) {
-
- var o, ol, object, mf, materialFaceGroup;
-
- if ( !scene.__webGLObjects ) {
-
- scene.__webGLObjects = [];
-
- }
-
- for ( o = 0, ol = scene.objects.length; o < ol; o++ ) {
- object = scene.objects[ o ];
- if ( object instanceof THREE.Mesh ) {
- // create separate VBOs per material
-
- for ( mf in object.materialFaceGroup ) {
- materialFaceGroup = object.materialFaceGroup[ mf ];
- // initialise buffers on the first access
-
- if( ! materialFaceGroup.__webGLVertexBuffer ) {
- this.createBuffers( object, mf );
- materialFaceGroup.__object = object;
- scene.__webGLObjects.push( materialFaceGroup );
- }
-
- }
- } else if ( object instanceof THREE.Line ) {
-
- } else if ( object instanceof THREE.Particle ) {
-
- }
-
- }
-
- };
-
-
- this.setupMatrices = function ( object, camera ) {
- object.autoUpdateMatrix && object.updateMatrix();
- _modelViewMatrix.multiply( camera.matrix, object.matrix );
- _program.viewMatrixArray = new Float32Array( camera.matrix.flatten() );
- _program.modelViewMatrixArray = new Float32Array( _modelViewMatrix.flatten() );
- _program.projectionMatrixArray = new Float32Array( camera.projectionMatrix.flatten() );
- _normalMatrix = THREE.Matrix4.makeInvert3x3( _modelViewMatrix ).transpose();
- _program.normalMatrixArray = new Float32Array( _normalMatrix.m );
- _gl.uniformMatrix4fv( _program.viewMatrix, false, _program.viewMatrixArray );
- _gl.uniformMatrix4fv( _program.modelViewMatrix, false, _program.modelViewMatrixArray );
- _gl.uniformMatrix4fv( _program.projectionMatrix, false, _program.projectionMatrixArray );
- _gl.uniformMatrix3fv( _program.normalMatrix, false, _program.normalMatrixArray );
- _gl.uniformMatrix4fv( _program.objMatrix, false, new Float32Array( object.matrix.flatten() ) );
- };
-
- this.setBlending = function( blending ) {
-
- switch ( blending ) {
- case THREE.AdditiveBlending:
- _gl.blendEquation( _gl.FUNC_ADD );
- _gl.blendFunc( _gl.ONE, _gl.ONE );
-
- break;
- case THREE.SubtractiveBlending:
- //_gl.blendEquation( _gl.FUNC_SUBTRACT );
- _gl.blendFunc( _gl.DST_COLOR, _gl.ZERO );
-
- break;
-
- default:
-
- _gl.blendEquation( _gl.FUNC_ADD );
- _gl.blendFunc( _gl.ONE, _gl.ONE_MINUS_SRC_ALPHA );
-
- break;
- }
-
- };
-
- this.setFaceCulling = function( cullFace, frontFace ) {
-
- if ( cullFace ) {
-
- if ( !frontFace || frontFace == "ccw" ) {
-
- _gl.frontFace( _gl.CCW );
-
- } else {
-
- _gl.frontFace( _gl.CW );
- }
-
- if( cullFace == "back" ) {
-
- _gl.cullFace( _gl.BACK );
-
- } else if( cullFace == "front" ) {
-
- _gl.cullFace( _gl.FRONT );
-
- } else {
-
- _gl.cullFace( _gl.FRONT_AND_BACK );
- }
-
- _gl.enable( _gl.CULL_FACE );
-
- } else {
-
- _gl.disable( _gl.CULL_FACE );
- }
- };
- function initGL() {
- try {
- _gl = _canvas.getContext( 'experimental-webgl', { antialias: true} );
- } catch(e) { }
- if (!_gl) {
- alert("WebGL not supported");
- throw "cannot create webgl context";
- }
- _gl.clearColor( 0, 0, 0, 1 );
- _gl.clearDepth( 1 );
- _gl.enable( _gl.DEPTH_TEST );
- _gl.depthFunc( _gl.LEQUAL );
- _gl.frontFace( _gl.CCW );
- _gl.cullFace( _gl.BACK );
- _gl.enable( _gl.CULL_FACE );
-
- _gl.enable( _gl.BLEND );
- //_gl.blendFunc( _gl.SRC_ALPHA, _gl.ONE_MINUS_SRC_ALPHA );
- //_gl.blendFunc( _gl.SRC_ALPHA, _gl.ONE ); // cool!
- _gl.blendFunc( _gl.ONE, _gl.ONE_MINUS_SRC_ALPHA );
- _gl.clearColor( 0, 0, 0, 0 );
- };
- function generateFragmentShader( maxDirLights, maxPointLights ) {
-
- var chunks = [
- "#ifdef GL_ES",
- "precision highp float;",
- "#endif",
-
- maxDirLights ? "#define MAX_DIR_LIGHTS " + maxDirLights : "",
- maxPointLights ? "#define MAX_POINT_LIGHTS " + maxPointLights : "",
-
- "uniform int material;", // 0 - Basic, 1 - Lambert, 2 - Phong, 3 - Depth, 4 - Normal
- "uniform bool enableMap;",
- "uniform bool enableCubeMap;",
-
- "uniform samplerCube tCube;",
- "uniform float mReflectivity;",
- "uniform sampler2D tMap;",
- "uniform vec4 mColor;",
- "uniform float mOpacity;",
- "uniform vec4 mAmbient;",
- "uniform vec4 mSpecular;",
- "uniform float mShininess;",
- "uniform float m2Near;",
- "uniform float mFarPlusNear;",
- "uniform float mFarMinusNear;",
-
- "uniform int pointLightNumber;",
- "uniform int directionalLightNumber;",
-
- maxDirLights ? "uniform mat4 viewMatrix;" : "",
- maxDirLights ? "uniform vec3 directionalLightDirection[ MAX_DIR_LIGHTS ];" : "",
-
- "varying vec3 vNormal;",
- "varying vec2 vUv;",
-
- "varying vec3 vLightWeighting;",
- maxPointLights ? "varying vec3 vPointLightVector[ MAX_POINT_LIGHTS ];" : "",
-
- "varying vec3 vViewPosition;",
-
- "varying vec3 vReflect;",
-
- "void main() {",
- "vec4 mapColor = vec4( 1.0, 1.0, 1.0, 1.0 );",
- "vec4 cubeColor = vec4( 1.0, 1.0, 1.0, 1.0 );",
- // diffuse map
-
- "if ( enableMap ) {",
-
- "mapColor = texture2D( tMap, vUv );",
-
- "}",
- // cube map
-
- "if ( enableCubeMap ) {",
-
- "cubeColor = mReflectivity * textureCube( tCube, vReflect );",
-
- "}",
- // Normals
-
- "if ( material == 4 ) { ",
-
- "gl_FragColor = vec4( 0.5*normalize( vNormal ) + vec3(0.5, 0.5, 0.5), mOpacity );",
-
- // Depth
-
- "} else if ( material == 3 ) { ",
-
- // this breaks shader validation in Chrome 9.0.576.0 dev
- // and also latest continuous build Chromium 9.0.583.0 (66089)
- // (curiously it works in Chrome 9.0.576.0 canary build and Firefox 4b7)
- //"float w = 1.0 - ( m2Near / ( mFarPlusNear - gl_FragCoord.z * mFarMinusNear ) );",
- "float w = 0.5;",
-
- "gl_FragColor = vec4( w, w, w, mOpacity );",
-
- // Blinn-Phong
- // based on o3d example
-
- "} else if ( material == 2 ) { ",
- "vec3 normal = normalize( vNormal );",
- "vec3 viewPosition = normalize( vViewPosition );",
- // point lights
-
- maxPointLights ? "vec4 pointDiffuse = vec4( 0.0, 0.0, 0.0, 0.0 );" : "",
- maxPointLights ? "vec4 pointSpecular = vec4( 0.0, 0.0, 0.0, 0.0 );" : "",
- maxPointLights ? "for( int i = 0; i < pointLightNumber; i++ ) {" : "",
-
- maxPointLights ? "vec3 pointVector = normalize( vPointLightVector[ i ] );" : "",
- maxPointLights ? "vec3 pointHalfVector = normalize( vPointLightVector[ i ] + vViewPosition );" : "",
-
- maxPointLights ? "float pointDotNormalHalf = dot( normal, pointHalfVector );" : "",
- maxPointLights ? "float pointDiffuseWeight = max( dot( normal, pointVector ), 0.0 );" : "",
- // Ternary conditional is from the original o3d shader. Here it produces abrupt dark cutoff artefacts.
- // Using just pow works ok in Chrome, but makes different artefact in Firefox 4.
- // Zeroing on negative pointDotNormalHalf seems to work in both.
-
- //"float specularCompPoint = dot( normal, pointVector ) < 0.0 || pointDotNormalHalf < 0.0 ? 0.0 : pow( pointDotNormalHalf, mShininess );",
- //"float specularCompPoint = pow( pointDotNormalHalf, mShininess );",
- //"float pointSpecularWeight = pointDotNormalHalf < 0.0 ? 0.0 : pow( pointDotNormalHalf, mShininess );",
- // Ternary conditional inside for loop breaks Chrome shader linking.
- // Must do it with if.
- maxPointLights ? "float pointSpecularWeight = 0.0;" : "",
- maxPointLights ? "if ( pointDotNormalHalf >= 0.0 )" : "",
- maxPointLights ? "pointSpecularWeight = pow( pointDotNormalHalf, mShininess );" : "",
-
- maxPointLights ? "pointDiffuse += mColor * pointDiffuseWeight;" : "",
- maxPointLights ? "pointSpecular += mSpecular * pointSpecularWeight;" : "",
-
- maxPointLights ? "}" : "",
- // directional lights
- maxDirLights ? "vec4 dirDiffuse = vec4( 0.0, 0.0, 0.0, 0.0 );" : "",
- maxDirLights ? "vec4 dirSpecular = vec4( 0.0, 0.0, 0.0, 0.0 );" : "",
-
- maxDirLights ? "for( int i = 0; i < directionalLightNumber; i++ ) {" : "",
- maxDirLights ? "vec4 lDirection = viewMatrix * vec4( directionalLightDirection[ i ], 0.0 );" : "",
- maxDirLights ? "vec3 dirVector = normalize( lDirection.xyz );" : "",
- maxDirLights ? "vec3 dirHalfVector = normalize( lDirection.xyz + vViewPosition );" : "",
-
- maxDirLights ? "float dirDotNormalHalf = dot( normal, dirHalfVector );" : "",
- maxDirLights ? "float dirDiffuseWeight = max( dot( normal, dirVector ), 0.0 );" : "",
-
- maxDirLights ? "float dirSpecularWeight = 0.0;" : "",
- maxDirLights ? "if ( dirDotNormalHalf >= 0.0 )" : "",
- maxDirLights ? "dirSpecularWeight = pow( dirDotNormalHalf, mShininess );" : "",
- maxDirLights ? "dirDiffuse += mColor * dirDiffuseWeight;" : "",
- maxDirLights ? "dirSpecular += mSpecular * dirSpecularWeight;" : "",
- maxDirLights ? "}" : "",
- // all lights contribution summation
-
- "vec4 totalLight = mAmbient;",
- maxDirLights ? "totalLight += dirDiffuse + dirSpecular;" : "",
- maxPointLights ? "totalLight += pointDiffuse + pointSpecular;" : "",
- // looks nicer with weighting
-
- "gl_FragColor = vec4( mapColor.rgb * cubeColor.rgb * totalLight.xyz * vLightWeighting, mapColor.a );",
- // Lambert: diffuse lighting
-
- "} else if ( material == 1 ) {",
- "gl_FragColor = vec4( mColor.rgb * mapColor.rgb * cubeColor.rgb * vLightWeighting, mColor.a * mapColor.a );",
- // Basic: unlit color / texture
-
- "} else {",
- "gl_FragColor = mColor * mapColor * cubeColor;",
-
- "}",
- "}" ];
-
- return chunks.join("\n");
-
- };
-
- function generateVertexShader( maxDirLights, maxPointLights ) {
-
- var chunks = [
-
- maxDirLights ? "#define MAX_DIR_LIGHTS " + maxDirLights : "",
- maxPointLights ? "#define MAX_POINT_LIGHTS " + maxPointLights : "",
-
- "attribute vec3 position;",
- "attribute vec3 normal;",
- "attribute vec2 uv;",
- "uniform vec3 cameraPosition;",
- "uniform bool enableLighting;",
-
- "uniform int pointLightNumber;",
- "uniform int directionalLightNumber;",
-
- "uniform vec3 ambientLightColor;",
-
- maxDirLights ? "uniform vec3 directionalLightColor[ MAX_DIR_LIGHTS ];" : "",
- maxDirLights ? "uniform vec3 directionalLightDirection[ MAX_DIR_LIGHTS ];" : "",
- maxPointLights ? "uniform vec3 pointLightColor[ MAX_POINT_LIGHTS ];" : "",
- maxPointLights ? "uniform vec3 pointLightPosition[ MAX_POINT_LIGHTS ];" : "",
- "uniform mat4 objMatrix;",
- "uniform mat4 viewMatrix;",
- "uniform mat4 modelViewMatrix;",
- "uniform mat4 projectionMatrix;",
- "uniform mat3 normalMatrix;",
- "varying vec3 vNormal;",
- "varying vec2 vUv;",
-
- "varying vec3 vLightWeighting;",
- maxPointLights ? "varying vec3 vPointLightVector[ MAX_POINT_LIGHTS ];" : "",
-
- "varying vec3 vViewPosition;",
-
- "varying vec3 vReflect;",
- "void main(void) {",
- // world space
-
- "vec4 mPosition = objMatrix * vec4( position, 1.0 );",
- "vViewPosition = cameraPosition - mPosition.xyz;",
-
- "vec3 nWorld = mat3(objMatrix) * normal;",
-
- // eye space
-
- "vec4 mvPosition = modelViewMatrix * vec4( position, 1.0 );",
- "vec3 transformedNormal = normalize( normalMatrix * normal );",
- "if ( !enableLighting ) {",
- "vLightWeighting = vec3( 1.0, 1.0, 1.0 );",
- "} else {",
- "vLightWeighting = ambientLightColor;",
-
- // directional lights
-
- maxDirLights ? "for( int i = 0; i < directionalLightNumber; i++ ) {" : "",
- maxDirLights ? "vec4 lDirection = viewMatrix * vec4( directionalLightDirection[ i ], 0.0 );" : "",
- maxDirLights ? "float directionalLightWeighting = max( dot( transformedNormal, normalize(lDirection.xyz ) ), 0.0 );" : "",
- maxDirLights ? "vLightWeighting += directionalLightColor[ i ] * directionalLightWeighting;" : "",
- maxDirLights ? "}" : "",
-
- // point lights
-
- maxPointLights ? "for( int i = 0; i < pointLightNumber; i++ ) {" : "",
- maxPointLights ? "vec4 lPosition = viewMatrix * vec4( pointLightPosition[ i ], 1.0 );" : "",
- maxPointLights ? "vPointLightVector[ i ] = normalize( lPosition.xyz - mvPosition.xyz );" : "",
- maxPointLights ? "float pointLightWeighting = max( dot( transformedNormal, vPointLightVector[ i ] ), 0.0 );" : "",
- maxPointLights ? "vLightWeighting += pointLightColor[ i ] * pointLightWeighting;" : "",
- maxPointLights ? "}" : "",
-
- "}",
- "vNormal = transformedNormal;",
- "vUv = uv;",
- "vReflect = reflect( normalize(mPosition.xyz - cameraPosition), normalize(nWorld.xyz) );",
- "gl_Position = projectionMatrix * mvPosition;",
- "}" ];
-
- return chunks.join("\n");
-
- };
-
- function initProgram( maxDirLights, maxPointLights ) {
- _program = _gl.createProgram();
-
- //log ( generateVertexShader( maxDirLights, maxPointLights ) );
- //log ( generateFragmentShader( maxDirLights, maxPointLights ) );
-
- _gl.attachShader( _program, getShader( "fragment", generateFragmentShader( maxDirLights, maxPointLights ) ) );
- _gl.attachShader( _program, getShader( "vertex", generateVertexShader( maxDirLights, maxPointLights ) ) );
- _gl.linkProgram( _program );
- if ( !_gl.getProgramParameter( _program, _gl.LINK_STATUS ) ) {
- alert( "Could not initialise shaders" );
- //alert( "VALIDATE_STATUS: " + _gl.getProgramParameter( _program, _gl.VALIDATE_STATUS ) );
- //alert( _gl.getError() );
- }
-
- _gl.useProgram( _program );
- // matrices
-
- _program.viewMatrix = _gl.getUniformLocation( _program, "viewMatrix" );
- _program.modelViewMatrix = _gl.getUniformLocation( _program, "modelViewMatrix" );
- _program.projectionMatrix = _gl.getUniformLocation( _program, "projectionMatrix" );
- _program.normalMatrix = _gl.getUniformLocation( _program, "normalMatrix" );
- _program.objMatrix = _gl.getUniformLocation( _program, "objMatrix" );
- _program.cameraPosition = _gl.getUniformLocation( _program, 'cameraPosition' );
- // lights
-
- _program.enableLighting = _gl.getUniformLocation( _program, 'enableLighting' );
-
- _program.ambientLightColor = _gl.getUniformLocation( _program, 'ambientLightColor' );
-
- if ( maxDirLights ) {
-
- _program.directionalLightNumber = _gl.getUniformLocation( _program, 'directionalLightNumber' );
- _program.directionalLightColor = _gl.getUniformLocation( _program, 'directionalLightColor' );
- _program.directionalLightDirection = _gl.getUniformLocation( _program, 'directionalLightDirection' );
-
- }
- if ( maxPointLights ) {
-
- _program.pointLightNumber = _gl.getUniformLocation( _program, 'pointLightNumber' );
- _program.pointLightColor = _gl.getUniformLocation( _program, 'pointLightColor' );
- _program.pointLightPosition = _gl.getUniformLocation( _program, 'pointLightPosition' );
-
- }
- // material
-
- _program.material = _gl.getUniformLocation( _program, 'material' );
-
- // material properties (Basic / Lambert / Blinn-Phong shader)
-
- _program.mColor = _gl.getUniformLocation( _program, 'mColor' );
- _program.mOpacity = _gl.getUniformLocation( _program, 'mOpacity' );
- _program.mReflectivity = _gl.getUniformLocation( _program, 'mReflectivity' );
- // material properties (Blinn-Phong shader)
-
- _program.mAmbient = _gl.getUniformLocation( _program, 'mAmbient' );
- _program.mSpecular = _gl.getUniformLocation( _program, 'mSpecular' );
- _program.mShininess = _gl.getUniformLocation( _program, 'mShininess' );
- // texture (diffuse map)
-
- _program.enableMap = _gl.getUniformLocation( _program, "enableMap" );
- _gl.uniform1i( _program.enableMap, 0 );
-
- _program.tMap = _gl.getUniformLocation( _program, "tMap" );
- _gl.uniform1i( _program.tMap, 0 );
- // cube texture
-
- _program.enableCubeMap = _gl.getUniformLocation( _program, "enableCubeMap" );
- _gl.uniform1i( _program.enableCubeMap, 0 );
-
- _program.tCube = _gl.getUniformLocation( _program, "tCube" );
- _gl.uniform1i( _program.tCube, 1 ); // it's important to use non-zero texture unit, otherwise it doesn't work
- // material properties (Depth)
-
- _program.m2Near = _gl.getUniformLocation( _program, 'm2Near' );
- _program.mFarPlusNear = _gl.getUniformLocation( _program, 'mFarPlusNear' );
- _program.mFarMinusNear = _gl.getUniformLocation( _program, 'mFarMinusNear' );
-
- // vertex arrays
-
- _program.position = _gl.getAttribLocation( _program, "position" );
- _gl.enableVertexAttribArray( _program.position );
- _program.normal = _gl.getAttribLocation( _program, "normal" );
- _gl.enableVertexAttribArray( _program.normal );
- _program.uv = _gl.getAttribLocation( _program, "uv" );
- _gl.enableVertexAttribArray( _program.uv );
- _program.viewMatrixArray = new Float32Array(16);
- _program.modelViewMatrixArray = new Float32Array(16);
- _program.projectionMatrixArray = new Float32Array(16);
- };
- function getShader( type, string ) {
- var shader;
- if ( type == "fragment" ) {
- shader = _gl.createShader( _gl.FRAGMENT_SHADER );
- } else if ( type == "vertex" ) {
- shader = _gl.createShader( _gl.VERTEX_SHADER );
- }
- _gl.shaderSource( shader, string );
- _gl.compileShader( shader );
- if ( !_gl.getShaderParameter( shader, _gl.COMPILE_STATUS ) ) {
- alert( _gl.getShaderInfoLog( shader ) );
- return null;
- }
- return shader;
-
- };
- /* DEBUG
- function getGLParams() {
-
- var params = {
-
- 'MAX_VARYING_VECTORS': _gl.getParameter( _gl.MAX_VARYING_VECTORS ),
- 'MAX_VERTEX_ATTRIBS': _gl.getParameter( _gl.MAX_VERTEX_ATTRIBS ),
-
- 'MAX_TEXTURE_IMAGE_UNITS': _gl.getParameter( _gl.MAX_TEXTURE_IMAGE_UNITS ),
- 'MAX_VERTEX_TEXTURE_IMAGE_UNITS': _gl.getParameter( _gl.MAX_VERTEX_TEXTURE_IMAGE_UNITS ),
- 'MAX_COMBINED_TEXTURE_IMAGE_UNITS' : _gl.getParameter( _gl.MAX_COMBINED_TEXTURE_IMAGE_UNITS ),
-
- 'MAX_VERTEX_UNIFORM_VECTORS': _gl.getParameter( _gl.MAX_VERTEX_UNIFORM_VECTORS ),
- 'MAX_FRAGMENT_UNIFORM_VECTORS': _gl.getParameter( _gl.MAX_FRAGMENT_UNIFORM_VECTORS )
- }
-
- return params;
- };
-
- function dumpObject( obj ) {
-
- var p, str = "";
- for ( p in obj ) {
-
- str += p + ": " + obj[p] + "\n";
-
- }
-
- return str;
- }
- */
- };
|