| 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 |  * SetDefaultNameAction.cpp
 | 
|---|
| 10 |  *
 | 
|---|
| 11 |  *  Created on: May 8, 2010
 | 
|---|
| 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 "CodePatterns/Log.hpp"
 | 
|---|
| 23 | #include "CodePatterns/Verbose.hpp"
 | 
|---|
| 24 | #include "World.hpp"
 | 
|---|
| 25 | 
 | 
|---|
| 26 | #include <iostream>
 | 
|---|
| 27 | #include <string>
 | 
|---|
| 28 | 
 | 
|---|
| 29 | #include "Actions/WorldAction/SetDefaultNameAction.hpp"
 | 
|---|
| 30 | 
 | 
|---|
| 31 | using namespace MoleCuilder;
 | 
|---|
| 32 | 
 | 
|---|
| 33 | // and construct the stuff
 | 
|---|
| 34 | #include "SetDefaultNameAction.def"
 | 
|---|
| 35 | #include "Action_impl_pre.hpp"
 | 
|---|
| 36 | /** =========== define the function ====================== */
 | 
|---|
| 37 | Action::state_ptr WorldSetDefaultNameAction::performCall() {
 | 
|---|
| 38 |   string Worldsdefaultname;
 | 
|---|
| 39 |   Worldsdefaultname = World::getInstance().getDefaultName();
 | 
|---|
| 40 |   WorldSetDefaultNameState *UndoState = new WorldSetDefaultNameState(Worldsdefaultname, params);
 | 
|---|
| 41 | 
 | 
|---|
| 42 |   // obtain information
 | 
|---|
| 43 |   getParametersfromValueStorage();
 | 
|---|
| 44 | 
 | 
|---|
| 45 |   World::getInstance().setDefaultName(params.newname);
 | 
|---|
| 46 |   LOG(0, "Default name of new molecules set to " << World::getInstance().getDefaultName() << ".");
 | 
|---|
| 47 |   return Action::state_ptr(UndoState);
 | 
|---|
| 48 | }
 | 
|---|
| 49 | 
 | 
|---|
| 50 | Action::state_ptr WorldSetDefaultNameAction::performUndo(Action::state_ptr _state) {
 | 
|---|
| 51 |   WorldSetDefaultNameState *state = assert_cast<WorldSetDefaultNameState*>(_state.get());
 | 
|---|
| 52 | 
 | 
|---|
| 53 |   World::getInstance().setDefaultName(state->lastname);
 | 
|---|
| 54 |   LOG(0, "Default name of new molecules set to " << World::getInstance().getDefaultName() << ".");
 | 
|---|
| 55 | 
 | 
|---|
| 56 |   return Action::state_ptr(_state);
 | 
|---|
| 57 | }
 | 
|---|
| 58 | 
 | 
|---|
| 59 | Action::state_ptr WorldSetDefaultNameAction::performRedo(Action::state_ptr _state){
 | 
|---|
| 60 |   WorldSetDefaultNameState *state = assert_cast<WorldSetDefaultNameState*>(_state.get());
 | 
|---|
| 61 | 
 | 
|---|
| 62 |   World::getInstance().setDefaultName(state->params.newname);
 | 
|---|
| 63 |   LOG(0, "Default name of new molecules set to " << World::getInstance().getDefaultName() << ".");
 | 
|---|
| 64 | 
 | 
|---|
| 65 |   return Action::state_ptr(_state);
 | 
|---|
| 66 | }
 | 
|---|
| 67 | 
 | 
|---|
| 68 | bool WorldSetDefaultNameAction::canUndo() {
 | 
|---|
| 69 |   return true;
 | 
|---|
| 70 | }
 | 
|---|
| 71 | 
 | 
|---|
| 72 | bool WorldSetDefaultNameAction::shouldUndo() {
 | 
|---|
| 73 |   return true;
 | 
|---|
| 74 | }
 | 
|---|
| 75 | /** =========== end of function ====================== */
 | 
|---|