mirror of
https://github.com/piskelapp/piskel.git
synced 2023-08-10 21:12:52 +03:00
Added undo/redo feature
* new file : HistoryManager.js * can undo (ctrl-z) and redo (ctrl-y) changes performed through the tools * history states are recorded per frame * a new state is recorder each time a tool is released (introduced TOOL_RELEASED event for this purpose) * a duplicated frame doesn't inherit the history states of the original frame * there is no limit to the number of states that can be stored per frame * actions such as creating/duplicating/deleting a frame are not concerned by this update
This commit is contained in:
parent
1c12e92ce3
commit
17bf7b3807
@ -93,6 +93,7 @@
|
|||||||
<script src="js/controller/AnimatedPreviewController.js"></script>
|
<script src="js/controller/AnimatedPreviewController.js"></script>
|
||||||
<script src="js/rendering/FrameRenderer.js"></script>
|
<script src="js/rendering/FrameRenderer.js"></script>
|
||||||
<script src="js/LocalStorageService.js"></script>
|
<script src="js/LocalStorageService.js"></script>
|
||||||
|
<script src="js/HistoryManager.js"></script>
|
||||||
<script src="js/Palette.js"></script>
|
<script src="js/Palette.js"></script>
|
||||||
<script src="js/Notification.js"></script>
|
<script src="js/Notification.js"></script>
|
||||||
<script src="js/drawingtools/BaseTool.js"></script>
|
<script src="js/drawingtools/BaseTool.js"></script>
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
Events = {
|
Events = {
|
||||||
|
|
||||||
TOOL_SELECTED : "TOOL_SELECTED",
|
TOOL_SELECTED : "TOOL_SELECTED",
|
||||||
|
TOOL_RELEASED : "TOOL_RELEASED",
|
||||||
COLOR_SELECTED: "COLOR_SELECTED",
|
COLOR_SELECTED: "COLOR_SELECTED",
|
||||||
COLOR_USED: "COLOR_USED",
|
COLOR_USED: "COLOR_USED",
|
||||||
|
|
||||||
|
40
js/HistoryManager.js
Normal file
40
js/HistoryManager.js
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
(function () {
|
||||||
|
var ns = $.namespace("pskl");
|
||||||
|
ns.HistoryManager = function () {};
|
||||||
|
|
||||||
|
ns.HistoryManager.prototype.init = function () {
|
||||||
|
document.body.addEventListener('keyup', this.onKeyup.bind(this));
|
||||||
|
$.subscribe(Events.TOOL_RELEASED, this.saveState.bind(this));
|
||||||
|
};
|
||||||
|
|
||||||
|
ns.HistoryManager.prototype.saveState = function () {
|
||||||
|
piskel.getCurrentFrame().saveState();
|
||||||
|
};
|
||||||
|
|
||||||
|
ns.HistoryManager.prototype.onKeyup = function (evt) {
|
||||||
|
if (evt.ctrlKey && evt.keyCode == 90) { // CTRL + Z
|
||||||
|
this.undo();
|
||||||
|
}
|
||||||
|
|
||||||
|
if (evt.ctrlKey && evt.keyCode == 89) { // CTRL+ Y
|
||||||
|
this.redo();
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
ns.HistoryManager.prototype.undo = function () {
|
||||||
|
piskel.getCurrentFrame().loadPreviousState();
|
||||||
|
this.redraw();
|
||||||
|
};
|
||||||
|
|
||||||
|
ns.HistoryManager.prototype.redo = function () {
|
||||||
|
piskel.getCurrentFrame().loadNextState();
|
||||||
|
this.redraw();
|
||||||
|
};
|
||||||
|
|
||||||
|
ns.HistoryManager.prototype.redraw = function () {
|
||||||
|
piskel.drawingController.renderFrame();
|
||||||
|
piskel.previewsController.createPreviews();
|
||||||
|
};
|
||||||
|
|
||||||
|
ns.HistoryManager = new ns.HistoryManager();
|
||||||
|
})();
|
@ -1,58 +1,85 @@
|
|||||||
(function () {
|
(function () {
|
||||||
var ns = $.namespace("pskl.model");
|
var ns = $.namespace("pskl.model");
|
||||||
|
|
||||||
ns.Frame = function (pixels) {
|
ns.Frame = function (pixels) {
|
||||||
this.pixels = pixels;
|
this.pixels = pixels;
|
||||||
};
|
this.previousStates = [pixels];
|
||||||
|
this.stateIndex = 0;
|
||||||
ns.Frame.createEmpty = function (width, height) {
|
};
|
||||||
var pixels = []; //new Array(width);
|
|
||||||
for (var columnIndex=0; columnIndex < width; columnIndex++) {
|
ns.Frame.createEmpty = function (width, height) {
|
||||||
var columnArray = [];
|
var pixels = []; //new Array(width);
|
||||||
for(var heightIndex = 0; heightIndex < height; heightIndex++) {
|
for (var columnIndex=0; columnIndex < width; columnIndex++) {
|
||||||
columnArray.push(Constants.TRANSPARENT_COLOR);
|
var columnArray = [];
|
||||||
}
|
for(var heightIndex = 0; heightIndex < height; heightIndex++) {
|
||||||
pixels[columnIndex] = columnArray;
|
columnArray.push(Constants.TRANSPARENT_COLOR);
|
||||||
}
|
}
|
||||||
return new ns.Frame(pixels);
|
pixels[columnIndex] = columnArray;
|
||||||
};
|
}
|
||||||
|
return new ns.Frame(pixels);
|
||||||
ns.Frame.createEmptyFromFrame = function (frame) {
|
};
|
||||||
return ns.Frame.createEmpty(frame.getWidth(), frame.getHeight());
|
|
||||||
};
|
ns.Frame.createEmptyFromFrame = function (frame) {
|
||||||
|
return ns.Frame.createEmpty(frame.getWidth(), frame.getHeight());
|
||||||
ns.Frame.prototype.clone = function () {
|
};
|
||||||
var clone = ns.Frame.createEmptyFromFrame(this);
|
|
||||||
for (var col = 0 ; col < clone.getWidth() ; col++) {
|
ns.Frame.prototype.clone = function () {
|
||||||
for (var row = 0 ; row < clone.getHeight() ; row++) {
|
return new ns.Frame(this._clonePixels());
|
||||||
clone.setPixel(col, row, this.getPixel(col, row));
|
};
|
||||||
}
|
|
||||||
}
|
ns.Frame.prototype._clonePixels = function () {
|
||||||
return clone;
|
var pixels = [];
|
||||||
};
|
for (var col = 0 ; col < this.getWidth() ; col++) {
|
||||||
|
pixels[col] = this.pixels[col].slice(0 , this.getHeight());
|
||||||
ns.Frame.prototype.serialize = function () {
|
}
|
||||||
return JSON.stringify(this.pixels);
|
return pixels;
|
||||||
};
|
};
|
||||||
|
|
||||||
ns.Frame.prototype.setPixel = function (col, row, color) {
|
ns.Frame.prototype.serialize = function () {
|
||||||
this.pixels[col][row] = color;
|
return JSON.stringify(this.pixels);
|
||||||
};
|
};
|
||||||
|
|
||||||
ns.Frame.prototype.getPixel = function (col, row) {
|
ns.Frame.prototype.setPixel = function (col, row, color) {
|
||||||
return this.pixels[col][row];
|
this.pixels[col][row] = color;
|
||||||
};
|
};
|
||||||
|
|
||||||
ns.Frame.prototype.getWidth = function () {
|
ns.Frame.prototype.getPixel = function (col, row) {
|
||||||
return this.pixels.length;
|
return this.pixels[col][row];
|
||||||
};
|
};
|
||||||
|
|
||||||
ns.Frame.prototype.getHeight = function () {
|
ns.Frame.prototype.getWidth = function () {
|
||||||
return this.pixels[0].length;
|
return this.pixels.length;
|
||||||
};
|
};
|
||||||
|
|
||||||
ns.Frame.prototype.containsPixel = function (col, row) {
|
ns.Frame.prototype.getHeight = function () {
|
||||||
return col >= 0 && row >= 0 && col <= this.pixels.length && row <= this.pixels[0].length;
|
return this.pixels[0].length;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
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._clonePixels());
|
||||||
|
// 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.pixels = this.previousStates[this.stateIndex];
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
ns.Frame.prototype.loadNextState = function () {
|
||||||
|
if (this.stateIndex < this.previousStates.length - 1) {
|
||||||
|
this.stateIndex++;
|
||||||
|
this.pixels = this.previousStates[this.stateIndex];
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
})();
|
})();
|
15
js/piskel.js
15
js/piskel.js
@ -79,7 +79,8 @@ $.namespace("pskl");
|
|||||||
|
|
||||||
this.animationController.init();
|
this.animationController.init();
|
||||||
this.previewsController.init();
|
this.previewsController.init();
|
||||||
|
|
||||||
|
pskl.HistoryManager.init();
|
||||||
pskl.NotificationService.init();
|
pskl.NotificationService.init();
|
||||||
pskl.LocalStorageService.init(frameSheet);
|
pskl.LocalStorageService.init(frameSheet);
|
||||||
|
|
||||||
@ -154,7 +155,7 @@ $.namespace("pskl");
|
|||||||
|
|
||||||
setActiveFrame: function(index) {
|
setActiveFrame: function(index) {
|
||||||
activeFrameIndex = index;
|
activeFrameIndex = index;
|
||||||
this.drawingController.frame = frameSheet.getFrameByIndex(index);
|
this.drawingController.frame = this.getCurrentFrame();
|
||||||
},
|
},
|
||||||
|
|
||||||
setActiveFrameAndRedraw: function(index) {
|
setActiveFrameAndRedraw: function(index) {
|
||||||
@ -176,6 +177,10 @@ $.namespace("pskl");
|
|||||||
return activeFrameIndex;
|
return activeFrameIndex;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
getCurrentFrame : function () {
|
||||||
|
return frameSheet.getFrameByIndex(activeFrameIndex);
|
||||||
|
},
|
||||||
|
|
||||||
initDrawingArea : function() {
|
initDrawingArea : function() {
|
||||||
drawingAreaContainer = $('#drawing-canvas-container')[0];
|
drawingAreaContainer = $('#drawing-canvas-container')[0];
|
||||||
document.body.addEventListener('mouseup', this.onMouseup.bind(this));
|
document.body.addEventListener('mouseup', this.onMouseup.bind(this));
|
||||||
@ -261,6 +266,8 @@ $.namespace("pskl");
|
|||||||
if(isRightClicked) {
|
if(isRightClicked) {
|
||||||
$.publish(Events.CANVAS_RIGHT_CLICK_RELEASED);
|
$.publish(Events.CANVAS_RIGHT_CLICK_RELEASED);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
isClicked = false;
|
isClicked = false;
|
||||||
isRightClicked = false;
|
isRightClicked = false;
|
||||||
var spriteCoordinate = this.getSpriteCoordinate(event);
|
var spriteCoordinate = this.getSpriteCoordinate(event);
|
||||||
@ -271,11 +278,11 @@ $.namespace("pskl");
|
|||||||
this.drawingController
|
this.drawingController
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
$.publish(Events.TOOL_RELEASED);
|
||||||
// TODO: Remove that when we have the centralized redraw loop
|
// TODO: Remove that when we have the centralized redraw loop
|
||||||
this.previewsController.createPreviews();
|
this.previewsController.createPreviews();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
onCanvasContextMenu : function (event) {
|
onCanvasContextMenu : function (event) {
|
||||||
|
Loading…
Reference in New Issue
Block a user