[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 | * BondFileAction.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/BondFileAction.hpp"
|
---|
[0430e3] | 23 | #include "Actions/ActionRegistry.hpp"
|
---|
[952f38] | 24 | #include "Helpers/Log.hpp"
|
---|
[1a3c26] | 25 | #include "molecule.hpp"
|
---|
[952f38] | 26 | #include "Helpers/Verbose.hpp"
|
---|
[1a3c26] | 27 | #include "World.hpp"
|
---|
[97ebf8] | 28 |
|
---|
| 29 | #include <iostream>
|
---|
| 30 | #include <fstream>
|
---|
| 31 | #include <string>
|
---|
| 32 |
|
---|
| 33 | using namespace std;
|
---|
| 34 |
|
---|
| 35 | #include "UIElements/UIFactory.hpp"
|
---|
| 36 | #include "UIElements/Dialog.hpp"
|
---|
[861874] | 37 | #include "Actions/ValueStorage.hpp"
|
---|
[97ebf8] | 38 |
|
---|
| 39 |
|
---|
| 40 | /****** MoleculeBondFileAction *****/
|
---|
| 41 |
|
---|
| 42 | // memento to remember the state when undoing
|
---|
| 43 |
|
---|
| 44 | //class MoleculeBondFileState : public ActionState {
|
---|
| 45 | //public:
|
---|
| 46 | // MoleculeBondFileState(molecule* _mol,std::string _lastName) :
|
---|
| 47 | // mol(_mol),
|
---|
| 48 | // lastName(_lastName)
|
---|
| 49 | // {}
|
---|
| 50 | // molecule* mol;
|
---|
| 51 | // std::string lastName;
|
---|
| 52 | //};
|
---|
| 53 |
|
---|
| 54 | const char MoleculeBondFileAction::NAME[] = "bond-file";
|
---|
| 55 |
|
---|
| 56 | MoleculeBondFileAction::MoleculeBondFileAction() :
|
---|
| 57 | Action(NAME)
|
---|
| 58 | {}
|
---|
| 59 |
|
---|
| 60 | MoleculeBondFileAction::~MoleculeBondFileAction()
|
---|
| 61 | {}
|
---|
| 62 |
|
---|
[1a3c26] | 63 | void MoleculeBondFile(std::string &bondfile) {
|
---|
| 64 | ValueStorage::getInstance().setCurrentValue(MoleculeBondFileAction::NAME, bondfile);
|
---|
| 65 | ActionRegistry::getInstance().getActionByName(MoleculeBondFileAction::NAME)->call(Action::NonInteractive);
|
---|
| 66 | };
|
---|
| 67 |
|
---|
[047878] | 68 | Dialog* MoleculeBondFileAction::fillDialog(Dialog *dialog) {
|
---|
| 69 | ASSERT(dialog,"No Dialog given when filling action dialog");
|
---|
[eacc3b] | 70 |
|
---|
[c89fb4] | 71 | dialog->queryString(NAME, ValueStorage::getInstance().getDescription(NAME));
|
---|
[eacc3b] | 72 |
|
---|
| 73 | return dialog;
|
---|
| 74 | }
|
---|
| 75 |
|
---|
[97ebf8] | 76 | Action::state_ptr MoleculeBondFileAction::performCall() {
|
---|
| 77 | string filename;
|
---|
| 78 | molecule *mol = NULL;
|
---|
| 79 |
|
---|
[eacc3b] | 80 | ValueStorage::getInstance().queryCurrentValue(NAME, filename);
|
---|
[97ebf8] | 81 |
|
---|
[eacc3b] | 82 | if(World::getInstance().countSelectedMolecules() == 1) {
|
---|
| 83 | mol = World::getInstance().beginMoleculeSelection()->second;
|
---|
[97ebf8] | 84 | DoLog(0) && (Log() << Verbose(0) << "Parsing bonds from " << filename << "." << endl);
|
---|
| 85 | ifstream input(filename.c_str());
|
---|
| 86 | mol->CreateAdjacencyListFromDbondFile(&input);
|
---|
| 87 | input.close();
|
---|
| 88 | return Action::success;
|
---|
[eacc3b] | 89 | } else
|
---|
| 90 | return Action::failure;
|
---|
[97ebf8] | 91 | }
|
---|
| 92 |
|
---|
| 93 | Action::state_ptr MoleculeBondFileAction::performUndo(Action::state_ptr _state) {
|
---|
| 94 | // MoleculeBondFileState *state = assert_cast<MoleculeBondFileState*>(_state.get());
|
---|
| 95 |
|
---|
| 96 | // string newName = state->mol->getName();
|
---|
| 97 | // state->mol->setName(state->lastName);
|
---|
| 98 |
|
---|
| 99 | return Action::failure;
|
---|
| 100 | }
|
---|
| 101 |
|
---|
| 102 | Action::state_ptr MoleculeBondFileAction::performRedo(Action::state_ptr _state){
|
---|
| 103 | // Undo and redo have to do the same for this action
|
---|
| 104 | return performUndo(_state);
|
---|
| 105 | }
|
---|
| 106 |
|
---|
| 107 | bool MoleculeBondFileAction::canUndo() {
|
---|
| 108 | return false;
|
---|
| 109 | }
|
---|
| 110 |
|
---|
| 111 | bool MoleculeBondFileAction::shouldUndo() {
|
---|
| 112 | return false;
|
---|
| 113 | }
|
---|
| 114 |
|
---|
| 115 | const string MoleculeBondFileAction::getName() {
|
---|
| 116 | return NAME;
|
---|
| 117 | }
|
---|