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