[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 |
|
---|
[97ebf8] | 8 | /*
|
---|
| 9 | * SaveBondsAction.cpp
|
---|
| 10 | *
|
---|
| 11 | * Created on: May 10, 2010
|
---|
| 12 | * Author: heber
|
---|
| 13 | */
|
---|
| 14 |
|
---|
[bf3817] | 15 | // include config.h
|
---|
| 16 | #ifdef HAVE_CONFIG_H
|
---|
| 17 | #include <config.h>
|
---|
| 18 | #endif
|
---|
| 19 |
|
---|
[112b09] | 20 | #include "Helpers/MemDebug.hpp"
|
---|
| 21 |
|
---|
[97ebf8] | 22 | #include "Actions/MoleculeAction/SaveBondsAction.hpp"
|
---|
[0430e3] | 23 | #include "Actions/ActionRegistry.hpp"
|
---|
[1a3c26] | 24 | #include "bondgraph.hpp"
|
---|
| 25 | #include "config.hpp"
|
---|
[952f38] | 26 | #include "Helpers/Log.hpp"
|
---|
[1a3c26] | 27 | #include "molecule.hpp"
|
---|
[952f38] | 28 | #include "Helpers/Verbose.hpp"
|
---|
[1a3c26] | 29 | #include "World.hpp"
|
---|
| 30 |
|
---|
[97ebf8] | 31 |
|
---|
| 32 | #include <iostream>
|
---|
| 33 | #include <fstream>
|
---|
| 34 | #include <string>
|
---|
| 35 |
|
---|
| 36 | using namespace std;
|
---|
| 37 |
|
---|
| 38 | #include "UIElements/UIFactory.hpp"
|
---|
| 39 | #include "UIElements/Dialog.hpp"
|
---|
[861874] | 40 | #include "Actions/ValueStorage.hpp"
|
---|
[97ebf8] | 41 |
|
---|
| 42 | /****** MoleculeSaveBondsAction *****/
|
---|
| 43 |
|
---|
| 44 | // memento to remember the state when undoing
|
---|
| 45 |
|
---|
| 46 | //class MoleculeSaveBondsState : public ActionState {
|
---|
| 47 | //public:
|
---|
| 48 | // MoleculeSaveBondsState(molecule* _mol,std::string _lastName) :
|
---|
| 49 | // mol(_mol),
|
---|
| 50 | // lastName(_lastName)
|
---|
| 51 | // {}
|
---|
| 52 | // molecule* mol;
|
---|
| 53 | // std::string lastName;
|
---|
| 54 | //};
|
---|
| 55 |
|
---|
| 56 | const char MoleculeSaveBondsAction::NAME[] = "save-bonds";
|
---|
| 57 |
|
---|
| 58 | MoleculeSaveBondsAction::MoleculeSaveBondsAction() :
|
---|
| 59 | Action(NAME)
|
---|
| 60 | {}
|
---|
| 61 |
|
---|
| 62 | MoleculeSaveBondsAction::~MoleculeSaveBondsAction()
|
---|
| 63 | {}
|
---|
| 64 |
|
---|
[1a3c26] | 65 | void MoleculeSaveBonds(std::string &bondsfile) {
|
---|
| 66 | ValueStorage::getInstance().setCurrentValue(MoleculeSaveBondsAction::NAME, bondsfile);
|
---|
| 67 | ActionRegistry::getInstance().getActionByName(MoleculeSaveBondsAction::NAME)->call(Action::NonInteractive);
|
---|
| 68 | };
|
---|
| 69 |
|
---|
[0b2ce9] | 70 | void MoleculeSaveBondsAction::getParametersfromValueStorage()
|
---|
| 71 | {};
|
---|
| 72 |
|
---|
[047878] | 73 | Dialog* MoleculeSaveBondsAction::fillDialog(Dialog *dialog) {
|
---|
| 74 | ASSERT(dialog,"No Dialog given when filling action dialog");
|
---|
[fdf198] | 75 |
|
---|
| 76 | dialog->queryString(NAME, ValueStorage::getInstance().getDescription(NAME));
|
---|
[5b5c4d] | 77 |
|
---|
| 78 | return dialog;
|
---|
[fdf198] | 79 | }
|
---|
| 80 |
|
---|
[97ebf8] | 81 | Action::state_ptr MoleculeSaveBondsAction::performCall() {
|
---|
| 82 | string filename;
|
---|
| 83 | molecule *mol = NULL;
|
---|
| 84 |
|
---|
[fdf198] | 85 | ValueStorage::getInstance().queryCurrentValue(NAME, filename);
|
---|
[97ebf8] | 86 |
|
---|
[fdf198] | 87 | for (World::MoleculeSelectionIterator iter = World::getInstance().beginMoleculeSelection(); iter != World::getInstance().endMoleculeSelection(); ++iter) {
|
---|
| 88 | mol = iter->second;
|
---|
[97ebf8] | 89 | DoLog(0) && (Log() << Verbose(0) << "Storing bonds to path " << filename << "." << endl);
|
---|
| 90 | World::getInstance().getConfig()->BG->ConstructBondGraph(mol);
|
---|
[35b698] | 91 | // TODO: sollte stream, nicht filenamen direkt nutzen, besser fuer unit tests
|
---|
| 92 | mol->StoreBondsToFile(filename);
|
---|
[97ebf8] | 93 | }
|
---|
[fdf198] | 94 | return Action::success;
|
---|
[97ebf8] | 95 | }
|
---|
| 96 |
|
---|
| 97 | Action::state_ptr MoleculeSaveBondsAction::performUndo(Action::state_ptr _state) {
|
---|
| 98 | // MoleculeSaveBondsState *state = assert_cast<MoleculeSaveBondsState*>(_state.get());
|
---|
| 99 |
|
---|
| 100 | // string newName = state->mol->getName();
|
---|
| 101 | // state->mol->setName(state->lastName);
|
---|
| 102 |
|
---|
| 103 | return Action::failure;
|
---|
| 104 | }
|
---|
| 105 |
|
---|
| 106 | Action::state_ptr MoleculeSaveBondsAction::performRedo(Action::state_ptr _state){
|
---|
| 107 | // Undo and redo have to do the same for this action
|
---|
| 108 | return performUndo(_state);
|
---|
| 109 | }
|
---|
| 110 |
|
---|
| 111 | bool MoleculeSaveBondsAction::canUndo() {
|
---|
| 112 | return false;
|
---|
| 113 | }
|
---|
| 114 |
|
---|
| 115 | bool MoleculeSaveBondsAction::shouldUndo() {
|
---|
| 116 | return false;
|
---|
| 117 | }
|
---|
| 118 |
|
---|
| 119 | const string MoleculeSaveBondsAction::getName() {
|
---|
| 120 | return NAME;
|
---|
| 121 | }
|
---|