-
Notifications
You must be signed in to change notification settings - Fork 1
/
history.js
59 lines (52 loc) · 1.86 KB
/
history.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
function History(paint) {
var h = this;
h.historyLen = 0;//текущая длина истории (учитывая undo)
h.step = [];//массив шагов
h.action = "none";
h.onStateUpdate = function(eventName){};//вызывается при изменении состояни (добавление, удаление и т.д.)
//добавляет в историю шаг
h.add = function(newStep) {
if (this.historyLen !== this.step.length) //отбрасывает отменённое (есть есть)
this.step.splice(this.historyLen, this.step.length-this.historyLen);
//newStep.capture();
this.step.push(newStep);
this.historyLen++;
this.onStateUpdate('add');
};
h.shift = function() {
if (this.historyLen === 0) return;
this.historyLen--;
this.step.shift();
this.onStateUpdate('unshift');
};
//получает массив слоёв, выбирает нужный,
//восстанавливает участки в него
h.undo = function() {
console.log(this.step)
if (this.historyLen === 0) return false;
var s = this.step[--this.historyLen];
h.action = "undo";
s.undo(paint);
h.action = "none";
this.onStateUpdate('undo');
return true;
};
//если передан номер слоя, делает redo в слой с этим номером
//иначе - в слой, записанный в параметрах
h.redo = function(forceLayer) {
if (this.historyLen === this.step.length) return false;
var s = this.step[this.historyLen++];
h.action = "redo";
if (forceLayer !== undefined) {
s.capture(paint, forceLayer);
}
s.redo(paint);
h.action = "none";
this.onStateUpdate('redo');
return true;
};
//можно ли что-то повторить
h.canRedo = function() {
return h.historyLen < h.step.length;
}
}