| [a5041ec] | 1 | /*
 | 
|---|
 | 2 |  * ActionSequenze.cpp
 | 
|---|
 | 3 |  *
 | 
|---|
 | 4 |  *  Created on: Dec 17, 2009
 | 
|---|
 | 5 |  *      Author: crueger
 | 
|---|
 | 6 |  */
 | 
|---|
 | 7 | 
 | 
|---|
 | 8 | #include "Actions/ActionSequence.hpp"
 | 
|---|
 | 9 | #include "Actions/Action.hpp"
 | 
|---|
 | 10 | 
 | 
|---|
| [67e2b3] | 11 | #include "Helpers/Assert.hpp"
 | 
|---|
 | 12 | 
 | 
|---|
| [a5041ec] | 13 | using namespace std;
 | 
|---|
 | 14 | 
 | 
|---|
 | 15 | ActionSequence::ActionSequence()
 | 
|---|
| [1fa107] | 16 | {}
 | 
|---|
| [a5041ec] | 17 | 
 | 
|---|
 | 18 | ActionSequence::~ActionSequence()
 | 
|---|
| [1fa107] | 19 | {}
 | 
|---|
| [a5041ec] | 20 | 
 | 
|---|
 | 21 | 
 | 
|---|
 | 22 | void ActionSequence::addAction(Action* _action){
 | 
|---|
 | 23 |   actions.push_back(_action);
 | 
|---|
 | 24 | }
 | 
|---|
 | 25 | 
 | 
|---|
 | 26 | Action* ActionSequence::removeLastAction(){
 | 
|---|
| [1fa107] | 27 |   if(actions.empty()) {
 | 
|---|
 | 28 |     return 0;
 | 
|---|
 | 29 |   }
 | 
|---|
 | 30 |   else {
 | 
|---|
 | 31 |     Action* theAction;
 | 
|---|
 | 32 |     theAction = actions.back();
 | 
|---|
 | 33 |     actions.pop_back();
 | 
|---|
 | 34 |     return theAction;
 | 
|---|
 | 35 |   }
 | 
|---|
| [a5041ec] | 36 | }
 | 
|---|
 | 37 | 
 | 
|---|
| [2efa90] | 38 | // this method is used outside the ActionModule
 | 
|---|
 | 39 | // Each action registers itself with the history
 | 
|---|
 | 40 | void ActionSequence::callAll(){
 | 
|---|
 | 41 |   for(actionSet::iterator it=actions.begin(); it!=actions.end(); it++){
 | 
|---|
 | 42 |     // we want to have a global bookkeeping for all actions in the sequence, so
 | 
|---|
 | 43 |     // we bypass the normal call
 | 
|---|
 | 44 |     (*it)->call();
 | 
|---|
 | 45 |   }
 | 
|---|
 | 46 | }
 | 
|---|
 | 47 | 
 | 
|---|
 | 48 | // This method is used internally when MakroActions are constructed.
 | 
|---|
 | 49 | // In this case only the makro Action should be registered and
 | 
|---|
 | 50 | // handle the states
 | 
|---|
 | 51 | ActionSequence::stateSet ActionSequence::callAll(bool){
 | 
|---|
| [67e2b3] | 52 |   stateSet states;
 | 
|---|
 | 53 |   for(actionSet::iterator it=actions.begin(); it!=actions.end(); it++){
 | 
|---|
 | 54 |     // we want to have a global bookkeeping for all actions in the sequence, so
 | 
|---|
 | 55 |     // we bypass the normal call
 | 
|---|
| [5b0b98] | 56 |     Action::state_ptr state = (*it)->performCall();
 | 
|---|
| [67e2b3] | 57 |     states.push_back(state);
 | 
|---|
 | 58 |   }
 | 
|---|
 | 59 |   return states;
 | 
|---|
 | 60 | }
 | 
|---|
 | 61 | 
 | 
