2014-03-30 03:58:35 +08:00
|
|
|
/* Aseprite
|
|
|
|
* Copyright (C) 2001-2013 David Capello
|
|
|
|
*
|
|
|
|
* 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "app/commands/cmd_export_sprite_sheet.h"
|
|
|
|
#include "app/commands/command.h"
|
|
|
|
#include "app/commands/commands.h"
|
|
|
|
#include "app/commands/params.h"
|
|
|
|
#include "app/context.h"
|
|
|
|
#include "app/context_access.h"
|
|
|
|
#include "base/compiler_specific.h"
|
|
|
|
|
|
|
|
namespace app {
|
|
|
|
|
|
|
|
class RepeatLastExportCommand : public Command {
|
|
|
|
public:
|
|
|
|
RepeatLastExportCommand();
|
2014-03-30 04:08:40 +08:00
|
|
|
Command* clone() const OVERRIDE { return new RepeatLastExportCommand(*this); }
|
2014-03-30 03:58:35 +08:00
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual bool onEnabled(Context* context) OVERRIDE;
|
|
|
|
virtual void onExecute(Context* context) OVERRIDE;
|
|
|
|
};
|
|
|
|
|
|
|
|
RepeatLastExportCommand::RepeatLastExportCommand()
|
|
|
|
: Command("RepeatLastExport",
|
|
|
|
"Repeat Last Export",
|
|
|
|
CmdRecordableFlag)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool RepeatLastExportCommand::onEnabled(Context* context)
|
|
|
|
{
|
|
|
|
return context->checkFlags(ContextFlags::ActiveDocumentIsWritable);
|
|
|
|
}
|
|
|
|
|
|
|
|
void RepeatLastExportCommand::onExecute(Context* context)
|
|
|
|
{
|
|
|
|
base::UniquePtr<ExportSpriteSheetCommand> command(
|
|
|
|
static_cast<ExportSpriteSheetCommand*>(
|
|
|
|
CommandsModule::instance()->getCommandByName(CommandId::ExportSpriteSheet)->clone()));
|
|
|
|
|
|
|
|
{
|
|
|
|
const ContextReader reader(context);
|
|
|
|
const Document* document(reader.document());
|
|
|
|
doc::ExportDataPtr data = document->exportData();
|
|
|
|
|
|
|
|
if (data != NULL) {
|
|
|
|
command->setUseUI(false);
|
|
|
|
|
|
|
|
ExportSpriteSheetCommand::SpriteSheetType type;
|
|
|
|
switch (data->type()) {
|
|
|
|
case doc::ExportData::None: return;
|
|
|
|
case doc::ExportData::HorizontalStrip:
|
|
|
|
type = ExportSpriteSheetCommand::HorizontalStrip;
|
|
|
|
break;
|
|
|
|
case doc::ExportData::VerticalStrip:
|
|
|
|
type = ExportSpriteSheetCommand::VerticalStrip;
|
|
|
|
break;
|
|
|
|
case doc::ExportData::Matrix:
|
|
|
|
type = ExportSpriteSheetCommand::Matrix;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
command->setType(type);
|
|
|
|
command->setAction(ExportSpriteSheetCommand::SaveCopyAs);
|
|
|
|
command->setColumns(data->columns());
|
|
|
|
command->setFileName(data->filename());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
context->executeCommand(command);
|
|
|
|
}
|
|
|
|
|
|
|
|
Command* CommandFactory::createRepeatLastExportCommand()
|
|
|
|
{
|
|
|
|
return new RepeatLastExportCommand;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace app
|