| [3a51bd] | 1 | /* | 
|---|
|  | 2 | * Project: MoleCuilder | 
|---|
|  | 3 | * Description: creates and alters molecular systems | 
|---|
|  | 4 | * Copyright (C)  2012 University of Bonn. All rights reserved. | 
|---|
|  | 5 | * | 
|---|
|  | 6 | * | 
|---|
|  | 7 | *   This file is part of MoleCuilder. | 
|---|
|  | 8 | * | 
|---|
|  | 9 | *    MoleCuilder is free software: you can redistribute it and/or modify | 
|---|
|  | 10 | *    it under the terms of the GNU General Public License as published by | 
|---|
|  | 11 | *    the Free Software Foundation, either version 2 of the License, or | 
|---|
|  | 12 | *    (at your option) any later version. | 
|---|
|  | 13 | * | 
|---|
|  | 14 | *    MoleCuilder is distributed in the hope that it will be useful, | 
|---|
|  | 15 | *    but WITHOUT ANY WARRANTY; without even the implied warranty of | 
|---|
|  | 16 | *    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
|---|
|  | 17 | *    GNU General Public License for more details. | 
|---|
|  | 18 | * | 
|---|
|  | 19 | *    You should have received a copy of the GNU General Public License | 
|---|
|  | 20 | *    along with MoleCuilder.  If not, see <http://www.gnu.org/licenses/>. | 
|---|
|  | 21 | */ | 
|---|
|  | 22 |  | 
|---|
|  | 23 | /* | 
|---|
|  | 24 | * StretchBondAction.cpp | 
|---|
|  | 25 | * | 
|---|
|  | 26 | *  Created on: Sep 26, 2012 | 
|---|
|  | 27 | *      Author: heber | 
|---|
|  | 28 | */ | 
|---|
|  | 29 |  | 
|---|
|  | 30 | // include config.h | 
|---|
|  | 31 | #ifdef HAVE_CONFIG_H | 
|---|
|  | 32 | #include <config.h> | 
|---|
|  | 33 | #endif | 
|---|
|  | 34 |  | 
|---|
|  | 35 | #include "CodePatterns/MemDebug.hpp" | 
|---|
|  | 36 |  | 
|---|
|  | 37 | #include "Actions/MoleculeAction/StretchBondAction.hpp" | 
|---|
|  | 38 |  | 
|---|
|  | 39 | #include "CodePatterns/Log.hpp" | 
|---|
|  | 40 | #include "CodePatterns/Verbose.hpp" | 
|---|
|  | 41 |  | 
|---|
|  | 42 | #include "LinearAlgebra/Plane.hpp" | 
|---|
|  | 43 |  | 
|---|
|  | 44 | #include "Atom/atom.hpp" | 
|---|
|  | 45 | #include "Bond/bond.hpp" | 
|---|
|  | 46 | #include "molecule.hpp" | 
|---|
|  | 47 | #include "World.hpp" | 
|---|
|  | 48 |  | 
|---|
|  | 49 | using namespace MoleCuilder; | 
|---|
|  | 50 |  | 
|---|
|  | 51 | // and construct the stuff | 
|---|
|  | 52 | #include "StretchBondAction.def" | 
|---|
|  | 53 | #include "Action_impl_pre.hpp" | 
|---|
|  | 54 | /** =========== define the function ====================== */ | 
|---|
| [b5b01e] | 55 | ActionState::ptr MoleculeStretchBondAction::performCall() | 
|---|
| [3a51bd] | 56 | { | 
|---|
|  | 57 | // check preconditions | 
|---|
|  | 58 | const std::vector< atom *> atoms = World::getInstance().getSelectedAtoms(); | 
|---|
|  | 59 | if (atoms.size() != 2) { | 
|---|
| [26b4d62] | 60 | STATUS("Exactly two atoms must be selected."); | 
|---|
| [3a51bd] | 61 | return Action::failure; | 
|---|
|  | 62 | } | 
|---|
|  | 63 | const molecule *mol = atoms[0]->getMolecule(); | 
|---|
|  | 64 | if (mol != atoms[1]->getMolecule()) { | 
|---|
| [26b4d62] | 65 | STATUS("The two selected atoms must belong to the same molecule."); | 
|---|
| [3a51bd] | 66 | return Action::failure; | 
|---|
|  | 67 | } | 
|---|
|  | 68 | // gather undo information | 
|---|
|  | 69 | const double olddistance = atoms[0]->getPosition().distance(atoms[1]->getPosition()); | 
|---|
|  | 70 | const double newdistance = params.bonddistance.get(); | 
|---|
|  | 71 | LOG(1, "INFO: Old bond distance is " << olddistance << ", stretching to " << newdistance << "."); | 
|---|
|  | 72 |  | 
|---|
|  | 73 | // create the bond plane and mid-distance | 
|---|
|  | 74 | const Vector NormalVector = (atoms[0]->getPosition() - atoms[1]->getPosition())* (1./olddistance); | 
|---|
|  | 75 | const Vector OffsetVector = 0.5*(atoms[0]->getPosition() + atoms[1]->getPosition()); | 
|---|
|  | 76 | Plane bondplane(NormalVector, OffsetVector); | 
|---|
|  | 77 | // go through the molecule and stretch each atom relative two plane | 
|---|
|  | 78 | const double shift = 0.5*(newdistance - olddistance); | 
|---|
|  | 79 | const Vector PositiveShift = shift * NormalVector; | 
|---|
|  | 80 | const Vector NegativeShift = -shift * NormalVector; | 
|---|
|  | 81 | Box &domain = World::getInstance().getDomain(); | 
|---|
|  | 82 | for (molecule::iterator iter = mol->begin(); iter != mol->end(); ++iter) { | 
|---|
|  | 83 | const Vector &position = (*iter)->getPosition(); | 
|---|
|  | 84 | // for each atom determine on which side of plane it is and shift accordingly | 
|---|
|  | 85 | if (bondplane.SignedDistance(position) > 0) { | 
|---|
|  | 86 | (*iter)->setPosition( domain.enforceBoundaryConditions(position+PositiveShift) ); | 
|---|
|  | 87 | } else { | 
|---|
|  | 88 | (*iter)->setPosition( domain.enforceBoundaryConditions(position+NegativeShift) ); | 
|---|
|  | 89 | } | 
|---|
|  | 90 | } | 
|---|
|  | 91 |  | 
|---|
|  | 92 | MoleculeStretchBondState *UndoState = new MoleculeStretchBondState(shift, bondplane, mol, params); | 
|---|
| [b5b01e] | 93 | return ActionState::ptr(UndoState); | 
|---|
| [3a51bd] | 94 | } | 
|---|
|  | 95 |  | 
|---|
| [b5b01e] | 96 | ActionState::ptr MoleculeStretchBondAction::performUndo(ActionState::ptr _state) { | 
|---|
| [3a51bd] | 97 | MoleculeStretchBondState *state = assert_cast<MoleculeStretchBondState*>(_state.get()); | 
|---|
|  | 98 |  | 
|---|
|  | 99 | // use given plane to undo | 
|---|
|  | 100 | const Vector PositiveShift = state->shift * state->bondplane.getNormal(); | 
|---|
|  | 101 | const Vector NegativeShift = -state->shift * state->bondplane.getNormal(); | 
|---|
|  | 102 | Box &domain = World::getInstance().getDomain(); | 
|---|
|  | 103 | for (molecule::iterator iter = state->mol->begin(); | 
|---|
|  | 104 | iter != state->mol->end(); ++iter) { | 
|---|
|  | 105 | const Vector &position = (*iter)->getPosition(); | 
|---|
|  | 106 | // for each atom determine on which side of plane it is and shift accordingly | 
|---|
|  | 107 | if (state->bondplane.SignedDistance(position) < 0) { | 
|---|
|  | 108 | (*iter)->setPosition( domain.enforceBoundaryConditions(position+PositiveShift) ); | 
|---|
|  | 109 | } else { | 
|---|
|  | 110 | (*iter)->setPosition( domain.enforceBoundaryConditions(position+NegativeShift) ); | 
|---|
|  | 111 | } | 
|---|
|  | 112 | } | 
|---|
|  | 113 |  | 
|---|
| [b5b01e] | 114 | return ActionState::ptr(_state); | 
|---|
| [3a51bd] | 115 | } | 
|---|
|  | 116 |  | 
|---|
| [b5b01e] | 117 | ActionState::ptr MoleculeStretchBondAction::performRedo(ActionState::ptr _state){ | 
|---|
| [3a51bd] | 118 | MoleculeStretchBondState *state = assert_cast<MoleculeStretchBondState*>(_state.get()); | 
|---|
|  | 119 |  | 
|---|
|  | 120 | // use given plane to undo | 
|---|
|  | 121 | const Vector PositiveShift = state->shift * state->bondplane.getNormal(); | 
|---|
|  | 122 | const Vector NegativeShift = -state->shift * state->bondplane.getNormal(); | 
|---|
|  | 123 | Box &domain = World::getInstance().getDomain(); | 
|---|
|  | 124 | for (molecule::iterator iter = state->mol->begin(); | 
|---|
|  | 125 | iter != state->mol->end(); ++iter) { | 
|---|
|  | 126 | const Vector &position = (*iter)->getPosition(); | 
|---|
|  | 127 | // for each atom determine on which side of plane it is and shift accordingly | 
|---|
|  | 128 | if (state->bondplane.SignedDistance(position) > 0) { | 
|---|
|  | 129 | (*iter)->setPosition( domain.enforceBoundaryConditions(position+PositiveShift) ); | 
|---|
|  | 130 | } else { | 
|---|
|  | 131 | (*iter)->setPosition( domain.enforceBoundaryConditions(position+NegativeShift) ); | 
|---|
|  | 132 | } | 
|---|
|  | 133 | } | 
|---|
| [b5b01e] | 134 | return ActionState::ptr(_state); | 
|---|
| [3a51bd] | 135 | } | 
|---|
|  | 136 |  | 
|---|
|  | 137 | bool MoleculeStretchBondAction::canUndo() { | 
|---|
|  | 138 | return true; | 
|---|
|  | 139 | } | 
|---|
|  | 140 |  | 
|---|
|  | 141 | bool MoleculeStretchBondAction::shouldUndo() { | 
|---|
|  | 142 | return true; | 
|---|
|  | 143 | } | 
|---|
|  | 144 | /** =========== end of function ====================== */ | 
|---|