TAMSVIZ
Visualization and annotation tool for ROS
history.h
1 // TAMSVIZ
2 // (c) 2020 Philipp Ruppel
3 
4 #pragma once
5 
6 #include "document.h"
7 #include "snapshot.h"
8 
9 #include <deque>
10 
11 template <class T> struct History {
12  typedef T Type;
13  size_t limit = 100;
14  struct Item {
15  std::string label;
16  std::shared_ptr<const Snapshot<T>> snapshot;
17  };
18  std::deque<std::shared_ptr<Item>> undo_stack, redo_stack;
19  std::shared_ptr<Item> current;
20  // int64_t save_counter = 0;
21  bool locked = false;
22  void clear() {
23  undo_stack.clear();
24  redo_stack.clear();
25  current = nullptr;
26  // save_counter = 0;
27  }
28  bool canUndo() const { return !undo_stack.empty(); }
29  void undo(T &v) {
30  if (canUndo() && !locked) {
31  redo_stack.push_front(current);
32  current = undo_stack.back();
33  undo_stack.pop_back();
34  // save_counter--;
35  if (undo_stack.size() + redo_stack.size() > limit) {
36  redo_stack.pop_back();
37  }
38  current->snapshot->apply(v);
39  }
40  }
41  bool canRedo() const { return !redo_stack.empty(); }
42  void redo(T &v) {
43  if (canRedo() && !locked) {
44  undo_stack.push_back(current);
45  // save_counter++;
46  current = redo_stack.front();
47  redo_stack.pop_front();
48  if (undo_stack.size() + redo_stack.size() > limit) {
49  undo_stack.pop_front();
50  }
51  current->snapshot->apply(v);
52  }
53  }
54 };