source: src/Actions/MoleculeAction/SaveAdjacencyAction.cpp@ cd5047

Action_Thermostats Add_AtomRandomPerturbation Add_FitFragmentPartialChargesAction Add_RotateAroundBondAction Add_SelectAtomByNameAction Added_ParseSaveFragmentResults AddingActions_SaveParseParticleParameters Adding_Graph_to_ChangeBondActions Adding_MD_integration_tests Adding_ParticleName_to_Atom Adding_StructOpt_integration_tests AtomFragments Automaking_mpqc_open AutomationFragmentation_failures Candidate_v1.5.4 Candidate_v1.6.0 Candidate_v1.6.1 ChangeBugEmailaddress ChangingTestPorts ChemicalSpaceEvaluator CombiningParticlePotentialParsing Combining_Subpackages Debian_Package_split Debian_package_split_molecuildergui_only Disabling_MemDebug Docu_Python_wait EmpiricalPotential_contain_HomologyGraph EmpiricalPotential_contain_HomologyGraph_documentation Enable_parallel_make_install Enhance_userguide Enhanced_StructuralOptimization Enhanced_StructuralOptimization_continued Example_ManyWaysToTranslateAtom Exclude_Hydrogens_annealWithBondGraph FitPartialCharges_GlobalError Fix_BoundInBox_CenterInBox_MoleculeActions Fix_ChargeSampling_PBC Fix_ChronosMutex Fix_FitPartialCharges Fix_FitPotential_needs_atomicnumbers Fix_ForceAnnealing Fix_IndependentFragmentGrids Fix_ParseParticles Fix_ParseParticles_split_forward_backward_Actions Fix_PopActions Fix_QtFragmentList_sorted_selection Fix_Restrictedkeyset_FragmentMolecule Fix_StatusMsg Fix_StepWorldTime_single_argument Fix_Verbose_Codepatterns Fix_fitting_potentials Fixes ForceAnnealing_goodresults ForceAnnealing_oldresults ForceAnnealing_tocheck ForceAnnealing_with_BondGraph ForceAnnealing_with_BondGraph_continued ForceAnnealing_with_BondGraph_continued_betteresults ForceAnnealing_with_BondGraph_contraction-expansion FragmentAction_writes_AtomFragments FragmentMolecule_checks_bonddegrees GeometryObjects Gui_Fixes Gui_displays_atomic_force_velocity ImplicitCharges IndependentFragmentGrids IndependentFragmentGrids_IndividualZeroInstances IndependentFragmentGrids_IntegrationTest IndependentFragmentGrids_Sole_NN_Calculation JobMarket_RobustOnKillsSegFaults JobMarket_StableWorkerPool JobMarket_unresolvable_hostname_fix MoreRobust_FragmentAutomation ODR_violation_mpqc_open PartialCharges_OrthogonalSummation PdbParser_setsAtomName PythonUI_with_named_parameters QtGui_reactivate_TimeChanged_changes Recreated_GuiChecks Rewrite_FitPartialCharges RotateToPrincipalAxisSystem_UndoRedo SaturateAtoms_findBestMatching SaturateAtoms_singleDegree StoppableMakroAction Subpackage_CodePatterns Subpackage_JobMarket Subpackage_LinearAlgebra Subpackage_levmar Subpackage_mpqc_open Subpackage_vmg Switchable_LogView ThirdParty_MPQC_rebuilt_buildsystem TrajectoryDependenant_MaxOrder TremoloParser_IncreasedPrecision TremoloParser_MultipleTimesteps TremoloParser_setsAtomName Ubuntu_1604_changes stable
Last change on this file since cd5047 was 97ebf8, checked in by Frederik Heber <heber@…>, 15 years ago

Added all commands defined in ParseCommandLineOptions() as Actions.

  • Actions are not yet used, except verbose, version and help.
  • Files are present and included in Makefile.am
  • not unit tests written so far
  • no action has been tested so far (except for MapOfActions)
  • structure introduced to to transition from ParseCommandLineOptions to actions.
  • program name and config file are fixed arguments.

Signed-off-by: Frederik Heber <heber@…>

  • Property mode set to 100644
File size: 2.5 KB
Line 
1/*
2 * SaveAdjacencyAction.cpp
3 *
4 * Created on: May 10, 2010
5 * Author: heber
6 */
7
8#include "Actions/MoleculeAction/SaveAdjacencyAction.hpp"
9
10#include <iostream>
11#include <fstream>
12#include <string>
13
14using namespace std;
15
16#include "UIElements/UIFactory.hpp"
17#include "UIElements/Dialog.hpp"
18#include "Actions/MapOfActions.hpp"
19
20#include "atom.hpp"
21#include "bondgraph.hpp"
22#include "config.hpp"
23#include "defs.hpp"
24#include "log.hpp"
25#include "molecule.hpp"
26#include "vector.hpp"
27#include "verbose.hpp"
28#include "World.hpp"
29
30/****** MoleculeSaveAdjacencyAction *****/
31
32// memento to remember the state when undoing
33
34//class MoleculeSaveAdjacencyState : public ActionState {
35//public:
36// MoleculeSaveAdjacencyState(molecule* _mol,std::string _lastName) :
37// mol(_mol),
38// lastName(_lastName)
39// {}
40// molecule* mol;
41// std::string lastName;
42//};
43
44const char MoleculeSaveAdjacencyAction::NAME[] = "save-adjacency";
45
46MoleculeSaveAdjacencyAction::MoleculeSaveAdjacencyAction() :
47 Action(NAME)
48{}
49
50MoleculeSaveAdjacencyAction::~MoleculeSaveAdjacencyAction()
51{}
52
53Action::state_ptr MoleculeSaveAdjacencyAction::performCall() {
54 string filename;
55 Dialog *dialog = UIFactory::getInstance().makeDialog();
56 molecule *mol = NULL;
57
58 dialog->queryString(NAME, &filename, MapOfActions::getInstance().getDescription(NAME));
59 dialog->queryMolecule("molecule-by-id", &mol, MapOfActions::getInstance().getDescription("molecule-by-id"));
60
61 if(dialog->display()) {
62 DoLog(0) && (Log() << Verbose(0) << "Storing adjacency to path " << filename << "." << endl);
63 World::getInstance().getConfig()->BG->ConstructBondGraph(mol);
64 // TODO: sollte stream nicht filename benutzen, besser fuer unit test
65 char outputname[MAXSTRINGSIZE];
66 strcpy(outputname, filename.c_str());
67 mol->StoreAdjacencyToFile(NULL, outputname);
68 delete dialog;
69 return Action::success;
70 }
71 delete dialog;
72 return Action::failure;
73}
74
75Action::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
84Action::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
89bool MoleculeSaveAdjacencyAction::canUndo() {
90 return false;
91}
92
93bool MoleculeSaveAdjacencyAction::shouldUndo() {
94 return false;
95}
96
97const string MoleculeSaveAdjacencyAction::getName() {
98 return NAME;
99}
Note: See TracBrowser for help on using the repository browser.