1 | /*
|
---|
2 | * CenterOnEdgeAction.cpp
|
---|
3 | *
|
---|
4 | * Created on: May 8, 2010
|
---|
5 | * Author: heber
|
---|
6 | */
|
---|
7 |
|
---|
8 | #include "Actions/WorldAction/CenterOnEdgeAction.hpp"
|
---|
9 | #include "atom.hpp"
|
---|
10 | #include "log.hpp"
|
---|
11 | #include "vector.hpp"
|
---|
12 | #include "World.hpp"
|
---|
13 |
|
---|
14 | #include <iostream>
|
---|
15 | #include <string>
|
---|
16 |
|
---|
17 | using namespace std;
|
---|
18 |
|
---|
19 | #include "UIElements/UIFactory.hpp"
|
---|
20 | #include "UIElements/Dialog.hpp"
|
---|
21 | #include "Actions/MapOfActions.hpp"
|
---|
22 | #include "Helpers/Assert.hpp"
|
---|
23 |
|
---|
24 | const char WorldCenterOnEdgeAction::NAME[] = "center-edge";
|
---|
25 |
|
---|
26 | WorldCenterOnEdgeAction::WorldCenterOnEdgeAction() :
|
---|
27 | Action(NAME)
|
---|
28 | {}
|
---|
29 |
|
---|
30 | WorldCenterOnEdgeAction::~WorldCenterOnEdgeAction()
|
---|
31 | {}
|
---|
32 |
|
---|
33 | Action::state_ptr WorldCenterOnEdgeAction::performCall() {
|
---|
34 | Dialog *dialog = UIFactory::getInstance().makeDialog();
|
---|
35 | Vector Min;
|
---|
36 | Vector Max;
|
---|
37 | int j=0;
|
---|
38 |
|
---|
39 | dialog->queryEmpty(NAME, MapOfActions::getInstance().getDescription(NAME));
|
---|
40 |
|
---|
41 | if(dialog->display()) {
|
---|
42 | // get maximum and minimum
|
---|
43 | vector<atom *> AllAtoms = World::getInstance().getAllAtoms();
|
---|
44 | ASSERT(AllAtoms.size() > 0, "For CenteronEdge atoms must be present.");
|
---|
45 | vector<atom *>::iterator AtomRunner = AllAtoms.begin();
|
---|
46 | Min = (*AtomRunner)->x;
|
---|
47 | Max = (*AtomRunner)->x;
|
---|
48 | for (; AtomRunner != AllAtoms.end(); ++AtomRunner) {
|
---|
49 | for (int i=0;i<NDIM;i++) {
|
---|
50 | if ((*AtomRunner)->x[i] > Max[i])
|
---|
51 | Max[i] = (*AtomRunner)->x[i];
|
---|
52 | if ((*AtomRunner)->x[i] < Min[i])
|
---|
53 | Min[i] = (*AtomRunner)->x[i];
|
---|
54 | }
|
---|
55 | }
|
---|
56 | // set new box size
|
---|
57 | double * const cell_size = World::getInstance().getDomain();
|
---|
58 | for (j=0;j<6;j++)
|
---|
59 | cell_size[j] = 0.;
|
---|
60 | j=-1;
|
---|
61 | for (int i=0;i<NDIM;i++) {
|
---|
62 | j += i+1;
|
---|
63 | cell_size[j] = (Max[i]-Min[i]);
|
---|
64 | }
|
---|
65 | // translate all atoms, such that Min is aty (0,0,0)
|
---|
66 | for (vector<atom*>::iterator AtomRunner = AllAtoms.begin(); AtomRunner != AllAtoms.end(); ++AtomRunner)
|
---|
67 | (*AtomRunner)->x -= Min;
|
---|
68 | delete dialog;
|
---|
69 | return Action::success;
|
---|
70 | } else {
|
---|
71 | delete dialog;
|
---|
72 | return Action::failure;
|
---|
73 | }
|
---|
74 | }
|
---|
75 |
|
---|
76 | Action::state_ptr WorldCenterOnEdgeAction::performUndo(Action::state_ptr _state) {
|
---|
77 | // ParserLoadXyzState *state = assert_cast<ParserLoadXyzState*>(_state.get());
|
---|
78 |
|
---|
79 | return Action::failure;
|
---|
80 | // string newName = state->mol->getName();
|
---|
81 | // state->mol->setName(state->lastName);
|
---|
82 | //
|
---|
83 | // return Action::state_ptr(new ParserLoadXyzState(state->mol,newName));
|
---|
84 | }
|
---|
85 |
|
---|
86 | Action::state_ptr WorldCenterOnEdgeAction::performRedo(Action::state_ptr _state){
|
---|
87 | return Action::failure;
|
---|
88 | }
|
---|
89 |
|
---|
90 | bool WorldCenterOnEdgeAction::canUndo() {
|
---|
91 | return false;
|
---|
92 | }
|
---|
93 |
|
---|
94 | bool WorldCenterOnEdgeAction::shouldUndo() {
|
---|
95 | return false;
|
---|
96 | }
|
---|
97 |
|
---|
98 | const string WorldCenterOnEdgeAction::getName() {
|
---|
99 | return NAME;
|
---|
100 | }
|
---|