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 | * AtomByIdAction.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 "atom.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/AtomByIdAction.hpp"
|
---|
33 |
|
---|
34 | // and construct the stuff
|
---|
35 | #include "AtomByIdAction.def"
|
---|
36 | #include "Action_impl_pre.hpp"
|
---|
37 | /** =========== define the function ====================== */
|
---|
38 | Action::state_ptr SelectionAtomByIdAction::performCall() {
|
---|
39 | // obtain information
|
---|
40 | getParametersfromValueStorage();
|
---|
41 |
|
---|
42 | if (!World::getInstance().isSelected(params.Walker)) {
|
---|
43 | DoLog(1) && (Log() << Verbose(1) << "Selecting atom " << *params.Walker << endl);
|
---|
44 | World::getInstance().selectAtom(params.Walker);
|
---|
45 | return Action::state_ptr(new SelectionAtomByIdState(params));
|
---|
46 | } else {
|
---|
47 | return Action::success;
|
---|
48 | }
|
---|
49 | }
|
---|
50 |
|
---|
51 | Action::state_ptr SelectionAtomByIdAction::performUndo(Action::state_ptr _state) {
|
---|
52 | SelectionAtomByIdState *state = assert_cast<SelectionAtomByIdState*>(_state.get());
|
---|
53 |
|
---|
54 | if (state->params.Walker != NULL)
|
---|
55 | World::getInstance().unselectAtom(state->params.Walker);
|
---|
56 |
|
---|
57 | return Action::state_ptr(_state);
|
---|
58 | }
|
---|
59 |
|
---|
60 | Action::state_ptr SelectionAtomByIdAction::performRedo(Action::state_ptr _state){
|
---|
61 | SelectionAtomByIdState *state = assert_cast<SelectionAtomByIdState*>(_state.get());
|
---|
62 |
|
---|
63 | if (state->params.Walker != NULL)
|
---|
64 | World::getInstance().selectAtom(state->params.Walker);
|
---|
65 |
|
---|
66 | return Action::state_ptr(_state);
|
---|
67 | }
|
---|
68 |
|
---|
69 | bool SelectionAtomByIdAction::canUndo() {
|
---|
70 | return true;
|
---|
71 | }
|
---|
72 |
|
---|
73 | bool SelectionAtomByIdAction::shouldUndo() {
|
---|
74 | return true;
|
---|
75 | }
|
---|
76 |
|
---|
77 | const string SelectionAtomByIdAction::getName() {
|
---|
78 | return NAME;
|
---|
79 | }
|
---|
80 | /** =========== end of function ====================== */
|
---|