piskel/js/rendering/FrameRenderer.js

161 lines
4.7 KiB
JavaScript
Raw Normal View History

(function () {
var ns = $.namespace("pskl.rendering");
ns.FrameRenderer = function (container, renderingOptions, className) {
2012-09-09 00:26:17 +04:00
this.defaultRenderingOptions = {
'supportGridRendering' : false
2012-09-09 00:26:17 +04:00
};
renderingOptions = $.extend(true, {}, this.defaultRenderingOptions, renderingOptions);
2013-05-28 01:42:53 +04:00
if(container === undefined) {
throw 'Bad FrameRenderer initialization. <container> undefined.';
}
2012-09-09 00:26:17 +04:00
if(isNaN(renderingOptions.dpi)) {
throw 'Bad FrameRenderer initialization. <dpi> not well defined.';
}
2012-09-09 00:26:17 +04:00
this.container = container;
this.dpi = renderingOptions.dpi;
this.className = className;
2012-09-09 00:26:17 +04:00
this.canvas = null;
this.supportGridRendering = renderingOptions.supportGridRendering;
this.enableGrid(pskl.UserSettings.get(pskl.UserSettings.SHOW_GRID));
2012-09-08 18:32:28 +04:00
// Flag to know if the config was altered
this.canvasConfigDirty = true;
this.updateBackgroundClass_(pskl.UserSettings.get(pskl.UserSettings.CANVAS_BACKGROUND));
$.subscribe(Events.USER_SETTINGS_CHANGED, $.proxy(this.onUserSettingsChange_, this));
};
ns.FrameRenderer.prototype.init = function (frame) {
this.render(frame);
2012-09-09 01:43:16 +04:00
this.lastRenderedFrame = frame;
};
2012-09-08 18:32:28 +04:00
ns.FrameRenderer.prototype.updateDPI = function (newDPI) {
this.dpi = newDPI;
this.canvasConfigDirty = true;
};
/**
* @private
*/
ns.FrameRenderer.prototype.onUserSettingsChange_ = function (evt, settingName, settingValue) {
if(settingName == pskl.UserSettings.SHOW_GRID) {
this.enableGrid(settingValue);
}
else if (settingName == pskl.UserSettings.CANVAS_BACKGROUND) {
this.updateBackgroundClass_(settingValue);
}
};
/**
* @private
*/
ns.FrameRenderer.prototype.updateBackgroundClass_ = function (newClass) {
var currentClass = this.container.data('current-background-class');
if (currentClass) {
this.container.removeClass(currentClass);
}
this.container.addClass(newClass);
this.container.data('current-background-class', newClass);
};
ns.FrameRenderer.prototype.enableGrid = function (flag) {
this.gridStrokeWidth = (flag && this.supportGridRendering) ? Constants.GRID_STROKE_WIDTH : 0;
2012-09-09 01:43:16 +04:00
this.canvasConfigDirty = true;
};
ns.FrameRenderer.prototype.render = function (frame) {
this.clear(frame);
var context = this.getCanvas_(frame).getContext('2d');
for(var col = 0, width = frame.getWidth(); col < width; col++) {
for(var row = 0, height = frame.getHeight(); row < height; row++) {
var color = frame.getPixel(col, row);
this.renderPixel_(color, col, row, context);
}
}
2012-09-09 01:43:16 +04:00
this.lastRenderedFrame = frame;
};
ns.FrameRenderer.prototype.renderPixel_ = function (color, col, row, context) {
if(color != Constants.TRANSPARENT_COLOR) {
context.fillStyle = color;
context.fillRect(this.getFramePos_(col), this.getFramePos_(row), this.dpi, this.dpi);
}
};
ns.FrameRenderer.prototype.clear = function (frame) {
var canvas = this.getCanvas_(frame);
2012-09-08 18:32:28 +04:00
canvas.getContext("2d").clearRect(0, 0, canvas.width, canvas.height);
};
2012-09-09 00:26:17 +04:00
/**
* Transform a screen pixel-based coordinate (relative to the top-left corner of the rendered
* frame) into a sprite coordinate in column and row.
2013-05-28 01:42:53 +04:00
* @public
*/
ns.FrameRenderer.prototype.convertPixelCoordinatesIntoSpriteCoordinate = function(coords) {
var cellSize = this.dpi + this.gridStrokeWidth;
return {
"col" : (coords.x - coords.x % cellSize) / cellSize,
"row" : (coords.y - coords.y % cellSize) / cellSize
};
};
2012-09-09 00:26:17 +04:00
/**
* @private
*/
ns.FrameRenderer.prototype.getFramePos_ = function(index) {
return index * this.dpi + ((index - 1) * this.gridStrokeWidth);
2012-09-09 00:26:17 +04:00
};
/**
* @private
*/
ns.FrameRenderer.prototype.drawGrid_ = function(canvas, width, height, col, row) {
var ctx = canvas.getContext("2d");
2012-09-09 01:43:16 +04:00
ctx.lineWidth = Constants.GRID_STROKE_WIDTH;
ctx.strokeStyle = Constants.GRID_STROKE_COLOR;
2012-09-09 00:26:17 +04:00
for(var c=1; c < col; c++) {
2013-05-28 01:42:53 +04:00
ctx.moveTo(this.getFramePos_(c), 0);
ctx.lineTo(this.getFramePos_(c), height);
ctx.stroke();
2012-09-09 00:26:17 +04:00
}
for(var r=1; r < row; r++) {
2013-05-28 01:42:53 +04:00
ctx.moveTo(0, this.getFramePos_(r));
ctx.lineTo(width, this.getFramePos_(r));
ctx.stroke();
2012-09-09 00:26:17 +04:00
}
};
/**
* @private
*/
2012-09-08 18:32:28 +04:00
ns.FrameRenderer.prototype.getCanvas_ = function (frame) {
if(this.canvasConfigDirty) {
$(this.canvas).remove();
2012-09-09 01:43:16 +04:00
2012-09-09 00:26:17 +04:00
var col = frame.getWidth(),
row = frame.getHeight();
2012-09-08 18:32:28 +04:00
2012-09-09 00:26:17 +04:00
var pixelWidth = col * this.dpi + this.gridStrokeWidth * (col - 1);
var pixelHeight = row * this.dpi + this.gridStrokeWidth * (row - 1);
var canvas = pskl.CanvasUtils.createCanvas(pixelWidth, pixelHeight, ["canvas", this.className]);
2012-09-09 00:26:17 +04:00
this.container.append(canvas);
2012-09-08 18:32:28 +04:00
2012-09-09 00:26:17 +04:00
if(this.gridStrokeWidth > 0) {
this.drawGrid_(canvas, pixelWidth, pixelHeight, col, row);
}
this.canvas = canvas;
2012-09-08 18:32:28 +04:00
this.canvasConfigDirty = false;
}
2012-09-08 18:32:28 +04:00
return this.canvas;
};
2012-09-04 10:35:58 +04:00
})();