2008-11-23 09:18:03 +01:00
|
|
|
/*****************************************************************************
|
|
|
|
* Eliot
|
2012-10-07 16:25:41 +02:00
|
|
|
* Copyright (C) 2008-2012 Olivier Teulière
|
2008-11-23 09:18:03 +01:00
|
|
|
* Authors: Olivier Teulière <ipkiss @@ gmail.com>
|
|
|
|
*
|
|
|
|
* This program 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.
|
|
|
|
*
|
|
|
|
* This program 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 this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
#include "command.h"
|
|
|
|
#include "debug.h"
|
|
|
|
|
|
|
|
|
2012-02-18 22:26:52 +01:00
|
|
|
INIT_LOGGER(game, Command);
|
2012-02-20 22:25:49 +01:00
|
|
|
INIT_LOGGER(game, UndoCmd);
|
2012-02-18 22:26:52 +01:00
|
|
|
|
|
|
|
|
2008-11-23 09:18:03 +01:00
|
|
|
Command::Command()
|
2012-02-19 16:25:27 +01:00
|
|
|
: m_executed(false), m_humanIndependent(true), m_autoExecutable(true)
|
2008-11-23 09:18:03 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Command::execute()
|
|
|
|
{
|
|
|
|
ASSERT(!m_executed, "Command already executed!");
|
|
|
|
doExecute();
|
|
|
|
m_executed = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void Command::undo()
|
|
|
|
{
|
|
|
|
ASSERT(m_executed, "Command already undone!");
|
|
|
|
doUndo();
|
|
|
|
m_executed = false;
|
|
|
|
}
|
|
|
|
|
2012-02-20 22:25:49 +01:00
|
|
|
|
|
|
|
|
|
|
|
UndoCmd::UndoCmd(Command *cmd)
|
|
|
|
: m_cmd(cmd)
|
|
|
|
{
|
|
|
|
ASSERT(m_cmd != 0, "Null command given");
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
UndoCmd::~UndoCmd()
|
|
|
|
{
|
|
|
|
delete m_cmd;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool UndoCmd::isAutoExecutable() const
|
|
|
|
{
|
|
|
|
return m_cmd->isAutoExecutable();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void UndoCmd::doExecute()
|
|
|
|
{
|
|
|
|
ASSERT(m_cmd->isExecuted(), "The wrapped command is not executed");
|
|
|
|
m_cmd->undo();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void UndoCmd::doUndo()
|
|
|
|
{
|
|
|
|
ASSERT(!m_cmd->isExecuted(), "The wrapped command is already executed");
|
|
|
|
m_cmd->execute();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
wstring UndoCmd::toString() const
|
|
|
|
{
|
|
|
|
return L"UndoCmd (" + m_cmd->toString() + L")";
|
|
|
|
}
|
|
|
|
|