| 1 | /*
 | 
|---|
| 2 |  * Project: MoleCuilder
 | 
|---|
| 3 |  * Description: creates and alters molecular systems
 | 
|---|
| 4 |  * Copyright (C)  2010 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 "Helpers/MemDebug.hpp"
 | 
|---|
| 21 | 
 | 
|---|
| 22 | #include "molecule.hpp"
 | 
|---|
| 23 | #include "Helpers/Log.hpp"
 | 
|---|
| 24 | #include "Helpers/Verbose.hpp"
 | 
|---|
| 25 | #include "World.hpp"
 | 
|---|
| 26 | 
 | 
|---|
| 27 | #include <iostream>
 | 
|---|
| 28 | #include <string>
 | 
|---|
| 29 | 
 | 
|---|
| 30 | using namespace std;
 | 
|---|
| 31 | 
 | 
|---|
| 32 | #include "Actions/SelectionAction/NotMoleculeByIdAction.hpp"
 | 
|---|
| 33 | 
 | 
|---|
| 34 | // and construct the stuff
 | 
|---|
| 35 | #include "NotMoleculeByIdAction.def"
 | 
|---|
| 36 | #include "Action_impl_pre.hpp"
 | 
|---|
| 37 | /** =========== define the function ====================== */
 | 
|---|
| 38 | Action::state_ptr SelectionNotMoleculeByIdAction::performCall() {
 | 
|---|
| 39 |   // obtain information
 | 
|---|
| 40 |   getParametersfromValueStorage();
 | 
|---|
| 41 | 
 | 
|---|
| 42 |   if (World::getInstance().isSelected(params.mol)) {
 | 
|---|
| 43 |     DoLog(1) && (Log() << Verbose(1) << "Unselecting molecule " << params.mol->name << endl);
 | 
|---|
| 44 |     World::getInstance().unselectMolecule(params.mol);
 | 
|---|
| 45 |     return Action::state_ptr(new SelectionNotMoleculeByIdState(params));
 | 
|---|
| 46 |   } else {
 | 
|---|
| 47 |     return Action::success;
 | 
|---|
| 48 |   }
 | 
|---|
| 49 | }
 | 
|---|
| 50 | 
 | 
|---|
| 51 | Action::state_ptr SelectionNotMoleculeByIdAction::performUndo(Action::state_ptr _state) {
 | 
|---|
| 52 |   SelectionNotMoleculeByIdState *state = assert_cast<SelectionNotMoleculeByIdState*>(_state.get());
 | 
|---|
| 53 | 
 | 
|---|
| 54 |   if (state->params.mol != NULL)
 | 
|---|
| 55 |     World::getInstance().selectMolecule(state->params.mol);
 | 
|---|
| 56 | 
 | 
|---|
| 57 |   return Action::state_ptr(_state);
 | 
|---|
| 58 | }
 | 
|---|
| 59 | 
 | 
|---|
| 60 | Action::state_ptr SelectionNotMoleculeByIdAction::performRedo(Action::state_ptr _state){
 | 
|---|
| 61 |   SelectionNotMoleculeByIdState *state = assert_cast<SelectionNotMoleculeByIdState*>(_state.get());
 | 
|---|
| 62 | 
 | 
|---|
| 63 |   if (state->params.mol != NULL)
 | 
|---|
| 64 |     World::getInstance().unselectMolecule(state->params.mol);
 | 
|---|
| 65 | 
 | 
|---|
| 66 |   return Action::state_ptr(_state);
 | 
|---|
| 67 | }
 | 
|---|
| 68 | 
 | 
|---|
| 69 | bool SelectionNotMoleculeByIdAction::canUndo() {
 | 
|---|
| 70 |   return true;
 | 
|---|
| 71 | }
 | 
|---|
| 72 | 
 | 
|---|
| 73 | bool SelectionNotMoleculeByIdAction::shouldUndo() {
 | 
|---|
| 74 |   return true;
 | 
|---|
| 75 | }
 | 
|---|
| 76 | 
 | 
|---|
| 77 | const string SelectionNotMoleculeByIdAction::getName() {
 | 
|---|
| 78 |   return NAME;
 | 
|---|
| 79 | }
 | 
|---|
| 80 | /** =========== end of function ====================== */
 | 
|---|