2015-02-12 23:16:25 +08:00
|
|
|
// Aseprite
|
2024-06-21 07:14:29 +08:00
|
|
|
// Copyright (C) 2023-2024 Igara Studio S.A.
|
2018-02-21 21:39:30 +08:00
|
|
|
// Copyright (C) 2001-2018 David Capello
|
2015-02-12 23:16:25 +08:00
|
|
|
//
|
2016-08-27 04:02:58 +08:00
|
|
|
// This program is distributed under the terms of
|
|
|
|
// the End-User License Agreement for Aseprite.
|
2013-11-16 03:56:50 +08:00
|
|
|
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
2014-04-17 12:29:58 +08:00
|
|
|
#include "app/commands/cmd_set_palette.h"
|
2013-11-16 03:56:50 +08:00
|
|
|
#include "app/commands/command.h"
|
2014-04-17 12:29:58 +08:00
|
|
|
#include "app/commands/commands.h"
|
|
|
|
#include "app/context.h"
|
2014-08-22 10:39:20 +08:00
|
|
|
#include "app/file/palette_file.h"
|
2013-11-16 03:56:50 +08:00
|
|
|
#include "app/file_selector.h"
|
2017-10-18 05:00:45 +08:00
|
|
|
#include "app/i18n/strings.h"
|
2015-05-09 03:08:55 +08:00
|
|
|
#include "app/modules/palettes.h"
|
2015-07-06 21:59:44 +08:00
|
|
|
#include "base/fs.h"
|
2014-10-21 09:21:31 +08:00
|
|
|
#include "doc/palette.h"
|
2013-11-16 03:56:50 +08:00
|
|
|
#include "ui/alert.h"
|
|
|
|
|
|
|
|
namespace app {
|
|
|
|
|
|
|
|
using namespace ui;
|
|
|
|
|
|
|
|
class LoadPaletteCommand : public Command {
|
|
|
|
public:
|
|
|
|
LoadPaletteCommand();
|
|
|
|
|
|
|
|
protected:
|
2015-05-09 03:08:55 +08:00
|
|
|
void onLoadParams(const Params& params) override;
|
2014-08-15 10:07:47 +08:00
|
|
|
void onExecute(Context* context) override;
|
2024-05-21 23:36:33 +08:00
|
|
|
std::string onGetFriendlyName() const override;
|
2015-05-09 03:08:55 +08:00
|
|
|
|
|
|
|
private:
|
|
|
|
std::string m_preset;
|
2016-09-05 22:59:25 +08:00
|
|
|
std::string m_filename;
|
2025-08-06 02:59:31 +08:00
|
|
|
bool m_ui = true;
|
2013-11-16 03:56:50 +08:00
|
|
|
};
|
|
|
|
|
2025-08-06 02:59:31 +08:00
|
|
|
LoadPaletteCommand::LoadPaletteCommand() : Command(CommandId::LoadPalette())
|
2013-11-16 03:56:50 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2015-05-09 03:08:55 +08:00
|
|
|
void LoadPaletteCommand::onLoadParams(const Params& params)
|
|
|
|
{
|
2025-08-06 02:59:31 +08:00
|
|
|
if (params.has_param("ui"))
|
|
|
|
m_ui = params.get_as<bool>("ui");
|
|
|
|
else
|
|
|
|
m_ui = true;
|
2015-05-09 03:08:55 +08:00
|
|
|
m_preset = params.get("preset");
|
2016-09-05 22:59:25 +08:00
|
|
|
m_filename = params.get("filename");
|
2015-05-09 03:08:55 +08:00
|
|
|
}
|
|
|
|
|
2013-11-16 03:56:50 +08:00
|
|
|
void LoadPaletteCommand::onExecute(Context* context)
|
|
|
|
{
|
2015-05-09 03:08:55 +08:00
|
|
|
std::string filename;
|
|
|
|
|
|
|
|
if (!m_preset.empty()) {
|
2015-07-06 21:59:44 +08:00
|
|
|
filename = get_preset_palette_filename(m_preset, ".ase");
|
|
|
|
if (!base::is_file(filename))
|
|
|
|
filename = get_preset_palette_filename(m_preset, ".gpl");
|
2015-05-09 03:08:55 +08:00
|
|
|
}
|
2025-08-06 02:59:31 +08:00
|
|
|
else if (context->isUIAvailable() && m_ui) {
|
|
|
|
const base::paths exts = get_readable_palette_extensions();
|
2018-02-21 21:39:30 +08:00
|
|
|
base::paths filenames;
|
2022-01-07 17:02:38 +08:00
|
|
|
if (app::show_file_selector(Strings::load_palette_title(),
|
2025-08-06 02:59:31 +08:00
|
|
|
m_filename,
|
2022-01-07 17:02:38 +08:00
|
|
|
exts,
|
2018-02-21 21:39:30 +08:00
|
|
|
FileSelectorType::Open,
|
|
|
|
filenames)) {
|
2017-04-08 11:06:25 +08:00
|
|
|
filename = filenames.front();
|
|
|
|
}
|
2015-05-09 03:08:55 +08:00
|
|
|
}
|
2025-08-06 02:59:31 +08:00
|
|
|
else if (!m_filename.empty()) {
|
|
|
|
filename = m_filename;
|
|
|
|
}
|
2015-03-03 03:07:35 +08:00
|
|
|
|
2016-09-05 22:59:25 +08:00
|
|
|
// Do nothing
|
|
|
|
if (filename.empty())
|
|
|
|
return;
|
|
|
|
|
2018-08-09 04:27:26 +08:00
|
|
|
std::unique_ptr<doc::Palette> palette(load_palette(filename.c_str()));
|
2016-09-05 22:59:25 +08:00
|
|
|
if (!palette) {
|
|
|
|
if (context->isUIAvailable())
|
2024-06-21 07:14:29 +08:00
|
|
|
ui::Alert::show(Strings::alerts_error_loading_file(filename));
|
2016-09-05 22:59:25 +08:00
|
|
|
return;
|
2013-11-16 03:56:50 +08:00
|
|
|
}
|
2016-09-05 22:59:25 +08:00
|
|
|
|
|
|
|
SetPaletteCommand* cmd = static_cast<SetPaletteCommand*>(
|
2017-12-02 02:10:21 +08:00
|
|
|
Commands::instance()->byId(CommandId::SetPalette()));
|
2018-08-09 04:27:26 +08:00
|
|
|
cmd->setPalette(palette.get());
|
2016-09-05 22:59:25 +08:00
|
|
|
context->executeCommand(cmd);
|
2013-11-16 03:56:50 +08:00
|
|
|
}
|
|
|
|
|
2024-05-21 23:36:33 +08:00
|
|
|
std::string LoadPaletteCommand::onGetFriendlyName() const
|
|
|
|
{
|
|
|
|
std::string name = Command::onGetFriendlyName();
|
|
|
|
if (m_preset == "default")
|
|
|
|
name = Strings::commands_LoadDefaultPalette();
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|
2013-11-16 03:56:50 +08:00
|
|
|
Command* CommandFactory::createLoadPaletteCommand()
|
|
|
|
{
|
|
|
|
return new LoadPaletteCommand;
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace app
|