[bcf653] | 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 |
|
---|
[e2009b] | 8 | /*
|
---|
[521bbf] | 9 | * NotMoleculeByIdAction.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"
|
---|
[e2009b] | 25 | #include "World.hpp"
|
---|
| 26 |
|
---|
| 27 | #include <iostream>
|
---|
| 28 | #include <string>
|
---|
| 29 |
|
---|
| 30 | using namespace std;
|
---|
| 31 |
|
---|
[125002] | 32 | #include "NotMoleculeByIdAction.hpp"
|
---|
[533838] | 33 |
|
---|
[1fd675] | 34 | // and construct the stuff
|
---|
| 35 | #include "NotMoleculeByIdAction.def"
|
---|
| 36 | #include "Action_impl_pre.hpp"
|
---|
| 37 | /** =========== define the function ====================== */
|
---|
[533838] | 38 | Action::state_ptr SelectionNotMoleculeByIdAction::performCall() {
|
---|
[1fd675] | 39 | // obtain information
|
---|
| 40 | getParametersfromValueStorage();
|
---|
[e2009b] | 41 |
|
---|
[92d756] | 42 | if (params.mol != NULL) {
|
---|
| 43 | if (World::getInstance().isSelected(params.mol)) {
|
---|
| 44 | DoLog(1) && (Log() << Verbose(1) << "Unselecting molecule " << params.mol->name << endl);
|
---|
| 45 | World::getInstance().unselectMolecule(params.mol);
|
---|
[aa4b2d] | 46 | DoLog(0) && (Log() << Verbose(0) << World::getInstance().countSelectedMolecules() << " molecules remain selected." << endl);
|
---|
[92d756] | 47 | return Action::state_ptr(new SelectionNotMoleculeByIdState(params));
|
---|
| 48 | } else {
|
---|
| 49 | return Action::success;
|
---|
| 50 | }
|
---|
[e2009b] | 51 | } else {
|
---|
[92d756] | 52 | return Action::failure;
|
---|
[e2009b] | 53 | }
|
---|
| 54 | }
|
---|
| 55 |
|
---|
| 56 | Action::state_ptr SelectionNotMoleculeByIdAction::performUndo(Action::state_ptr _state) {
|
---|
| 57 | SelectionNotMoleculeByIdState *state = assert_cast<SelectionNotMoleculeByIdState*>(_state.get());
|
---|
| 58 |
|
---|
[92d756] | 59 | World::getInstance().selectMolecule(state->params.mol);
|
---|
[e2009b] | 60 |
|
---|
[1fd675] | 61 | return Action::state_ptr(_state);
|
---|
[e2009b] | 62 | }
|
---|
| 63 |
|
---|
| 64 | Action::state_ptr SelectionNotMoleculeByIdAction::performRedo(Action::state_ptr _state){
|
---|
| 65 | SelectionNotMoleculeByIdState *state = assert_cast<SelectionNotMoleculeByIdState*>(_state.get());
|
---|
| 66 |
|
---|
[92d756] | 67 | World::getInstance().unselectMolecule(state->params.mol);
|
---|
[e2009b] | 68 |
|
---|
[1fd675] | 69 | return Action::state_ptr(_state);
|
---|
[e2009b] | 70 | }
|
---|
| 71 |
|
---|
| 72 | bool SelectionNotMoleculeByIdAction::canUndo() {
|
---|
| 73 | return true;
|
---|
| 74 | }
|
---|
| 75 |
|
---|
| 76 | bool SelectionNotMoleculeByIdAction::shouldUndo() {
|
---|
| 77 | return true;
|
---|
| 78 | }
|
---|
[1fd675] | 79 | /** =========== end of function ====================== */
|
---|