-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHistory.cpp
More file actions
66 lines (46 loc) · 1.14 KB
/
History.cpp
File metadata and controls
66 lines (46 loc) · 1.14 KB
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
60
61
62
63
64
65
66
//
// Created by Kristal Hong on 11/16/23.
//
#include "History.h"
std::stack<HistoryNode> History::stack;
void History::pushHistory(const HistoryNode &snapshot) {
stack.push(snapshot);
}
HistoryNode &History::topHistory() {
return stack.top();
}
void History::popHistory() {
if (!stack.empty()) {
stack.top().component->applySnapshot(stack.top().snapshot); //apply snapshot back to object
stack.pop();
}
}
void History::addEventHandler(sf::RenderWindow &window, sf::Event event) {
// Handle events to trigger undo and redo
if (KeyShortcuts::isUndo()) {
popHistory();
}
if (KeyShortcuts::isRedo()) {
if (canRedo()) {
redo();
}
}
}
bool History::canUndo() {
return !stack.empty();
}
bool History::canRedo() {
return !stack.empty();
}
void History::undo() {
HistoryNode history = topHistory();
history.component->applySnapshot(history.snapshot);
popHistory();
}
void History::redo() {
HistoryNode historyNode = stack.top();
stack.pop();
pushHistory(historyNode);
historyNode.component->applySnapshot(historyNode.snapshot);
// }
}