source: src/Actions/CmdAction/FastParsingAction.cpp@ 7aa3cf

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 7aa3cf was 7e37a3, checked in by Frederik Heber <heber@…>, 15 years ago

Added undo/redo test to Standard_configuration/6 (FastParsingAction).

  • Property mode set to 100644
File size: 3.2 KB
Line 
1/*
2 * FastParsingAction.cpp
3 *
4 * Created on: May 9, 2010
5 * Author: heber
6 */
7
8#include "Helpers/MemDebug.hpp"
9
10#include "Actions/CmdAction/FastParsingAction.hpp"
11#include "Actions/ActionRegistry.hpp"
12#include "config.hpp"
13#include "Helpers/Log.hpp"
14#include "Helpers/Verbose.hpp"
15#include "World.hpp"
16
17#include <iostream>
18#include <string>
19
20using namespace std;
21
22#include "UIElements/UIFactory.hpp"
23#include "UIElements/Dialog.hpp"
24#include "Actions/ValueStorage.hpp"
25
26// memento to remember the state when undoing
27
28class CommandLineFastParsingState : public ActionState {
29public:
30 CommandLineFastParsingState(const bool _oldvalue, const bool _newvalue) :
31 oldvalue(_oldvalue),
32 newvalue(_newvalue)
33 {}
34 bool oldvalue;
35 bool newvalue;
36};
37
38
39const char CommandLineFastParsingAction::NAME[] = "fastparsing";
40
41CommandLineFastParsingAction::CommandLineFastParsingAction() :
42 Action(NAME)
43{}
44
45CommandLineFastParsingAction::~CommandLineFastParsingAction()
46{}
47
48void CommandFastParsing(bool fastparsing) {
49 ValueStorage::getInstance().setCurrentValue(CommandLineFastParsingAction::NAME, fastparsing);
50 ActionRegistry::getInstance().getActionByName(CommandLineFastParsingAction::NAME)->call(Action::NonInteractive);
51};
52
53Dialog* CommandLineFastParsingAction::fillDialog(Dialog *dialog) {
54 ASSERT(dialog,"No Dialog given when filling action dialog");
55
56 dialog->queryBoolean(NAME, ValueStorage::getInstance().getDescription(NAME));
57
58 return dialog;
59}
60
61Action::state_ptr CommandLineFastParsingAction::performCall() {
62 config *configuration = World::getInstance().getConfig();
63 bool oldvalue = configuration->FastParsing;
64 bool newvalue;
65 ValueStorage::getInstance().queryCurrentValue(NAME, newvalue);
66 configuration->FastParsing = newvalue;
67 if (configuration->FastParsing)
68 DoLog(0) && (Log() << Verbose(0) << "I won't parse trajectories." << endl);
69 else
70 DoLog(0) && (Log() << Verbose(0) << "I will parse trajectories." << endl);
71 return Action::state_ptr(new CommandLineFastParsingState(oldvalue, newvalue));
72}
73
74Action::state_ptr CommandLineFastParsingAction::performUndo(Action::state_ptr _state) {
75 CommandLineFastParsingState *state = assert_cast<CommandLineFastParsingState*>(_state.get());
76
77 config *configuration = World::getInstance().getConfig();
78 configuration->FastParsing = state->oldvalue;
79 if (configuration->FastParsing)
80 DoLog(0) && (Log() << Verbose(0) << "I won't parse trajectories." << endl);
81 else
82 DoLog(0) && (Log() << Verbose(0) << "I will parse trajectories." << endl);
83
84 return Action::state_ptr(_state);
85}
86
87Action::state_ptr CommandLineFastParsingAction::performRedo(Action::state_ptr _state){
88 CommandLineFastParsingState *state = assert_cast<CommandLineFastParsingState*>(_state.get());
89
90 config *configuration = World::getInstance().getConfig();
91 configuration->FastParsing = state->newvalue;
92 if (configuration->FastParsing)
93 DoLog(0) && (Log() << Verbose(0) << "I won't parse trajectories." << endl);
94 else
95 DoLog(0) && (Log() << Verbose(0) << "I will parse trajectories." << endl);
96
97 return Action::state_ptr(_state);
98}
99
100bool CommandLineFastParsingAction::canUndo() {
101 return true;
102}
103
104bool CommandLineFastParsingAction::shouldUndo() {
105 return true;
106}
107
108const string CommandLineFastParsingAction::getName() {
109 return NAME;
110}
Note: See TracBrowser for help on using the repository browser.