123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271 |
- /**
- * @author mrdoob / http://mrdoob.com/
- * @author alteredq / http://alteredqualia.com/
- * @author szimek / https://github.com/szimek/
- */
- THREE.Texture = function ( image, mapping, wrapS, wrapT, magFilter, minFilter, format, type, anisotropy ) {
- Object.defineProperty( this, 'id', { value: THREE.TextureIdCount ++ } );
- this.uuid = THREE.Math.generateUUID();
- this.name = '';
- this.sourceFile = '';
- this.image = image !== undefined ? image : THREE.Texture.DEFAULT_IMAGE;
- this.mipmaps = [];
- this.mapping = mapping !== undefined ? mapping : THREE.Texture.DEFAULT_MAPPING;
- this.wrapS = wrapS !== undefined ? wrapS : THREE.ClampToEdgeWrapping;
- this.wrapT = wrapT !== undefined ? wrapT : THREE.ClampToEdgeWrapping;
- this.magFilter = magFilter !== undefined ? magFilter : THREE.LinearFilter;
- this.minFilter = minFilter !== undefined ? minFilter : THREE.LinearMipMapLinearFilter;
- this.anisotropy = anisotropy !== undefined ? anisotropy : 1;
- this.format = format !== undefined ? format : THREE.RGBAFormat;
- this.type = type !== undefined ? type : THREE.UnsignedByteType;
- this.offset = new THREE.Vector2( 0, 0 );
- this.repeat = new THREE.Vector2( 1, 1 );
- this.generateMipmaps = true;
- this.premultiplyAlpha = false;
- this.flipY = true;
- this.unpackAlignment = 4; // valid values: 1, 2, 4, 8 (see http://www.khronos.org/opengles/sdk/docs/man/xhtml/glPixelStorei.xml)
- this.version = 0;
- this.onUpdate = null;
- };
- THREE.Texture.DEFAULT_IMAGE = undefined;
- THREE.Texture.DEFAULT_MAPPING = THREE.UVMapping;
- THREE.Texture.prototype = {
- constructor: THREE.Texture,
- set needsUpdate ( value ) {
- if ( value === true ) this.version ++;
- },
- clone: function () {
- return new this.constructor().copy( this );
- },
- copy: function ( source ) {
- this.image = source.image;
- this.mipmaps = source.mipmaps.slice( 0 );
- this.mapping = source.mapping;
- this.wrapS = source.wrapS;
- this.wrapT = source.wrapT;
- this.magFilter = source.magFilter;
- this.minFilter = source.minFilter;
- this.anisotropy = source.anisotropy;
- this.format = source.format;
- this.type = source.type;
- this.offset.copy( source.offset );
- this.repeat.copy( source.repeat );
- this.generateMipmaps = source.generateMipmaps;
- this.premultiplyAlpha = source.premultiplyAlpha;
- this.flipY = source.flipY;
- this.unpackAlignment = source.unpackAlignment;
- return this;
- },
- toJSON: function ( meta ) {
- if ( meta.textures[ this.uuid ] !== undefined ) {
- return meta.textures[ this.uuid ];
- }
- function getDataURL( image ) {
- var canvas;
- if ( image.toDataURL !== undefined ) {
- canvas = image;
- } else {
- canvas = document.createElement( 'canvas' );
- canvas.width = image.width;
- canvas.height = image.height;
- canvas.getContext( '2d' ).drawImage( image, 0, 0, image.width, image.height );
- }
- if ( canvas.width > 2048 || canvas.height > 2048 ) {
- return canvas.toDataURL( 'image/jpeg', 0.6 );
- } else {
- return canvas.toDataURL( 'image/png' );
- }
- }
- var output = {
- metadata: {
- version: 4.4,
- type: 'Texture',
- generator: 'Texture.toJSON'
- },
- uuid: this.uuid,
- name: this.name,
- mapping: this.mapping,
- repeat: [ this.repeat.x, this.repeat.y ],
- offset: [ this.offset.x, this.offset.y ],
- wrap: [ this.wrapS, this.wrapT ],
- minFilter: this.minFilter,
- magFilter: this.magFilter,
- anisotropy: this.anisotropy
- };
- if ( this.image !== undefined ) {
- // TODO: Move to THREE.Image
- var image = this.image;
- if ( image.uuid === undefined ) {
- image.uuid = THREE.Math.generateUUID(); // UGH
- }
- if ( meta.images[ image.uuid ] === undefined ) {
- meta.images[ image.uuid ] = {
- uuid: image.uuid,
- url: getDataURL( image )
- };
- }
- output.image = image.uuid;
- }
- meta.textures[ this.uuid ] = output;
- return output;
- },
- dispose: function () {
- this.dispatchEvent( { type: 'dispose' } );
- },
- transformUv: function ( uv ) {
- if ( this.mapping !== THREE.UVMapping ) return;
- uv.multiply( this.repeat );
- uv.add( this.offset );
- if ( uv.x < 0 || uv.x > 1 ) {
- switch ( this.wrapS ) {
- case THREE.RepeatWrapping:
- uv.x = uv.x - Math.floor( uv.x );
- break;
- case THREE.ClampToEdgeWrapping:
- uv.x = uv.x < 0 ? 0 : 1;
- break;
- case THREE.MirroredRepeatWrapping:
- if ( Math.abs( Math.floor( uv.x ) % 2 ) === 1 ) {
- uv.x = Math.ceil( uv.x ) - uv.x;
- } else {
- uv.x = uv.x - Math.floor( uv.x );
- }
- break;
- }
- }
- if ( uv.y < 0 || uv.y > 1 ) {
- switch ( this.wrapT ) {
- case THREE.RepeatWrapping:
- uv.y = uv.y - Math.floor( uv.y );
- break;
- case THREE.ClampToEdgeWrapping:
- uv.y = uv.y < 0 ? 0 : 1;
- break;
- case THREE.MirroredRepeatWrapping:
- if ( Math.abs( Math.floor( uv.y ) % 2 ) === 1 ) {
- uv.y = Math.ceil( uv.y ) - uv.y;
- } else {
- uv.y = uv.y - Math.floor( uv.y );
- }
- break;
- }
- }
- if ( this.flipY ) {
- uv.y = 1 - uv.y;
- }
- }
- };
- THREE.EventDispatcher.prototype.apply( THREE.Texture.prototype );
- THREE.TextureIdCount = 0;
|