[bcf653] | 1 | /*
|
---|
| 2 | * Project: MoleCuilder
|
---|
| 3 | * Description: creates and alters molecular systems
|
---|
[0aa122] | 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/>.
|
---|
[bcf653] | 21 | */
|
---|
| 22 |
|
---|
[97ebf8] | 23 | /*
|
---|
| 24 | * FillWithMoleculeAction.cpp
|
---|
| 25 | *
|
---|
| 26 | * Created on: May 10, 2010
|
---|
| 27 | * Author: heber
|
---|
| 28 | */
|
---|
| 29 |
|
---|
[bf3817] | 30 | // include config.h
|
---|
| 31 | #ifdef HAVE_CONFIG_H
|
---|
| 32 | #include <config.h>
|
---|
| 33 | #endif
|
---|
| 34 |
|
---|
[ad011c] | 35 | #include "CodePatterns/MemDebug.hpp"
|
---|
[112b09] | 36 |
|
---|
[6f0841] | 37 | #include "Atom/atom.hpp"
|
---|
[7a51be] | 38 | #include "CodePatterns/Verbose.hpp"
|
---|
| 39 | #include "Descriptors/MoleculeIdDescriptor.hpp"
|
---|
| 40 | #include "Descriptors/MoleculeOrderDescriptor.hpp"
|
---|
[41a467] | 41 | #include "Graph/BondGraph.hpp"
|
---|
[1a3c26] | 42 | #include "molecule.hpp"
|
---|
[42127c] | 43 | #include "MoleculeListClass.hpp"
|
---|
[765f16] | 44 | #include "Parser/FormatParserInterface.hpp"
|
---|
[7a51be] | 45 | #include "Parser/FormatParserStorage.hpp"
|
---|
[41a467] | 46 | #include "Tesselation/boundary.hpp"
|
---|
[1a3c26] | 47 | #include "World.hpp"
|
---|
| 48 |
|
---|
[97ebf8] | 49 | #include <iostream>
|
---|
| 50 | #include <string>
|
---|
| 51 |
|
---|
[1fd675] | 52 | #include "Actions/MoleculeAction/FillWithMoleculeAction.hpp"
|
---|
[a001b7] | 53 |
|
---|
[ce7fdc] | 54 | using namespace MoleCuilder;
|
---|
| 55 |
|
---|
[1fd675] | 56 | // and construct the stuff
|
---|
| 57 | #include "FillWithMoleculeAction.def"
|
---|
| 58 | #include "Action_impl_pre.hpp"
|
---|
| 59 | /** =========== define the function ====================== */
|
---|
[b5b01e] | 60 | ActionState::ptr MoleculeFillWithMoleculeAction::performCall() {
|
---|
[a001b7] | 61 |
|
---|
[47d041] | 62 | LOG(1, "INFO: Filling Box with water molecules, "
|
---|
[f10b0c] | 63 | << " minimum distance to molecules" << params.boundary.get()
|
---|
| 64 | << ", random atom displacement " << params.RandAtomDisplacement.get()
|
---|
| 65 | << ", random molecule displacement " << params.RandMoleculeDisplacement.get()
|
---|
| 66 | << ", distances between fillers (" << params.distances.get()[0] << "," << params.distances.get()[1] << "," << params.distances.get()[2]
|
---|
| 67 | << "), MinDistance " << params.MaxDistance.get()
|
---|
| 68 | << ", DoRotate " << params.DoRotate.get() << ".");
|
---|
[a001b7] | 69 | // construct water molecule
|
---|
[7a51be] | 70 | std::vector<molecule *> presentmolecules = World::getInstance().getAllMolecules();
|
---|
[47d041] | 71 | // LOG(0, presentmolecules.size() << " molecules initially are present.");
|
---|
[f10b0c] | 72 | std::string FilenameSuffix = params.fillername.get().string().substr(params.fillername.get().string().find_last_of('.')+1, params.fillername.get().string().length());
|
---|
[7a51be] | 73 | ifstream input;
|
---|
[f10b0c] | 74 | LOG(0, "STATUS: Loading filler molecule " << params.fillername.get().string().c_str()
|
---|
[98c428] | 75 | << " of suffix " << FilenameSuffix << ".");
|
---|
[f10b0c] | 76 | input.open(params.fillername.get().string().c_str());
|
---|
[98c428] | 77 | FormatParserStorage::getInstance().load(input, FilenameSuffix);
|
---|
| 78 | input.close();
|
---|
[7a51be] | 79 |
|
---|
| 80 | // search the filler molecule that has been just parsed
|
---|
| 81 | molecule *filler = World::getInstance().getMolecule(MoleculeByOrder(-1)); // get last molecule
|
---|
[98c428] | 82 | ASSERT(filler != NULL,
|
---|
| 83 | "MoleculeFillWithMoleculeAction::performCall() - no last molecule found, nothing parsed?.");
|
---|
[f10b0c] | 84 | filler->SetNameFromFilename(params.fillername.get().string().c_str());
|
---|
[9317be] | 85 | World::AtomComposite Set = filler->getAtomSet();
|
---|
[98c428] | 86 | LOG(1, "INFO: The filler molecules has " << Set.size() << " atoms.");
|
---|
[3738f0] | 87 | World::getInstance().getBondGraph()->CreateAdjacency(Set);
|
---|
[98c428] | 88 |
|
---|
[7a51be] | 89 | // TODO: Remove the erasure of molecule when saving does not depend on them anymore.
|
---|
| 90 | World::getInstance().getMolecules()->erase(filler); // remove it, Parser adds it automatically
|
---|
| 91 |
|
---|
[a001b7] | 92 | // call routine
|
---|
| 93 | double distance[NDIM];
|
---|
| 94 | for (int i=0;i<NDIM;i++)
|
---|
[f10b0c] | 95 | distance[i] = params.distances.get()[i];
|
---|
[7a51be] | 96 | FillBoxWithMolecule(
|
---|
[d6f886] | 97 | World::getInstance().getMolecules(),
|
---|
| 98 | filler, *(World::getInstance().getConfig()),
|
---|
[f10b0c] | 99 | params.MaxDistance.get(),
|
---|
[d6f886] | 100 | distance,
|
---|
[f10b0c] | 101 | params.boundary.get(),
|
---|
| 102 | params.RandAtomDisplacement.get(),
|
---|
| 103 | params.RandMoleculeDisplacement.get(),
|
---|
| 104 | params.DoRotate.get());
|
---|
[a001b7] | 105 | for (molecule::iterator iter = filler->begin(); !filler->empty(); iter = filler->begin()) {
|
---|
| 106 | atom *Walker = *iter;
|
---|
| 107 | World::getInstance().destroyAtom(Walker);
|
---|
| 108 | }
|
---|
| 109 | World::getInstance().destroyMolecule(filler);
|
---|
| 110 |
|
---|
[7a51be] | 111 | // generate list of newly created molecules
|
---|
| 112 | // (we can in general remove more quickly from a list than a vector)
|
---|
| 113 | std::vector<molecule *> fillermolecules = World::getInstance().getAllMolecules();
|
---|
[47d041] | 114 | // LOG(0, fillermolecules.size() << " molecules are present.");
|
---|
[7a51be] | 115 | std::list<molecule *> fillermolecules_list;
|
---|
| 116 | std::copy( fillermolecules.begin(), fillermolecules.end(), std::back_inserter( fillermolecules_list ));
|
---|
[47d041] | 117 | // LOG(0, fillermolecules_list.size() << " molecules have been copied.");
|
---|
[7a51be] | 118 | for (std::vector<molecule *>::const_iterator iter = presentmolecules.begin();
|
---|
| 119 | iter != presentmolecules.end();
|
---|
| 120 | ++iter) {
|
---|
| 121 | fillermolecules_list.remove(*iter);
|
---|
| 122 | }
|
---|
[47d041] | 123 | // LOG(0, fillermolecules_list.size() << " molecules left after removal.");
|
---|
[7a51be] | 124 | fillermolecules.clear();
|
---|
| 125 | std::copy(fillermolecules_list.begin(), fillermolecules_list.end(), std::back_inserter( fillermolecules ));
|
---|
| 126 |
|
---|
[47d041] | 127 | // LOG(0, fillermolecules.size() << " molecules have been inserted.");
|
---|
[7a51be] | 128 |
|
---|
[b5b01e] | 129 | return ActionState::ptr(new MoleculeFillWithMoleculeState(fillermolecules,params));
|
---|
[97ebf8] | 130 | }
|
---|
| 131 |
|
---|
[b5b01e] | 132 | ActionState::ptr MoleculeFillWithMoleculeAction::performUndo(ActionState::ptr _state) {
|
---|
[7a51be] | 133 | MoleculeFillWithMoleculeState *state = assert_cast<MoleculeFillWithMoleculeState*>(_state.get());
|
---|
| 134 |
|
---|
| 135 | MoleculeListClass *MolList = World::getInstance().getMolecules();
|
---|
| 136 |
|
---|
| 137 | BOOST_FOREACH(molecule *_mol, state->fillermolecules) {
|
---|
| 138 | MolList->erase(_mol);
|
---|
| 139 | if ((_mol != NULL) && (!(World::getInstance().getAllMolecules(MoleculeById(_mol->getId()))).empty())) {
|
---|
| 140 | for(molecule::iterator iter = _mol->begin();
|
---|
| 141 | !_mol->empty();
|
---|
| 142 | iter = _mol->begin()) {
|
---|
| 143 | atom *Walker = *iter;
|
---|
| 144 | World::getInstance().destroyAtom(Walker);
|
---|
| 145 | }
|
---|
| 146 | World::getInstance().destroyMolecule(_mol);
|
---|
| 147 | }
|
---|
| 148 | }
|
---|
[97ebf8] | 149 |
|
---|
[7a51be] | 150 | // as molecules and atoms from state are removed, we have to create a new one
|
---|
| 151 | std::vector<molecule *> fillermolecules;
|
---|
[b5b01e] | 152 | return ActionState::ptr(new MoleculeFillWithMoleculeState(fillermolecules,state->params));
|
---|
[97ebf8] | 153 | }
|
---|
| 154 |
|
---|
[b5b01e] | 155 | ActionState::ptr MoleculeFillWithMoleculeAction::performRedo(ActionState::ptr _state){
|
---|
[7a51be] | 156 | //MoleculeFillWithMoleculeState *state = assert_cast<MoleculeFillWithMoleculeState*>(_state.get());
|
---|
| 157 |
|
---|
[26b4d62] | 158 | STATUS("Redo of MoleculeFillWithMoleculeAction not implemented.");
|
---|
[7a51be] | 159 | return Action::failure;
|
---|
[b5b01e] | 160 | //return ActionState::ptr(_state);
|
---|
[97ebf8] | 161 | }
|
---|
| 162 |
|
---|
| 163 | bool MoleculeFillWithMoleculeAction::canUndo() {
|
---|
[7a51be] | 164 | return true;
|
---|
[97ebf8] | 165 | }
|
---|
| 166 |
|
---|
| 167 | bool MoleculeFillWithMoleculeAction::shouldUndo() {
|
---|
[7a51be] | 168 | return true;
|
---|
[97ebf8] | 169 | }
|
---|
[1fd675] | 170 | /** =========== end of function ====================== */
|
---|