[d56640] | 1 | /*
|
---|
| 2 | * ActionHistory.cpp
|
---|
| 3 | *
|
---|
| 4 | * Created on: Mar 25, 2010
|
---|
| 5 | * Author: crueger
|
---|
| 6 | */
|
---|
| 7 |
|
---|
[bf3817] | 8 | // include config.h
|
---|
| 9 | #ifdef HAVE_CONFIG_H
|
---|
| 10 | #include <config.h>
|
---|
| 11 | #endif
|
---|
| 12 |
|
---|
[112b09] | 13 | #include "Helpers/MemDebug.hpp"
|
---|
| 14 |
|
---|
[d56640] | 15 | #include "ActionHistory.hpp"
|
---|
| 16 |
|
---|
| 17 | #include <iostream>
|
---|
| 18 |
|
---|
| 19 | #include "Patterns/Singleton_impl.hpp"
|
---|
| 20 | #include "Helpers/Assert.hpp"
|
---|
[632bc3] | 21 | #include "Helpers/MemDebug.hpp"
|
---|
[d56640] | 22 |
|
---|
| 23 | using namespace std;
|
---|
| 24 |
|
---|
| 25 | ActionHistory::ActionHistory()
|
---|
| 26 | {}
|
---|
| 27 |
|
---|
| 28 | ActionHistory::~ActionHistory()
|
---|
| 29 | {}
|
---|
| 30 |
|
---|
| 31 | void ActionHistory::undoLast(){
|
---|
| 32 | ASSERT(history.size(),"Undo performed when the undo-queue was empty");
|
---|
| 33 | HistoryElement elem = history.back();
|
---|
| 34 | history.pop_back();
|
---|
| 35 | Action::state_ptr newState = elem.action->undo(elem.state);
|
---|
| 36 | yrotsih.push_back(HistoryElement(elem.action,newState));
|
---|
| 37 | }
|
---|
| 38 | void ActionHistory::redoLast(){
|
---|
| 39 | ASSERT(yrotsih.size(),"Redo performed when the redo-queue was empty");
|
---|
| 40 | HistoryElement elem = yrotsih.back();
|
---|
| 41 | yrotsih.pop_back();
|
---|
| 42 | Action::state_ptr oldState = elem.action->redo(elem.state);
|
---|
| 43 | history.push_back(HistoryElement(elem.action,oldState));
|
---|
| 44 | }
|
---|
| 45 |
|
---|
[f9352d] | 46 | bool ActionHistory::hasUndo(){
|
---|
| 47 | return history.size()>0;
|
---|
| 48 | }
|
---|
| 49 |
|
---|
| 50 | bool ActionHistory::hasRedo(){
|
---|
| 51 | return yrotsih.size()>0;
|
---|
| 52 | }
|
---|
| 53 |
|
---|
[d56640] | 54 | void ActionHistory::addElement(Action* action,Action::state_ptr state){
|
---|
| 55 | yrotsih.clear();
|
---|
| 56 | history.push_back(HistoryElement(action,state));
|
---|
| 57 | }
|
---|
| 58 |
|
---|
| 59 | void ActionHistory::clear(){
|
---|
| 60 | history.clear();
|
---|
| 61 | yrotsih.clear();
|
---|
| 62 | }
|
---|
| 63 |
|
---|
| 64 | void ActionHistory::init(){
|
---|
| 65 | ActionHistory *hist = new ActionHistory();
|
---|
| 66 | setInstance(hist);
|
---|
| 67 | new UndoAction(hist);
|
---|
| 68 | new RedoAction(hist);
|
---|
| 69 | }
|
---|
| 70 |
|
---|
| 71 | CONSTRUCT_SINGLETON(ActionHistory)
|
---|
| 72 |
|
---|
| 73 | /****************** Contained actions *******************/
|
---|
[446bc1] | 74 |
|
---|
| 75 | const char ActionHistory::UndoAction::NAME[] = "undo";
|
---|
| 76 |
|
---|
[d56640] | 77 | ActionHistory::UndoAction::UndoAction(ActionHistory *_hist) :
|
---|
[446bc1] | 78 | Action(NAME),
|
---|
[d56640] | 79 | hist(_hist)
|
---|
| 80 | {}
|
---|
| 81 |
|
---|
| 82 | ActionHistory::UndoAction::~UndoAction(){}
|
---|
| 83 |
|
---|
| 84 | bool ActionHistory::UndoAction::canUndo(){
|
---|
| 85 | return false;
|
---|
| 86 | }
|
---|
| 87 |
|
---|
| 88 | bool ActionHistory::UndoAction::shouldUndo(){
|
---|
| 89 | return false;
|
---|
| 90 | }
|
---|
| 91 |
|
---|
[f9352d] | 92 | bool ActionHistory::UndoAction::isActive(){
|
---|
| 93 | return hist->hasUndo();
|
---|
| 94 | }
|
---|
| 95 |
|
---|
[047878] | 96 | Dialog* ActionHistory::UndoAction::fillDialog(Dialog *dialog){
|
---|
| 97 | ASSERT(dialog,"No Dialog given when filling action dialog");
|
---|
| 98 | return dialog;
|
---|
[80951de] | 99 | }
|
---|
| 100 |
|
---|
[d56640] | 101 | Action::state_ptr ActionHistory::UndoAction::performCall(){
|
---|
[446bc1] | 102 | std::cout << "Undo" << std::endl;
|
---|
[d56640] | 103 | hist->undoLast();
|
---|
| 104 | return Action::success;
|
---|
| 105 | }
|
---|
| 106 |
|
---|
| 107 | Action::state_ptr ActionHistory::UndoAction::performUndo(Action::state_ptr){
|
---|
| 108 | ASSERT(0,"Cannot undo an undo (should use redo for this");
|
---|
| 109 | return Action::success;
|
---|
| 110 | }
|
---|
| 111 |
|
---|
| 112 | Action::state_ptr ActionHistory::UndoAction::performRedo(Action::state_ptr){
|
---|
| 113 | ASSERT(0,"Cannot redo an undo");
|
---|
| 114 | return Action::success;
|
---|
| 115 | }
|
---|
| 116 |
|
---|
[446bc1] | 117 | const char ActionHistory::RedoAction::NAME[] = "redo";
|
---|
| 118 |
|
---|
[d56640] | 119 | ActionHistory::RedoAction::RedoAction(ActionHistory *_hist) :
|
---|
[446bc1] | 120 | Action(NAME),
|
---|
[d56640] | 121 | hist(_hist)
|
---|
| 122 | {}
|
---|
| 123 |
|
---|
| 124 | ActionHistory::RedoAction::~RedoAction(){}
|
---|
| 125 |
|
---|
| 126 | bool ActionHistory::RedoAction::canUndo(){
|
---|
| 127 | return false;
|
---|
| 128 | }
|
---|
| 129 |
|
---|
| 130 | bool ActionHistory::RedoAction::shouldUndo(){
|
---|
| 131 | return false;
|
---|
| 132 | }
|
---|
| 133 |
|
---|
[f9352d] | 134 | bool ActionHistory::RedoAction::isActive(){
|
---|
[446bc1] | 135 | std::cout << "Redo" << std::endl;
|
---|
[f9352d] | 136 | return hist->hasRedo();
|
---|
| 137 | }
|
---|
| 138 |
|
---|
[047878] | 139 | Dialog* ActionHistory::RedoAction::fillDialog(Dialog *dialog){
|
---|
| 140 | ASSERT(dialog,"No Dialog given when filling action dialog");
|
---|
| 141 | return dialog;
|
---|
[80951de] | 142 | }
|
---|
| 143 |
|
---|
[d56640] | 144 | Action::state_ptr ActionHistory::RedoAction::performCall(){
|
---|
| 145 | hist->redoLast();
|
---|
| 146 | return Action::success;
|
---|
| 147 | }
|
---|
| 148 |
|
---|
| 149 | Action::state_ptr ActionHistory::RedoAction::performUndo(Action::state_ptr){
|
---|
| 150 | ASSERT(0,"Cannot undo a redo (should use undo for this");
|
---|
| 151 | return Action::success;
|
---|
| 152 | }
|
---|
| 153 |
|
---|
| 154 | Action::state_ptr ActionHistory::RedoAction::performRedo(Action::state_ptr){
|
---|
| 155 | ASSERT(0,"Cannot redo a redo");
|
---|
| 156 | return Action::success;
|
---|
| 157 | }
|
---|