[97ebf8] | 1 | /*
|
---|
| 2 | * CenterInBoxAction.cpp
|
---|
| 3 | *
|
---|
| 4 | * Created on: May 8, 2010
|
---|
| 5 | * Author: heber
|
---|
| 6 | */
|
---|
| 7 |
|
---|
[bf3817] | 8 | // include config.h
|
---|
| 9 | #ifdef HAVE_CONFIG_H
|
---|
| 10 | #include <config.h>
|
---|
| 11 | #endif
|
---|
| 12 |
|
---|
[112b09] | 13 | #include "Helpers/MemDebug.hpp"
|
---|
| 14 |
|
---|
[97ebf8] | 15 | #include "Actions/WorldAction/CenterInBoxAction.hpp"
|
---|
[0430e3] | 16 | #include "Actions/ActionRegistry.hpp"
|
---|
[4aece0] | 17 | #include "Box.hpp"
|
---|
[952f38] | 18 | #include "Helpers/Log.hpp"
|
---|
[97ebf8] | 19 | #include "molecule.hpp"
|
---|
| 20 | #include "World.hpp"
|
---|
| 21 |
|
---|
| 22 | #include <iostream>
|
---|
| 23 | #include <string>
|
---|
| 24 |
|
---|
| 25 | using namespace std;
|
---|
| 26 |
|
---|
| 27 | #include "UIElements/UIFactory.hpp"
|
---|
| 28 | #include "UIElements/Dialog.hpp"
|
---|
[861874] | 29 | #include "Actions/ValueStorage.hpp"
|
---|
[97ebf8] | 30 |
|
---|
| 31 | const char WorldCenterInBoxAction::NAME[] = "center-in-box";
|
---|
| 32 |
|
---|
| 33 | WorldCenterInBoxAction::WorldCenterInBoxAction() :
|
---|
| 34 | Action(NAME)
|
---|
| 35 | {}
|
---|
| 36 |
|
---|
| 37 | WorldCenterInBoxAction::~WorldCenterInBoxAction()
|
---|
| 38 | {}
|
---|
| 39 |
|
---|
[a8f6ae] | 40 | void WorldCenterInBox(Box &_box) {
|
---|
| 41 | ValueStorage::getInstance().setCurrentValue(WorldCenterInBoxAction::NAME, _box);
|
---|
| 42 | ActionRegistry::getInstance().getActionByName(WorldCenterInBoxAction::NAME)->call(Action::NonInteractive);
|
---|
| 43 | };
|
---|
| 44 |
|
---|
[047878] | 45 | Dialog* WorldCenterInBoxAction::fillDialog(Dialog *dialog) {
|
---|
| 46 | ASSERT(dialog,"No Dialog given when filling action dialog");
|
---|
[97ebf8] | 47 |
|
---|
[4aece0] | 48 | dialog->queryBox(NAME, ValueStorage::getInstance().getDescription(NAME));
|
---|
| 49 |
|
---|
| 50 | return dialog;
|
---|
| 51 | }
|
---|
| 52 |
|
---|
| 53 | Action::state_ptr WorldCenterInBoxAction::performCall() {
|
---|
| 54 |
|
---|
[84c494] | 55 | Box& cell_size = World::getInstance().getDomain();
|
---|
[4aece0] | 56 | ValueStorage::getInstance().queryCurrentValue(NAME, cell_size);
|
---|
| 57 | World::getInstance().setDomain(cell_size.getM());
|
---|
| 58 |
|
---|
| 59 | // center
|
---|
| 60 | vector<molecule *> AllMolecules = World::getInstance().getAllMolecules();
|
---|
| 61 | for (vector<molecule*>::iterator MolRunner = AllMolecules.begin(); MolRunner != AllMolecules.end(); ++MolRunner) {
|
---|
| 62 | (*MolRunner)->CenterInBox();
|
---|
[97ebf8] | 63 | }
|
---|
[4aece0] | 64 | return Action::success;
|
---|
[97ebf8] | 65 | }
|
---|
| 66 |
|
---|
| 67 | Action::state_ptr WorldCenterInBoxAction::performUndo(Action::state_ptr _state) {
|
---|
| 68 | // ParserLoadXyzState *state = assert_cast<ParserLoadXyzState*>(_state.get());
|
---|
| 69 |
|
---|
| 70 | return Action::failure;
|
---|
| 71 | // string newName = state->mol->getName();
|
---|
| 72 | // state->mol->setName(state->lastName);
|
---|
| 73 | //
|
---|
| 74 | // return Action::state_ptr(new ParserLoadXyzState(state->mol,newName));
|
---|
| 75 | }
|
---|
| 76 |
|
---|
| 77 | Action::state_ptr WorldCenterInBoxAction::performRedo(Action::state_ptr _state){
|
---|
| 78 | return Action::failure;
|
---|
| 79 | }
|
---|
| 80 |
|
---|
| 81 | bool WorldCenterInBoxAction::canUndo() {
|
---|
| 82 | return false;
|
---|
| 83 | }
|
---|
| 84 |
|
---|
| 85 | bool WorldCenterInBoxAction::shouldUndo() {
|
---|
| 86 | return false;
|
---|
| 87 | }
|
---|
| 88 |
|
---|
| 89 | const string WorldCenterInBoxAction::getName() {
|
---|
| 90 | return NAME;
|
---|
| 91 | }
|
---|