/*
* Project: MoleCuilder
* Description: creates and alters molecular systems
* Copyright (C) 2016 Frederik Heber. All rights reserved.
*
*
* This file is part of MoleCuilder.
*
* MoleCuilder is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* MoleCuilder is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with MoleCuilder. If not, see .
*/
/*
* StepForwardWorldTimeAction.cpp
*
* Created on: Sep 27, 2016
* Author: heber
*/
// include config.h
#ifdef HAVE_CONFIG_H
#include
#endif
#include "CodePatterns/MemDebug.hpp"
#include "CodePatterns/Log.hpp"
#include "CodePatterns/Verbose.hpp"
#include "World.hpp"
#include "WorldTime.hpp"
#include
#include
#include "Actions/WorldAction/StepForwardWorldTimeAction.hpp"
using namespace MoleCuilder;
// and construct the stuff
#include "StepForwardWorldTimeAction.def"
#include "Action_impl_pre.hpp"
/** =========== define the function ====================== */
ActionState::ptr WorldStepForwardWorldTimeAction::performCall() {
// create undo state
int oldtime;
oldtime = WorldTime::getTime();
WorldStepForwardWorldTimeState *UndoState = new WorldStepForwardWorldTimeState(oldtime, params);
World::getInstance().setTime(oldtime+params.steps_forward.get());
LOG(0, "Current time step is now: " << WorldTime::getTime() << ".");
return ActionState::ptr(UndoState);
}
ActionState::ptr WorldStepForwardWorldTimeAction::performUndo(ActionState::ptr _state) {
WorldStepForwardWorldTimeState *state = assert_cast(_state.get());
World::getInstance().setTime(state->oldtime);
LOG(0, "Current time step is now again: " << WorldTime::getTime() << ".");
return ActionState::ptr(_state);
}
ActionState::ptr WorldStepForwardWorldTimeAction::performRedo(ActionState::ptr _state){
WorldStepForwardWorldTimeState *state = assert_cast(_state.get());
World::getInstance().setTime(state->oldtime+state->params.steps_forward.get());
LOG(0, "Current time step is now: " << WorldTime::getTime() << ".");
return ActionState::ptr(_state);
}
bool WorldStepForwardWorldTimeAction::canUndo() {
return true;
}
bool WorldStepForwardWorldTimeAction::shouldUndo() {
return true;
}
/** =========== end of function ====================== */