|---|
| [5b0b98] | 62 | ActionSequence::stateSet ActionSequence::undoAll(stateSet states){
 | 
|---|
| [67e2b3] | 63 |   ASSERT(canUndo(),"Trying to undo a sequence that contains methods that can't be undone");
 | 
|---|
 | 64 |   stateSet res;
 | 
|---|
 | 65 |   actionSet::reverse_iterator actionRit = actions.rbegin();
 | 
|---|
 | 66 |   stateSet::reverse_iterator stateRit = states.rbegin();
 | 
|---|
 | 67 |   for(;actionRit!=actions.rend();++actionRit,++stateRit){
 | 
|---|
 | 68 |     ASSERT(stateRit!=states.rend(),"End of states prematurely reached.");
 | 
|---|
 | 69 |     if((*actionRit)->shouldUndo()){
 | 
|---|
| [5b0b98] | 70 |       Action::state_ptr newState = (*actionRit)->performUndo(*stateRit);
 | 
|---|
| [67e2b3] | 71 |       // The order of the states has to correspond to the order of the actions
 | 
|---|
 | 72 |       // this is why we have to add at the beginning
 | 
|---|
 | 73 |       res.push_front(newState);
 | 
|---|
 | 74 |     }
 | 
|---|
 | 75 |     else{
 | 
|---|
 | 76 |       res.push_front(Action::success);
 | 
|---|
 | 77 |     }
 | 
|---|
 | 78 |   }
 | 
|---|
 | 79 |   return res;
 | 
|---|
| [a5041ec] | 80 | }
 | 
|---|
 | 81 | 
 | 
|---|
| [5b0b98] | 82 | ActionSequence::stateSet ActionSequence::redoAll(stateSet states){
 | 
|---|
| [67e2b3] | 83 |   stateSet res;
 | 
|---|
 | 84 |   actionSet::iterator actionIt = actions.begin();
 | 
|---|
 | 85 |   stateSet::iterator stateIt = states.begin();
 | 
|---|
 | 86 |   for(;actionIt!=actions.end();++actionIt,++stateIt){
 | 
|---|
 | 87 |     ASSERT(stateIt!=states.end(),"End of states prematurely reached.");
 | 
|---|
 | 88 |     if((*actionIt)->shouldUndo()){
 | 
|---|
| [5b0b98] | 89 |       Action::state_ptr newState =(*actionIt)->performRedo(*stateIt);
 | 
|---|
| [67e2b3] | 90 |       res.push_back(newState);
 | 
|---|
 | 91 |     }
 | 
|---|
 | 92 |     else{
 | 
|---|
 | 93 |       res.push_back(Action::success);
 | 
|---|
 | 94 |     }
 | 
|---|
 | 95 |   }
 | 
|---|
 | 96 |   return res;
 | 
|---|
| [a5041ec] | 97 | }
 | 
|---|
 | 98 | 
 | 
|---|
 | 99 | bool ActionSequence::canUndo(){
 | 
|---|
 | 100 |   bool canUndo=true;
 | 
|---|
| [67e2b3] | 101 |   for(deque<Action*>::iterator it=actions.begin(); it!=actions.end(); ++it){
 | 
|---|
 | 102 |     if((*it)->shouldUndo()){
 | 
|---|
 | 103 |       canUndo &= (*it)->canUndo();
 | 
|---|
 | 104 |     }
 | 
|---|
 | 105 |   }
 | 
|---|
| [a5041ec] | 106 |   return canUndo;
 | 
|---|
 | 107 | }
 | 
|---|
| [67e2b3] | 108 | 
 | 
|---|
 | 109 | bool ActionSequence::shouldUndo(){
 | 
|---|
 | 110 |   bool shouldUndo = false;
 | 
|---|
 | 111 |   for(deque<Action*>::iterator it=actions.begin();it!=actions.end();++it){
 | 
|---|
 | 112 |     shouldUndo |= (*it)->shouldUndo();
 | 
|---|
 | 113 |   }
 | 
|---|
 | 114 |   return shouldUndo;
 | 
|---|
 | 115 | }
 | 
|---|