aseprite/src/app/commands/cmd_change_pixel_format.cpp

113 lines
2.8 KiB
C++
Raw Normal View History

2015-02-12 23:16:25 +08:00
// Aseprite
// Copyright (C) 2001-2015 David Capello
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License version 2 as
// published by the Free Software Foundation.
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "app/app.h"
#include "app/commands/command.h"
#include "app/commands/params.h"
#include "app/context_access.h"
#include "app/document_api.h"
#include "app/modules/gui.h"
#include "app/modules/palettes.h"
#include "app/transaction.h"
#include "doc/dithering_method.h"
#include "doc/image.h"
#include "doc/sprite.h"
namespace app {
2015-02-12 23:16:25 +08:00
class ChangePixelFormatCommand : public Command {
PixelFormat m_format;
DitheringMethod m_dithering;
public:
ChangePixelFormatCommand();
Command* clone() const override { return new ChangePixelFormatCommand(*this); }
protected:
void onLoadParams(Params* params);
bool onEnabled(Context* context);
bool onChecked(Context* context);
void onExecute(Context* context);
};
ChangePixelFormatCommand::ChangePixelFormatCommand()
: Command("ChangePixelFormat",
"Change Pixel Format",
CmdUIOnlyFlag)
{
m_format = IMAGE_RGB;
m_dithering = DitheringMethod::NONE;
}
void ChangePixelFormatCommand::onLoadParams(Params* params)
{
std::string format = params->get("format");
if (format == "rgb") m_format = IMAGE_RGB;
else if (format == "grayscale") m_format = IMAGE_GRAYSCALE;
else if (format == "indexed") m_format = IMAGE_INDEXED;
std::string dithering = params->get("dithering");
if (dithering == "ordered")
m_dithering = DitheringMethod::ORDERED;
else
m_dithering = DitheringMethod::NONE;
}
bool ChangePixelFormatCommand::onEnabled(Context* context)
{
ContextWriter writer(context);
Sprite* sprite(writer.sprite());
if (sprite != NULL &&
sprite->pixelFormat() == IMAGE_INDEXED &&
m_format == IMAGE_INDEXED &&
m_dithering == DitheringMethod::ORDERED)
return false;
return sprite != NULL;
}
bool ChangePixelFormatCommand::onChecked(Context* context)
{
const ContextReader reader(context);
const Sprite* sprite = reader.sprite();
if (sprite != NULL &&
sprite->pixelFormat() == IMAGE_INDEXED &&
m_format == IMAGE_INDEXED &&
m_dithering == DitheringMethod::ORDERED)
return false;
return
sprite != NULL &&
sprite->pixelFormat() == m_format;
}
void ChangePixelFormatCommand::onExecute(Context* context)
{
{
ContextWriter writer(context);
Transaction transaction(writer.context(), "Color Mode Change");
Document* document(writer.document());
Sprite* sprite(writer.sprite());
document->getApi(transaction).setPixelFormat(sprite, m_format, m_dithering);
transaction.commit();
}
app_refresh_screen();
}
Command* CommandFactory::createChangePixelFormatCommand()
{
return new ChangePixelFormatCommand;
}
} // namespace app