[97ebf8] | 1 | /*
|
---|
| 2 | * SaveAdjacencyAction.cpp
|
---|
| 3 | *
|
---|
| 4 | * Created on: May 10, 2010
|
---|
| 5 | * Author: heber
|
---|
| 6 | */
|
---|
| 7 |
|
---|
[112b09] | 8 | #include "Helpers/MemDebug.hpp"
|
---|
| 9 |
|
---|
[97ebf8] | 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 | char outputname[MAXSTRINGSIZE];
|
---|
| 68 | strcpy(outputname, filename.c_str());
|
---|
| 69 | mol->StoreAdjacencyToFile(NULL, outputname);
|
---|
| 70 | delete dialog;
|
---|
| 71 | return Action::success;
|
---|
| 72 | }
|
---|
| 73 | delete dialog;
|
---|
| 74 | return Action::failure;
|
---|
| 75 | }
|
---|
| 76 |
|
---|
| 77 | Action::state_ptr MoleculeSaveAdjacencyAction::performUndo(Action::state_ptr _state) {
|
---|
| 78 | // MoleculeSaveAdjacencyState *state = assert_cast<MoleculeSaveAdjacencyState*>(_state.get());
|
---|
| 79 |
|
---|
| 80 | // string newName = state->mol->getName();
|
---|
| 81 | // state->mol->setName(state->lastName);
|
---|
| 82 |
|
---|
| 83 | return Action::failure;
|
---|
| 84 | }
|
---|
| 85 |
|
---|
| 86 | Action::state_ptr MoleculeSaveAdjacencyAction::performRedo(Action::state_ptr _state){
|
---|
| 87 | // Undo and redo have to do the same for this action
|
---|
| 88 | return performUndo(_state);
|
---|
| 89 | }
|
---|
| 90 |
|
---|
| 91 | bool MoleculeSaveAdjacencyAction::canUndo() {
|
---|
| 92 | return false;
|
---|
| 93 | }
|
---|
| 94 |
|
---|
| 95 | bool MoleculeSaveAdjacencyAction::shouldUndo() {
|
---|
| 96 | return false;
|
---|
| 97 | }
|
---|
| 98 |
|
---|
| 99 | const string MoleculeSaveAdjacencyAction::getName() {
|
---|
| 100 | return NAME;
|
---|
| 101 | }
|
---|