1 | /*
|
---|
2 | * TranslateAction.cpp
|
---|
3 | *
|
---|
4 | * Created on: May 10, 2010
|
---|
5 | * Author: heber
|
---|
6 | */
|
---|
7 |
|
---|
8 | #include "Helpers/MemDebug.hpp"
|
---|
9 |
|
---|
10 | #include "Actions/MoleculeAction/TranslateAction.hpp"
|
---|
11 | #include "Actions/ActionRegistry.hpp"
|
---|
12 | #include "Helpers/Log.hpp"
|
---|
13 | #include "molecule.hpp"
|
---|
14 | #include "LinearAlgebra/Vector.hpp"
|
---|
15 | #include "Helpers/Verbose.hpp"
|
---|
16 | #include "World.hpp"
|
---|
17 |
|
---|
18 | #include <iostream>
|
---|
19 | #include <fstream>
|
---|
20 | #include <string>
|
---|
21 |
|
---|
22 | using namespace std;
|
---|
23 |
|
---|
24 | #include "UIElements/UIFactory.hpp"
|
---|
25 | #include "UIElements/Dialog.hpp"
|
---|
26 | #include "Actions/ValueStorage.hpp"
|
---|
27 |
|
---|
28 | /****** MoleculeTranslateAction *****/
|
---|
29 |
|
---|
30 | // memento to remember the state when undoing
|
---|
31 |
|
---|
32 | //class MoleculeTranslateState : public ActionState {
|
---|
33 | //public:
|
---|
34 | // MoleculeTranslateState(molecule* _mol,std::string _lastName) :
|
---|
35 | // mol(_mol),
|
---|
36 | // lastName(_lastName)
|
---|
37 | // {}
|
---|
38 | // molecule* mol;
|
---|
39 | // std::string lastName;
|
---|
40 | //};
|
---|
41 |
|
---|
42 | const char MoleculeTranslateAction::NAME[] = "translate-mol";
|
---|
43 |
|
---|
44 | MoleculeTranslateAction::MoleculeTranslateAction() :
|
---|
45 | Action(NAME)
|
---|
46 | {}
|
---|
47 |
|
---|
48 | MoleculeTranslateAction::~MoleculeTranslateAction()
|
---|
49 | {}
|
---|
50 |
|
---|
51 | void MoleculeTranslate(Vector &x, bool periodic) {
|
---|
52 | ValueStorage::getInstance().setCurrentValue(MoleculeTranslateAction::NAME, x);
|
---|
53 | ValueStorage::getInstance().setCurrentValue("periodic", periodic);
|
---|
54 | ActionRegistry::getInstance().getActionByName(MoleculeTranslateAction::NAME)->call(Action::NonInteractive);
|
---|
55 | };
|
---|
56 |
|
---|
57 | Dialog* MoleculeTranslateAction::fillDialog(Dialog *dialog) {
|
---|
58 | ASSERT(dialog,"No Dialog given when filling action dialog");
|
---|
59 |
|
---|
60 | dialog->queryVector(NAME, false, ValueStorage::getInstance().getDescription(NAME));
|
---|
61 | dialog->queryBoolean("periodic", ValueStorage::getInstance().getDescription("periodic"));
|
---|
62 |
|
---|
63 | return dialog;
|
---|
64 | }
|
---|
65 |
|
---|
66 | Action::state_ptr MoleculeTranslateAction::performCall() {
|
---|
67 | molecule *mol = NULL;
|
---|
68 | Vector x;
|
---|
69 | bool periodic = false;
|
---|
70 |
|
---|
71 | ValueStorage::getInstance().queryCurrentValue(NAME, x);
|
---|
72 | ValueStorage::getInstance().queryCurrentValue("periodic", periodic);
|
---|
73 |
|
---|
74 | for (World::MoleculeSelectionIterator iter = World::getInstance().beginMoleculeSelection(); iter != World::getInstance().endMoleculeSelection(); ++iter) {
|
---|
75 | mol = iter->second;
|
---|
76 | DoLog(1) && (Log() << Verbose(1) << "Translating all ions by given vector." << endl);
|
---|
77 | if (periodic)
|
---|
78 | mol->TranslatePeriodically((const Vector *)&x);
|
---|
79 | else
|
---|
80 | mol->Translate((const Vector *)&x);
|
---|
81 | }
|
---|
82 | return Action::success;
|
---|
83 | }
|
---|
84 |
|
---|
85 | Action::state_ptr MoleculeTranslateAction::performUndo(Action::state_ptr _state) {
|
---|
86 | // MoleculeTranslateState *state = assert_cast<MoleculeTranslateState*>(_state.get());
|
---|
87 |
|
---|
88 | // string newName = state->mol->getName();
|
---|
89 | // state->mol->setName(state->lastName);
|
---|
90 |
|
---|
91 | return Action::failure;
|
---|
92 | }
|
---|
93 |
|
---|
94 | Action::state_ptr MoleculeTranslateAction::performRedo(Action::state_ptr _state){
|
---|
95 | // Undo and redo have to do the same for this action
|
---|
96 | return performUndo(_state);
|
---|
97 | }
|
---|
98 |
|
---|
99 | bool MoleculeTranslateAction::canUndo() {
|
---|
100 | return false;
|
---|
101 | }
|
---|
102 |
|
---|
103 | bool MoleculeTranslateAction::shouldUndo() {
|
---|
104 | return false;
|
---|
105 | }
|
---|
106 |
|
---|
107 | const string MoleculeTranslateAction::getName() {
|
---|
108 | return NAME;
|
---|
109 | }
|
---|