Changeset 23526c


Ignore:
Timestamp:
Oct 14, 2011, 10:41:09 AM (13 years ago)
Author:
Frederik Heber <heber@…>
Branches:
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
Children:
de7d1d
Parents:
e670e4
git-author:
Frederik Heber <heber@…> (09/14/11 15:46:05)
git-committer:
Frederik Heber <heber@…> (10/14/11 10:41:09)
Message:

Added Undo/Redo capabilities to CenterInBoxAction.

  • adapted regression test.
Files:
1 added
3 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/WorldAction/CenterInBoxAction.cpp

    re670e4 r23526c  
    1818#endif
    1919
     20// include headers that implement a archive in simple text format
     21#include <boost/archive/text_oarchive.hpp>
     22#include <boost/archive/text_iarchive.hpp>
     23#include "boost/serialization/vector.hpp"
     24
    2025#include "CodePatterns/MemDebug.hpp"
     26
     27#include <boost/shared_ptr.hpp>
    2128
    2229#include "Box.hpp"
    2330#include "CodePatterns/Log.hpp"
     31#include "LinearAlgebra/MatrixContent.hpp"
    2432#include "LinearAlgebra/RealSpaceMatrix.hpp"
    2533#include "molecule.hpp"
     
    2836#include <iostream>
    2937#include <string>
     38#include <vector>
    3039
    3140#include "Actions/WorldAction/CenterInBoxAction.hpp"
     
    4150  getParametersfromValueStorage();
    4251
     52  // create undo state
     53  std::stringstream undostream;
     54  boost::archive::text_oarchive oa(undostream);
     55  RealSpaceMatrix matrix(World::getInstance().getDomain().getM());
     56  oa << matrix;
     57  std::vector< boost::shared_ptr<Vector> > OldPositions;
     58  std::vector<molecule*> AllMolecules = World::getInstance().getAllMolecules();
     59  for (std::vector<molecule*>::iterator MolRunner = AllMolecules.begin();
     60      MolRunner != AllMolecules.end();
     61      ++MolRunner) {
     62    for(molecule::const_iterator AtomRunner = (*MolRunner)->begin();
     63        AtomRunner != (*MolRunner)->end();
     64        ++AtomRunner) {
     65      OldPositions.push_back(
     66          boost::shared_ptr<Vector>(new Vector(
     67              (*AtomRunner)->getPosition()
     68              ))
     69          );
     70    }
     71  }
     72
     73  // set new domain
    4374  World::getInstance().setDomain(params.cell_size.getM());
    4475
    45   // center
    46   vector<molecule *> AllMolecules = World::getInstance().getAllMolecules();
    47   for (vector<molecule*>::iterator MolRunner = AllMolecules.begin(); MolRunner != AllMolecules.end(); ++MolRunner) {
     76  // center atoms
     77  for (std::vector<molecule*>::iterator MolRunner = AllMolecules.begin(); MolRunner != AllMolecules.end(); ++MolRunner) {
    4878    (*MolRunner)->CenterInBox();
    4979  }
     
    5282  LOG(0, "Box domain is now " << World::getInstance().getDomain().getM());
    5383
    54   return Action::success;
     84  // create undo state
     85  WorldCenterInBoxState *UndoState =
     86      new WorldCenterInBoxState(
     87          undostream.str(),
     88          OldPositions,
     89          params
     90          );
     91
     92  return Action::state_ptr(UndoState);
    5593}
    5694
    5795Action::state_ptr WorldCenterInBoxAction::performUndo(Action::state_ptr _state) {
    58 //  ParserLoadXyzState *state = assert_cast<ParserLoadXyzState*>(_state.get());
     96  WorldCenterInBoxState *state = assert_cast<WorldCenterInBoxState*>(_state.get());
    5997
    60   return Action::failure;
    61 //  string newName = state->mol->getName();
    62 //  state->mol->setName(state->lastName);
    63 //
    64 //  return Action::state_ptr(new ParserLoadXyzState(state->mol,newName));
     98  // restore domain
     99  RealSpaceMatrix matrix;
     100  std::stringstream undostream(state->undostring);
     101  boost::archive::text_iarchive ia(undostream);
     102  ia >> matrix;
     103  World::getInstance().setDomain(matrix);
     104
     105  // place atoms on old positions
     106  std::vector< boost::shared_ptr<Vector> >::const_iterator OldPositionsIter = state->OldPositions.begin();
     107  std::vector<molecule*> AllMolecules = World::getInstance().getAllMolecules();
     108  for (std::vector<molecule*>::iterator MolRunner = AllMolecules.begin();
     109      MolRunner != AllMolecules.end();
     110      ++MolRunner) {
     111    for(molecule::const_iterator AtomRunner = (*MolRunner)->begin();
     112        AtomRunner != (*MolRunner)->end();
     113        ++AtomRunner) {
     114      ASSERT(OldPositionsIter != state->OldPositions.end(),
     115          "WorldBoundInBoxAction::performUndo() - too few positions stored in UndoState.");
     116      (*AtomRunner)->setPosition(**(OldPositionsIter++));
     117    }
     118  }
     119
     120  // give final box size
     121  LOG(0, "Box domain restored to " << World::getInstance().getDomain().getM());
     122
     123  return Action::state_ptr(_state);
    65124}
    66125
    67126Action::state_ptr WorldCenterInBoxAction::performRedo(Action::state_ptr _state){
    68   return Action::failure;
     127  WorldCenterInBoxState *state = assert_cast<WorldCenterInBoxState*>(_state.get());
     128
     129  // set new domain
     130  World::getInstance().setDomain(state->params.cell_size.getM());
     131
     132  // center atoms
     133  std::vector<molecule *> AllMolecules = World::getInstance().getAllMolecules();
     134  for (std::vector<molecule*>::iterator MolRunner = AllMolecules.begin(); MolRunner != AllMolecules.end(); ++MolRunner) {
     135    (*MolRunner)->CenterInBox();
     136  }
     137
     138  // give final box size
     139  LOG(0, "Box domain is again " << World::getInstance().getDomain().getM());
     140
     141  return Action::state_ptr(_state);
    69142}
    70143
    71144bool WorldCenterInBoxAction::canUndo() {
    72   return false;
     145  return true;
    73146}
    74147
    75148bool WorldCenterInBoxAction::shouldUndo() {
    76   return false;
     149  return true;
    77150}
    78151/** =========== end of function ====================== */
  • src/Actions/WorldAction/CenterInBoxAction.def

    re670e4 r23526c  
    99#include "Actions/Values.hpp"
    1010#include "Box.hpp"
     11#include "LinearAlgebra/Vector.hpp"
     12#include <boost/shared_ptr.hpp>
    1113
    1214// i.e. there is an integer with variable name Z that can be found in
     
    1921#define paramreferences (cell_size)
    2022
    21 #undef statetypes
    22 #undef statereferences
     23#define statetypes (std::string)(std::vector< boost::shared_ptr<Vector> >)
     24#define statereferences (undostring)(OldPositions)
    2325
    2426// some defines for all the names, you may use ACTION, STATE and PARAMS
  • tests/regression/Domain/CenterInBox/testsuite-domain-center-in-box.at

    re670e4 r23526c  
    1515
    1616AT_SETUP([Domain - setting and centering in domain with Undo])
    17 AT_XFAIL_IF([/bin/true])
    1817AT_KEYWORDS([domain center-in-box undo])
    1918
     
    2221AT_CHECK([chmod u+w $file], 0)
    2322AT_CHECK([../../molecuilder -i $file  -b "15, 0, 15, 0, 0, 15" --undo], 0, [stdout], [stderr])
    24 AT_CHECK([fgrep "Box domain is now" stdout], 0, [ignore], [ignore])
    25 AT_CHECK([diff $file ${abs_top_srcdir}/tests/regression/Domain/CenterInBox/post/test.conf], 0, [stdout], [stderr])
     23AT_CHECK([fgrep "Box domain restored to" stdout], 0, [ignore], [ignore])
     24AT_CHECK([diff $file ${abs_top_srcdir}/tests/regression/Domain/CenterInBox/post/test-undo.conf], 0, [stdout], [stderr])
    2625
    2726AT_CLEANUP
     
    2928
    3029AT_SETUP([Domain - setting and centering in domain with Redo])
    31 AT_XFAIL_IF([/bin/true])
    3230AT_KEYWORDS([domain center-in-box redo])
    3331
     
    3634AT_CHECK([chmod u+w $file], 0)
    3735AT_CHECK([../../molecuilder -i $file  -b "15, 0, 15, 0, 0, 15" --undo --redo], 0, [stdout], [stderr])
    38 AT_CHECK([fgrep "Box domain is now" stdout], 0, [ignore], [ignore])
     36AT_CHECK([fgrep "Box domain is again" stdout], 0, [ignore], [ignore])
    3937AT_CHECK([diff $file ${abs_top_srcdir}/tests/regression/Domain/CenterInBox/post/test.conf], 0, [stdout], [stderr])
    4038
Note: See TracChangeset for help on using the changeset viewer.