| 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 | Dialog* ManipulateAtomsProcess::fillDialog(Dialog *dialog){
 | 
|---|
| 45 |   ASSERT(dialog,"No Dialog given when filling action dialog");
 | 
|---|
| 46 |   return dialog;
 | 
|---|
| 47 | }
 | 
|---|
| 48 | 
 | 
|---|
| 49 | Action::state_ptr ManipulateAtomsProcess::performCall(){
 | 
|---|
| 50 |   World::getInstance().doManipulate(this);
 | 
|---|
| 51 |   return Action::success;
 | 
|---|
| 52 | }
 | 
|---|
| 53 | 
 | 
|---|
| 54 | Action::state_ptr ManipulateAtomsProcess::performUndo(Action::state_ptr){
 | 
|---|
| 55 |   ASSERT(0,"Undo called for a ManipulateAtomsProcess");
 | 
|---|
| 56 |   return Action::success;
 | 
|---|
| 57 | }
 | 
|---|
| 58 | 
 | 
|---|
| 59 | Action::state_ptr ManipulateAtomsProcess::performRedo(Action::state_ptr){
 | 
|---|
| 60 |   ASSERT(0,"Redo called for a ManipulateAtomsProcess");
 | 
|---|
| 61 |   return Action::success;
 | 
|---|
| 62 | }
 | 
|---|
| 63 | 
 | 
|---|
| 64 | bool ManipulateAtomsProcess::canUndo(){
 | 
|---|
| 65 |   return false;
 | 
|---|
| 66 | }
 | 
|---|
| 67 | 
 | 
|---|
| 68 | bool ManipulateAtomsProcess::shouldUndo(){
 | 
|---|
| 69 |   return true;
 | 
|---|
| 70 | }
 | 
|---|
| 71 | 
 | 
|---|
| 72 | void ManipulateAtomsProcess::doManipulate(World *world){
 | 
|---|
| 73 |   setMaxSteps(world->numAtoms());
 | 
|---|
| 74 |   start();
 | 
|---|
| 75 |   for(World::internal_AtomIterator
 | 
|---|
| 76 |       iter=world->getAtomIter_internal(descr);
 | 
|---|
| 77 |       iter!=world->atomEnd_internal();
 | 
|---|
| 78 |       ++iter){
 | 
|---|
| 79 | 
 | 
|---|
| 80 |     setCurrStep(iter.getCount());
 | 
|---|
| 81 |     operation(*iter);
 | 
|---|
| 82 |   }
 | 
|---|
| 83 |   stop();
 | 
|---|
| 84 | }
 | 
|---|