| 1 | /*
 | 
|---|
| 2 |  * Project: MoleCuilder
 | 
|---|
| 3 |  * Description: creates and alters molecular systems
 | 
|---|
| 4 |  * Copyright (C)  2010 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 "Helpers/MemDebug.hpp"
 | 
|---|
| 21 | 
 | 
|---|
| 22 | #include "ManipulateAtomsProcess.hpp"
 | 
|---|
| 23 | 
 | 
|---|
| 24 | #include <iostream>
 | 
|---|
| 25 | 
 | 
|---|
| 26 | #include "World.hpp"
 | 
|---|
| 27 | #include "Helpers/Assert.hpp"
 | 
|---|
| 28 | 
 | 
|---|
| 29 | using namespace std;
 | 
|---|
| 30 | 
 | 
|---|
| 31 | ManipulateAtomsProcess::ManipulateAtomsProcess(boost::function<void(atom*)> _operation, AtomDescriptor _descr,
 | 
|---|
| 32 |                                                std::string _name,bool _doRegister) :
 | 
|---|
| 33 |   Process(0,_name,_doRegister),
 | 
|---|
| 34 |   descr(_descr),
 | 
|---|
| 35 |   operation(_operation)
 | 
|---|
| 36 | {}
 | 
|---|
| 37 | 
 | 
|---|
| 38 | ManipulateAtomsProcess::~ManipulateAtomsProcess()
 | 
|---|
| 39 | {}
 | 
|---|
| 40 | 
 | 
|---|
| 41 | Dialog* ManipulateAtomsProcess::fillDialog(Dialog *dialog){
 | 
|---|
| 42 |   ASSERT(dialog,"No Dialog given when filling action dialog");
 | 
|---|
| 43 |   return dialog;
 | 
|---|
| 44 | }
 | 
|---|
| 45 | 
 | 
|---|
| 46 | Action::state_ptr ManipulateAtomsProcess::performCall(){
 | 
|---|
| 47 |   World::getInstance().doManipulate(this);
 | 
|---|
| 48 |   return Action::success;
 | 
|---|
| 49 | }
 | 
|---|
| 50 | 
 | 
|---|
| 51 | Action::state_ptr ManipulateAtomsProcess::performUndo(Action::state_ptr){
 | 
|---|
| 52 |   ASSERT(0,"Undo called for a ManipulateAtomsProcess");
 | 
|---|
| 53 |   return Action::success;
 | 
|---|
| 54 | }
 | 
|---|
| 55 | 
 | 
|---|
| 56 | Action::state_ptr ManipulateAtomsProcess::performRedo(Action::state_ptr){
 | 
|---|
| 57 |   ASSERT(0,"Redo called for a ManipulateAtomsProcess");
 | 
|---|
| 58 |   return Action::success;
 | 
|---|
| 59 | }
 | 
|---|
| 60 | 
 | 
|---|
| 61 | bool ManipulateAtomsProcess::canUndo(){
 | 
|---|
| 62 |   return false;
 | 
|---|
| 63 | }
 | 
|---|
| 64 | 
 | 
|---|
| 65 | bool ManipulateAtomsProcess::shouldUndo(){
 | 
|---|
| 66 |   return true;
 | 
|---|
| 67 | }
 | 
|---|
| 68 | 
 | 
|---|
| 69 | void ManipulateAtomsProcess::doManipulate(World *world){
 | 
|---|
| 70 |   setMaxSteps(world->numAtoms());
 | 
|---|
| 71 |   start();
 | 
|---|
| 72 |   for(World::internal_AtomIterator
 | 
|---|
| 73 |       iter=world->getAtomIter_internal(descr);
 | 
|---|
| 74 |       iter!=world->atomEnd_internal();
 | 
|---|
| 75 |       ++iter){
 | 
|---|
| 76 | 
 | 
|---|
| 77 |     setCurrStep(iter.getCount());
 | 
|---|
| 78 |     operation(*iter);
 | 
|---|
| 79 |   }
 | 
|---|
| 80 |   stop();
 | 
|---|
| 81 | }
 | 
|---|