mirror of
https://github.com/logsol/chuck.js.git
synced 2026-05-11 10:37:34 +00:00
189 lines
No EOL
5.9 KiB
JavaScript
189 lines
No EOL
5.9 KiB
JavaScript
define([
|
|
"Game/Client/View/Abstract/Layer",
|
|
"Lib/Vendor/Pixi",
|
|
"Game/Client/View/Pixi/ColorRangeReplaceFilter",
|
|
"Game/Config/Settings",
|
|
],
|
|
|
|
function (Parent, PIXI, ColorRangeReplaceFilter, Settings) {
|
|
|
|
"use strict";
|
|
|
|
var AVAILABLE_MESH_FILTERS = {
|
|
"blur": PIXI.BlurFilter,
|
|
"desaturate": PIXI.GrayFilter,
|
|
"pixelate": PIXI.PixelateFilter,
|
|
"colorRangeReplace": ColorRangeReplaceFilter,
|
|
};
|
|
|
|
function Layer (name, parallaxSpeed) {
|
|
Parent.call(this, name, parallaxSpeed);
|
|
this.container = new PIXI.DisplayObjectContainer();
|
|
this.container.x = 0;
|
|
this.container.y = 0;
|
|
this.static = false;
|
|
}
|
|
|
|
Layer.prototype = Object.create(Parent.prototype);
|
|
|
|
Layer.prototype.getContainer = function() {
|
|
return this.container;
|
|
};
|
|
|
|
Layer.prototype.show = function() {
|
|
this.container.visible = true;
|
|
};
|
|
|
|
Layer.prototype.hide = function() {
|
|
this.container.visible = false;
|
|
};
|
|
|
|
Layer.prototype.addMesh = function(mesh) {
|
|
this.container.addChild(mesh);
|
|
};
|
|
|
|
Layer.prototype.removeMesh = function(mesh) {
|
|
this.container.removeChild(mesh);
|
|
};
|
|
|
|
Layer.prototype.createMesh = function (texturePath, callback, options) {
|
|
|
|
var texture = (options && options.fromFrame)
|
|
? PIXI.Texture.fromFrame(texturePath)
|
|
: PIXI.Texture.fromImage(texturePath);
|
|
|
|
|
|
var mesh = new PIXI.Sprite(texture);
|
|
|
|
if(options) this.updateMesh(mesh, options);
|
|
|
|
callback(mesh);
|
|
};
|
|
|
|
Layer.prototype.createAnimatedMesh = function (texturePaths, callback, options) {
|
|
var textures = [];
|
|
for (var i = 0; i < texturePaths.length; i++) {
|
|
|
|
var texture = (options && options.fromFrame)
|
|
? PIXI.Texture.fromFrame(texturePaths[i])
|
|
: PIXI.Texture.fromImage(texturePaths[i]);
|
|
|
|
texture.width = options.width;
|
|
texture.height = options.height;
|
|
//PIXI.texturesToUpdate.push(texture);
|
|
textures.push(texture);
|
|
}
|
|
|
|
var mesh = new PIXI.MovieClip(textures);
|
|
if(options) this.updateMesh(mesh, options);
|
|
|
|
mesh.animationSpeed = 0.5;
|
|
|
|
mesh.play();
|
|
|
|
callback(mesh);
|
|
}
|
|
|
|
Layer.prototype.updateMesh = function(mesh, options) {
|
|
if (options.x) mesh.position.x = options.x;
|
|
if (options.y) mesh.position.y = options.y;
|
|
if (options.rotation) mesh.rotation = options.rotation;
|
|
if (options.alpha) mesh.alpha = options.alpha;
|
|
if (options.width) mesh.width = options.width;
|
|
if (options.height) mesh.height = options.height;
|
|
if (options.xScale) mesh.width = Math.abs(mesh.width) * options.xScale;
|
|
if (options.yScale) mesh.scale.y = options.yScale;
|
|
if (options.visible === true || options.visible === false) mesh.visible = options.visible;
|
|
if (options.pivot) mesh.pivot = new PIXI.Point(options.pivot.x, options.pivot.y);
|
|
if (options.anchor) mesh.anchor = options.anchor;
|
|
};
|
|
|
|
Layer.prototype.addFilter = function(mesh, filterName, options) {
|
|
|
|
if (!AVAILABLE_MESH_FILTERS.hasOwnProperty(filterName)) {
|
|
throw new Exception('Filter ' + filterName + ' is not available');
|
|
}
|
|
|
|
var MeshFilter = AVAILABLE_MESH_FILTERS[filterName];
|
|
var filter = new MeshFilter();
|
|
|
|
switch (filterName) {
|
|
case 'desaturate':
|
|
if (options.amount) filter.gray = options.amount;
|
|
break;
|
|
|
|
case 'blur':
|
|
if (options.blurX) filter.blurX = options.blurX;
|
|
if (options.blurY) filter.blurY = options.blurY;
|
|
break;
|
|
|
|
case 'colorRangeReplace':
|
|
if (options.minColor) filter.minColor = options.minColor;
|
|
if (options.maxColor) filter.maxColor = options.maxColor;
|
|
if (options.newColor) filter.newColor = options.newColor;
|
|
if (options.brightnessOffset) filter.brightnessOffset = options.brightnessOffset;
|
|
break;
|
|
|
|
case 'pixelate':
|
|
if (options.sizeX) filter.size.x = options.sizeX;
|
|
if (options.sizeY) filter.size.y = options.sizeY;
|
|
break;
|
|
|
|
default:
|
|
break;
|
|
}
|
|
|
|
var filters = mesh.filters;
|
|
|
|
if(!filters) {
|
|
filters = [];
|
|
} else {
|
|
// ensure uniqueness of filter by name
|
|
this.removeFilter(mesh, filterName);
|
|
}
|
|
|
|
filters.push(filter);
|
|
mesh.filters = filters;
|
|
};
|
|
|
|
Layer.prototype.removeFilter = function(mesh, filterName) {
|
|
|
|
var filters = mesh.filters;
|
|
|
|
if(!filters) {
|
|
return;
|
|
}
|
|
|
|
var MeshFilter = AVAILABLE_MESH_FILTERS[options.filter];
|
|
|
|
filters = filters.filter(function(filter){
|
|
return !filter instanceof MeshFilter;
|
|
});
|
|
|
|
mesh.filters = filter;
|
|
};
|
|
|
|
Layer.prototype.render = function(centerPosition, zoom) {
|
|
this.setPosition(centerPosition);
|
|
this.setZoom(zoom);
|
|
|
|
// Zoom
|
|
var zoomStep = (this.zoom.target - this.zoom.current) * Settings.CAMERA_GLIDE / 100;
|
|
this.zoom.current += zoomStep;
|
|
this.container.scale.x = this.zoom.current;
|
|
this.container.scale.y = this.container.scale.x;
|
|
|
|
// Position
|
|
if (!this.static) {
|
|
var posXStep = (this.position.target.x - this.position.current.x) * Settings.CAMERA_GLIDE / 100;
|
|
this.position.current.x += posXStep;
|
|
this.container.x = this.position.current.x + (this.position.current.x * this.parallaxSpeed);
|
|
|
|
var posYStep = (this.position.target.y - this.position.current.y) * Settings.CAMERA_GLIDE / 100;
|
|
this.position.current.y += posYStep;
|
|
this.container.y = this.position.current.y + (this.position.current.y * this.parallaxSpeed);
|
|
}
|
|
};
|
|
|
|
return Layer;
|
|
}); |