| 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->queryAtom(NAME, &first, MapOfActions::getInstance().getDescription(NAME));
 | 
|---|
| 39 |   dialog->queryElement("element", &elements, MapOfActions::getInstance().getDescription("element"));
 | 
|---|
| 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 |     ASSERT(first != NULL, "No valid atom specified");
 | 
|---|
| 45 |     DoLog(1) && (Log() << Verbose(1) << "Changing atom " << *first << " to element " << elements.at(0) << "." << endl);
 | 
|---|
| 46 |     if (elements.at(0) != NULL) {
 | 
|---|
| 47 |       first->type = elements.at(0);
 | 
|---|
| 48 |       return Action::success;
 | 
|---|
| 49 |     } else
 | 
|---|
| 50 |       return Action::failure;
 | 
|---|
| 51 |   } else {
 | 
|---|
| 52 |     delete dialog;
 | 
|---|
| 53 |     return Action::failure;
 | 
|---|
| 54 |   }
 | 
|---|
| 55 | 
 | 
|---|
| 56 | }
 | 
|---|
| 57 | 
 | 
|---|
| 58 | Action::state_ptr AtomChangeElementAction::performUndo(Action::state_ptr _state) {
 | 
|---|
| 59 | //  ParserLoadXyzState *state = assert_cast<ParserLoadXyzState*>(_state.get());
 | 
|---|
| 60 | 
 | 
|---|
| 61 |   return Action::failure;
 | 
|---|
| 62 | //  string newName = state->mol->getName();
 | 
|---|
| 63 | //  state->mol->setName(state->lastName);
 | 
|---|
| 64 | //
 | 
|---|
| 65 | //  return Action::state_ptr(new ParserLoadXyzState(state->mol,newName));
 | 
|---|
| 66 | }
 | 
|---|
| 67 | 
 | 
|---|
| 68 | Action::state_ptr AtomChangeElementAction::performRedo(Action::state_ptr _state){
 | 
|---|
| 69 |   return Action::failure;
 | 
|---|
| 70 | }
 | 
|---|
| 71 | 
 | 
|---|
| 72 | bool AtomChangeElementAction::canUndo() {
 | 
|---|
| 73 |   return false;
 | 
|---|
| 74 | }
 | 
|---|
| 75 | 
 | 
|---|
| 76 | bool AtomChangeElementAction::shouldUndo() {
 | 
|---|
| 77 |   return false;
 | 
|---|
| 78 | }
 | 
|---|
| 79 | 
 | 
|---|
| 80 | const string AtomChangeElementAction::getName() {
 | 
|---|
| 81 |   return NAME;
 | 
|---|
| 82 | }
 | 
|---|