| [bcf653] | 1 | /*
 | 
|---|
 | 2 |  * Project: MoleCuilder
 | 
|---|
 | 3 |  * Description: creates and alters molecular systems
 | 
|---|
| [0aa122] | 4 |  * Copyright (C)  2010-2012 University of Bonn. All rights reserved.
 | 
|---|
| [bcf653] | 5 |  * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
 | 
|---|
 | 6 |  */
 | 
|---|
 | 7 | 
 | 
|---|
| [e2009b] | 8 | /*
 | 
|---|
| [521bbf] | 9 |  * MoleculeByIdAction.cpp
 | 
|---|
| [e2009b] | 10 |  *
 | 
|---|
 | 11 |  *  Created on: May 12, 2010
 | 
|---|
 | 12 |  *      Author: heber
 | 
|---|
 | 13 |  */
 | 
|---|
 | 14 | 
 | 
|---|
| [bf3817] | 15 | // include config.h
 | 
|---|
 | 16 | #ifdef HAVE_CONFIG_H
 | 
|---|
 | 17 | #include <config.h>
 | 
|---|
 | 18 | #endif
 | 
|---|
 | 19 | 
 | 
|---|
| [ad011c] | 20 | #include "CodePatterns/MemDebug.hpp"
 | 
|---|
| [e2009b] | 21 | 
 | 
|---|
| [533838] | 22 | #include "molecule.hpp"
 | 
|---|
| [ad011c] | 23 | #include "CodePatterns/Log.hpp"
 | 
|---|
 | 24 | #include "CodePatterns/Verbose.hpp"
 | 
|---|
| [b7fbf0] | 25 | #include "Descriptors/MoleculeIdDescriptor.hpp"
 | 
|---|
| [e2009b] | 26 | #include "World.hpp"
 | 
|---|
 | 27 | 
 | 
|---|
 | 28 | #include <iostream>
 | 
|---|
 | 29 | #include <string>
 | 
|---|
 | 30 | 
 | 
|---|
| [125002] | 31 | #include "MoleculeByIdAction.hpp"
 | 
|---|
| [533838] | 32 | 
 | 
|---|
| [ce7fdc] | 33 | using namespace MoleCuilder;
 | 
|---|
 | 34 | 
 | 
|---|
| [1fd675] | 35 | // and construct the stuff
 | 
|---|
 | 36 | #include "MoleculeByIdAction.def"
 | 
|---|
 | 37 | #include "Action_impl_pre.hpp"
 | 
|---|
 | 38 | /** =========== define the function ====================== */
 | 
|---|
| [533838] | 39 | Action::state_ptr SelectionMoleculeByIdAction::performCall() {
 | 
|---|
| [1fd675] | 40 |   // obtain information
 | 
|---|
 | 41 |   getParametersfromValueStorage();
 | 
|---|
| [e2009b] | 42 | 
 | 
|---|
| [b7fbf0] | 43 |   const molecule *mol = World::getInstance().getMolecule(MoleculeById(params.molindex));
 | 
|---|
 | 44 |   if (mol != NULL) {
 | 
|---|
 | 45 |     if (!World::getInstance().isSelected(mol)) {
 | 
|---|
| [47d041] | 46 |       LOG(1, "Selecting molecule " << mol->name);
 | 
|---|
| [b7fbf0] | 47 |       World::getInstance().selectAllMolecules(MoleculeById(params.molindex));
 | 
|---|
| [47d041] | 48 |       LOG(0, World::getInstance().countSelectedMolecules() << " molecules selected.");
 | 
|---|
| [92d756] | 49 |       return Action::state_ptr(new SelectionMoleculeByIdState(params));
 | 
|---|
 | 50 |     } else {
 | 
|---|
 | 51 |       return Action::success;
 | 
|---|
 | 52 |     }
 | 
|---|
| [e2009b] | 53 |   } else {
 | 
|---|
| [92d756] | 54 |     return Action::failure;
 | 
|---|
| [e2009b] | 55 |   }
 | 
|---|
 | 56 | }
 | 
|---|
 | 57 | 
 | 
|---|
 | 58 | Action::state_ptr SelectionMoleculeByIdAction::performUndo(Action::state_ptr _state) {
 | 
|---|
 | 59 |   SelectionMoleculeByIdState *state = assert_cast<SelectionMoleculeByIdState*>(_state.get());
 | 
|---|
 | 60 | 
 | 
|---|
| [b7fbf0] | 61 |   World::getInstance().unselectAllMolecules(MoleculeById(state->params.molindex));
 | 
|---|
| [e2009b] | 62 | 
 | 
|---|
| [1fd675] | 63 |   return Action::state_ptr(_state);
 | 
|---|
| [e2009b] | 64 | }
 | 
|---|
 | 65 | 
 | 
|---|
 | 66 | Action::state_ptr SelectionMoleculeByIdAction::performRedo(Action::state_ptr _state){
 | 
|---|
 | 67 |   SelectionMoleculeByIdState *state = assert_cast<SelectionMoleculeByIdState*>(_state.get());
 | 
|---|
 | 68 | 
 | 
|---|
| [b7fbf0] | 69 |   World::getInstance().selectAllMolecules(MoleculeById(state->params.molindex));
 | 
|---|
| [e2009b] | 70 | 
 | 
|---|
| [1a0987] | 71 |   return Action::state_ptr(_state);
 | 
|---|
| [e2009b] | 72 | }
 | 
|---|
 | 73 | 
 | 
|---|
 | 74 | bool SelectionMoleculeByIdAction::canUndo() {
 | 
|---|
 | 75 |   return true;
 | 
|---|
 | 76 | }
 | 
|---|
 | 77 | 
 | 
|---|
 | 78 | bool SelectionMoleculeByIdAction::shouldUndo() {
 | 
|---|
 | 79 |   return true;
 | 
|---|
 | 80 | }
 | 
|---|
| [1fd675] | 81 | /** =========== end of function ====================== */
 | 
|---|