| 1 | /*
 | 
|---|
| 2 |  * Project: MoleCuilder
 | 
|---|
| 3 |  * Description: creates and alters molecular systems
 | 
|---|
| 4 |  * Copyright (C)  2010-2011 University of Bonn. All rights reserved.
 | 
|---|
| 5 |  * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
 | 
|---|
| 6 |  */
 | 
|---|
| 7 | 
 | 
|---|
| 8 | /*
 | 
|---|
| 9 |  * CenterInBoxAction.cpp
 | 
|---|
| 10 |  *
 | 
|---|
| 11 |  *  Created on: May 8, 2010
 | 
|---|
| 12 |  *      Author: heber
 | 
|---|
| 13 |  */
 | 
|---|
| 14 | 
 | 
|---|
| 15 | // include config.h
 | 
|---|
| 16 | #ifdef HAVE_CONFIG_H
 | 
|---|
| 17 | #include <config.h>
 | 
|---|
| 18 | #endif
 | 
|---|
| 19 | 
 | 
|---|
| 20 | // include headers that implement a archive in simple text format
 | 
|---|
| 21 | #include <boost/archive/text_oarchive.hpp>
 | 
|---|
| 22 | #include <boost/archive/text_iarchive.hpp>
 | 
|---|
| 23 | #include "boost/serialization/vector.hpp"
 | 
|---|
| 24 | 
 | 
|---|
| 25 | #include "CodePatterns/MemDebug.hpp"
 | 
|---|
| 26 | 
 | 
|---|
| 27 | #include <boost/shared_ptr.hpp>
 | 
|---|
| 28 | 
 | 
|---|
| 29 | #include "Box.hpp"
 | 
|---|
| 30 | #include "CodePatterns/Log.hpp"
 | 
|---|
| 31 | #include "LinearAlgebra/MatrixContent.hpp"
 | 
|---|
| 32 | #include "LinearAlgebra/RealSpaceMatrix.hpp"
 | 
|---|
| 33 | #include "molecule.hpp"
 | 
|---|
| 34 | #include "World.hpp"
 | 
|---|
| 35 | 
 | 
|---|
| 36 | #include <iostream>
 | 
|---|
| 37 | #include <string>
 | 
|---|
| 38 | #include <vector>
 | 
|---|
| 39 | 
 | 
|---|
| 40 | #include "Actions/WorldAction/CenterInBoxAction.hpp"
 | 
|---|
| 41 | 
 | 
|---|
| 42 | using namespace MoleCuilder;
 | 
|---|
| 43 | 
 | 
|---|
| 44 | // and construct the stuff
 | 
|---|
| 45 | #include "CenterInBoxAction.def"
 | 
|---|
| 46 | #include "Action_impl_pre.hpp"
 | 
|---|
| 47 | /** =========== define the function ====================== */
 | 
|---|
| 48 | Action::state_ptr WorldCenterInBoxAction::performCall() {
 | 
|---|
| 49 |   // obtain information
 | 
|---|
| 50 |   getParametersfromValueStorage();
 | 
|---|
| 51 | 
 | 
|---|
| 52 |   // create undo state
 | 
|---|
| 53 |   std::stringstream undostream;
 | 
|---|
| 54 |   boost::archive::text_oarchive oa(undostream);
 | 
|---|
| 55 |   const RealSpaceMatrix &matrix = World::getInstance().getDomain().getM();
 | 
|---|
| 56 |   oa << matrix;
 | 
|---|
| 57 |   std::vector< boost::shared_ptr<Vector> > OldPositions;
 | 
|---|
| 58 |   std::vector<molecule*> AllMolecules = World::getInstance().getAllMolecules();
 | 
|---|
| 59 |   for (std::vector<molecule*>::iterator MolRunner = AllMolecules.begin();
 | 
|---|
| 60 |       MolRunner != AllMolecules.end();
 | 
|---|
| 61 |       ++MolRunner) {
 | 
|---|
| 62 |     for(molecule::const_iterator AtomRunner = (*MolRunner)->begin();
 | 
|---|
| 63 |         AtomRunner != (*MolRunner)->end();
 | 
|---|
| 64 |         ++AtomRunner) {
 | 
|---|
| 65 |       OldPositions.push_back(
 | 
|---|
| 66 |           boost::shared_ptr<Vector>(new Vector(
 | 
|---|
| 67 |               (*AtomRunner)->getPosition()
 | 
|---|
| 68 |               ))
 | 
|---|
| 69 |           );
 | 
|---|
| 70 |     }
 | 
|---|
| 71 |   }
 | 
|---|
| 72 | 
 | 
|---|
| 73 |   // set new domain
 | 
|---|
| 74 |   World::getInstance().setDomain(params.cell_size.getM());
 | 
|---|
| 75 | 
 | 
|---|
| 76 |   // center atoms
 | 
|---|
| 77 |   for (std::vector<molecule*>::iterator MolRunner = AllMolecules.begin(); MolRunner != AllMolecules.end(); ++MolRunner) {
 | 
|---|
| 78 |     (*MolRunner)->CenterInBox();
 | 
|---|
| 79 |   }
 | 
|---|
| 80 | 
 | 
|---|
| 81 |   // give final box size
 | 
|---|
| 82 |   LOG(0, "Box domain is now " << World::getInstance().getDomain().getM());
 | 
|---|
| 83 | 
 | 
|---|
| 84 |   // create undo state
 | 
|---|
| 85 |   WorldCenterInBoxState *UndoState =
 | 
|---|
| 86 |       new WorldCenterInBoxState(
 | 
|---|
| 87 |           undostream.str(),
 | 
|---|
| 88 |           OldPositions,
 | 
|---|
| 89 |           params
 | 
|---|
| 90 |           );
 | 
|---|
| 91 | 
 | 
|---|
| 92 |   return Action::state_ptr(UndoState);
 | 
|---|
| 93 | }
 | 
