mirror of
https://github.com/aseprite/aseprite.git
synced 2025-04-03 16:20:20 +00:00
Add parameters to the DuplicateSpriteCommand (fix #4755)
This commit is contained in:
parent
be17c48324
commit
5df4fb966c
@ -10,6 +10,8 @@
|
|||||||
|
|
||||||
#include "app/app.h"
|
#include "app/app.h"
|
||||||
#include "app/commands/command.h"
|
#include "app/commands/command.h"
|
||||||
|
#include "app/commands/new_params.h"
|
||||||
|
#include "app/commands/params.h"
|
||||||
#include "app/context_access.h"
|
#include "app/context_access.h"
|
||||||
#include "app/ini_file.h"
|
#include "app/ini_file.h"
|
||||||
#include "app/ui_context.h"
|
#include "app/ui_context.h"
|
||||||
@ -25,7 +27,13 @@ namespace app {
|
|||||||
|
|
||||||
using namespace ui;
|
using namespace ui;
|
||||||
|
|
||||||
class DuplicateSpriteCommand : public Command {
|
struct DuplicateSpriteParams : public NewParams {
|
||||||
|
Param<bool> ui{ this, true, "ui" };
|
||||||
|
Param<std::string> filename{ this, std::string(), "filename" };
|
||||||
|
Param<bool> flatten{ this, false, "flatten" };
|
||||||
|
};
|
||||||
|
|
||||||
|
class DuplicateSpriteCommand : public CommandWithNewParams<DuplicateSpriteParams> {
|
||||||
public:
|
public:
|
||||||
DuplicateSpriteCommand();
|
DuplicateSpriteCommand();
|
||||||
|
|
||||||
@ -35,7 +43,8 @@ protected:
|
|||||||
};
|
};
|
||||||
|
|
||||||
DuplicateSpriteCommand::DuplicateSpriteCommand()
|
DuplicateSpriteCommand::DuplicateSpriteCommand()
|
||||||
: Command(CommandId::DuplicateSprite(), CmdUIOnlyFlag)
|
: CommandWithNewParams<DuplicateSpriteParams>(CommandId::DuplicateSprite(),
|
||||||
|
CmdRecordableFlag)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -46,36 +55,49 @@ bool DuplicateSpriteCommand::onEnabled(Context* context)
|
|||||||
|
|
||||||
void DuplicateSpriteCommand::onExecute(Context* context)
|
void DuplicateSpriteCommand::onExecute(Context* context)
|
||||||
{
|
{
|
||||||
|
const bool ui = (params().ui() && context->isUIAvailable());
|
||||||
|
|
||||||
const ContextReader reader(context);
|
const ContextReader reader(context);
|
||||||
const Doc* document = reader.document();
|
const Doc* document = reader.document();
|
||||||
|
|
||||||
|
const std::string fn = document->filename();
|
||||||
|
const std::string ext = base::get_file_extension(fn);
|
||||||
|
|
||||||
|
std::string duplicateFn = params().filename.isSet() ?
|
||||||
|
params().filename() : base::get_file_title(fn) + " Copy" + (!ext.empty() ? "." + ext : "");
|
||||||
|
|
||||||
|
bool flatten = params().flatten.isSet() ? params().flatten() : get_config_bool("DuplicateSprite", "Flatten", false);
|
||||||
|
|
||||||
|
if (ui) {
|
||||||
// Load the window widget
|
// Load the window widget
|
||||||
app::gen::DuplicateSprite window;
|
app::gen::DuplicateSprite window;
|
||||||
std::string fn = document->filename();
|
|
||||||
std::string ext = base::get_file_extension(fn);
|
|
||||||
window.srcName()->setText(base::get_file_name(fn));
|
window.srcName()->setText(base::get_file_name(fn));
|
||||||
window.dstName()->setText(base::get_file_title(fn) +
|
window.dstName()->setText(duplicateFn);
|
||||||
" Copy" + (!ext.empty() ? "." + ext: ""));
|
window.flatten()->setSelected(flatten);
|
||||||
|
|
||||||
if (get_config_bool("DuplicateSprite", "Flatten", false))
|
|
||||||
window.flatten()->setSelected(true);
|
|
||||||
|
|
||||||
// Open the window
|
// Open the window
|
||||||
window.openWindowInForeground();
|
window.openWindowInForeground();
|
||||||
|
|
||||||
if (window.closer() == window.ok()) {
|
if (window.closer() == window.ok()) {
|
||||||
set_config_bool("DuplicateSprite", "Flatten", window.flatten()->isSelected());
|
flatten = window.flatten()->isSelected();
|
||||||
|
duplicateFn = window.dstName()->text();
|
||||||
|
|
||||||
|
// Only set the config when we do it from the UI, to avoid automation messing with user expectations.
|
||||||
|
set_config_bool("DuplicateSprite", "Flatten", flatten);
|
||||||
|
}
|
||||||
|
else // Abort if we close/cancel the window
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
// Make a copy of the document
|
// Make a copy of the document
|
||||||
Doc* docCopy;
|
Doc* docCopy;
|
||||||
if (window.flatten()->isSelected())
|
if (flatten)
|
||||||
docCopy = document->duplicate(DuplicateWithFlattenLayers);
|
docCopy = document->duplicate(DuplicateWithFlattenLayers);
|
||||||
else
|
else
|
||||||
docCopy = document->duplicate(DuplicateExactCopy);
|
docCopy = document->duplicate(DuplicateExactCopy);
|
||||||
|
|
||||||
docCopy->setFilename(window.dstName()->text().c_str());
|
docCopy->setFilename(duplicateFn);
|
||||||
docCopy->setContext(context);
|
docCopy->setContext(context);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Command* CommandFactory::createDuplicateSpriteCommand()
|
Command* CommandFactory::createDuplicateSpriteCommand()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user