2012-09-07 02:18:59 +04:00
|
|
|
(function () {
|
2013-08-10 14:11:16 +04:00
|
|
|
var ns = $.namespace("pskl.model");
|
2013-09-29 01:52:51 +04:00
|
|
|
|
2013-09-22 23:02:43 +04:00
|
|
|
ns.Frame = function (width, height) {
|
|
|
|
if (width && height) {
|
|
|
|
this.width = width;
|
|
|
|
this.height = height;
|
|
|
|
|
|
|
|
this.pixels = ns.Frame.createEmptyPixelGrid_(width, height);
|
|
|
|
this.previousStates = [this.getPixels()];
|
|
|
|
this.stateIndex = 0;
|
|
|
|
} else {
|
|
|
|
throw 'Bad arguments in pskl.model.Frame constructor : ' + width + ', ' + height;
|
|
|
|
}
|
2013-08-10 14:11:16 +04:00
|
|
|
};
|
|
|
|
|
2013-09-22 23:02:43 +04:00
|
|
|
ns.Frame.fromPixelGrid = function (pixels) {
|
|
|
|
if (pixels.length && pixels[0].length) {
|
|
|
|
var w = pixels.length, h = pixels[0].length;
|
|
|
|
var frame = new pskl.model.Frame(w, h);
|
|
|
|
frame.setPixels(pixels);
|
|
|
|
return frame;
|
|
|
|
} else {
|
|
|
|
throw 'Bad arguments in pskl.model.Frame.fromPixelGrid : ' + pixels;
|
|
|
|
}
|
2013-08-10 14:11:16 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
ns.Frame.createEmptyPixelGrid_ = function (width, height) {
|
|
|
|
var pixels = []; //new Array(width);
|
|
|
|
for (var columnIndex=0; columnIndex < width; columnIndex++) {
|
|
|
|
var columnArray = [];
|
|
|
|
for(var heightIndex = 0; heightIndex < height; heightIndex++) {
|
|
|
|
columnArray.push(Constants.TRANSPARENT_COLOR);
|
|
|
|
}
|
|
|
|
pixels[columnIndex] = columnArray;
|
|
|
|
}
|
|
|
|
return pixels;
|
|
|
|
};
|
|
|
|
|
|
|
|
ns.Frame.createEmptyFromFrame = function (frame) {
|
2013-09-22 23:02:43 +04:00
|
|
|
return new ns.Frame(frame.getWidth(), frame.getHeight());
|
2013-08-10 14:11:16 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
ns.Frame.prototype.clone = function () {
|
2013-09-22 23:02:43 +04:00
|
|
|
var clone = new ns.Frame(this.width, this.height);
|
|
|
|
clone.setPixels(this.getPixels());
|
|
|
|
return clone;
|
2013-08-10 14:11:16 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Returns a copy of the pixels used by the frame
|
|
|
|
*/
|
|
|
|
ns.Frame.prototype.getPixels = function () {
|
|
|
|
return this.clonePixels_(this.pixels);
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Copies the passed pixels into the frame.
|
|
|
|
*/
|
|
|
|
ns.Frame.prototype.setPixels = function (pixels) {
|
|
|
|
this.pixels = this.clonePixels_(pixels);
|
|
|
|
};
|
|
|
|
|
|
|
|
ns.Frame.prototype.clear = function () {
|
|
|
|
var pixels = ns.Frame.createEmptyPixelGrid_(this.getWidth(), this.getHeight());
|
|
|
|
this.setPixels(pixels);
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Clone a set of pixels. Should be static utility method
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
ns.Frame.prototype.clonePixels_ = function (pixels) {
|
|
|
|
var clonedPixels = [];
|
|
|
|
for (var col = 0 ; col < pixels.length ; col++) {
|
|
|
|
clonedPixels[col] = pixels[col].slice(0 , pixels[col].length);
|
|
|
|
}
|
|
|
|
return clonedPixels;
|
|
|
|
};
|
|
|
|
|
|
|
|
ns.Frame.prototype.serialize = function () {
|
|
|
|
return JSON.stringify(this.pixels);
|
|
|
|
};
|
|
|
|
|
|
|
|
ns.Frame.prototype.setPixel = function (col, row, color) {
|
|
|
|
this.pixels[col][row] = color;
|
|
|
|
};
|
|
|
|
|
|
|
|
ns.Frame.prototype.getPixel = function (col, row) {
|
|
|
|
return this.pixels[col][row];
|
|
|
|
};
|
|
|
|
|
2013-09-22 23:02:43 +04:00
|
|
|
ns.Frame.prototype.forEachPixel = function (callback) {
|
|
|
|
for (var col = 0 ; col < this.getWidth() ; col++) {
|
|
|
|
for (var row = 0 ; row < this.getHeight() ; row++) {
|
|
|
|
callback(this.getPixel(col, row), col, row);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-08-10 14:11:16 +04:00
|
|
|
ns.Frame.prototype.getWidth = function () {
|
2013-09-22 23:02:43 +04:00
|
|
|
return this.width;
|
2013-08-10 14:11:16 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
ns.Frame.prototype.getHeight = function () {
|
2013-09-22 23:02:43 +04:00
|
|
|
return this.height;
|
2013-08-10 14:11:16 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
ns.Frame.prototype.containsPixel = function (col, row) {
|
|
|
|
return col >= 0 && row >= 0 && col < this.pixels.length && row < this.pixels[0].length;
|
|
|
|
};
|
|
|
|
|
|
|
|
ns.Frame.prototype.saveState = function () {
|
|
|
|
// remove all states past current state
|
|
|
|
this.previousStates.length = this.stateIndex + 1;
|
|
|
|
// push new state
|
|
|
|
this.previousStates.push(this.getPixels());
|
|
|
|
// set the stateIndex to latest saved state
|
|
|
|
this.stateIndex = this.previousStates.length - 1;
|
|
|
|
};
|
|
|
|
|
|
|
|
ns.Frame.prototype.loadPreviousState = function () {
|
|
|
|
if (this.stateIndex > 0) {
|
|
|
|
this.stateIndex--;
|
|
|
|
this.setPixels(this.previousStates[this.stateIndex]);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
ns.Frame.prototype.loadNextState = function () {
|
|
|
|
if (this.stateIndex < this.previousStates.length - 1) {
|
|
|
|
this.stateIndex++;
|
|
|
|
this.setPixels(this.previousStates[this.stateIndex]);
|
2013-09-29 01:52:51 +04:00
|
|
|
}
|
2013-08-10 14:11:16 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
ns.Frame.prototype.isSameSize = function (otherFrame) {
|
|
|
|
return this.getHeight() == otherFrame.getHeight() && this.getWidth() == otherFrame.getWidth();
|
|
|
|
};
|
2012-09-04 16:10:16 +04:00
|
|
|
})();
|