[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 |
|
---|
[770287] | 8 | /*
|
---|
| 9 | * AllAtomsOfMoleculeAction.cpp
|
---|
| 10 | *
|
---|
| 11 | * Created on: May 12, 2010
|
---|
| 12 | * Author: heber
|
---|
| 13 | */
|
---|
| 14 |
|
---|
[bf3817] | 15 | // include config.h
|
---|
| 16 | #ifdef HAVE_CONFIG_H
|
---|
| 17 | #include <config.h>
|
---|
| 18 | #endif
|
---|
| 19 |
|
---|
[770287] | 20 | #include "Helpers/MemDebug.hpp"
|
---|
| 21 |
|
---|
[92d756] | 22 | #include "Descriptors/AtomSelectionDescriptor.hpp"
|
---|
[c42e60] | 23 | #include "Descriptors/AtomOfMoleculeSelectionDescriptor.hpp"
|
---|
[770287] | 24 | #include "atom.hpp"
|
---|
| 25 | #include "molecule.hpp"
|
---|
| 26 | #include "Helpers/Log.hpp"
|
---|
| 27 | #include "Helpers/Verbose.hpp"
|
---|
| 28 | #include "World.hpp"
|
---|
| 29 |
|
---|
[92d756] | 30 | #include <boost/foreach.hpp>
|
---|
[770287] | 31 | #include <iostream>
|
---|
| 32 | #include <string>
|
---|
| 33 |
|
---|
| 34 | using namespace std;
|
---|
| 35 |
|
---|
[125002] | 36 | #include "AllAtomsOfMoleculeAction.hpp"
|
---|
[770287] | 37 |
|
---|
[1fd675] | 38 | // and construct the stuff
|
---|
| 39 | #include "AllAtomsOfMoleculeAction.def"
|
---|
| 40 | #include "Action_impl_pre.hpp"
|
---|
| 41 | /** =========== define the function ====================== */
|
---|
[770287] | 42 | Action::state_ptr SelectionAllAtomsOfMoleculeAction::performCall() {
|
---|
[1fd675] | 43 | // obtain information
|
---|
| 44 | getParametersfromValueStorage();
|
---|
[770287] | 45 |
|
---|
[c42e60] | 46 | DoLog(1) && (Log() << Verbose(1) << "Selecting all atoms of currently selected molecule." << endl);
|
---|
[92d756] | 47 | std::vector<atom *> selectedAtoms = World::getInstance().getAllAtoms(AtomsBySelection());
|
---|
[c42e60] | 48 | World::getInstance().selectAllAtoms(AtomsByMoleculeSelection());
|
---|
[1fd675] | 49 | return Action::state_ptr(new SelectionAllAtomsOfMoleculeState(selectedAtoms, params));
|
---|
[770287] | 50 | }
|
---|
| 51 |
|
---|
| 52 | Action::state_ptr SelectionAllAtomsOfMoleculeAction::performUndo(Action::state_ptr _state) {
|
---|
| 53 | SelectionAllAtomsOfMoleculeState *state = assert_cast<SelectionAllAtomsOfMoleculeState*>(_state.get());
|
---|
| 54 |
|
---|
[c42e60] | 55 | World::getInstance().clearAtomSelection();
|
---|
[92d756] | 56 | BOOST_FOREACH(atom *_atom, state->selectedAtoms)
|
---|
| 57 | World::getInstance().selectAtom(_atom);
|
---|
[770287] | 58 |
|
---|
[1fd675] | 59 | return Action::state_ptr(_state);
|
---|
[770287] | 60 | }
|
---|
| 61 |
|
---|
| 62 | Action::state_ptr SelectionAllAtomsOfMoleculeAction::performRedo(Action::state_ptr _state){
|
---|
| 63 | SelectionAllAtomsOfMoleculeState *state = assert_cast<SelectionAllAtomsOfMoleculeState*>(_state.get());
|
---|
| 64 |
|
---|
[c42e60] | 65 | World::getInstance().selectAllAtoms(AtomsByMoleculeSelection());
|
---|
[770287] | 66 |
|
---|
[1fd675] | 67 | return Action::state_ptr(_state);
|
---|
[770287] | 68 | }
|
---|
| 69 |
|
---|
| 70 | bool SelectionAllAtomsOfMoleculeAction::canUndo() {
|
---|
| 71 | return true;
|
---|
| 72 | }
|
---|
| 73 |
|
---|
| 74 | bool SelectionAllAtomsOfMoleculeAction::shouldUndo() {
|
---|
| 75 | return true;
|
---|
| 76 | }
|
---|
[1fd675] | 77 | /** =========== end of function ====================== */
|
---|