2012-09-07 02:18:59 +04:00
|
|
|
(function () {
|
2012-09-16 15:10:05 +04:00
|
|
|
var ns = $.namespace("pskl.service");
|
|
|
|
ns.HistoryService = function (framesheet) {
|
2012-09-11 01:26:12 +04:00
|
|
|
this.framesheet = framesheet;
|
|
|
|
};
|
2012-09-07 02:18:59 +04:00
|
|
|
|
2012-09-16 15:10:05 +04:00
|
|
|
ns.HistoryService.prototype.init = function () {
|
|
|
|
|
2012-09-11 01:26:12 +04:00
|
|
|
$.subscribe(Events.TOOL_RELEASED, this.saveState.bind(this));
|
2012-09-12 14:01:47 +04:00
|
|
|
$.subscribe(Events.UNDO, this.undo.bind(this));
|
|
|
|
$.subscribe(Events.REDO, this.redo.bind(this));
|
2012-09-07 02:18:59 +04:00
|
|
|
};
|
|
|
|
|
2012-09-16 15:10:05 +04:00
|
|
|
ns.HistoryService.prototype.saveState = function () {
|
2012-09-11 01:26:12 +04:00
|
|
|
this.framesheet.getCurrentFrame().saveState();
|
|
|
|
};
|
2012-09-07 02:18:59 +04:00
|
|
|
|
2012-09-16 15:10:05 +04:00
|
|
|
ns.HistoryService.prototype.undo = function () {
|
2012-09-11 01:26:12 +04:00
|
|
|
this.framesheet.getCurrentFrame().loadPreviousState();
|
2012-09-14 02:03:27 +04:00
|
|
|
$.publish(Events.FRAMESHEET_RESET);
|
2012-09-11 01:26:12 +04:00
|
|
|
};
|
|
|
|
|
2012-09-16 15:10:05 +04:00
|
|
|
ns.HistoryService.prototype.redo = function () {
|
2012-09-11 01:26:12 +04:00
|
|
|
this.framesheet.getCurrentFrame().loadNextState();
|
2012-09-14 02:03:27 +04:00
|
|
|
$.publish(Events.FRAMESHEET_RESET);
|
2012-09-11 01:26:12 +04:00
|
|
|
};
|
|
|
|
|
2012-09-07 02:18:59 +04:00
|
|
|
})();
|