[bcf653] | 1 | /*
|
---|
| 2 | * Project: MoleCuilder
|
---|
| 3 | * Description: creates and alters molecular systems
|
---|
| 4 | * Copyright (C) 2010 University of Bonn. All rights reserved.
|
---|
| 5 | * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
|
---|
| 6 | */
|
---|
| 7 |
|
---|
[d56640] | 8 | /*
|
---|
| 9 | * ActionHistory.cpp
|
---|
| 10 | *
|
---|
| 11 | * Created on: Mar 25, 2010
|
---|
| 12 | * Author: crueger
|
---|
| 13 | */
|
---|
| 14 |
|
---|
[bf3817] | 15 | // include config.h
|
---|
| 16 | #ifdef HAVE_CONFIG_H
|
---|
| 17 | #include <config.h>
|
---|
| 18 | #endif
|
---|
| 19 |
|
---|
[ad011c] | 20 | #include "CodePatterns/MemDebug.hpp"
|
---|
[112b09] | 21 |
|
---|
[e4afb4] | 22 | #include "Actions/ActionHistory.hpp"
|
---|
[d56640] | 23 |
|
---|
[e69c87] | 24 | #include "Actions/ActionExceptions.hpp"
|
---|
| 25 |
|
---|
[d56640] | 26 | #include <iostream>
|
---|
| 27 |
|
---|
[ad011c] | 28 | #include "CodePatterns/Singleton_impl.hpp"
|
---|
| 29 | #include "CodePatterns/Assert.hpp"
|
---|
[d56640] | 30 |
|
---|
[ce7fdc] | 31 | using namespace MoleCuilder;
|
---|
| 32 |
|
---|
[d56640] | 33 | ActionHistory::ActionHistory()
|
---|
| 34 | {}
|
---|
| 35 |
|
---|
| 36 | ActionHistory::~ActionHistory()
|
---|
| 37 | {}
|
---|
| 38 |
|
---|
| 39 | void ActionHistory::undoLast(){
|
---|
| 40 | ASSERT(history.size(),"Undo performed when the undo-queue was empty");
|
---|
| 41 | HistoryElement elem = history.back();
|
---|
| 42 | history.pop_back();
|
---|
| 43 | Action::state_ptr newState = elem.action->undo(elem.state);
|
---|
[e69c87] | 44 | if (newState == Action::failure)
|
---|
| 45 | throw ActionFailureException() << ActionNameString(elem.action->getName());
|
---|
[d56640] | 46 | yrotsih.push_back(HistoryElement(elem.action,newState));
|
---|
| 47 | }
|
---|
| 48 | void ActionHistory::redoLast(){
|
---|
| 49 | ASSERT(yrotsih.size(),"Redo performed when the redo-queue was empty");
|
---|
| 50 | HistoryElement elem = yrotsih.back();
|
---|
| 51 | yrotsih.pop_back();
|
---|
| 52 | Action::state_ptr oldState = elem.action->redo(elem.state);
|
---|
[e69c87] | 53 | if (oldState == Action::failure)
|
---|
| 54 | throw ActionFailureException() << ActionNameString(elem.action->getName());
|
---|
[d56640] | 55 | history.push_back(HistoryElement(elem.action,oldState));
|
---|
| 56 | }
|
---|
| 57 |
|
---|
[f9352d] | 58 | bool ActionHistory::hasUndo(){
|
---|
| 59 | return history.size()>0;
|
---|
| 60 | }
|
---|
| 61 |
|
---|
| 62 | bool ActionHistory::hasRedo(){
|
---|
| 63 | return yrotsih.size()>0;
|
---|
| 64 | }
|
---|
| 65 |
|
---|
[d56640] | 66 | void ActionHistory::addElement(Action* action,Action::state_ptr state){
|
---|
| 67 | yrotsih.clear();
|
---|
| 68 | history.push_back(HistoryElement(action,state));
|
---|
| 69 | }
|
---|
| 70 |
|
---|
| 71 | void ActionHistory::clear(){
|
---|
| 72 | history.clear();
|
---|
| 73 | yrotsih.clear();
|
---|
| 74 | }
|
---|
| 75 |
|
---|
| 76 | void ActionHistory::init(){
|
---|
| 77 | ActionHistory *hist = new ActionHistory();
|
---|
| 78 | setInstance(hist);
|
---|
| 79 | }
|
---|
| 80 |
|
---|
| 81 | CONSTRUCT_SINGLETON(ActionHistory)
|
---|
| 82 |
|
---|
| 83 | /****************** Contained actions *******************/
|
---|
[446bc1] | 84 |
|
---|