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

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 7e37a3 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
RevLine 
[97ebf8]1/*
2 * FastParsingAction.cpp
3 *
4 * Created on: May 9, 2010
5 * Author: heber
6 */
7
[112b09]8#include "Helpers/MemDebug.hpp"
9
[97ebf8]10#include "Actions/CmdAction/FastParsingAction.hpp"
[0430e3]11#include "Actions/ActionRegistry.hpp"
[97ebf8]12#include "config.hpp"
[952f38]13#include "Helpers/Log.hpp"
14#include "Helpers/Verbose.hpp"
[97ebf8]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"
[861874]24#include "Actions/ValueStorage.hpp"
[ccf31f]25
26// memento to remember the state when undoing
27
28class CommandLineFastParsingState : public ActionState {
29public:
[7e37a3]30 CommandLineFastParsingState(const bool _oldvalue, const bool _newvalue) :
31 oldvalue(_oldvalue),
32 newvalue(_newvalue)
[ccf31f]33 {}
[7e37a3]34 bool oldvalue;
35 bool newvalue;
[ccf31f]36};
37
[97ebf8]38
39const char CommandLineFastParsingAction::NAME[] = "fastparsing";
40
41CommandLineFastParsingAction::CommandLineFastParsingAction() :
42 Action(NAME)
43{}
44
45CommandLineFastParsingAction::~CommandLineFastParsingAction()
46{}
47
[ecbc9a]48void CommandFastParsing(bool fastparsing) {
49 ValueStorage::getInstance().setCurrentValue(CommandLineFastParsingAction::NAME, fastparsing);
50 ActionRegistry::getInstance().getActionByName(CommandLineFastParsingAction::NAME)->call(Action::NonInteractive);
51};
52
[047878]53Dialog* CommandLineFastParsingAction::fillDialog(Dialog *dialog) {
54 ASSERT(dialog,"No Dialog given when filling action dialog");
[97ebf8]55
[c89fb4]56 dialog->queryBoolean(NAME, ValueStorage::getInstance().getDescription(NAME));
[ccf31f]57
58 return dialog;
59}
60
61Action::state_ptr CommandLineFastParsingAction::performCall() {
[97ebf8]62 config *configuration = World::getInstance().getConfig();
[7e37a3]63 bool oldvalue = configuration->FastParsing;
64 bool newvalue;
65 ValueStorage::getInstance().queryCurrentValue(NAME, newvalue);
66 configuration->FastParsing = newvalue;
[ccf31f]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);
[7e37a3]71 return Action::state_ptr(new CommandLineFastParsingState(oldvalue, newvalue));
[97ebf8]72}
73
74Action::state_ptr CommandLineFastParsingAction::performUndo(Action::state_ptr _state) {
[ccf31f]75 CommandLineFastParsingState *state = assert_cast<CommandLineFastParsingState*>(_state.get());
76
77 config *configuration = World::getInstance().getConfig();
[7e37a3]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);
[97ebf8]83
[7e37a3]84 return Action::state_ptr(_state);
[97ebf8]85}
86
87Action::state_ptr CommandLineFastParsingAction::performRedo(Action::state_ptr _state){
[7e37a3]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);
[97ebf8]98}
99
100bool CommandLineFastParsingAction::canUndo() {
[ccf31f]101 return true;
[97ebf8]102}
103
104bool CommandLineFastParsingAction::shouldUndo() {
[ccf31f]105 return true;
[97ebf8]106}
107
108const string CommandLineFastParsingAction::getName() {
109 return NAME;
110}
Note: See TracBrowser for help on using the repository browser.