r3-legacy/src/game-lib-d3-texture.js

302 lines
8.4 KiB
JavaScript
Raw Normal View History

2016-10-14 12:32:53 +02:00
/**
2016-11-17 18:31:41 +01:00
* Texture Superset - The apiTexture properties get moved into the Texture object itself, and then the instance is
* created
* @param apiTexture
* @param graphics GameLib.D3.Graphics
2017-01-20 13:40:27 +01:00
* @param imageFactory GameLib.D3.ImageFactory
2016-11-17 18:31:41 +01:00
* @constructor
*/
GameLib.D3.Texture = function(
2016-11-17 18:31:41 +01:00
graphics,
2017-01-05 19:34:28 +01:00
apiTexture,
2016-11-21 16:08:39 +01:00
imageFactory
2016-11-17 18:31:41 +01:00
) {
2016-12-02 16:03:03 +01:00
this.graphics = graphics;
this.graphics.isNotThreeThrow();
if (GameLib.Utils.UndefinedOrNull(apiTexture)) {
apiTexture = {};
}
if (apiTexture instanceof GameLib.D3.Texture) {
return apiTexture;
}
if (GameLib.Utils.UndefinedOrNull(imageFactory)) {
2017-01-20 13:40:27 +01:00
console.warn('Cannot create a Texture without specifying an ImageFactory');
imageFactory = null;
}
2017-01-20 13:40:27 +01:00
this.imageFactory = imageFactory;
2017-01-06 16:53:53 +01:00
GameLib.D3.API.Texture.call(
2017-01-05 19:34:28 +01:00
this,
apiTexture.id,
apiTexture.typeId,
apiTexture.name,
apiTexture.imagePath,
apiTexture.wrapS,
apiTexture.wrapT,
apiTexture.repeat,
apiTexture.data,
apiTexture.format,
apiTexture.mapping,
apiTexture.magFilter,
apiTexture.minFilter,
apiTexture.textureType,
apiTexture.anisotropy,
apiTexture.offset,
apiTexture.generateMipmaps,
apiTexture.flipY,
apiTexture.mipmaps,
apiTexture.unpackAlignment,
apiTexture.premultiplyAlpha,
2017-01-19 17:50:11 +01:00
apiTexture.encoding,
apiTexture.parentEntity
2017-01-05 19:34:28 +01:00
);
2016-12-02 16:03:03 +01:00
2016-12-15 14:53:39 +01:00
this.offset = new GameLib.Vector2(
2016-12-02 13:00:56 +01:00
graphics,
this.offset,
this
2016-12-02 13:00:56 +01:00
);
2016-12-15 14:53:39 +01:00
this.repeat = new GameLib.Vector2(
2016-12-02 13:00:56 +01:00
graphics,
this.repeat,
this
2016-12-02 13:00:56 +01:00
);
2016-11-17 18:31:41 +01:00
this.imageInstance = null;
this.instance = null;
2017-01-20 13:40:27 +01:00
this.loadTexture();
2016-11-21 16:08:39 +01:00
};
2017-01-05 19:34:28 +01:00
GameLib.D3.Texture.prototype = Object.create(GameLib.D3.API.Texture.prototype);
GameLib.D3.Texture.prototype.constructor = GameLib.D3.Texture;
/**
* Loads a texture from the image factory, it could already have downloaded, and then it updates the instance
*/
2017-01-20 13:40:27 +01:00
GameLib.D3.Texture.prototype.loadTexture = function() {
2016-11-21 16:08:39 +01:00
2017-02-01 16:09:34 +01:00
this.imageData = this.imageFactory.loadImage(this.imagePath);
2016-11-21 16:08:39 +01:00
2016-11-17 18:31:41 +01:00
this.imageData.then(
function (imageInstance){
this.imageInstance = imageInstance;
this.instance = this.createInstance();
2017-02-07 18:30:15 +01:00
// this.parentObjects.map(
// function(parentObject){
// if (parentObject instanceof GameLib.D3.Material && parentObject.updateInstance) {
// parentObject.updateInstance();
// }
// }
// )
2016-11-17 18:31:41 +01:00
}.bind(this),
2017-02-01 16:09:34 +01:00
function onRejected(message) {
console.warn(message);
2016-11-17 18:31:41 +01:00
}
);
};
2016-10-14 12:32:53 +02:00
/**
* Texture Formats
* @type {number}
*/
GameLib.D3.Texture.TYPE_ALPHA_FORMAT = 1019;
GameLib.D3.Texture.TYPE_RGB_FORMAT = 1020;
GameLib.D3.Texture.TYPE_RGBA_FORMAT = 1021;
GameLib.D3.Texture.TYPE_LUMINANCE_FORMAT = 1022;
GameLib.D3.Texture.TYPE_LUMINANCE_ALPHA_FORMAT = 1023;
GameLib.D3.Texture.TYPE_DEPTH_FORMAT = 1026;
/**
* Mapping modes
* @type {number}
*/
GameLib.D3.Texture.TYPE_UV_MAPPING = 300;
GameLib.D3.Texture.TYPE_CUBE_REFLECTION_MAPPING = 301;
GameLib.D3.Texture.TYPE_CUBE_REFRACTION_MAPPING = 302;
GameLib.D3.Texture.TYPE_EQUI_RECTANGULAR_REFLECTION_MAPPING = 303;
GameLib.D3.Texture.TYPE_EQUI_RECTANGULAR_REFRACTION_MAPPING = 304;
GameLib.D3.Texture.TYPE_SPHERICAL_REFLECTION_MAPPING = 305;
GameLib.D3.Texture.TYPE_CUBE_UV_REFLECTION_MAPPING = 306;
GameLib.D3.Texture.TYPE_CUBE_UV_REFRACTION_MAPPING = 307;
/**
* Wrapping Modes
* @type {number}
*/
GameLib.D3.Texture.TYPE_REPEAT_WRAPPING = 1000;
GameLib.D3.Texture.TYPE_CLAMP_TO_EDGE_WRAPPING = 1001;
GameLib.D3.Texture.TYPE_MIRRORED_REPEAT_WRAPPING = 1002;
/**
* Mipmap Filters
* @type {number}
*/
GameLib.D3.Texture.TYPE_NEAREST_FILTER = 1003;
GameLib.D3.Texture.TYPE_NEAREST_MIPMAP_NEAREST_FILTER = 1004;
GameLib.D3.Texture.TYPE_NEAREST_MIPMAP_LINEAR_FILTER = 1005;
GameLib.D3.Texture.TYPE_LINEAR_FILTER = 1006;
GameLib.D3.Texture.TYPE_LINEAR_MIPMAP_NEAREST_FILTER = 1007;
GameLib.D3.Texture.TYPE_LINEAR_MIPMAP_LINEAR_FILTER = 1008;
/**
* Texture Data Types
* @type {number}
*/
GameLib.D3.Texture.TYPE_UNSIGNED_BYTE = 1009;
GameLib.D3.Texture.TYPE_BYTE = 1010;
GameLib.D3.Texture.TYPE_SHORT = 1011;
GameLib.D3.Texture.TYPE_UNSIGNED_SHORT = 1012;
GameLib.D3.Texture.TYPE_INT = 1013;
GameLib.D3.Texture.TYPE_UNSIGNED_INT = 1014;
GameLib.D3.Texture.TYPE_FLOAT = 1015;
GameLib.D3.Texture.TYPE_HALF_FLOAT = 1025;
/**
* Encoding Modes
* @type {number}
*/
GameLib.D3.Texture.TYPE_LINEAR_ENCODING = 3000; // NO ENCODING AT ALL.
GameLib.D3.Texture.TYPE_SRGB_ENCODING = 3001;
GameLib.D3.Texture.TYPE_GAMMA_ENCODING = 3007; // USES GAMMA_FACTOR, FOR BACKWARDS COMPATIBILITY WITH WEBGLRENDERER.GAMMAINPUT/GAMMAOUTPUT
GameLib.D3.Texture.TYPE_RGBE_ENCODING = 3002; // AKA RADIANCE.
GameLib.D3.Texture.TYPE_LOG_LUV_ENCODING = 3003;
GameLib.D3.Texture.TYPE_RGBM7_ENCODING = 3004;
GameLib.D3.Texture.TYPE_RGBM16_ENCODING = 3005;
GameLib.D3.Texture.TYPE_RGBD_ENCODING = 3006; // MAXRANGE IS 256.
GameLib.D3.Texture.TEXTURE_TYPE_ALPHA = 'alpha';
GameLib.D3.Texture.TEXTURE_TYPE_AO = 'ao';
GameLib.D3.Texture.TEXTURE_TYPE_BUMP = 'bump';
GameLib.D3.Texture.TEXTURE_TYPE_DIFFUSE = 'diffuse';
GameLib.D3.Texture.TEXTURE_TYPE_DISPLACEMENT = 'displacement';
GameLib.D3.Texture.TEXTURE_TYPE_EMISSIVE = 'emissive';
GameLib.D3.Texture.TEXTURE_TYPE_ENVIRONMENT = 'environment';
GameLib.D3.Texture.TEXTURE_TYPE_LIGHT = 'light';
GameLib.D3.Texture.TEXTURE_TYPE_METALNESS = 'metalness';
GameLib.D3.Texture.TEXTURE_TYPE_NORMAL = 'normal';
GameLib.D3.Texture.TEXTURE_TYPE_ROUGHNESS = 'roughness';
GameLib.D3.Texture.TEXTURE_TYPE_SPECULAR = 'specular';
2016-10-14 12:32:53 +02:00
/**
2016-11-17 18:31:41 +01:00
* Creates an instance of our texture object
2017-02-01 16:09:34 +01:00
* @param update
* @returns {*}
2016-10-14 12:32:53 +02:00
*/
2016-11-18 16:00:13 +01:00
GameLib.D3.Texture.prototype.createInstance = function(update) {
2017-01-10 17:04:30 +01:00
var instance = null;
2017-01-06 16:53:53 +01:00
2017-01-10 17:04:30 +01:00
if (update) {
instance = this.instance;
instance.mapping = this.mapping;
instance.wrapS = this.wrapS;
instance.wrapT = this.wrapT;
instance.magFilter = this.magFilter;
instance.minFilter = this.minFilter;
instance.anisotropy = this.anisotropy;
} else {
instance = new THREE.Texture(
this.imageInstance,
this.mapping,
this.wrapS,
this.wrapT,
this.magFilter,
this.minFilter,
undefined, //format and textureType is different on different archs
undefined,
this.anisotropy
);
}
2016-11-17 18:31:41 +01:00
instance.name = this.name;
2017-05-22 15:42:05 +02:00
// instance.flipY = this.flipY;
// instance.encoding = this.encoding;
// instance.offset.x = this.offset.x;
// instance.offset.y = this.offset.y;
// instance.repeat.x = this.repeat.x;
// instance.repeat.y = this.repeat.y;
// instance.mipmaps = this.mipmaps;
// instance.unpackAlignment = this.unpackAlignment;
// instance.premultiplyAlpha = this.premultiplyAlpha;
// instance.textureType = this.textureType;
instance.needsUpdate = true;
2017-01-06 16:53:53 +01:00
2016-11-17 18:31:41 +01:00
return instance;
};
2016-11-18 16:00:13 +01:00
/**
* Updates the instance with the current state
*/
GameLib.D3.Texture.prototype.updateInstance = function() {
this.instance = this.createInstance(true);
};
2016-11-21 16:08:39 +01:00
2016-12-09 20:32:09 +01:00
/**
* Clones this texture object
* @returns {*}
*/
2016-11-21 16:08:39 +01:00
GameLib.D3.Texture.prototype.clone = function() {
return _.cloneDeep(this);
2016-12-09 20:32:09 +01:00
};
/**
* Converts a GameLib.D3.Texture to a GameLib.D3.API.Texture
* @returns {GameLib.D3.API.Texture}
*/
2017-05-16 14:51:57 +02:00
GameLib.D3.Texture.prototype.toApiObject = function() {
2016-12-09 20:32:09 +01:00
return new GameLib.D3.API.Texture(
this.id,
this.typeId,
this.name,
this.imagePath,
this.wrapS,
this.wrapT,
2017-05-16 14:51:57 +02:00
this.repeat.toApiObject(),
2016-12-09 20:32:09 +01:00
this.data,
this.format,
this.mapping,
this.magFilter,
this.minFilter,
this.textureType,
this.anisotropy,
2017-05-16 14:51:57 +02:00
this.offset.toApiObject(),
2016-12-09 20:32:09 +01:00
this.generateMipmaps,
this.flipY,
this.mipmaps,
this.unpackAlignment,
this.premultiplyAlpha,
2017-01-19 17:50:11 +01:00
this.encoding,
this.parentEntity
2016-12-09 20:32:09 +01:00
)
};
/**
* Converts from an Object texture to a GameLib.D3.Texture
* @param graphics GameLib.D3.Graphics
* @param objectTexture Object
* @param imageFactory GameLib.D3.ImageFactory
* @constructor
*/
GameLib.D3.Texture.FromObjectTexture = function(
graphics,
objectTexture,
imageFactory
) {
2017-01-10 17:04:30 +01:00
var apiTexture = GameLib.D3.API.Texture.FromObjectTexture(objectTexture);
2016-12-09 20:32:09 +01:00
return new GameLib.D3.Texture(
graphics,
2017-01-10 17:04:30 +01:00
apiTexture,
2016-12-09 20:32:09 +01:00
imageFactory
);
2017-01-05 19:34:28 +01:00
};