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 | void ManipulateAtomsProcess::getParametersfromValueStorage()
|
---|
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 | }
|
---|