1 | /*
|
---|
2 | * ChangeElementAction.cpp
|
---|
3 | *
|
---|
4 | * Created on: May 9, 2010
|
---|
5 | * Author: heber
|
---|
6 | */
|
---|
7 |
|
---|
8 | #include "Actions/AtomAction/ChangeElementAction.hpp"
|
---|
9 | #include "atom.hpp"
|
---|
10 | #include "log.hpp"
|
---|
11 | #include "vector.hpp"
|
---|
12 | #include "verbose.hpp"
|
---|
13 | #include "World.hpp"
|
---|
14 |
|
---|
15 | #include <iostream>
|
---|
16 | #include <string>
|
---|
17 |
|
---|
18 | using namespace std;
|
---|
19 |
|
---|
20 | #include "UIElements/UIFactory.hpp"
|
---|
21 | #include "UIElements/Dialog.hpp"
|
---|
22 | #include "Actions/MapOfActions.hpp"
|
---|
23 |
|
---|
24 | const char AtomChangeElementAction::NAME[] = "change-element";
|
---|
25 |
|
---|
26 | AtomChangeElementAction::AtomChangeElementAction() :
|
---|
27 | Action(NAME)
|
---|
28 | {}
|
---|
29 |
|
---|
30 | AtomChangeElementAction::~AtomChangeElementAction()
|
---|
31 | {}
|
---|
32 |
|
---|
33 | Action::state_ptr AtomChangeElementAction::performCall() {
|
---|
34 | Dialog *dialog = UIFactory::getInstance().makeDialog();
|
---|
35 | atom *first = NULL;
|
---|
36 | std::vector<element *> elements;
|
---|
37 |
|
---|
38 | dialog->queryElement(NAME, &elements, MapOfActions::getInstance().getDescription(NAME));
|
---|
39 | dialog->queryAtom("atom-by-id", &first, MapOfActions::getInstance().getDescription("atom-by-id"));
|
---|
40 |
|
---|
41 | if(dialog->display()) {
|
---|
42 | delete dialog;
|
---|
43 | ASSERT(elements.size() == 1, "Unequal to one element specified when changing an atom's element");
|
---|
44 | DoLog(1) && (Log() << Verbose(1) << "Changing atom " << *first << " to element " << elements.at(0) << "." << endl);
|
---|
45 | if (elements.at(0) != NULL) {
|
---|
46 | first->type = elements.at(0);
|
---|
47 | return Action::success;
|
---|
48 | } else
|
---|
49 | return Action::failure;
|
---|
50 | } else {
|
---|
51 | delete dialog;
|
---|
52 | return Action::failure;
|
---|
53 | }
|
---|
54 |
|
---|
55 | }
|
---|
56 |
|
---|
57 | Action::state_ptr AtomChangeElementAction::performUndo(Action::state_ptr _state) {
|
---|
58 | // ParserLoadXyzState *state = assert_cast<ParserLoadXyzState*>(_state.get());
|
---|
59 |
|
---|
60 | return Action::failure;
|
---|
61 | // string newName = state->mol->getName();
|
---|
62 | // state->mol->setName(state->lastName);
|
---|
63 | //
|
---|
64 | // return Action::state_ptr(new ParserLoadXyzState(state->mol,newName));
|
---|
65 | }
|
---|
66 |
|
---|
67 | Action::state_ptr AtomChangeElementAction::performRedo(Action::state_ptr _state){
|
---|
68 | return Action::failure;
|
---|
69 | }
|
---|
70 |
|
---|
71 | bool AtomChangeElementAction::canUndo() {
|
---|
72 | return false;
|
---|
73 | }
|
---|
74 |
|
---|
75 | bool AtomChangeElementAction::shouldUndo() {
|
---|
76 | return false;
|
---|
77 | }
|
---|
78 |
|
---|
79 | const string AtomChangeElementAction::getName() {
|
---|
80 | return NAME;
|
---|
81 | }
|
---|