[bcf653] | 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 |
|
---|
[34c338] | 8 | /*
|
---|
| 9 | * TranslateAction.cpp
|
---|
| 10 | *
|
---|
| 11 | * Created on: May 10, 2010
|
---|
| 12 | * Author: heber
|
---|
| 13 | */
|
---|
| 14 |
|
---|
[bf3817] | 15 | // include config.h
|
---|
| 16 | #ifdef HAVE_CONFIG_H
|
---|
| 17 | #include <config.h>
|
---|
| 18 | #endif
|
---|
| 19 |
|
---|
[34c338] | 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:
|
---|
[0adac1] | 46 | AtomTranslateState(const std::vector<atom*> &_selectedAtoms, const Vector &_v, const bool _periodic) :
|
---|
[34c338] | 47 | selectedAtoms(_selectedAtoms),
|
---|
[0adac1] | 48 | v(_v),
|
---|
| 49 | periodic(_periodic)
|
---|
[34c338] | 50 | {}
|
---|
| 51 | std::vector<atom*> selectedAtoms;
|
---|
| 52 | Vector v;
|
---|
[0adac1] | 53 | bool periodic;
|
---|
[34c338] | 54 | };
|
---|
| 55 |
|
---|
| 56 | const char AtomTranslateAction::NAME[] = "translate-atoms";
|
---|
| 57 |
|
---|
| 58 | AtomTranslateAction::AtomTranslateAction() :
|
---|
| 59 | Action(NAME)
|
---|
| 60 | {}
|
---|
| 61 |
|
---|
| 62 | AtomTranslateAction::~AtomTranslateAction()
|
---|
| 63 | {}
|
---|
| 64 |
|
---|
[0adac1] | 65 | void AtomTranslate(Vector &x, bool periodic = false) {
|
---|
[34c338] | 66 | ValueStorage::getInstance().setCurrentValue(AtomTranslateAction::NAME, x);
|
---|
[0adac1] | 67 | ValueStorage::getInstance().setCurrentValue("periodic", periodic);
|
---|
[34c338] | 68 | ActionRegistry::getInstance().getActionByName(AtomTranslateAction::NAME)->call(Action::NonInteractive);
|
---|
| 69 | };
|
---|
| 70 |
|
---|
| 71 | Dialog* AtomTranslateAction::fillDialog(Dialog *dialog) {
|
---|
| 72 | ASSERT(dialog,"No Dialog given when filling action dialog");
|
---|
| 73 |
|
---|
| 74 | dialog->queryVector(NAME, false, ValueStorage::getInstance().getDescription(NAME));
|
---|
[0adac1] | 75 | dialog->queryBoolean("periodic", ValueStorage::getInstance().getDescription("periodic"));
|
---|
[34c338] | 76 |
|
---|
| 77 | return dialog;
|
---|
| 78 | }
|
---|
| 79 |
|
---|
| 80 | Action::state_ptr AtomTranslateAction::performCall() {
|
---|
| 81 | Vector v;
|
---|
[0adac1] | 82 | bool periodic = false;
|
---|
| 83 | Box &domain = World::getInstance().getDomain();
|
---|
[34c338] | 84 | std::vector<atom *> selectedAtoms = World::getInstance().getSelectedAtoms();
|
---|
| 85 |
|
---|
| 86 | ValueStorage::getInstance().queryCurrentValue(NAME, v);
|
---|
[0adac1] | 87 | if (!ValueStorage::getInstance().queryCurrentValue("periodic", periodic, true))
|
---|
| 88 | periodic = false;
|
---|
[34c338] | 89 |
|
---|
| 90 | // TODO: use AtomSet::translate
|
---|
| 91 | for (std::vector<atom *>::iterator iter = selectedAtoms.begin(); iter != selectedAtoms.end(); ++iter) {
|
---|
| 92 | *(*iter) += v;
|
---|
[0adac1] | 93 | if (periodic)
|
---|
| 94 | (*iter)->setPosition(domain.WrapPeriodically((*iter)->getPosition()));
|
---|
[34c338] | 95 | }
|
---|
[0adac1] | 96 |
|
---|
| 97 | return Action::state_ptr(new AtomTranslateState(selectedAtoms, v, periodic));
|
---|
[34c338] | 98 | }
|
---|
| 99 |
|
---|
| 100 | Action::state_ptr AtomTranslateAction::performUndo(Action::state_ptr _state) {
|
---|
| 101 | AtomTranslateState *state = assert_cast<AtomTranslateState*>(_state.get());
|
---|
[0adac1] | 102 | Box &domain = World::getInstance().getDomain();
|
---|
[34c338] | 103 |
|
---|
| 104 | for (std::vector<atom *>::iterator iter = state->selectedAtoms.begin(); iter != state->selectedAtoms.end(); ++iter) {
|
---|
| 105 | *(*iter) -= state->v;
|
---|
[0adac1] | 106 | if (state->periodic)
|
---|
| 107 | (*iter)->setPosition(domain.WrapPeriodically((*iter)->getPosition()));
|
---|
[34c338] | 108 | }
|
---|
| 109 |
|
---|
[0adac1] | 110 | return Action::state_ptr(_state);
|
---|
[34c338] | 111 | }
|
---|
| 112 |
|
---|
| 113 | Action::state_ptr AtomTranslateAction::performRedo(Action::state_ptr _state){
|
---|
| 114 | AtomTranslateState *state = assert_cast<AtomTranslateState*>(_state.get());
|
---|
[0adac1] | 115 | Box &domain = World::getInstance().getDomain();
|
---|
[34c338] | 116 |
|
---|
| 117 | for (std::vector<atom *>::iterator iter = state->selectedAtoms.begin(); iter != state->selectedAtoms.end(); ++iter) {
|
---|
| 118 | *(*iter) += state->v;
|
---|
[0adac1] | 119 | if (state->periodic)
|
---|
| 120 | (*iter)->setPosition(domain.WrapPeriodically((*iter)->getPosition()));
|
---|
[34c338] | 121 | }
|
---|
| 122 |
|
---|
[0adac1] | 123 | return Action::state_ptr(_state);
|
---|
[34c338] | 124 | }
|
---|
| 125 |
|
---|
| 126 | bool AtomTranslateAction::canUndo() {
|
---|
| 127 | return true;
|
---|
| 128 | }
|
---|
| 129 |
|
---|
| 130 | bool AtomTranslateAction::shouldUndo() {
|
---|
| 131 | return true;
|
---|
| 132 | }
|
---|
| 133 |
|
---|
| 134 | const string AtomTranslateAction::getName() {
|
---|
| 135 | return NAME;
|
---|
| 136 | }
|
---|