Changeset 3213f2 for src/Actions


Ignore:
Timestamp:
Jan 14, 2015, 9:03:24 PM (10 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:
a84e8d
Parents:
cad383
git-author:
Frederik Heber <heber@…> (12/19/14 16:37:06)
git-committer:
Frederik Heber <heber@…> (01/14/15 21:03:24)
Message:

Added Push/PopAtom selection actions.

Location:
src/Actions
Files:
6 added
3 edited

Legend:

Unmodified
Added
Removed
  • src/Actions/GlobalListOfActions.hpp

    rcad383 r3213f2  
    127127  (SelectionNotMoleculeByOrder) \
    128128  (SelectionNotShapeByName) \
     129  (SelectionPopAtoms) \
     130  (SelectionPushAtoms) \
    129131  (SelectionShapeByName) \
    130132  (ShapeCombineShapes) \
  • src/Actions/GraphAction/SubgraphDissectionAction.cpp

    rcad383 r3213f2  
    4242#include "Actions/GraphAction/UpdateMoleculesAction.hpp"
    4343#include "Actions/GraphAction/SubgraphDissectionAction.hpp"
     44#include "Actions/SelectionAction/Atoms/PushAtomsAction.hpp"
     45#include "Actions/SelectionAction/Atoms/PopAtomsAction.hpp"
     46#include "Actions/SelectionAction/Atoms/AllAtomsAction.hpp"
    4447#include "Actions/ActionQueue.hpp"
    4548#include "Actions/ActionRegistry.hpp"
     
    6063void GraphSubgraphDissectionAction::prepare(ActionRegistry &AR)
    6164{
     65  actions.addAction(AR.getActionByName(std::string("push-atom-selection")));
    6266  actions.addAction(AR.getActionByName(std::string("select-all-atoms")));
    6367  actions.addAction(AR.getActionByName(std::string("destroy-adjacency")));
    6468  actions.addAction(AR.getActionByName(std::string("create-adjacency")));
    6569  actions.addAction(AR.getActionByName(std::string("update-molecules")));
     70  actions.addAction(AR.getActionByName(std::string("pop-atom-selection")));
    6671  isPrepared = true;
    6772}
     
    7479}
    7580
    76 void reselectAtoms(const std::vector<atom *> &selected_atoms)
    77 {
    78   World::getInstance().clearAtomSelection();
    79   for (std::vector<atom *>::const_iterator iter = selected_atoms.begin();
    80       iter != selected_atoms.end();
    81       ++iter)
    82     World::getInstance().selectAtom(*iter);
    83 }
    84 
    8581ActionState::ptr GraphSubgraphDissectionAction::performCall(){
    86   // we need to "emulate" that all atoms have been selected without destroying
    87   // current selection
    88   const std::vector<atom *> selected_atoms = World::getInstance().getSelectedAtoms();
    8982  ActionState::ptr state(MakroAction::performCall());
    90   reselectAtoms(selected_atoms);
    9183
    9284  return state;
     
    9486
    9587ActionState::ptr GraphSubgraphDissectionAction::performUndo(ActionState::ptr _state) {
    96   // we need to "emulate" that all atoms have been selected without destroying
    97   // current selection
    98   const std::vector<atom *> selected_atoms = World::getInstance().getSelectedAtoms();
    9988  ActionState::ptr state(MakroAction::performUndo(_state));
    100   reselectAtoms(selected_atoms);
    10189
    10290  return state;
     
    10492
    10593ActionState::ptr GraphSubgraphDissectionAction::performRedo(ActionState::ptr _state){
    106   // we need to "emulate" that all atoms have been selected without destroying
    107   // current selection
    108   const std::vector<atom *> selected_atoms = World::getInstance().getSelectedAtoms();
    10994  ActionState::ptr state(MakroAction::performRedo(_state));
    110   reselectAtoms(selected_atoms);
    11195
    11296  return state;
  • src/Actions/Makefile.am

    rcad383 r3213f2  
    415415  Actions/SelectionAction/Atoms/NotAtomByElementAction.cpp \
    416416  Actions/SelectionAction/Atoms/NotAtomByIdAction.cpp \
    417   Actions/SelectionAction/Atoms/NotAtomByOrderAction.cpp
     417  Actions/SelectionAction/Atoms/NotAtomByOrderAction.cpp \
     418  Actions/SelectionAction/Atoms/PopAtomsAction.cpp \
     419  Actions/SelectionAction/Atoms/PushAtomsAction.cpp
    418420SELECTIONATOMACTIONHEADER = \
    419421  Actions/SelectionAction/Atoms/AllAtomsAction.hpp \
     
    430432  Actions/SelectionAction/Atoms/NotAtomByElementAction.hpp \
    431433  Actions/SelectionAction/Atoms/NotAtomByIdAction.hpp \
    432   Actions/SelectionAction/Atoms/NotAtomByOrderAction.hpp
     434  Actions/SelectionAction/Atoms/NotAtomByOrderAction.hpp \
     435  Actions/SelectionAction/Atoms/PopAtomsAction.hpp \
     436  Actions/SelectionAction/Atoms/PushAtomsAction.hpp
    433437SELECTIONATOMACTIONDEFS = \
    434438  Actions/SelectionAction/Atoms/AllAtomsAction.def \
     
    445449  Actions/SelectionAction/Atoms/NotAtomByElementAction.def \
    446450  Actions/SelectionAction/Atoms/NotAtomByIdAction.def \
    447   Actions/SelectionAction/Atoms/NotAtomByOrderAction.def
     451  Actions/SelectionAction/Atoms/NotAtomByOrderAction.def \
     452  Actions/SelectionAction/Atoms/PopAtomsAction.def \
     453  Actions/SelectionAction/Atoms/PushAtomsAction.def
    448454
    449455SELECTIONMOLECULEACTIONSOURCE = \
Note: See TracChangeset for help on using the changeset viewer.