| 1 | /*
 | 
|---|
| 2 |  * Project: MoleCuilder
 | 
|---|
| 3 |  * Description: creates and alters molecular systems
 | 
|---|
| 4 |  * Copyright (C)  2010-2012 University of Bonn. All rights reserved.
 | 
|---|
| 5 |  * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
 | 
|---|
| 6 |  */
 | 
|---|
| 7 | 
 | 
|---|
| 8 | /*
 | 
|---|
| 9 |  * ManipulateAtomsProcess.cpp
 | 
|---|
| 10 |  *
 | 
|---|
| 11 |  *  Created on: Feb 18, 2010
 | 
|---|
| 12 |  *      Author: crueger
 | 
|---|
| 13 |  */
 | 
|---|
| 14 | 
 | 
|---|
| 15 | // include config.h
 | 
|---|
| 16 | #ifdef HAVE_CONFIG_H
 | 
|---|
| 17 | #include <config.h>
 | 
|---|
| 18 | #endif
 | 
|---|
| 19 | 
 | 
|---|
| 20 | #include "CodePatterns/MemDebug.hpp"
 | 
|---|
| 21 | 
 | 
|---|
| 22 | #include "ManipulateAtomsProcess.hpp"
 | 
|---|
| 23 | 
 | 
|---|
| 24 | #include <iostream>
 | 
|---|
| 25 | 
 | 
|---|
| 26 | #include "World.hpp"
 | 
|---|
| 27 | #include "CodePatterns/Assert.hpp"
 | 
|---|
| 28 | 
 | 
|---|
| 29 | using namespace MoleCuilder;
 | 
|---|
| 30 | 
 | 
|---|
| 31 | ManipulateAtomsProcess::ManipulateAtomsProcess(
 | 
|---|
| 32 |     boost::function<void(atom*)> _operation,
 | 
|---|
| 33 |     AtomDescriptor _descr,
 | 
|---|
| 34 |     const ActionTrait &_trait,
 | 
|---|
| 35 |     bool _doRegister) :
 | 
|---|
| 36 |   Process(0,_trait,_doRegister),
 | 
|---|
| 37 |   descr(_descr),
 | 
|---|
| 38 |   operation(_operation)
 | 
|---|
| 39 | {}
 | 
|---|
| 40 | 
 | 
|---|
| 41 | ManipulateAtomsProcess::~ManipulateAtomsProcess()
 | 
|---|
| 42 | {}
 | 
|---|
| 43 | 
 | 
|---|
| 44 | void ManipulateAtomsProcess::getParametersfromValueStorage()
 | 
|---|
| 45 | {};
 | 
|---|
| 46 | 
 | 
|---|
| 47 | Dialog* ManipulateAtomsProcess::fillDialog(Dialog *dialog){
 | 
|---|
| 48 |   ASSERT(dialog,"No Dialog given when filling action dialog");
 | 
|---|
| 49 |   return dialog;
 | 
|---|
| 50 | }
 | 
|---|
| 51 | 
 | 
|---|
| 52 | Action::state_ptr ManipulateAtomsProcess::performCall(){
 | 
|---|
| 53 |   World::getInstance().doManipulate(this);
 | 
|---|
| 54 |   return Action::success;
 | 
|---|
| 55 | }
 | 
|---|
| 56 | 
 | 
|---|
| 57 | Action::state_ptr ManipulateAtomsProcess::performUndo(Action::state_ptr){
 | 
|---|
| 58 |   ASSERT(0,"Undo called for a ManipulateAtomsProcess");
 | 
|---|
| 59 |   return Action::success;
 | 
|---|
| 60 | }
 | 
|---|
| 61 | 
 | 
|---|
| 62 | Action::state_ptr ManipulateAtomsProcess::performRedo(Action::state_ptr){
 | 
|---|
| 63 |   ASSERT(0,"Redo called for a ManipulateAtomsProcess");
 | 
|---|
| 64 |   return Action::success;
 | 
|---|
| 65 | }
 | 
|---|
| 66 | 
 | 
|---|
| 67 | bool ManipulateAtomsProcess::canUndo(){
 | 
|---|
| 68 |   return false;
 | 
|---|
| 69 | }
 | 
|---|
| 70 | 
 | 
|---|
| 71 | bool ManipulateAtomsProcess::shouldUndo(){
 | 
|---|
| 72 |   return true;
 | 
|---|
| 73 | }
 | 
|---|
| 74 | 
 | 
|---|
| 75 | void ManipulateAtomsProcess::doManipulate(World *world){
 | 
|---|
| 76 |   setMaxSteps(world->numAtoms());
 | 
|---|
| 77 |   start();
 | 
|---|
| 78 |   for(World::internal_AtomIterator
 | 
|---|
| 79 |       iter=world->getAtomIter_internal(descr);
 | 
|---|
| 80 |       iter!=world->atomEnd_internal();
 | 
|---|
| 81 |       ++iter){
 | 
|---|
| 82 | 
 | 
|---|
| 83 |     setCurrStep(iter.getCount());
 | 
|---|
| 84 |     operation(*iter);
 | 
|---|
| 85 |   }
 | 
|---|
| 86 |   stop();
 | 
|---|
| 87 | }
 | 
|---|