Skip to content
OE_actionsCurves.cpp 7.26 KiB
Newer Older
3dsman's avatar
3dsman committed
* This file is part of project OpenEmbroidery. It's copyrighted by
* the contributors recorded in the version control history of the file.
* Original project location https://code.electrolab.fr/openEmbroidery/openEmbroidery_software
*
* SPDX-License-Identifier: CECILL-2.1
* License-Filename: Licence_CeCILL_V2.1-en.txt
*/

#include "actions/OE_actionsCurves.h"
#include "OE_document.h"

///////// actionNewCurve ///////////////
/// \brief OE_actionNewCurve::OE_actionNewCurve
/// \param curve
///
OE_actionNewCurve::OE_actionNewCurve(OE_document* doc, OE_pointcurve* curve) : OE_actions(doc)
raoul's avatar
raoul committed
	if (document)
	{
		actionCurve = curve;
		document->addCurve(curve);
	}
}

OE_actionNewCurve::~OE_actionNewCurve()
{
}

void OE_actionNewCurve::undo()
{
raoul's avatar
raoul committed
	if (actionCurve && active)
	{
		document->removeCurve(actionCurve);
	}
	active = false;
}

void OE_actionNewCurve::redo()
{
raoul's avatar
raoul committed
	if (actionCurve && !active)
	{
		document->addCurve(actionCurve);
	}
	active = true;
}

///////// actionDelCurve ///////////////
/// \brief OE_actionDelCurve::OE_actionDelCurve
/// \param curve
///
OE_actionDelCurve::OE_actionDelCurve(OE_document* doc, OE_pointcurve* curve) : OE_actions(doc)
raoul's avatar
raoul committed
	if (document)
	{
		actionCurve = curve;
		document->removeCurve( curve);
	}
}

OE_actionDelCurve::~OE_actionDelCurve()
{
}

void OE_actionDelCurve::undo()
{
raoul's avatar
raoul committed
	if (actionCurve && active)
	{
		document->addCurve( actionCurve);
	}
	active = false;
}

void OE_actionDelCurve::redo()
{
raoul's avatar
raoul committed
	if (actionCurve && !active)
	{
		document->removeCurve(actionCurve);
	}
	active = true;
}

///////// actionNewCurve ///////////////
/// \brief OE_actionNewCurve::OE_actionNewCurve
/// \param curve
///
raoul's avatar
raoul committed
OE_actionNewSubCurve::OE_actionNewSubCurve(OE_curve* curve,float curveStart, float curveEnd, bool reverse)
raoul's avatar
raoul committed
	if (document)
	{
		actionCurve = new OE_subcurve(curve, curveStart, curveEnd, reverse);
		document->addCurve(actionCurve);
	}
}

OE_actionNewSubCurve::~OE_actionNewSubCurve()
{
raoul's avatar
raoul committed
	if (actionCurve && !active)
	{
		delete actionCurve;
	}
}

void OE_actionNewSubCurve::undo()
{
raoul's avatar
raoul committed
	if (actionCurve && active)
	{
		document->removeCurve(actionCurve);
	}
	active = false;
}

