| 1 | /*
 | 
|---|
| 2 |  * Project: MoleCuilder
 | 
|---|
| 3 |  * Description: creates and alters molecular systems
 | 
|---|
| 4 |  * Copyright (C)  2014 Frederik Heber. 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 |  * FillVolumeAction.cpp
 | 
|---|
| 25 |  *
 | 
|---|
| 26 |  *  Created on: Sep 03, 2014
 | 
|---|
| 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/UndoRedoHelpers.hpp"
 | 
|---|
| 38 | #include "Atom/atom.hpp"
 | 
|---|
| 39 | #include "Atom/AtomicInfo.hpp"
 | 
|---|
| 40 | #include "Atom/CopyAtoms/CopyAtoms_withBonds.hpp"
 | 
|---|
| 41 | #include "Bond/BondInfo.hpp"
 | 
|---|
| 42 | #include "CodePatterns/Log.hpp"
 | 
|---|
| 43 | #include "Descriptors/MoleculeOrderDescriptor.hpp"
 | 
|---|
| 44 | #include "Filling/Cluster.hpp"
 | 
|---|
| 45 | #include "Filling/Filler.hpp"
 | 
|---|
| 46 | #include "Filling/Preparators/ShapeVolumeFillerPreparator.hpp"
 | 
|---|
| 47 | #include "molecule.hpp"
 | 
|---|
| 48 | #include "Parser/FormatParserInterface.hpp"
 | 
|---|
| 49 | #include "Parser/FormatParserStorage.hpp"
 | 
|---|
| 50 | #include "Shapes/Shape.hpp"
 | 
|---|
| 51 | #include "Shapes/ShapeRegistry.hpp"
 | 
|---|
| 52 | #include "Shapes/ShapeType.hpp"
 | 
|---|
| 53 | #include "World.hpp"
 | 
|---|
| 54 | 
 | 
|---|
| 55 | #include <algorithm>
 | 
|---|
| 56 | #include <iostream>
 | 
|---|
| 57 | #include <string>
 | 
|---|
| 58 | #include <vector>
 | 
|---|
| 59 | 
 | 
|---|
| 60 | #include "Actions/FillAction/FillVolumeAction.hpp"
 | 
|---|
| 61 | 
 | 
|---|
| 62 | using namespace MoleCuilder;
 | 
|---|
| 63 | 
 | 
|---|
| 64 | // and construct the stuff
 | 
|---|
| 65 | #include "FillVolumeAction.def"
 | 
|---|
| 66 | #include "Action_impl_pre.hpp"
 | 
|---|
| 67 | /** =========== define the function ====================== */
 | 
