[97ebf8] | 1 | /*
|
---|
| 2 | * TranslateAction.cpp
|
---|
| 3 | *
|
---|
| 4 | * Created on: May 10, 2010
|
---|
| 5 | * Author: heber
|
---|
| 6 | */
|
---|
| 7 |
|
---|
[112b09] | 8 | #include "Helpers/MemDebug.hpp"
|
---|
| 9 |
|
---|
[97ebf8] | 10 | #include "Actions/MoleculeAction/TranslateAction.hpp"
|
---|
[0430e3] | 11 | #include "Actions/ActionRegistry.hpp"
|
---|
[1a3c26] | 12 | #include "log.hpp"
|
---|
| 13 | #include "molecule.hpp"
|
---|
| 14 | #include "vector.hpp"
|
---|
| 15 | #include "verbose.hpp"
|
---|
| 16 | #include "World.hpp"
|
---|
[97ebf8] | 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"
|
---|
[861874] | 26 | #include "Actions/ValueStorage.hpp"
|
---|
[97ebf8] | 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 |
|
---|
[1a3c26] | 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 |
|
---|
[047878] | 57 | Dialog* MoleculeTranslateAction::fillDialog(Dialog *dialog) {
|
---|
| 58 | ASSERT(dialog,"No Dialog given when filling action dialog");
|
---|
[a20fb9] | 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() {
|
---|
[97ebf8] | 67 | molecule *mol = NULL;
|
---|
| 68 | Vector x;
|
---|
| 69 | bool periodic = false;
|
---|
| 70 |
|
---|
[a20fb9] | 71 | ValueStorage::getInstance().queryCurrentValue(NAME, x);
|
---|
| 72 | ValueStorage::getInstance().queryCurrentValue("periodic", periodic);
|
---|
[97ebf8] | 73 |
|
---|
[a20fb9] | 74 | for (World::MoleculeSelectionIterator iter = World::getInstance().beginMoleculeSelection(); iter != World::getInstance().endMoleculeSelection(); ++iter) {
|
---|
| 75 | mol = iter->second;
|
---|
[97ebf8] | 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 | }
|
---|
[a20fb9] | 82 | return Action::success;
|
---|
[97ebf8] | 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 | }
|
---|