|---|
| 94 | 
 | 
|---|
| 95 | Action::state_ptr WorldCenterInBoxAction::performUndo(Action::state_ptr _state) {
 | 
|---|
| 96 |   WorldCenterInBoxState *state = assert_cast<WorldCenterInBoxState*>(_state.get());
 | 
|---|
| 97 | 
 | 
|---|
| 98 |   // restore domain
 | 
|---|
| 99 |   RealSpaceMatrix matrix;
 | 
|---|
| 100 |   std::stringstream undostream(state->undostring);
 | 
|---|
| 101 |   boost::archive::text_iarchive ia(undostream);
 | 
|---|
| 102 |   ia >> matrix;
 | 
|---|
| 103 |   World::getInstance().setDomain(matrix);
 | 
|---|
| 104 | 
 | 
|---|
| 105 |   // place atoms on old positions
 | 
|---|
| 106 |   std::vector< boost::shared_ptr<Vector> >::const_iterator OldPositionsIter = state->OldPositions.begin();
 | 
|---|
| 107 |   std::vector<molecule*> AllMolecules = World::getInstance().getAllMolecules();
 | 
|---|
| 108 |   for (std::vector<molecule*>::iterator MolRunner = AllMolecules.begin();
 | 
|---|
| 109 |       MolRunner != AllMolecules.end();
 | 
|---|
| 110 |       ++MolRunner) {
 | 
|---|
| 111 |     for(molecule::iterator AtomRunner = (*MolRunner)->begin();
 | 
|---|
| 112 |         AtomRunner != (*MolRunner)->end();
 | 
|---|
| 113 |         ++AtomRunner) {
 | 
|---|
| 114 |       ASSERT(OldPositionsIter != state->OldPositions.end(),
 | 
|---|
| 115 |           "WorldBoundInBoxAction::performUndo() - too few positions stored in UndoState.");
 | 
|---|
| 116 |       (*AtomRunner)->setPosition(**(OldPositionsIter++));
 | 
|---|
| 117 |     }
 | 
|---|
| 118 |   }
 | 
|---|
| 119 | 
 | 
|---|
| 120 |   // give final box size
 | 
|---|
| 121 |   LOG(0, "Box domain restored to " << World::getInstance().getDomain().getM());
 | 
|---|
| 122 | 
 | 
|---|
| 123 |   return Action::state_ptr(_state);
 | 
|---|
| 124 | }
 | 
|---|
| 125 | 
 | 
|---|
| 126 | Action::state_ptr WorldCenterInBoxAction::performRedo(Action::state_ptr _state){
 | 
|---|
| 127 |   WorldCenterInBoxState *state = assert_cast<WorldCenterInBoxState*>(_state.get());
 | 
|---|
| 128 | 
 | 
|---|
| 129 |   // set new domain
 | 
|---|
| 130 |   World::getInstance().setDomain(state->params.cell_size.getM());
 | 
|---|
| 131 | 
 | 
|---|
| 132 |   // center atoms
 | 
|---|
| 133 |   std::vector<molecule *> AllMolecules = World::getInstance().getAllMolecules();
 | 
|---|
| 134 |   for (std::vector<molecule*>::iterator MolRunner = AllMolecules.begin(); MolRunner != AllMolecules.end(); ++MolRunner) {
 | 
|---|
| 135 |     (*MolRunner)->CenterInBox();
 | 
|---|
| 136 |   }
 | 
|---|
| 137 | 
 | 
|---|
| 138 |   // give final box size
 | 
|---|
| 139 |   LOG(0, "Box domain is again " << World::getInstance().getDomain().getM());
 | 
|---|
| 140 | 
 | 
|---|
| 141 |   return Action::state_ptr(_state);
 | 
|---|
| 142 | }
 | 
|---|
| 143 | 
 | 
|---|
| 144 | bool WorldCenterInBoxAction::canUndo() {
 | 
|---|
| 145 |   return true;
 | 
|---|
| 146 | }
 | 
|---|
| 147 | 
 | 
|---|
| 148 | bool WorldCenterInBoxAction::shouldUndo() {
 | 
|---|
| 149 |   return true;
 | 
|---|
| 150 | }
 | 
|---|
| 151 | /** =========== end of function ====================== */
 | 
|---|