|---|
| 68 | ActionState::ptr FillVolumeAction::performCall() {
 | 
|---|
| 69 |   typedef std::vector<atom*> AtomVector;
 | 
|---|
| 70 | 
 | 
|---|
| 71 |   // get the filler molecule
 | 
|---|
| 72 |   std::vector<AtomicInfo> movedatoms;
 | 
|---|
| 73 |   const std::vector< molecule *> molecules = World::getInstance().getSelectedMolecules();
 | 
|---|
| 74 |   if (molecules.size() != 1) {
 | 
|---|
| 75 |     STATUS("No exactly one molecule selected, aborting,");
 | 
|---|
| 76 |     return Action::failure;
 | 
|---|
| 77 |   }
 | 
|---|
| 78 |   molecule *filler = *(molecules.begin());
 | 
|---|
| 79 |   for(molecule::const_iterator iter = const_cast<const molecule *>(filler)->begin();
 | 
|---|
| 80 |       iter != const_cast<const molecule *>(filler)->end();
 | 
|---|
| 81 |       ++iter)
 | 
|---|
| 82 |     movedatoms.push_back( AtomicInfo(*(*iter)) );
 | 
|---|
| 83 |   LOG(1, "INFO: Chosen molecule has " << filler->size() << " atoms.");
 | 
|---|
| 84 | 
 | 
|---|
| 85 |   // center filler's tip at origin
 | 
|---|
| 86 |   filler->CenterEdge();
 | 
|---|
| 87 | 
 | 
|---|
| 88 |   // prepare the filler preparator
 | 
|---|
| 89 |   if (ShapeRegistry::getInstance().countSelectedShapes() != (size_t)1) {
 | 
|---|
| 90 |     STATUS("Not exactly one shape selected.");
 | 
|---|
| 91 |     return Action::failure;
 | 
|---|
| 92 |   }
 | 
|---|
| 93 |   const std::vector<Shape*> shapes = ShapeRegistry::getInstance().getSelectedShapes();
 | 
|---|
| 94 |   const Shape &shape = **shapes.begin();
 | 
|---|
| 95 | 
 | 
|---|
| 96 |   // hard check whether shape is of allowed type, not all are implemented
 | 
|---|
| 97 |   // but these only fail with an assertion, hence not with disable-debug
 | 
|---|
| 98 |   switch (shape.getType()) {
 | 
|---|
| 99 |     case NowhereType:
 | 
|---|
| 100 |     case EverywhereType:
 | 
|---|
| 101 |     case SphereType:
 | 
|---|
| 102 |     case CuboidType:
 | 
|---|
| 103 |       STATUS("The shape type "+toString(shape.getType())+" is currently not supported.");
 | 
|---|
| 104 |       return Action::failure;
 | 
|---|
| 105 |       break;
 | 
|---|
| 106 |     default:
 | 
|---|
| 107 |       break;
 | 
|---|
| 108 |   }
 | 
|---|
| 109 | 
 | 
|---|
| 110 |   ShapeVolumeFillerPreparator filler_preparator(filler);
 | 
|---|
| 111 |   if (params.SphereRadius.get() != 0.) {
 | 
|---|
| 112 |     if (World::getInstance().beginAtomSelection() == World::getInstance().endAtomSelection()) {
 | 
|---|
| 113 |       STATUS("You have given a sphere radius "+toString(params.SphereRadius.get())
 | 
|---|
| 114 |           +" != 0, but have not select any atoms.");
 | 
|---|
| 115 |       return Action::failure;
 | 
|---|
| 116 |     }
 | 
|---|
| 117 |     std::vector<atom*> atoms(World::getInstance().getSelectedAtoms());
 | 
|---|
| 118 |     filler_preparator.addSurfacePredicate(
 | 
|---|
| 119 |         params.SphereRadius.get(),
 | 
|---|
| 120 |         atoms);
 | 
|---|
| 121 |   }
 | 
|---|
| 122 |   filler_preparator.addVoidPredicate(params.mindistance.get());
 | 
|---|
| 123 |   filler_preparator.addRandomInserter(
 | 
|---|
| 124 |       params.RandAtomDisplacement.get(),
 | 
|---|
| 125 |       params.RandMoleculeDisplacement.get(),
 | 
|---|
| 126 |       params.DoRotate.get());
 | 
|---|
| 127 |   filler_preparator.addShapeMesh(
 | 
|---|
| 128 |       shape,
 | 
|---|
| 129 |       params.N.get());
 | 
|---|
| 130 |   if (!filler_preparator()) {
 | 
|---|
| 131 |     STATUS("Filler was not fully constructed.");
 | 
|---|
| 132 |     return Action::failure;
 | 
|---|
| 133 |   }
 | 
|---|
| 134 | 
 | 
|---|
| 135 |   // use filler
 | 
|---|
| 136 |   bool successflag = false;
 | 
|---|
| 137 |   FillVolumeState *UndoState = NULL;
 | 
|---|
| 138 |   {
 | 
|---|
| 139 |     // fill
 | 
|---|
| 140 |     Filler *fillerFunction = filler_preparator.obtainFiller();
 | 
|---|
| 141 |     // TODO: When molecule::getBoundingSphere() does not use a sphere anymore,
 | 
|---|
| 142 |     // we need to check whether we rotate the molecule randomly. For this to
 | 
|---|
| 143 |     // work we need a sphere!
 | 
|---|
| 144 |     const Shape s = filler->getBoundingSphere(params.RandAtomDisplacement.get());
 | 
|---|
| 145 |     ClusterInterface::Cluster_impl cluster( new Cluster(filler->getAtomIds(), s) );
 | 
|---|
| 146 |     CopyAtoms_withBonds copyMethod;
 | 
|---|
| 147 |     Filler::ClusterVector_t ClonedClusters;
 | 
|---|
| 148 |     successflag = (*fillerFunction)(copyMethod, cluster, ClonedClusters);
 | 
|---|
| 149 |     delete fillerFunction;
 | 
|---|
| 150 | 
 | 
|---|
| 151 |     // append each cluster's atoms to clonedatoms (however not selected ones)
 | 
|---|
| 152 |     std::vector<const atom *> clonedatoms;
 | 
|---|
| 153 |     std::vector<AtomicInfo> clonedatominfos;
 | 
|---|
| 154 |     for (Filler::ClusterVector_t::const_iterator iter = ClonedClusters.begin();
 | 
|---|
| 155 |         iter != ClonedClusters.end(); ++iter) {
 | 
|---|
| 156 |       const AtomIdSet &atoms = (*iter)->getAtomIds();
 | 
|---|
| 157 |       clonedatoms.reserve(clonedatoms.size()+atoms.size());
 | 
|---|
| 158 |       for (AtomIdSet::const_iterator atomiter = atoms.begin(); atomiter != atoms.end(); ++atomiter)
 | 
|---|
| 159 |         if (!filler->containsAtom(*atomiter)) {
 | 
|---|
| 160 |           clonedatoms.push_back( *atomiter );
 | 
|---|
| 161 |           clonedatominfos.push_back( AtomicInfo(*(*atomiter)) );
 | 
|---|
| 162 |         }
 | 
|---|
| 163 |     }
 | 
|---|
| 164 |     std::vector< BondInfo > clonedbonds;
 | 
|---|
| 165 |     StoreBondInformationFromAtoms(clonedatoms, clonedbonds);
 | 
|---|
| 166 |     LOG(2, "DEBUG: There are " << clonedatominfos.size() << " newly created atoms.");
 | 
|---|
| 167 | 
 | 
|---|
| 168 |     if (!successflag) {
 | 
|---|
| 169 |       STATUS("Insertion failed, removing inserted clusters, translating original one back");
 | 
|---|
| 170 |       RemoveAtomsFromAtomicInfo(clonedatominfos);
 | 
|---|
| 171 |       clonedatoms.clear();
 | 
|---|
| 172 |       SetAtomsFromAtomicInfo(movedatoms);
 | 
|---|
| 173 |     } else {
 | 
|---|
| 174 |       std::vector<Vector> MovedToVector(filler->size(), zeroVec);
 | 
|---|
| 175 |       std::transform(filler->begin(), filler->end(), MovedToVector.begin(),
 | 
|---|
| 176 |           boost::bind(&AtomInfo::getPosition, _1) );
 | 
|---|
| 177 |       UndoState = new FillVolumeState(clonedatominfos,clonedbonds,movedatoms,MovedToVector,params);
 | 
|---|
| 178 |     }
 | 
|---|
| 179 |   }
 | 
|---|
| 180 | 
 | 
|---|
| 181 |   if (successflag)
 | 
|---|
| 182 |     return ActionState::ptr(UndoState);
 | 
|---|
| 183 |   else {
 | 
|---|
| 184 |     return Action::failure;
 | 
|---|
| 185 |   }
 | 
|---|
| 186 | }
 | 
