2012-09-04 12:10:16 +00:00
|
|
|
(function () {
|
|
|
|
var ns = $.namespace("pskl.rendering");
|
|
|
|
|
2012-09-08 10:24:55 +00:00
|
|
|
this.dpi = null;
|
2012-09-08 13:08:00 +00:00
|
|
|
this.canvas = null;
|
|
|
|
|
|
|
|
ns.FrameRenderer = function (container, dpi, className) {
|
|
|
|
if(container == undefined) {
|
|
|
|
throw "Bad FrameRenderer initialization. <container> undefined.";
|
|
|
|
}
|
2012-09-08 10:24:55 +00:00
|
|
|
|
|
|
|
if(dpi == undefined || isNaN(dpi)) {
|
|
|
|
throw "Bad FrameRenderer initialization. <dpi> not well defined.";
|
|
|
|
}
|
|
|
|
|
2012-09-08 13:08:00 +00:00
|
|
|
this.container = container;
|
2012-09-08 10:24:55 +00:00
|
|
|
this.dpi = dpi;
|
2012-09-08 13:08:00 +00:00
|
|
|
this.className = className;
|
|
|
|
};
|
|
|
|
|
|
|
|
ns.FrameRenderer.prototype.init = function (frame) {
|
|
|
|
|
|
|
|
this.createCanvas_(frame);
|
|
|
|
this.render(frame);
|
2012-09-08 10:24:55 +00:00
|
|
|
};
|
|
|
|
|
2012-09-08 13:08:00 +00:00
|
|
|
ns.FrameRenderer.prototype.render = function (frame) {
|
2012-09-04 12:10:16 +00:00
|
|
|
for(var col = 0, width = frame.getWidth(); col < width; col++) {
|
|
|
|
for(var row = 0, height = frame.getHeight(); row < height; row++) {
|
2012-09-08 13:08:00 +00:00
|
|
|
this.drawPixel(col, row, frame, this.canvas, this.dpi);
|
2012-09-04 12:10:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2012-09-08 13:08:00 +00:00
|
|
|
ns.FrameRenderer.prototype.drawPixel = function (col, row, frame) {
|
|
|
|
var context = this.canvas.getContext('2d');
|
2012-09-04 12:10:16 +00:00
|
|
|
var color = frame.getPixel(col, row);
|
|
|
|
if(color == Constants.TRANSPARENT_COLOR) {
|
2012-09-08 10:24:55 +00:00
|
|
|
context.clearRect(col * this.dpi, row * this.dpi, this.dpi, this.dpi);
|
2012-09-04 12:10:16 +00:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
if(color != Constants.SELECTION_TRANSPARENT_COLOR) {
|
|
|
|
// TODO(vincz): Found a better design to update the palette, it's called too frequently.
|
|
|
|
$.publish(Events.COLOR_USED, [color]);
|
|
|
|
}
|
|
|
|
context.fillStyle = color;
|
2012-09-08 10:24:55 +00:00
|
|
|
context.fillRect(col * this.dpi, row * this.dpi, this.dpi, this.dpi);
|
2012-09-04 12:10:16 +00:00
|
|
|
}
|
|
|
|
};
|
2012-09-08 13:08:00 +00:00
|
|
|
|
|
|
|
ns.FrameRenderer.prototype.clear = function (col, row, frame) {
|
|
|
|
this.canvas.getContext("2d").clearRect(0, 0, this.canvas.width, this.canvas.height);
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
ns.FrameRenderer.prototype.createCanvas_ = function (frame) {
|
|
|
|
if(this.canvas == undefined) {
|
|
|
|
var width = frame.getWidth(),
|
|
|
|
height = frame.getHeight();
|
|
|
|
|
|
|
|
var canvas = document.createElement("canvas");
|
|
|
|
canvas.setAttribute("width", width * this.dpi);
|
|
|
|
canvas.setAttribute("height", height * this.dpi);
|
|
|
|
|
|
|
|
var canvasClassname = "canvas";
|
|
|
|
if(this.className) {
|
|
|
|
canvasClassname += " " + this.className;
|
|
|
|
}
|
|
|
|
canvas.setAttribute("class", canvasClassname);
|
|
|
|
|
|
|
|
this.canvas = canvas;
|
|
|
|
}
|
|
|
|
this.container.appendChild(this.canvas);
|
|
|
|
};
|
2012-09-04 06:35:58 +00:00
|
|
|
})();
|