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 |
|
---|
8 | /*
|
---|
9 | * NotMoleculeByFormulaAction.cpp
|
---|
10 | *
|
---|
11 | * Created on: May 12, 2010
|
---|
12 | * Author: heber
|
---|
13 | */
|
---|
14 |
|
---|
15 | // include config.h
|
---|
16 | #ifdef HAVE_CONFIG_H
|
---|
17 | #include <config.h>
|
---|
18 | #endif
|
---|
19 |
|
---|
20 | #include "Helpers/MemDebug.hpp"
|
---|
21 |
|
---|
22 | #include "Actions/SelectionAction/NotMoleculeByFormulaAction.hpp"
|
---|
23 | #include "Actions/ActionRegistry.hpp"
|
---|
24 | #include "Descriptors/MoleculeFormulaDescriptor.hpp"
|
---|
25 | #include "molecule.hpp"
|
---|
26 | #include "Helpers/Log.hpp"
|
---|
27 | #include "Helpers/Verbose.hpp"
|
---|
28 | #include "World.hpp"
|
---|
29 |
|
---|
30 | #include <iostream>
|
---|
31 | #include <string>
|
---|
32 |
|
---|
33 | using namespace std;
|
---|
34 |
|
---|
35 | #include "UIElements/UIFactory.hpp"
|
---|
36 | #include "UIElements/Dialog.hpp"
|
---|
37 | #include "Actions/ValueStorage.hpp"
|
---|
38 |
|
---|
39 |
|
---|
40 | // memento to remember the state when undoing
|
---|
41 |
|
---|
42 | class SelectionNotMoleculeByFormulaState : public ActionState {
|
---|
43 | public:
|
---|
44 | SelectionNotMoleculeByFormulaState(std::vector<molecule*> selectedMolecules, const std::string &_formula) :
|
---|
45 | selectedMolecules(selectedMolecules),
|
---|
46 | formula(_formula)
|
---|
47 | {}
|
---|
48 | std::vector<molecule*> selectedMolecules;
|
---|
49 | std::string formula;
|
---|
50 | };
|
---|
51 |
|
---|
52 | const char SelectionNotMoleculeByFormulaAction::NAME[] = "unselect-molecule-by-formula";
|
---|
53 |
|
---|
54 | SelectionNotMoleculeByFormulaAction::SelectionNotMoleculeByFormulaAction() :
|
---|
55 | Action(NAME)
|
---|
56 | {}
|
---|
57 |
|
---|
58 | SelectionNotMoleculeByFormulaAction::~SelectionNotMoleculeByFormulaAction()
|
---|
59 | {}
|
---|
60 |
|
---|
61 | void SelectionNotMoleculeByFormula(const std::string &_formula) {
|
---|
62 | ValueStorage::getInstance().setCurrentValue(SelectionNotMoleculeByFormulaAction::NAME, _formula);
|
---|
63 | ActionRegistry::getInstance().getActionByName(SelectionNotMoleculeByFormulaAction::NAME)->call(Action::NonInteractive);
|
---|
64 | };
|
---|
65 |
|
---|
66 | void SelectionNotMoleculeByFormulaAction::getParametersfromValueStorage()
|
---|
67 | {};
|
---|
68 |
|
---|
69 | Dialog* SelectionNotMoleculeByFormulaAction::fillDialog(Dialog *dialog) {
|
---|
70 | ASSERT(dialog,"No Dialog given when filling action dialog");
|
---|
71 |
|
---|
72 | dialog->queryString(NAME, ValueStorage::getInstance().getDescription(NAME));
|
---|
73 |
|
---|
74 | return dialog;
|
---|
75 | }
|
---|
76 |
|
---|
77 | Action::state_ptr SelectionNotMoleculeByFormulaAction::performCall() {
|
---|
78 | std::string formula;
|
---|
79 | std::vector<molecule *> selectedMolecules = World::getInstance().getSelectedMolecules();
|
---|
80 |
|
---|
81 | ValueStorage::getInstance().queryCurrentValue(NAME, formula);
|
---|
82 |
|
---|
83 | DoLog(1) && (Log() << Verbose(1) << "Unselecting molecules with chemical formula " << formula << ":" << endl);
|
---|
84 | std::vector<molecule *> matchingMolecules = World::getInstance().getAllMolecules(MoleculeByFormula(formula));
|
---|
85 | for (std::vector<molecule *>::const_iterator iter = matchingMolecules.begin(); iter != matchingMolecules.end(); ++iter) {
|
---|
86 | DoLog(1) && (Log() << Verbose(1) << "\t" << (*iter)->getId() << ", " << (*iter)->getName() << "." << endl);
|
---|
87 | }
|
---|
88 | World::getInstance().unselectAllMolecules(MoleculeByFormula(formula));
|
---|
89 | return Action::state_ptr(new SelectionNotMoleculeByFormulaState(selectedMolecules,formula));
|
---|
90 | }
|
---|
91 |
|
---|
92 | Action::state_ptr SelectionNotMoleculeByFormulaAction::performUndo(Action::state_ptr _state) {
|
---|
93 | SelectionNotMoleculeByFormulaState *state = assert_cast<SelectionNotMoleculeByFormulaState*>(_state.get());
|
---|
94 |
|
---|
95 | World::getInstance().clearMoleculeSelection();
|
---|
96 | for(std::vector<molecule *>::iterator iter = state->selectedMolecules.begin(); iter != state->selectedMolecules.end(); ++iter)
|
---|
97 | World::getInstance().selectMolecule(*iter);
|
---|
98 |
|
---|
99 | return Action::state_ptr(_state);
|
---|
100 | }
|
---|
101 |
|
---|
102 | Action::state_ptr SelectionNotMoleculeByFormulaAction::performRedo(Action::state_ptr _state){
|
---|
103 | SelectionNotMoleculeByFormulaState *state = assert_cast<SelectionNotMoleculeByFormulaState*>(_state.get());
|
---|
104 |
|
---|
105 | World::getInstance().unselectAllMolecules(MoleculeByFormula(state->formula));
|
---|
106 |
|
---|
107 | return Action::state_ptr(_state);
|
---|
108 | }
|
---|
109 |
|
---|
110 | bool SelectionNotMoleculeByFormulaAction::canUndo() {
|
---|
111 | return true;
|
---|
112 | }
|
---|
113 |
|
---|
114 | bool SelectionNotMoleculeByFormulaAction::shouldUndo() {
|
---|
115 | return true;
|
---|
116 | }
|
---|
117 |
|
---|
118 | const string SelectionNotMoleculeByFormulaAction::getName() {
|
---|
119 | return NAME;
|
---|
120 | }
|
---|