mirror of
https://github.com/aseprite/aseprite.git
synced 2025-04-04 01:21:10 +00:00
Fix bug moving cels one pixel up or to the left
Reported here: https://twitter.com/Legacydev_/status/808299548942696449
This commit is contained in:
parent
6dc2b5284e
commit
63fe1e60eb
@ -29,6 +29,8 @@
|
|||||||
#include "doc/sprite.h"
|
#include "doc/sprite.h"
|
||||||
#include "ui/message.h"
|
#include "ui/message.h"
|
||||||
|
|
||||||
|
#include <cmath>
|
||||||
|
|
||||||
namespace app {
|
namespace app {
|
||||||
|
|
||||||
using namespace ui;
|
using namespace ui;
|
||||||
@ -122,27 +124,35 @@ MovingCelState::MovingCelState(Editor* editor,
|
|||||||
bool MovingCelState::onMouseUp(Editor* editor, MouseMessage* msg)
|
bool MovingCelState::onMouseUp(Editor* editor, MouseMessage* msg)
|
||||||
{
|
{
|
||||||
Document* document = editor->document();
|
Document* document = editor->document();
|
||||||
|
bool modified = false;
|
||||||
|
|
||||||
// Here we put back the cel into its original coordinate (so we can
|
// Here we put back all cels into their original coordinates (so we
|
||||||
// add an undoer before).
|
// can add the undo information from the start position).
|
||||||
if ((m_hasReference && (m_celOffset != gfx::PointF(0, 0) || m_scaled)) ||
|
for (size_t i=0; i<m_celList.size(); ++i) {
|
||||||
(!m_hasReference && gfx::Point(m_celOffset) != gfx::Point(0, 0))) {
|
Cel* cel = m_celList[i];
|
||||||
// Put the cels in the original position.
|
const gfx::RectF& celStart = m_celStarts[i];
|
||||||
for (size_t i=0; i<m_celList.size(); ++i) {
|
|
||||||
Cel* cel = m_celList[i];
|
|
||||||
const gfx::RectF& celStart = m_celStarts[i];
|
|
||||||
|
|
||||||
if (cel->layer()->isReference())
|
if (cel->layer()->isReference()) {
|
||||||
|
if (cel->boundsF() != celStart) {
|
||||||
cel->setBoundsF(celStart);
|
cel->setBoundsF(celStart);
|
||||||
else
|
modified = true;
|
||||||
cel->setBounds(gfx::Rect(celStart));
|
}
|
||||||
}
|
}
|
||||||
|
else {
|
||||||
|
if (cel->bounds() != gfx::Rect(celStart)) {
|
||||||
|
cel->setBounds(gfx::Rect(celStart));
|
||||||
|
modified = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (modified) {
|
||||||
// If the user didn't cancel the operation...
|
// If the user didn't cancel the operation...
|
||||||
if (!m_canceled) {
|
if (!m_canceled) {
|
||||||
ContextWriter writer(m_reader, 1000);
|
ContextWriter writer(m_reader, 1000);
|
||||||
Transaction transaction(writer.context(), "Cel Movement", ModifyDocument);
|
Transaction transaction(writer.context(), "Cel Movement", ModifyDocument);
|
||||||
DocumentApi api = document->getApi(transaction);
|
DocumentApi api = document->getApi(transaction);
|
||||||
|
gfx::Point intOffset = intCelOffset();
|
||||||
|
|
||||||
// And now we move the cel (or all selected range) to the new position.
|
// And now we move the cel (or all selected range) to the new position.
|
||||||
for (Cel* cel : m_celList) {
|
for (Cel* cel : m_celList) {
|
||||||
@ -159,8 +169,8 @@ bool MovingCelState::onMouseUp(Editor* editor, MouseMessage* msg)
|
|||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
api.setCelPosition(writer.sprite(), cel,
|
api.setCelPosition(writer.sprite(), cel,
|
||||||
cel->x() + m_celOffset.x,
|
cel->x() + intOffset.x,
|
||||||
cel->y() + m_celOffset.y);
|
cel->y() + intOffset.y);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -226,21 +236,26 @@ bool MovingCelState::onMouseMove(Editor* editor, MouseMessage* msg)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
gfx::Point intOffset = intCelOffset();
|
||||||
|
|
||||||
for (size_t i=0; i<m_celList.size(); ++i) {
|
for (size_t i=0; i<m_celList.size(); ++i) {
|
||||||
Cel* cel = m_celList[i];
|
Cel* cel = m_celList[i];
|
||||||
gfx::RectF celBounds = m_celStarts[i];
|
gfx::RectF celBounds = m_celStarts[i];
|
||||||
celBounds.x += m_celOffset.x;
|
|
||||||
celBounds.y += m_celOffset.y;
|
|
||||||
|
|
||||||
if (m_scaled) {
|
if (cel->layer()->isReference()) {
|
||||||
celBounds.w *= m_celScale.w;
|
celBounds.x += m_celOffset.x;
|
||||||
celBounds.h *= m_celScale.h;
|
celBounds.y += m_celOffset.y;
|
||||||
}
|
if (m_scaled) {
|
||||||
|
celBounds.w *= m_celScale.w;
|
||||||
if (cel->layer()->isReference())
|
celBounds.h *= m_celScale.h;
|
||||||
|
}
|
||||||
cel->setBoundsF(celBounds);
|
cel->setBoundsF(celBounds);
|
||||||
else
|
}
|
||||||
|
else {
|
||||||
|
celBounds.x += intOffset.x;
|
||||||
|
celBounds.y += intOffset.y;
|
||||||
cel->setBounds(gfx::Rect(celBounds));
|
cel->setBounds(gfx::Rect(celBounds));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Redraw the new cel position.
|
// Redraw the new cel position.
|
||||||
@ -271,14 +286,21 @@ bool MovingCelState::onUpdateStatusBar(Editor* editor)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
gfx::Point intOffset = intCelOffset();
|
||||||
StatusBar::instance()->setStatusText
|
StatusBar::instance()->setStatusText
|
||||||
(0,
|
(0,
|
||||||
":pos: %3d %3d :offset: %3d %3d",
|
":pos: %3d %3d :offset: %3d %3d",
|
||||||
int(m_cursorStart.x), int(m_cursorStart.y),
|
int(m_cursorStart.x), int(m_cursorStart.y),
|
||||||
int(m_celOffset.x), int(m_celOffset.y));
|
intOffset.x, intOffset.y);
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
gfx::Point MovingCelState::intCelOffset() const
|
||||||
|
{
|
||||||
|
return gfx::Point(std::round(m_celOffset.x),
|
||||||
|
std::round(m_celOffset.y));
|
||||||
|
}
|
||||||
|
|
||||||
} // namespace app
|
} // namespace app
|
||||||
|
@ -51,6 +51,8 @@ namespace app {
|
|||||||
virtual bool requireBrushPreview() override { return false; }
|
virtual bool requireBrushPreview() override { return false; }
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
gfx::Point intCelOffset() const;
|
||||||
|
|
||||||
ContextReader m_reader;
|
ContextReader m_reader;
|
||||||
Cel* m_cel;
|
Cel* m_cel;
|
||||||
CelList m_celList;
|
CelList m_celList;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user