| [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 | 
 | 
|---|
| [ad011c] | 20 | #include "CodePatterns/MemDebug.hpp"
 | 
|---|
| [112b09] | 21 | 
 | 
|---|
| [632508] | 22 | #include "Graph/BondGraph.hpp"
 | 
|---|
| [1a3c26] | 23 | #include "config.hpp"
 | 
|---|
| [ad011c] | 24 | #include "CodePatterns/Log.hpp"
 | 
|---|
| [1a3c26] | 25 | #include "molecule.hpp"
 | 
|---|
| [ad011c] | 26 | #include "CodePatterns/Verbose.hpp"
 | 
|---|
| [1a3c26] | 27 | #include "World.hpp"
 | 
|---|
 | 28 | 
 | 
|---|
| [97ebf8] | 29 | #include <iostream>
 | 
|---|
 | 30 | #include <fstream>
 | 
|---|
 | 31 | #include <string>
 | 
|---|
 | 32 | 
 | 
|---|
| [1fd675] | 33 | #include "Actions/MoleculeAction/SaveBondsAction.hpp"
 | 
|---|
| [fdf198] | 34 | 
 | 
|---|
| [ce7fdc] | 35 | using namespace MoleCuilder;
 | 
|---|
 | 36 | 
 | 
|---|
| [1fd675] | 37 | // and construct the stuff
 | 
|---|
 | 38 | #include "SaveBondsAction.def"
 | 
|---|
 | 39 | #include "Action_impl_pre.hpp"
 | 
|---|
 | 40 | /** =========== define the function ====================== */
 | 
|---|
| [97ebf8] | 41 | Action::state_ptr MoleculeSaveBondsAction::performCall() {
 | 
|---|
 | 42 |   molecule *mol = NULL;
 | 
|---|
 | 43 | 
 | 
|---|
| [1fd675] | 44 |   // obtain information
 | 
|---|
 | 45 |   getParametersfromValueStorage();
 | 
|---|
| [97ebf8] | 46 | 
 | 
|---|
| [fdf198] | 47 |   for (World::MoleculeSelectionIterator iter = World::getInstance().beginMoleculeSelection(); iter != World::getInstance().endMoleculeSelection(); ++iter) {
 | 
|---|
 | 48 |     mol = iter->second;
 | 
|---|
| [1fd675] | 49 |     DoLog(0) && (Log() << Verbose(0) << "Storing bonds to path " << params.bondsfile << "." << endl);
 | 
|---|
| [35b698] | 50 |     // TODO: sollte stream, nicht filenamen direkt nutzen, besser fuer unit tests
 | 
|---|
| [632a52] | 51 | #if BOOST_VERSION >= 104600
 | 
|---|
 | 52 |     mol->StoreBondsToFile(params.bondsfile.leaf().string(), params.bondsfile.branch_path().string());
 | 
|---|
 | 53 | #else
 | 
|---|
| [e4afb4] | 54 |     mol->StoreBondsToFile(params.bondsfile.leaf(), params.bondsfile.branch_path().string());
 | 
|---|
| [632a52] | 55 | #endif
 | 
|---|
| [97ebf8] | 56 |   }
 | 
|---|
| [fdf198] | 57 |   return Action::success;
 | 
|---|
| [97ebf8] | 58 | }
 | 
|---|
 | 59 | 
 | 
|---|
 | 60 | Action::state_ptr MoleculeSaveBondsAction::performUndo(Action::state_ptr _state) {
 | 
|---|
 | 61 | //  MoleculeSaveBondsState *state = assert_cast<MoleculeSaveBondsState*>(_state.get());
 | 
|---|
 | 62 | 
 | 
|---|
 | 63 | //  string newName = state->mol->getName();
 | 
|---|
 | 64 | //  state->mol->setName(state->lastName);
 | 
|---|
 | 65 | 
 | 
|---|
 | 66 |   return Action::failure;
 | 
|---|
 | 67 | }
 | 
|---|
 | 68 | 
 | 
|---|
 | 69 | Action::state_ptr MoleculeSaveBondsAction::performRedo(Action::state_ptr _state){
 | 
|---|
 | 70 |   // Undo and redo have to do the same for this action
 | 
|---|
 | 71 |   return performUndo(_state);
 | 
|---|
 | 72 | }
 | 
|---|
 | 73 | 
 | 
|---|
 | 74 | bool MoleculeSaveBondsAction::canUndo() {
 | 
|---|
 | 75 |   return false;
 | 
|---|
 | 76 | }
 | 
|---|
 | 77 | 
 | 
|---|
 | 78 | bool MoleculeSaveBondsAction::shouldUndo() {
 | 
|---|
 | 79 |   return false;
 | 
|---|
 | 80 | }
 | 
|---|
| [1fd675] | 81 | /** =========== end of function ====================== */
 | 
|---|