1 | /*
|
---|
2 | * SaveAdjacencyAction.cpp
|
---|
3 | *
|
---|
4 | * Created on: May 10, 2010
|
---|
5 | * Author: heber
|
---|
6 | */
|
---|
7 |
|
---|
8 | #include "Helpers/MemDebug.hpp"
|
---|
9 |
|
---|
10 | #include "Actions/MoleculeAction/SaveAdjacencyAction.hpp"
|
---|
11 |
|
---|
12 | #include <iostream>
|
---|
13 | #include <fstream>
|
---|
14 | #include <string>
|
---|
15 |
|
---|
16 | using namespace std;
|
---|
17 |
|
---|
18 | #include "UIElements/UIFactory.hpp"
|
---|
19 | #include "UIElements/Dialog.hpp"
|
---|
20 | #include "Actions/MapOfActions.hpp"
|
---|
21 |
|
---|
22 | #include "atom.hpp"
|
---|
23 | #include "bondgraph.hpp"
|
---|
24 | #include "config.hpp"
|
---|
25 | #include "defs.hpp"
|
---|
26 | #include "log.hpp"
|
---|
27 | #include "molecule.hpp"
|
---|
28 | #include "vector.hpp"
|
---|
29 | #include "verbose.hpp"
|
---|
30 | #include "World.hpp"
|
---|
31 |
|
---|
32 | /****** MoleculeSaveAdjacencyAction *****/
|
---|
33 |
|
---|
34 | // memento to remember the state when undoing
|
---|
35 |
|
---|
36 | //class MoleculeSaveAdjacencyState : public ActionState {
|
---|
37 | //public:
|
---|
38 | // MoleculeSaveAdjacencyState(molecule* _mol,std::string _lastName) :
|
---|
39 | // mol(_mol),
|
---|
40 | // lastName(_lastName)
|
---|
41 | // {}
|
---|
42 | // molecule* mol;
|
---|
43 | // std::string lastName;
|
---|
44 | //};
|
---|
45 |
|
---|
46 | const char MoleculeSaveAdjacencyAction::NAME[] = "save-adjacency";
|
---|
47 |
|
---|
48 | MoleculeSaveAdjacencyAction::MoleculeSaveAdjacencyAction() :
|
---|
49 | Action(NAME)
|
---|
50 | {}
|
---|
51 |
|
---|
52 | MoleculeSaveAdjacencyAction::~MoleculeSaveAdjacencyAction()
|
---|
53 | {}
|
---|
54 |
|
---|
55 | Action::state_ptr MoleculeSaveAdjacencyAction::performCall() {
|
---|
56 | string filename;
|
---|
57 | Dialog *dialog = UIFactory::getInstance().makeDialog();
|
---|
58 | molecule *mol = NULL;
|
---|
59 |
|
---|
60 | dialog->queryString(NAME, &filename, MapOfActions::getInstance().getDescription(NAME));
|
---|
61 | dialog->queryMolecule("molecule-by-id", &mol, MapOfActions::getInstance().getDescription("molecule-by-id"));
|
---|
62 |
|
---|
63 | if(dialog->display()) {
|
---|
64 | DoLog(0) && (Log() << Verbose(0) << "Storing adjacency to path " << filename << "." << endl);
|
---|
65 | World::getInstance().getConfig()->BG->ConstructBondGraph(mol);
|
---|
66 | // TODO: sollte stream nicht filename benutzen, besser fuer unit test
|
---|
67 | mol->StoreAdjacencyToFile(filename);
|
---|
68 | delete dialog;
|
---|
69 | return Action::success;
|
---|
70 | }
|
---|
71 | delete dialog;
|
---|
72 | return Action::failure;
|
---|
73 | }
|
---|
74 |
|
---|
75 | Action::state_ptr MoleculeSaveAdjacencyAction::performUndo(Action::state_ptr _state) {
|
---|
76 | // MoleculeSaveAdjacencyState *state = assert_cast<MoleculeSaveAdjacencyState*>(_state.get());
|
---|
77 |
|
---|
78 | // string newName = state->mol->getName();
|
---|
79 | // state->mol->setName(state->lastName);
|
---|
80 |
|
---|
81 | return Action::failure;
|
---|
82 | }
|
---|
83 |
|
---|
84 | Action::state_ptr MoleculeSaveAdjacencyAction::performRedo(Action::state_ptr _state){
|
---|
85 | // Undo and redo have to do the same for this action
|
---|
86 | return performUndo(_state);
|
---|
87 | }
|
---|
88 |
|
---|
89 | bool MoleculeSaveAdjacencyAction::canUndo() {
|
---|
90 | return false;
|
---|
91 | }
|
---|
92 |
|
---|
93 | bool MoleculeSaveAdjacencyAction::shouldUndo() {
|
---|
94 | return false;
|
---|
95 | }
|
---|
96 |
|
---|
97 | const string MoleculeSaveAdjacencyAction::getName() {
|
---|
98 | return NAME;
|
---|
99 | }
|
---|