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 | * TranslateAction.cpp
|
---|
10 | *
|
---|
11 | * Created on: May 10, 2010
|
---|
12 | * Author: heber
|
---|
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 "Actions/AtomAction/TranslateAction.hpp"
|
---|
23 | #include "Actions/ActionRegistry.hpp"
|
---|
24 | #include "Helpers/Log.hpp"
|
---|
25 | #include "atom.hpp"
|
---|
26 | #include "LinearAlgebra/Vector.hpp"
|
---|
27 | #include "Helpers/Verbose.hpp"
|
---|
28 | #include "World.hpp"
|
---|
29 |
|
---|
30 | #include <iostream>
|
---|
31 | #include <fstream>
|
---|
32 | #include <string>
|
---|
33 |
|
---|
34 | using namespace std;
|
---|
35 |
|
---|
36 | #include "UIElements/UIFactory.hpp"
|
---|
37 | #include "UIElements/Dialog.hpp"
|
---|
38 | #include "Actions/ValueStorage.hpp"
|
---|
39 |
|
---|
40 | /****** AtomTranslateAction *****/
|
---|
41 |
|
---|
42 | // memento to remember the state when undoing
|
---|
43 |
|
---|
44 | class AtomTranslateState : public ActionState {
|
---|
45 | public:
|
---|
46 | AtomTranslateState(const std::vector<atom*> &_selectedAtoms, const Vector &_v, const bool _periodic) :
|
---|
47 | selectedAtoms(_selectedAtoms),
|
---|
48 | v(_v),
|
---|
49 | periodic(_periodic)
|
---|
50 | {}
|
---|
51 | std::vector<atom*> selectedAtoms;
|
---|
52 | Vector v;
|
---|
53 | bool periodic;
|
---|
54 | };
|
---|
55 |
|
---|
56 | const char AtomTranslateAction::NAME[] = "translate-atoms";
|
---|
57 |
|
---|
58 | AtomTranslateAction::AtomTranslateAction() :
|
---|
59 | Action(NAME)
|
---|
60 | {}
|
---|
61 |
|
---|
62 | AtomTranslateAction::~AtomTranslateAction()
|
---|
63 | {}
|
---|
64 |
|
---|
65 | void AtomTranslate(Vector &x, bool periodic = false) {
|
---|
66 | ValueStorage::getInstance().setCurrentValue(AtomTranslateAction::NAME, x);
|
---|
67 | ValueStorage::getInstance().setCurrentValue("periodic", periodic);
|
---|
68 | ActionRegistry::getInstance().getActionByName(AtomTranslateAction::NAME)->call(Action::NonInteractive);
|
---|
69 | };
|
---|
70 |
|
---|
71 | void AtomTranslateAction::getParametersfromValueStorage()
|
---|
72 | {};
|
---|
73 |
|
---|
74 | Dialog* AtomTranslateAction::fillDialog(Dialog *dialog) {
|
---|
75 | ASSERT(dialog,"No Dialog given when filling action dialog");
|
---|
76 |
|
---|
77 | dialog->queryVector(NAME, false, ValueStorage::getInstance().getDescription(NAME));
|
---|
78 | dialog->queryBoolean("periodic", ValueStorage::getInstance().getDescription("periodic"));
|
---|
79 |
|
---|
80 | return dialog;
|
---|
81 | }
|
---|
82 |
|
---|
83 | Action::state_ptr AtomTranslateAction::performCall() {
|
---|
84 | Vector v;
|
---|
85 | bool periodic = false;
|
---|
86 | Box &domain = World::getInstance().getDomain();
|
---|
87 | std::vector<atom *> selectedAtoms = World::getInstance().getSelectedAtoms();
|
---|
88 |
|
---|
89 | ValueStorage::getInstance().queryCurrentValue(NAME, v);
|
---|
90 | if (!ValueStorage::getInstance().queryCurrentValue("periodic", periodic, true))
|
---|
91 | periodic = false;
|
---|
92 |
|
---|
93 | // TODO: use AtomSet::translate
|
---|
94 | for (std::vector<atom *>::iterator iter = selectedAtoms.begin(); iter != selectedAtoms.end(); ++iter) {
|
---|
95 | *(*iter) += v;
|
---|
96 | if (periodic)
|
---|
97 | (*iter)->setPosition(domain.WrapPeriodically((*iter)->getPosition()));
|
---|
98 | }
|
---|
99 |
|
---|
100 | return Action::state_ptr(new AtomTranslateState(selectedAtoms, v, periodic));
|
---|
101 | }
|
---|
102 |
|
---|
103 | Action::state_ptr AtomTranslateAction::performUndo(Action::state_ptr _state) {
|
---|
104 | AtomTranslateState *state = assert_cast<AtomTranslateState*>(_state.get());
|
---|
105 | Box &domain = World::getInstance().getDomain();
|
---|
106 |
|
---|
107 | for (std::vector<atom *>::iterator iter = state->selectedAtoms.begin(); iter != state->selectedAtoms.end(); ++iter) {
|
---|
108 | *(*iter) -= state->v;
|
---|
109 | if (state->periodic)
|
---|
110 | (*iter)->setPosition(domain.WrapPeriodically((*iter)->getPosition()));
|
---|
111 | }
|
---|
112 |
|
---|
113 | return Action::state_ptr(_state);
|
---|
114 | }
|
---|
115 |
|
---|
116 | Action::state_ptr AtomTranslateAction::performRedo(Action::state_ptr _state){
|
---|
117 | AtomTranslateState *state = assert_cast<AtomTranslateState*>(_state.get());
|
---|
118 | Box &domain = World::getInstance().getDomain();
|
---|
119 |
|
---|
120 | for (std::vector<atom *>::iterator iter = state->selectedAtoms.begin(); iter != state->selectedAtoms.end(); ++iter) {
|
---|
121 | *(*iter) += state->v;
|
---|
122 | if (state->periodic)
|
---|
123 | (*iter)->setPosition(domain.WrapPeriodically((*iter)->getPosition()));
|
---|
124 | }
|
---|
125 |
|
---|
126 | return Action::state_ptr(_state);
|
---|
127 | }
|
---|
128 |
|
---|
129 | bool AtomTranslateAction::canUndo() {
|
---|
130 | return true;
|
---|
131 | }
|
---|
132 |
|
---|
133 | bool AtomTranslateAction::shouldUndo() {
|
---|
134 | return true;
|
---|
135 | }
|
---|
136 |
|
---|
137 | const string AtomTranslateAction::getName() {
|
---|
138 | return NAME;
|
---|
139 | }
|
---|