| [bcf653] | 1 | /*
 | 
|---|
 | 2 |  * Project: MoleCuilder
 | 
|---|
 | 3 |  * Description: creates and alters molecular systems
 | 
|---|
| [0aa122] | 4 |  * Copyright (C)  2010-2012 University of Bonn. All rights reserved.
 | 
|---|
| [bcf653] | 5 |  * Please see the LICENSE file or "Copyright notice" in builder.cpp for details.
 | 
|---|
 | 6 |  */
 | 
|---|
 | 7 | 
 | 
|---|
| [97ebf8] | 8 | /*
 | 
|---|
 | 9 |  * SetDefaultNameAction.cpp
 | 
|---|
 | 10 |  *
 | 
|---|
 | 11 |  *  Created on: May 8, 2010
 | 
|---|
 | 12 |  *      Author: heber
 | 
|---|
 | 13 |  */
 | 
|---|
 | 14 | 
 | 
|---|
| [bf3817] | 15 | // include config.h
 | 
|---|
 | 16 | #ifdef HAVE_CONFIG_H
 | 
|---|
 | 17 | #include <config.h>
 | 
|---|
 | 18 | #endif
 | 
|---|
 | 19 | 
 | 
|---|
| [ad011c] | 20 | #include "CodePatterns/MemDebug.hpp"
 | 
|---|
| [112b09] | 21 | 
 | 
|---|
| [ad011c] | 22 | #include "CodePatterns/Log.hpp"
 | 
|---|
 | 23 | #include "CodePatterns/Verbose.hpp"
 | 
|---|
| [97ebf8] | 24 | #include "World.hpp"
 | 
|---|
 | 25 | 
 | 
|---|
 | 26 | #include <iostream>
 | 
|---|
 | 27 | #include <string>
 | 
|---|
 | 28 | 
 | 
|---|
| [1fd675] | 29 | #include "Actions/WorldAction/SetDefaultNameAction.hpp"
 | 
|---|
| [792597] | 30 | 
 | 
|---|
| [ce7fdc] | 31 | using namespace MoleCuilder;
 | 
|---|
 | 32 | 
 | 
|---|
| [1fd675] | 33 | // and construct the stuff
 | 
|---|
 | 34 | #include "SetDefaultNameAction.def"
 | 
|---|
 | 35 | #include "Action_impl_pre.hpp"
 | 
|---|
 | 36 | /** =========== define the function ====================== */
 | 
|---|
| [792597] | 37 | Action::state_ptr WorldSetDefaultNameAction::performCall() {
 | 
|---|
| [1fd675] | 38 |   string Worldsdefaultname;
 | 
|---|
 | 39 |   Worldsdefaultname = World::getInstance().getDefaultName();
 | 
|---|
 | 40 |   WorldSetDefaultNameState *UndoState = new WorldSetDefaultNameState(Worldsdefaultname, params);
 | 
|---|
| [97ebf8] | 41 | 
 | 
|---|
| [1fd675] | 42 |   // obtain information
 | 
|---|
 | 43 |   getParametersfromValueStorage();
 | 
|---|
| [792597] | 44 | 
 | 
|---|
| [1fd675] | 45 |   World::getInstance().setDefaultName(params.newname);
 | 
|---|
| [47d041] | 46 |   LOG(0, "Default name of new molecules set to " << World::getInstance().getDefaultName() << ".");
 | 
|---|
| [7aa3cf] | 47 |   return Action::state_ptr(UndoState);
 | 
|---|
| [97ebf8] | 48 | }
 | 
|---|
 | 49 | 
 | 
|---|
 | 50 | Action::state_ptr WorldSetDefaultNameAction::performUndo(Action::state_ptr _state) {
 | 
|---|
| [792597] | 51 |   WorldSetDefaultNameState *state = assert_cast<WorldSetDefaultNameState*>(_state.get());
 | 
|---|
 | 52 | 
 | 
|---|
| [1fd675] | 53 |   World::getInstance().setDefaultName(state->lastname);
 | 
|---|
| [47d041] | 54 |   LOG(0, "Default name of new molecules set to " << World::getInstance().getDefaultName() << ".");
 | 
|---|
| [97ebf8] | 55 | 
 | 
|---|
| [1fd675] | 56 |   return Action::state_ptr(_state);
 | 
|---|
| [97ebf8] | 57 | }
 | 
|---|
 | 58 | 
 | 
|---|
 | 59 | Action::state_ptr WorldSetDefaultNameAction::performRedo(Action::state_ptr _state){
 | 
|---|
| [1fd675] | 60 |   WorldSetDefaultNameState *state = assert_cast<WorldSetDefaultNameState*>(_state.get());
 | 
|---|
 | 61 | 
 | 
|---|
 | 62 |   World::getInstance().setDefaultName(state->params.newname);
 | 
|---|
| [47d041] | 63 |   LOG(0, "Default name of new molecules set to " << World::getInstance().getDefaultName() << ".");
 | 
|---|
| [1fd675] | 64 | 
 | 
|---|
 | 65 |   return Action::state_ptr(_state);
 | 
|---|
| [97ebf8] | 66 | }
 | 
|---|
 | 67 | 
 | 
|---|
 | 68 | bool WorldSetDefaultNameAction::canUndo() {
 | 
|---|
| [792597] | 69 |   return true;
 | 
|---|
| [97ebf8] | 70 | }
 | 
|---|
 | 71 | 
 | 
|---|
 | 72 | bool WorldSetDefaultNameAction::shouldUndo() {
 | 
|---|
| [792597] | 73 |   return true;
 | 
|---|
| [97ebf8] | 74 | }
 | 
|---|
| [1fd675] | 75 | /** =========== end of function ====================== */
 | 
|---|