[a88452] | 1 | /*
|
---|
| 2 | * Project: MoleCuilder
|
---|
| 3 | * Description: creates and alters molecular systems
|
---|
| 4 | * Copyright (C) 2010-2012 University of Bonn. All rights reserved.
|
---|
[94d5ac6] | 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/>.
|
---|
[a88452] | 21 | */
|
---|
| 22 |
|
---|
| 23 | /*
|
---|
| 24 | * FillRegularGridAction.cpp
|
---|
| 25 | *
|
---|
| 26 | * Created on: Jan 12, 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 |
|
---|
[42b6de] | 37 | #include "Actions/UndoRedoHelpers.hpp"
|
---|
[a88452] | 38 | #include "Atom/atom.hpp"
|
---|
[42b6de] | 39 | #include "Atom/AtomicInfo.hpp"
|
---|
[a88452] | 40 | #include "Atom/CopyAtoms/CopyAtoms_withBonds.hpp"
|
---|
[80ca29] | 41 | #include "Bond/BondInfo.hpp"
|
---|
[a88452] | 42 | #include "CodePatterns/Log.hpp"
|
---|
| 43 | #include "Descriptors/MoleculeOrderDescriptor.hpp"
|
---|
| 44 | #include "Filling/Cluster.hpp"
|
---|
| 45 | #include "Filling/Filler.hpp"
|
---|
[f61f61] | 46 | #include "Filling/Inserter/Inserter.hpp"
|
---|
[896f4a] | 47 | #include "Filling/Inserter/RandomInserter.hpp"
|
---|
[a88452] | 48 | #include "Filling/Mesh/CubeMesh.hpp"
|
---|
[345eda] | 49 | #include "Filling/Predicates/IsInsideSurface_FillPredicate.hpp"
|
---|
[a88452] | 50 | #include "Filling/Predicates/IsVoidNode_FillPredicate.hpp"
|
---|
[345eda] | 51 | #include "Filling/Predicates/Ops_FillPredicate.hpp"
|
---|
| 52 | #include "LinkedCell/linkedcell.hpp"
|
---|
| 53 | #include "LinkedCell/PointCloudAdaptor.hpp"
|
---|
| 54 | #include "molecule.hpp"
|
---|
[a88452] | 55 | #include "MoleculeListClass.hpp"
|
---|
| 56 | #include "Parser/FormatParserInterface.hpp"
|
---|
| 57 | #include "Parser/FormatParserStorage.hpp"
|
---|
| 58 | #include "Shapes/BaseShapes.hpp"
|
---|
[345eda] | 59 | #include "Tesselation/tesselation.hpp"
|
---|
| 60 | #include "Tesselation/BoundaryLineSet.hpp"
|
---|
| 61 | #include "Tesselation/BoundaryTriangleSet.hpp"
|
---|
| 62 | #include "Tesselation/CandidateForTesselation.hpp"
|
---|
[a88452] | 63 | #include "World.hpp"
|
---|
| 64 |
|
---|
| 65 |
|
---|
| 66 | #include <algorithm>
|
---|
| 67 | #include <iostream>
|
---|
| 68 | #include <string>
|
---|
| 69 | #include <vector>
|
---|
| 70 |
|
---|
| 71 | #include "Actions/FillAction/FillRegularGridAction.hpp"
|
---|
| 72 |
|
---|
| 73 | using namespace MoleCuilder;
|
---|
| 74 |
|
---|
| 75 | // and construct the stuff
|
---|
| 76 | #include "FillRegularGridAction.def"
|
---|
| 77 | #include "Action_impl_pre.hpp"
|
---|
| 78 | /** =========== define the function ====================== */
|
---|
[b5b01e] | 79 | ActionState::ptr FillRegularGridAction::performCall() {
|
---|
[a88452] | 80 | typedef std::vector<atom*> AtomVector;
|
---|
| 81 |
|
---|
[80ca29] | 82 | // get the filler molecule
|
---|
| 83 | std::vector<AtomicInfo> movedatoms;
|
---|
[e9ad43] | 84 | const std::vector< molecule *> molecules = World::getInstance().getSelectedMolecules();
|
---|
| 85 | if (molecules.size() != 1) {
|
---|
| 86 | ELOG(1, "No exactly one molecule selected, aborting,");
|
---|
[5a4cbc] | 87 | return Action::failure;
|
---|
| 88 | }
|
---|
[e9ad43] | 89 | molecule *filler = *(molecules.begin());
|
---|
[80ca29] | 90 | for(molecule::const_iterator iter = filler->begin(); iter != filler->end(); ++iter)
|
---|
| 91 | movedatoms.push_back( AtomicInfo(*(*iter)) );
|
---|
[e9ad43] | 92 | LOG(1, "INFO: Chosen molecule has " << filler->size() << " atoms.");
|
---|
[a88452] | 93 |
|
---|
[345eda] | 94 | // check for selected molecules and create surfaces from them
|
---|
[e9ad43] | 95 | std::vector<atom *> atoms(World::getInstance().getSelectedAtoms());
|
---|
| 96 | FillPredicate * surface_predicate = NULL;
|
---|
| 97 | LinkedCell_deprecated * LC = NULL;
|
---|
| 98 | Tesselation * TesselStruct = NULL;
|
---|
[f10b0c] | 99 | if (params.SphereRadius.get() != 0.) {
|
---|
[80ca29] | 100 | if ( atoms.size() == 0) {
|
---|
[f10b0c] | 101 | ELOG(1, "You have given a sphere radius " << params.SphereRadius.get()
|
---|
[345eda] | 102 | << " != 0, but have not select any molecules.");
|
---|
[80ca29] | 103 | return Action::failure;
|
---|
[345eda] | 104 | }
|
---|
[e9ad43] | 105 | // create adaptor for the selected atoms
|
---|
| 106 | PointCloudAdaptor< std::vector<atom *> > cloud(&atoms, std::string("Selected atoms"));
|
---|
| 107 |
|
---|
| 108 | // create tesselation
|
---|
[f10b0c] | 109 | LC = new LinkedCell_deprecated(cloud, 2.*params.SphereRadius.get());
|
---|
[e9ad43] | 110 | TesselStruct = new Tesselation;
|
---|
[f10b0c] | 111 | (*TesselStruct)(cloud, params.SphereRadius.get());
|
---|
[e9ad43] | 112 |
|
---|
| 113 | // and create predicate
|
---|
| 114 | surface_predicate = new FillPredicate( IsInsideSurface_FillPredicate( *TesselStruct, *LC ) );
|
---|
[345eda] | 115 | }
|
---|
| 116 |
|
---|
[a88452] | 117 | // create predicate, mesh, and filler
|
---|
[80ca29] | 118 | FillRegularGridState *UndoState = NULL;
|
---|
[68abe5] | 119 | bool successflag = false;
|
---|
[a88452] | 120 | {
|
---|
[e9ad43] | 121 | FillPredicate *voidnode_predicate = new FillPredicate(
|
---|
| 122 | IsVoidNode_FillPredicate(
|
---|
[f10b0c] | 123 | Sphere(zeroVec, params.mindistance.get())
|
---|
[e9ad43] | 124 | )
|
---|
| 125 | );
|
---|
[345eda] | 126 | FillPredicate Andpredicate = (*voidnode_predicate);
|
---|
[e9ad43] | 127 | if (surface_predicate != NULL)
|
---|
| 128 | Andpredicate = (Andpredicate) && !(*surface_predicate);
|
---|
[f10b0c] | 129 | Mesh *mesh = new CubeMesh(params.counts.get(), params.offset.get(), World::getInstance().getDomain().getM());
|
---|
[896f4a] | 130 | Inserter *inserter = new Inserter(
|
---|
| 131 | Inserter::impl_ptr(
|
---|
| 132 | new RandomInserter(
|
---|
[f10b0c] | 133 | params.RandAtomDisplacement.get(),
|
---|
| 134 | params.RandMoleculeDisplacement.get(),
|
---|
| 135 | params.DoRotate.get())
|
---|
[896f4a] | 136 | )
|
---|
| 137 | );
|
---|
[a88452] | 138 |
|
---|
| 139 | // fill
|
---|
[e9ad43] | 140 | {
|
---|
[f61f61] | 141 | Filler *fillerFunction = new Filler(*mesh, Andpredicate, *inserter);
|
---|
[aeb694] | 142 | // TODO: When molecule::getBoundingSphere() does not use a sphere anymore,
|
---|
[f24af7] | 143 | // we need to check whether we rotate the molecule randomly. For this to
|
---|
| 144 | // work we need a sphere!
|
---|
[aeb694] | 145 | const Shape s = filler->getBoundingSphere(params.RandAtomDisplacement.get());
|
---|
[f24af7] | 146 | ClusterInterface::Cluster_impl cluster( new Cluster(filler->getAtomIds(), s) );
|
---|
[e9ad43] | 147 | CopyAtoms_withBonds copyMethod;
|
---|
[42b6de] | 148 | Filler::ClusterVector_t ClonedClusters;
|
---|
| 149 | successflag = (*fillerFunction)(copyMethod, cluster, ClonedClusters);
|
---|
[e9ad43] | 150 | delete fillerFunction;
|
---|
[42b6de] | 151 |
|
---|
[80ca29] | 152 | // append each cluster's atoms to clonedatoms (however not selected ones)
|
---|
| 153 | std::vector<const atom *> clonedatoms;
|
---|
| 154 | std::vector<AtomicInfo> clonedatominfos;
|
---|
[42b6de] | 155 | for (Filler::ClusterVector_t::const_iterator iter = ClonedClusters.begin();
|
---|
| 156 | iter != ClonedClusters.end(); ++iter) {
|
---|
| 157 | const AtomIdSet &atoms = (*iter)->getAtomIds();
|
---|
| 158 | clonedatoms.reserve(clonedatoms.size()+atoms.size());
|
---|
| 159 | for (AtomIdSet::const_iterator atomiter = atoms.begin(); atomiter != atoms.end(); ++atomiter)
|
---|
[80ca29] | 160 | if (!filler->containsAtom(*atomiter)) {
|
---|
| 161 | clonedatoms.push_back( *atomiter );
|
---|
| 162 | clonedatominfos.push_back( AtomicInfo(*(*atomiter)) );
|
---|
| 163 | }
|
---|
[42b6de] | 164 | }
|
---|
[80ca29] | 165 | std::vector< BondInfo > clonedbonds;
|
---|
| 166 | StoreBondInformationFromAtoms(clonedatoms, clonedbonds);
|
---|
| 167 | LOG(2, "DEBUG: There are " << clonedatominfos.size() << " newly created atoms.");
|
---|
| 168 |
|
---|
[42b6de] | 169 | if (!successflag) {
|
---|
[80ca29] | 170 | ELOG(1, "Insertion failed, removing inserted clusters, translating original one back");
|
---|
| 171 | RemoveAtomsFromAtomicInfo(clonedatominfos);
|
---|
[42b6de] | 172 | clonedatoms.clear();
|
---|
[80ca29] | 173 | SetAtomsFromAtomicInfo(movedatoms);
|
---|
| 174 | } else {
|
---|
| 175 | std::vector<Vector> MovedToVector(filler->size(), zeroVec);
|
---|
| 176 | std::transform(filler->begin(), filler->end(), MovedToVector.begin(),
|
---|
| 177 | boost::bind(&AtomInfo::getPosition, _1) );
|
---|
| 178 | UndoState = new FillRegularGridState(clonedatominfos,clonedbonds,movedatoms,MovedToVector,params);
|
---|
[42b6de] | 179 | }
|
---|
[e9ad43] | 180 | }
|
---|
[a88452] | 181 |
|
---|
| 182 | // remove
|
---|
| 183 | delete mesh;
|
---|
[f61f61] | 184 | delete inserter;
|
---|
[345eda] | 185 | delete voidnode_predicate;
|
---|
[e9ad43] | 186 | delete surface_predicate;
|
---|
| 187 | delete LC;
|
---|
| 188 | delete TesselStruct;
|
---|
[a88452] | 189 | }
|
---|
| 190 |
|
---|
[68abe5] | 191 | if (successflag)
|
---|
[b5b01e] | 192 | return ActionState::ptr(UndoState);
|
---|
[68abe5] | 193 | else
|
---|
| 194 | return Action::failure;
|
---|
[a88452] | 195 | }
|
---|
| 196 |
|
---|
[b5b01e] | 197 | ActionState::ptr FillRegularGridAction::performUndo(ActionState::ptr _state) {
|
---|
[42b6de] | 198 | FillRegularGridState *state = assert_cast<FillRegularGridState*>(_state.get());
|
---|
| 199 |
|
---|
| 200 | // remove all created atoms
|
---|
| 201 | RemoveAtomsFromAtomicInfo(state->clonedatoms);
|
---|
[80ca29] | 202 | // add the original cluster
|
---|
| 203 | SetAtomsFromAtomicInfo(state->movedatoms);
|
---|
[42b6de] | 204 |
|
---|
[b5b01e] | 205 | return ActionState::ptr(_state);
|
---|
[a88452] | 206 | }
|
---|
| 207 |
|
---|
[b5b01e] | 208 | ActionState::ptr FillRegularGridAction::performRedo(ActionState::ptr _state){
|
---|
[42b6de] | 209 | FillRegularGridState *state = assert_cast<FillRegularGridState*>(_state.get());
|
---|
[a88452] | 210 |
|
---|
[80ca29] | 211 | // place filler cluster again at new spot
|
---|
| 212 | ResetAtomPosition(state->movedatoms, state->MovedToVector);
|
---|
| 213 |
|
---|
| 214 | // re-create all clusters
|
---|
| 215 | bool statusflag = AddAtomsFromAtomicInfo(state->clonedatoms);
|
---|
| 216 |
|
---|
| 217 | // re-create the bonds
|
---|
| 218 | if (statusflag)
|
---|
| 219 | AddBondsFromBondInfo(state->clonedbonds);
|
---|
| 220 | if (statusflag)
|
---|
[b5b01e] | 221 | return ActionState::ptr(_state);
|
---|
[42b6de] | 222 | else
|
---|
| 223 | return Action::failure;
|
---|
[a88452] | 224 | }
|
---|
| 225 |
|
---|
| 226 | bool FillRegularGridAction::canUndo() {
|
---|
[42b6de] | 227 | return true;
|
---|
[a88452] | 228 | }
|
---|
| 229 |
|
---|
| 230 | bool FillRegularGridAction::shouldUndo() {
|
---|
[42b6de] | 231 | return true;
|
---|
[a88452] | 232 | }
|
---|
| 233 | /** =========== end of function ====================== */
|
---|