| [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 |  | 
|---|
| [97ebf8] | 8 | /* | 
|---|
|  | 9 | * AddEmptyBoundaryAction.cpp | 
|---|
|  | 10 | * | 
|---|
|  | 11 | *  Created on: May 8, 2010 | 
|---|
|  | 12 | *      Author: heber | 
|---|
|  | 13 | */ | 
|---|
|  | 14 |  | 
|---|
| [bf3817] | 15 | // include config.h | 
|---|
|  | 16 | #ifdef HAVE_CONFIG_H | 
|---|
|  | 17 | #include <config.h> | 
|---|
|  | 18 | #endif | 
|---|
|  | 19 |  | 
|---|
| [112b09] | 20 | #include "Helpers/MemDebug.hpp" | 
|---|
|  | 21 |  | 
|---|
| [97ebf8] | 22 | #include "Actions/WorldAction/AddEmptyBoundaryAction.hpp" | 
|---|
| [0430e3] | 23 | #include "Actions/ActionRegistry.hpp" | 
|---|
| [97ebf8] | 24 | #include "atom.hpp" | 
|---|
| [952f38] | 25 | #include "Helpers/Log.hpp" | 
|---|
| [57f243] | 26 | #include "LinearAlgebra/Vector.hpp" | 
|---|
| [97ebf8] | 27 | #include "World.hpp" | 
|---|
|  | 28 |  | 
|---|
|  | 29 | #include <iostream> | 
|---|
|  | 30 | #include <string> | 
|---|
|  | 31 | #include <vector> | 
|---|
|  | 32 |  | 
|---|
|  | 33 | using namespace std; | 
|---|
|  | 34 |  | 
|---|
|  | 35 | #include "UIElements/UIFactory.hpp" | 
|---|
|  | 36 | #include "UIElements/Dialog.hpp" | 
|---|
| [861874] | 37 | #include "Actions/ValueStorage.hpp" | 
|---|
| [97ebf8] | 38 | #include "Helpers/Assert.hpp" | 
|---|
|  | 39 |  | 
|---|
|  | 40 | const char WorldAddEmptyBoundaryAction::NAME[] = "boundary"; | 
|---|
|  | 41 |  | 
|---|
|  | 42 | WorldAddEmptyBoundaryAction::WorldAddEmptyBoundaryAction() : | 
|---|
|  | 43 | Action(NAME) | 
|---|
|  | 44 | {} | 
|---|
|  | 45 |  | 
|---|
|  | 46 | WorldAddEmptyBoundaryAction::~WorldAddEmptyBoundaryAction() | 
|---|
|  | 47 | {} | 
|---|
|  | 48 |  | 
|---|
| [a8f6ae] | 49 | void WorldAddEmptyBoundary(Vector &boundary) { | 
|---|
|  | 50 | ValueStorage::getInstance().setCurrentValue(WorldAddEmptyBoundaryAction::NAME, boundary); | 
|---|
|  | 51 | ActionRegistry::getInstance().getActionByName(WorldAddEmptyBoundaryAction::NAME)->call(Action::NonInteractive); | 
|---|
|  | 52 | }; | 
|---|
|  | 53 |  | 
|---|
| [047878] | 54 | Dialog* WorldAddEmptyBoundaryAction::fillDialog(Dialog *dialog) { | 
|---|
|  | 55 | ASSERT(dialog,"No Dialog given when filling action dialog"); | 
|---|
| [afd9f3] | 56 |  | 
|---|
|  | 57 | dialog->queryVector(NAME, false, ValueStorage::getInstance().getDescription(NAME)); | 
|---|
|  | 58 |  | 
|---|
|  | 59 | return dialog; | 
|---|
|  | 60 | } | 
|---|
|  | 61 |  | 
|---|
|  | 62 | Action::state_ptr WorldAddEmptyBoundaryAction::performCall() { | 
|---|
| [97ebf8] | 63 | Vector boundary; | 
|---|
|  | 64 | Vector Min; | 
|---|
|  | 65 | Vector Max; | 
|---|
|  | 66 | int j=0; | 
|---|
|  | 67 |  | 
|---|
| [afd9f3] | 68 | ValueStorage::getInstance().queryCurrentValue(NAME, boundary); | 
|---|
|  | 69 |  | 
|---|
|  | 70 | // get maximum and minimum | 
|---|
|  | 71 | vector<atom *> AllAtoms = World::getInstance().getAllAtoms(); | 
|---|
|  | 72 | ASSERT(AllAtoms.size() > 0, "There must be atoms present for AddingEmptyBoundary."); | 
|---|
|  | 73 | vector<atom *>::iterator AtomRunner = AllAtoms.begin(); | 
|---|
| [d74077] | 74 | Min = (*AtomRunner)->getPosition(); | 
|---|
|  | 75 | Max = (*AtomRunner)->getPosition(); | 
|---|
| [afd9f3] | 76 | for (; AtomRunner != AllAtoms.end(); ++AtomRunner) { | 
|---|
| [97ebf8] | 77 | for (int i=0;i<NDIM;i++) { | 
|---|
| [d74077] | 78 | if ((*AtomRunner)->at(i) > Max[i]) | 
|---|
|  | 79 | Max[i] = (*AtomRunner)->at(i); | 
|---|
|  | 80 | if ((*AtomRunner)->at(i) < Min[i]) | 
|---|
|  | 81 | Min[i] = (*AtomRunner)->at(i); | 
|---|
| [97ebf8] | 82 | } | 
|---|
|  | 83 | } | 
|---|
| [afd9f3] | 84 | // set new box size | 
|---|
|  | 85 | double * const cell_size = new double[6]; | 
|---|
|  | 86 | for (j=0;j<6;j++) | 
|---|
|  | 87 | cell_size[j] = 0.; | 
|---|
|  | 88 | j=-1; | 
|---|
|  | 89 | for (int i=0;i<NDIM;i++) { | 
|---|
|  | 90 | j += i+1; | 
|---|
|  | 91 | cell_size[j] = (Max[i]-Min[i]+2.*boundary[i]); | 
|---|
|  | 92 | } | 
|---|
|  | 93 | World::getInstance().setDomain(cell_size); | 
|---|
|  | 94 | delete[] cell_size; | 
|---|
|  | 95 | // translate all atoms, such that Min is aty (0,0,0) | 
|---|
|  | 96 | AtomRunner = AllAtoms.begin(); | 
|---|
|  | 97 | for (; AtomRunner != AllAtoms.end(); ++AtomRunner) | 
|---|
| [d74077] | 98 | *(*AtomRunner) -= Min - boundary; | 
|---|
| [afd9f3] | 99 | return Action::success; | 
|---|
| [97ebf8] | 100 | } | 
|---|
|  | 101 |  | 
|---|
|  | 102 | Action::state_ptr WorldAddEmptyBoundaryAction::performUndo(Action::state_ptr _state) { | 
|---|
|  | 103 | //  ParserLoadXyzState *state = assert_cast<ParserLoadXyzState*>(_state.get()); | 
|---|
|  | 104 |  | 
|---|
|  | 105 | return Action::failure; | 
|---|
|  | 106 | //  string newName = state->mol->getName(); | 
|---|
|  | 107 | //  state->mol->setName(state->lastName); | 
|---|
|  | 108 | // | 
|---|
|  | 109 | //  return Action::state_ptr(new ParserLoadXyzState(state->mol,newName)); | 
|---|
|  | 110 | } | 
|---|
|  | 111 |  | 
|---|
|  | 112 | Action::state_ptr WorldAddEmptyBoundaryAction::performRedo(Action::state_ptr _state){ | 
|---|
|  | 113 | return Action::failure; | 
|---|
|  | 114 | } | 
|---|
|  | 115 |  | 
|---|
|  | 116 | bool WorldAddEmptyBoundaryAction::canUndo() { | 
|---|
|  | 117 | return false; | 
|---|
|  | 118 | } | 
|---|
|  | 119 |  | 
|---|
|  | 120 | bool WorldAddEmptyBoundaryAction::shouldUndo() { | 
|---|
|  | 121 | return false; | 
|---|
|  | 122 | } | 
|---|
|  | 123 |  | 
|---|
|  | 124 | const string WorldAddEmptyBoundaryAction::getName() { | 
|---|
|  | 125 | return NAME; | 
|---|
|  | 126 | } | 
|---|