void OE_actionNewSubCurve::redo()
{
raoul's avatar
raoul committed
	if (actionCurve && !active)
	{
		document->addCurve(actionCurve);
	}
	active = true;

///////// actionNewJoinCurve ///////////////
/// \brief OE_actionNewJoinCurve::OE_actionNewJoinCurve
/// \param curve1
/// \param curve2
///
3dsman's avatar
3dsman committed
/*
OE_actionNewJoinCurve::OE_actionNewJoinCurve(OE_subcurve* curve1, OE_subcurve* curve2)
raoul's avatar
raoul committed
	if (document)
	{
		actionCurve = new OE_joincurve(curve1, curve2);
		document->addCurve(actionCurve);
	}
}

OE_actionNewJoinCurve::~OE_actionNewJoinCurve()
{
raoul's avatar
raoul committed
	if (actionCurve && !active)
	{
		delete actionCurve;
	}
}

void OE_actionNewJoinCurve::undo()
{
raoul's avatar
raoul committed
	if (actionCurve && active)
	{
		document->removeCurve(actionCurve);
	}
	active = false;
}

void OE_actionNewJoinCurve::redo()
{
raoul's avatar
raoul committed
	if (actionCurve && !active)
	{
		document->addCurve( actionCurve);
	}
	active = true;
OE_actionJoincurveAddSubCurve::OE_actionJoincurveAddSubCurve(OE_document* doc, OE_joincurve* joincurve, int index,
raoul's avatar
raoul committed
                                                             OE_curve* curve, float start, float end,
                                                             bool reverse) : OE_actions(doc)
raoul's avatar
raoul committed
	if (joincurve)
	{
		actionCurve = joincurve;
		id = index;
		subcurve = new OE_subcurve(curve, start, end, reverse);
		actionCurve->addCurve(subcurve, index);
	}
}

OE_actionJoincurveAddSubCurve::~OE_actionJoincurveAddSubCurve()
{
raoul's avatar
raoul committed
	if (actionCurve && subcurve && !active)
	{
		actionCurve->removeCurve(subcurve);
		delete subcurve;
	}
}

void OE_actionJoincurveAddSubCurve::undo()
{
raoul's avatar
raoul committed
	if (actionCurve && subcurve && active)
	{
		actionCurve->removeCurve(subcurve);
	}
	active = false;
}

void OE_actionJoincurveAddSubCurve::redo()
{
raoul's avatar
raoul committed
	if (actionCurve && subcurve && !active)
	{
		actionCurve->addCurve(subcurve, id);
	}
	active = true;
bool OE_actionJoincurveAddSubCurve::getDir()
{
raoul's avatar
raoul committed
	return subcurve ? subcurve->getReverse() : false;
void OE_actionJoincurveAddSubCurve::setEnd(float end)
{
raoul's avatar
raoul committed
	if (subcurve)
	{
		subcurve->setEnd(end);
	}
}

void OE_actionJoincurveAddSubCurve::setStart(float start)
{
raoul's avatar
raoul committed
	if (subcurve)
	{
		subcurve->setStart(start);
	}
void OE_actionJoincurveAddSubCurve::setDir(bool dir)
{
raoul's avatar
raoul committed
	if (subcurve)
	{
		subcurve->setReverse(dir);
	}
OE_actionMovePointCurve::OE_actionMovePointCurve(OE_document* doc, OE_pointcurve* curve, uint16_t idPoint, vector_2d offset) : OE_actions(doc)
raoul's avatar
raoul committed
	if (document && curve)
	{
		actionCurve = curve;
		if (actionCurve->getPoint(idPoint, oldCoord))
		{
			this->idPoint = idPoint;
			this->offset = offset;
			actionCurve->movePoint(idPoint, oldCoord + offset);
raoul's avatar
raoul committed
		}
	}
}

OE_actionMovePointCurve::~OE_actionMovePointCurve()
{
}

void OE_actionMovePointCurve::undo()
{
raoul's avatar
raoul committed
	if (actionCurve && active)
	{
		actionCurve->movePoint(idPoint, oldCoord);
raoul's avatar
raoul committed
	}
	active = false;
}

void OE_actionMovePointCurve::redo()
{
raoul's avatar
raoul committed
	if (actionCurve && !active)
	{
		actionCurve->movePoint(idPoint, oldCoord + offset);
raoul's avatar
raoul committed
	}
	active = true;
}

void OE_actionMovePointCurve::setMove(vector_2d offset)
{
raoul's avatar
raoul committed
	if (actionCurve)
	{
		this->offset = offset;
		if (active)
		{
			actionCurve->movePoint(idPoint, oldCoord + offset);
		}
	}
OE_actionSetCloseCurve::OE_actionSetCloseCurve(OE_document* doc, OE_curve* curve, bool closed) : OE_actions(doc)
raoul's avatar
raoul committed
	if (document && curve)
	{
		actionCurve = curve;
		this->closed = closed;
		this->oldClosed = actionCurve->getClosed();
raoul's avatar
raoul committed
		actionCurve->setClosed(closed);
	}
}

OE_actionSetCloseCurve::~OE_actionSetCloseCurve()
{
}

void OE_actionSetCloseCurve::undo()
{
raoul's avatar
raoul committed
	if (actionCurve && active)
raoul's avatar
raoul committed
		if (!oldClosed && (oldPts < actionCurve->getNpts()))
		{
			actionCurve->pts.erase(actionCurve->pts.end()-3, actionCurve->pts.end());
		}
		actionCurve->setClosed(oldClosed);
raoul's avatar
raoul committed
	active = false;
}

void OE_actionSetCloseCurve::redo()
{
raoul's avatar
raoul committed
	{
raoul's avatar
raoul committed
	}
	active = true;
OE_actionSetSubcurvePos::OE_actionSetSubcurvePos(OE_document* doc, OE_subcurve* curve, bool start, double pos) : OE_actions(doc)
raoul's avatar
raoul committed
	if (document&&curve)
	{
		actionCurve = curve;
		this->start = start;
		this->pos = pos;
		if (start)
		{
			oldPos = actionCurve->getStart();
			actionCurve->setStart(pos);
		}
		else
		{
			oldPos = actionCurve->getEnd();
			actionCurve->setEnd(pos);
		}
	}
}

OE_actionSetSubcurvePos::~OE_actionSetSubcurvePos()
{
}

void OE_actionSetSubcurvePos::undo()
{
raoul's avatar
raoul committed
	if (active)
	{
		if (start)
		{
			actionCurve->setStart(oldPos);
		}
		else
		{
			actionCurve->setEnd(oldPos);
		}

		if (invert)
		{
			actionCurve->setReverse(!actionCurve->getReverse());
		}
		active = false;
	}
}

void OE_actionSetSubcurvePos::redo()
{
raoul's avatar
raoul committed
	if (!active)
	{
		if (start)
		{
			actionCurve->setStart(pos);
		}
		else
		{
			actionCurve->setEnd(pos);
		}

		if (invert)
		{
			actionCurve->setReverse(!actionCurve->getReverse());
		}
		active = true;
	}
}

void OE_actionSetSubcurvePos::setPos(double pos)
{
raoul's avatar
raoul committed
	this->pos = pos;
	if (active)
	{
		if (start)
		{
			actionCurve->setStart(pos);
		}
		else
		{
			actionCurve->setEnd(pos);
		}
	}

void OE_actionSetSubcurvePos::setInvertDir(bool invert)
{
raoul's avatar
raoul committed
	if (active)
	{
		if (this->invert != invert)
		{
			actionCurve->setReverse(!actionCurve->getReverse());
		}
	}
	this->invert = invert;
}

bool OE_actionSetSubcurvePos::getInvertDir()
{
raoul's avatar
raoul committed
	return invert;
raoul's avatar
raoul committed