|---|
| 187 | 
 | 
|---|
| 188 | ActionState::ptr FillVolumeAction::performUndo(ActionState::ptr _state) {
 | 
|---|
| 189 |   FillVolumeState *state = assert_cast<FillVolumeState*>(_state.get());
 | 
|---|
| 190 | 
 | 
|---|
| 191 |   // remove all created atoms
 | 
|---|
| 192 |   RemoveAtomsFromAtomicInfo(state->clonedatoms);
 | 
|---|
| 193 |   // add the original cluster
 | 
|---|
| 194 |   SetAtomsFromAtomicInfo(state->movedatoms);
 | 
|---|
| 195 | 
 | 
|---|
| 196 |   return ActionState::ptr(_state);
 | 
|---|
| 197 | }
 | 
|---|
| 198 | 
 | 
|---|
| 199 | ActionState::ptr FillVolumeAction::performRedo(ActionState::ptr _state){
 | 
|---|
| 200 |   FillVolumeState *state = assert_cast<FillVolumeState*>(_state.get());
 | 
|---|
| 201 | 
 | 
|---|
| 202 |   // place filler cluster again at new spot
 | 
|---|
| 203 |   ResetAtomPosition(state->movedatoms, state->MovedToVector);
 | 
|---|
| 204 | 
 | 
|---|
| 205 |   // re-create all clusters
 | 
|---|
| 206 |   bool statusflag = AddAtomsFromAtomicInfo(state->clonedatoms);
 | 
|---|
| 207 | 
 | 
|---|
| 208 |   // re-create the bonds
 | 
|---|
| 209 |   if (statusflag)
 | 
|---|
| 210 |     AddBondsFromBondInfo(state->clonedbonds);
 | 
|---|
| 211 |   if (statusflag)
 | 
|---|
| 212 |     return ActionState::ptr(_state);
 | 
|---|
| 213 |   else {
 | 
|---|
| 214 |     STATUS("Failed re-adding filled in atoms.");
 | 
|---|
| 215 |     return Action::failure;
 | 
|---|
| 216 |   }
 | 
|---|
| 217 | }
 | 
|---|
| 218 | 
 | 
|---|
| 219 | bool FillVolumeAction::canUndo() {
 | 
|---|
| 220 |   return true;
 | 
|---|
| 221 | }
 | 
|---|
| 222 | 
 | 
|---|
| 223 | bool FillVolumeAction::shouldUndo() {
 | 
|---|
| 224 |   return true;
 | 
|---|
| 225 | }
 | 
|---|
| 226 | /** =========== end of function ====================== */
 | 
|---|