| [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 |  | 
|---|
| [97ebf8] | 8 | /* | 
|---|
|  | 9 | * ChangeElementAction.cpp | 
|---|
|  | 10 | * | 
|---|
|  | 11 | *  Created on: May 9, 2010 | 
|---|
|  | 12 | *      Author: heber | 
|---|
|  | 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 |  | 
|---|
| [f8456c] | 22 | #include "Descriptors/AtomIdDescriptor.hpp" | 
|---|
| [97ebf8] | 23 | #include "atom.hpp" | 
|---|
| [023971] | 24 | #include "element.hpp" | 
|---|
| [ad011c] | 25 | #include "CodePatterns/Log.hpp" | 
|---|
| [57f243] | 26 | #include "LinearAlgebra/Vector.hpp" | 
|---|
| [ad011c] | 27 | #include "CodePatterns/Verbose.hpp" | 
|---|
| [dddbfe] | 28 | #include "molecule.hpp" | 
|---|
| [97ebf8] | 29 | #include "World.hpp" | 
|---|
|  | 30 |  | 
|---|
|  | 31 | #include <iostream> | 
|---|
| [f8456c] | 32 | #include <map> | 
|---|
| [97ebf8] | 33 | #include <string> | 
|---|
|  | 34 |  | 
|---|
|  | 35 | using namespace std; | 
|---|
|  | 36 |  | 
|---|
| [1fd675] | 37 | #include "Actions/AtomAction/ChangeElementAction.hpp" | 
|---|
| [454065] | 38 |  | 
|---|
| [1fd675] | 39 | // and construct the stuff | 
|---|
|  | 40 | #include "ChangeElementAction.def" | 
|---|
|  | 41 | #include "Action_impl_pre.hpp" | 
|---|
|  | 42 | /** =========== define the function ====================== */ | 
|---|
| [454065] | 43 | Action::state_ptr AtomChangeElementAction::performCall() { | 
|---|
| [97ebf8] | 44 | atom *first = NULL; | 
|---|
| [dddbfe] | 45 | molecule *mol = NULL; | 
|---|
| [97ebf8] | 46 |  | 
|---|
| [1fd675] | 47 | // obtain information | 
|---|
|  | 48 | getParametersfromValueStorage(); | 
|---|
| [97ebf8] | 49 |  | 
|---|
| [f8456c] | 50 | // create undo state | 
|---|
|  | 51 | ElementMap Elements; | 
|---|
|  | 52 | for (World::AtomSelectionIterator iter = World::getInstance().beginAtomSelection(); iter != World::getInstance().endAtomSelection(); ++iter) { | 
|---|
|  | 53 | Elements.insert(std::pair<int, const element *> (iter->second->getId(), iter->second->getType())); | 
|---|
|  | 54 | } | 
|---|
| [1fd675] | 55 | AtomChangeElementState *UndoState = new AtomChangeElementState(Elements, params); | 
|---|
| [f8456c] | 56 |  | 
|---|
| [454065] | 57 | for (World::AtomSelectionIterator iter = World::getInstance().beginAtomSelection(); iter != World::getInstance().endAtomSelection(); ++iter) { | 
|---|
|  | 58 | first = iter->second; | 
|---|
| [1fd675] | 59 | DoLog(1) && (Log() << Verbose(1) << "Changing atom " << *first << " to element " << *params.elemental << "." << endl); | 
|---|
| [dddbfe] | 60 | mol = first->getMolecule(); | 
|---|
|  | 61 | first->removeFromMolecule(); // remove atom | 
|---|
| [1fd675] | 62 | first->setType(params.elemental); | 
|---|
| [dddbfe] | 63 | mol->AddAtom(first);  // add atom to ensure correctness of formula | 
|---|
| [454065] | 64 | } | 
|---|
| [f8456c] | 65 | return Action::state_ptr(UndoState); | 
|---|
| [97ebf8] | 66 | } | 
|---|
|  | 67 |  | 
|---|
|  | 68 | Action::state_ptr AtomChangeElementAction::performUndo(Action::state_ptr _state) { | 
|---|
| [f8456c] | 69 | AtomChangeElementState *state = assert_cast<AtomChangeElementState*>(_state.get()); | 
|---|
|  | 70 | atom *first = NULL; | 
|---|
|  | 71 | molecule *mol = NULL; | 
|---|
| [97ebf8] | 72 |  | 
|---|
| [f8456c] | 73 | for(ElementMap::const_iterator iter = state->Elements.begin(); iter != state->Elements.end(); ++iter) { | 
|---|
|  | 74 | first = World::getInstance().getAtom(AtomById(iter->first)); | 
|---|
|  | 75 | mol = first->getMolecule(); | 
|---|
|  | 76 | first->removeFromMolecule(); // remove atom | 
|---|
|  | 77 | first->setType(iter->second); | 
|---|
|  | 78 | mol->AddAtom(first);  // add atom to ensure correctness of formula | 
|---|
|  | 79 | } | 
|---|
|  | 80 |  | 
|---|
|  | 81 | return Action::state_ptr(_state); | 
|---|
| [97ebf8] | 82 | } | 
|---|
|  | 83 |  | 
|---|
|  | 84 | Action::state_ptr AtomChangeElementAction::performRedo(Action::state_ptr _state){ | 
|---|
| [f8456c] | 85 | AtomChangeElementState *state = assert_cast<AtomChangeElementState*>(_state.get()); | 
|---|
|  | 86 | atom *first = NULL; | 
|---|
|  | 87 | molecule *mol = NULL; | 
|---|
|  | 88 |  | 
|---|
|  | 89 | for(ElementMap::const_iterator iter = state->Elements.begin(); iter != state->Elements.end(); ++iter) { | 
|---|
|  | 90 | first = World::getInstance().getAtom(AtomById(iter->first)); | 
|---|
|  | 91 | mol = first->getMolecule(); | 
|---|
|  | 92 | first->removeFromMolecule(); // remove atom | 
|---|
| [1fd675] | 93 | first->setType(state->params.elemental); | 
|---|
| [f8456c] | 94 | mol->AddAtom(first);  // add atom to ensure correctness of formula | 
|---|
|  | 95 | } | 
|---|
|  | 96 |  | 
|---|
|  | 97 | return Action::state_ptr(_state); | 
|---|
| [97ebf8] | 98 | } | 
|---|
|  | 99 |  | 
|---|
|  | 100 | bool AtomChangeElementAction::canUndo() { | 
|---|
| [f8456c] | 101 | return true; | 
|---|
| [97ebf8] | 102 | } | 
|---|
|  | 103 |  | 
|---|
|  | 104 | bool AtomChangeElementAction::shouldUndo() { | 
|---|
| [f8456c] | 105 | return true; | 
|---|
| [97ebf8] | 106 | } | 
|---|
| [1fd675] | 107 | /** =========== end of function ====================== */ | 
|---|