1 | /*
|
---|
2 | * Project: MoleCuilder
|
---|
3 | * Description: creates and alters molecular systems
|
---|
4 | * Copyright (C) 2014 Frederik Heber. All rights reserved.
|
---|
5 | *
|
---|
6 | *
|
---|
7 | * This file is part of MoleCuilder.
|
---|
8 | *
|
---|
9 | * MoleCuilder is free software: you can redistribute it and/or modify
|
---|
10 | * it under the terms of the GNU General Public License as published by
|
---|
11 | * the Free Software Foundation, either version 2 of the License, or
|
---|
12 | * (at your option) any later version.
|
---|
13 | *
|
---|
14 | * MoleCuilder is distributed in the hope that it will be useful,
|
---|
15 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
16 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
17 | * GNU General Public License for more details.
|
---|
18 | *
|
---|
19 | * You should have received a copy of the GNU General Public License
|
---|
20 | * along with MoleCuilder. If not, see <http://www.gnu.org/licenses/>.
|
---|
21 | */
|
---|
22 |
|
---|
23 | /*
|
---|
24 | * RemoveAction.cpp
|
---|
25 | *
|
---|
26 | * Created on: Dez 8, 2014
|
---|
27 | * Author: heber
|
---|
28 | */
|
---|
29 |
|
---|
30 | // include config.h
|
---|
31 | #ifdef HAVE_CONFIG_H
|
---|
32 | #include <config.h>
|
---|
33 | #endif
|
---|
34 |
|
---|
35 | #include "CodePatterns/MemDebug.hpp"
|
---|
36 |
|
---|
37 | #include "CodePatterns/Log.hpp"
|
---|
38 |
|
---|
39 | #include <map>
|
---|
40 | #include <vector>
|
---|
41 |
|
---|
42 | #include "Actions/UndoRedoHelpers.hpp"
|
---|
43 | #include "Atom/AtomicInfo.hpp"
|
---|
44 | #include "molecule.hpp"
|
---|
45 | #include "World.hpp"
|
---|
46 |
|
---|
47 | #include "RemoveAction.hpp"
|
---|
48 |
|
---|
49 | using namespace MoleCuilder;
|
---|
50 |
|
---|
51 | // and construct the stuff
|
---|
52 | #include "RemoveAction.def"
|
---|
53 | #include "Action_impl_pre.hpp"
|
---|
54 | /** =========== define the function ====================== */
|
---|
55 | ActionState::ptr MoleculeRemoveAction::performCall() {
|
---|
56 |
|
---|
57 | std::vector<molecule *> molecules = World::getInstance().getSelectedMolecules();
|
---|
58 | // check selected molecules
|
---|
59 | if (molecules.empty()) {
|
---|
60 | STATUS("No molecules selected.");
|
---|
61 | return Action::failure;
|
---|
62 | }
|
---|
63 |
|
---|
64 | STATUS("Removing "+toString(molecules.size())+" molecules.");
|
---|
65 | // create undo state
|
---|
66 | molecules_atoms_t MoleculeWalkers;
|
---|
67 | for (std::vector<molecule *>::const_iterator iter = molecules.begin();
|
---|
68 | iter != molecules.end(); ++iter) {
|
---|
69 | std::vector<AtomicInfo> Walkers;
|
---|
70 | for (molecule::const_iterator atomiter = const_cast<const molecule *>(*iter)->begin();
|
---|
71 | atomiter != const_cast<const molecule *>(*iter)->end(); ++atomiter) {
|
---|
72 | Walkers.push_back(**atomiter);
|
---|
73 | }
|
---|
74 | MoleculeWalkers.insert( std::make_pair( (*iter)->getId(), Walkers ) );
|
---|
75 | }
|
---|
76 | MoleculeRemoveState *UndoState = new MoleculeRemoveState(MoleculeWalkers, params);
|
---|
77 |
|
---|
78 | // remove all selected atoms
|
---|
79 | for (std::vector<molecule *>::iterator iter = molecules.begin();
|
---|
80 | iter != molecules.end(); ++iter)
|
---|
81 | removeAtomsinMolecule(*iter);
|
---|
82 | molecules.clear();
|
---|
83 |
|
---|
84 | return ActionState::ptr(UndoState);
|
---|
85 | }
|
---|
86 |
|
---|
87 | ActionState::ptr MoleculeRemoveAction::performUndo(ActionState::ptr _state) {
|
---|
88 | MoleculeRemoveState *state = assert_cast<MoleculeRemoveState*>(_state.get());
|
---|
89 |
|
---|
90 | // add all removed atoms again
|
---|
91 | if (AddMoleculesFromAtomicInfo(state->MoleculeWalkers))
|
---|
92 | return ActionState::ptr(_state);
|
---|
93 | else {
|
---|
94 | STATUS("Failed to re-add removed atoms in their molecules.");
|
---|
95 | return Action::failure;
|
---|
96 | }
|
---|
97 |
|
---|
98 | return ActionState::ptr(_state);
|
---|
99 | }
|
---|
100 |
|
---|
101 | ActionState::ptr MoleculeRemoveAction::performRedo(ActionState::ptr _state){
|
---|
102 | MoleculeRemoveState *state = assert_cast<MoleculeRemoveState*>(_state.get());
|
---|
103 |
|
---|
104 | // simply, remove molecules again, we have all the info
|
---|
105 | for (molecules_atoms_t::const_iterator iter = state->MoleculeWalkers.begin();
|
---|
106 | iter != state->MoleculeWalkers.end(); ++iter) {
|
---|
107 | molecule * mol = World::getInstance().getMolecule(MoleculeById(iter->first));
|
---|
108 | if (mol != NULL)
|
---|
109 | removeAtomsinMolecule(mol);
|
---|
110 | }
|
---|
111 |
|
---|
112 | return ActionState::ptr(_state);
|
---|
113 | }
|
---|
114 |
|
---|
115 | bool MoleculeRemoveAction::canUndo() {
|
---|
116 | return true;
|
---|
117 | }
|
---|
118 |
|
---|
119 | bool MoleculeRemoveAction::shouldUndo() {
|
---|
120 | return true;
|
---|
121 | }
|
---|
122 | /** =========== end of function ====================== */
|
---|