| 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 | * NotAtomByOrderAction.cpp | 
|---|
| 10 | * | 
|---|
| 11 | *  Created on: Mar 22, 2012 | 
|---|
| 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 "Atom/atom.hpp" | 
|---|
| 23 | #include "CodePatterns/Log.hpp" | 
|---|
| 24 | #include "CodePatterns/Verbose.hpp" | 
|---|
| 25 | #include "Descriptors/AtomIdDescriptor.hpp" | 
|---|
| 26 | #include "Descriptors/AtomOrderDescriptor.hpp" | 
|---|
| 27 | #include "World.hpp" | 
|---|
| 28 |  | 
|---|
| 29 | #include <iostream> | 
|---|
| 30 | #include <string> | 
|---|
| 31 |  | 
|---|
| 32 | #include "NotAtomByOrderAction.hpp" | 
|---|
| 33 |  | 
|---|
| 34 | using namespace MoleCuilder; | 
|---|
| 35 |  | 
|---|
| 36 | // and construct the stuff | 
|---|
| 37 | #include "NotAtomByOrderAction.def" | 
|---|
| 38 | #include "Action_impl_pre.hpp" | 
|---|
| 39 | /** =========== define the function ====================== */ | 
|---|
| 40 | Action::state_ptr SelectionNotAtomByOrderAction::performCall() { | 
|---|
| 41 | // obtain information | 
|---|
| 42 | getParametersfromValueStorage(); | 
|---|
| 43 |  | 
|---|
| 44 | const atom * Walker = World::getInstance().getAtom(AtomByOrder(params.order)); | 
|---|
| 45 | if (Walker != NULL) { | 
|---|
| 46 | if (World::getInstance().isSelected(Walker)) { | 
|---|
| 47 | LOG(1, "Unselecting atom " << *Walker); | 
|---|
| 48 | World::getInstance().unselectAtom(Walker); | 
|---|
| 49 | LOG(0, World::getInstance().countSelectedAtoms() << " atoms remain selected."); | 
|---|
| 50 | return Action::state_ptr(new SelectionNotAtomByOrderState(Walker->getId(), params)); | 
|---|
| 51 | } else { | 
|---|
| 52 | return Action::success; | 
|---|
| 53 | } | 
|---|
| 54 | } else { | 
|---|
| 55 | return Action::failure; | 
|---|
| 56 | } | 
|---|
| 57 | } | 
|---|
| 58 |  | 
|---|
| 59 | Action::state_ptr SelectionNotAtomByOrderAction::performUndo(Action::state_ptr _state) { | 
|---|
| 60 | SelectionNotAtomByOrderState *state = assert_cast<SelectionNotAtomByOrderState*>(_state.get()); | 
|---|
| 61 |  | 
|---|
| 62 | const atom * Walker = World::getInstance().getAtom(AtomById(state->WalkerId)); | 
|---|
| 63 | World::getInstance().selectAtom(Walker); | 
|---|
| 64 |  | 
|---|
| 65 | return Action::state_ptr(_state); | 
|---|
| 66 | } | 
|---|
| 67 |  | 
|---|
| 68 | Action::state_ptr SelectionNotAtomByOrderAction::performRedo(Action::state_ptr _state){ | 
|---|
| 69 | SelectionNotAtomByOrderState *state = assert_cast<SelectionNotAtomByOrderState*>(_state.get()); | 
|---|
| 70 |  | 
|---|
| 71 | const atom * Walker = World::getInstance().getAtom(AtomById(state->WalkerId)); | 
|---|
| 72 | World::getInstance().unselectAtom(Walker); | 
|---|
| 73 |  | 
|---|
| 74 | return Action::state_ptr(_state); | 
|---|
| 75 | } | 
|---|
| 76 |  | 
|---|
| 77 | bool SelectionNotAtomByOrderAction::canUndo() { | 
|---|
| 78 | return true; | 
|---|
| 79 | } | 
|---|
| 80 |  | 
|---|
| 81 | bool SelectionNotAtomByOrderAction::shouldUndo() { | 
|---|
| 82 | return true; | 
|---|
| 83 | } | 
|---|
| 84 | /** =========== end of function ====================== */ | 
|---|