Skip to content
OE_actionsBirailStitchs.cpp 4.88 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_actionsStitchs.h"
#include "actions/OE_actionsBirailStitchs.h"
#include "OE_document.h"

///////// actionNewBirailStitch ///////////////
/// \brief OE_actionNewBirailStitch::OE_actionNewBirailStitch
/// \param curve1
/// \param curve2
/// \param reverse1
/// \param reverse2
/// \param offset1
/// \param offset2
/// \param len
///

OE_actionNewBirailStitch::OE_actionNewBirailStitch(OE_document* doc, bool reverse1, bool reverse2, float offset1, float offset2, float len) : OE_actions(doc)
raoul's avatar
raoul committed
	if (document)
	{
		action = new OE_actionNewStitch(document, new OE_birailstitch(document->threads.front(), reverse1, reverse2, offset1, offset2, len));
raoul's avatar
raoul committed
	}
}

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

void OE_actionNewBirailStitch::undo()
{
raoul's avatar
raoul committed
	if (active&&action)
	{
		action->undo();
	}
	active = false;
}

void OE_actionNewBirailStitch::redo()
{
raoul's avatar
raoul committed
	if (!active && action)
	{
		action->redo();
	}
	active = true;
}

///////// OE_actionSetBirailStitchLen ///////////////
/// \brief OE_actionSetBirailStitchLen::OE_actionSetBirailStitchLen
/// \param stitch
/// \param len
///

OE_actionSetBirailStitchLen::OE_actionSetBirailStitchLen(OE_document* doc, OE_birailstitch* stitch, float len) : OE_actions (doc)
raoul's avatar
raoul committed
	if (document && stitch)
	{
		actionStitch = stitch;
		oldLen = actionStitch->getLen();
		actionStitch->setLen(len);
	}
}

OE_actionSetBirailStitchLen::~OE_actionSetBirailStitchLen()
{
}

void OE_actionSetBirailStitchLen::undo()
{
raoul's avatar
raoul committed
	if (active)
	{
		actionStitch->setLen(switchVal(actionStitch->getLen(), &oldLen));
		active = false;
	}
}

void OE_actionSetBirailStitchLen::redo()
{
raoul's avatar
raoul committed
	if (!active)
	{
		actionStitch->setLen(switchVal(actionStitch->getLen(), &oldLen));
		active = true;
	}
}

///////// OE_actionSetBirailStitchOffset1 ///////////////
/// \brief OE_actionSetBirailStitchOffset1::OE_actionSetBirailStitchOffset1
/// \param stitch
/// \param offset
///
OE_actionSetBirailStitchOffset1::OE_actionSetBirailStitchOffset1(OE_document* doc, OE_birailstitch* stitch, float offset) : OE_actions(doc)
raoul's avatar
raoul committed
	if (document&&stitch)
	{
		actionStitch = stitch;
		oldOffset = actionStitch->getOffset1();
raoul's avatar
raoul committed
		actionStitch->setOffset1(offset);
	}
raoul's avatar
raoul committed
OE_actionSetBirailStitchOffset1::~OE_actionSetBirailStitchOffset1()
{
}

void OE_actionSetBirailStitchOffset1::undo()
{
raoul's avatar
raoul committed
	if (active)
	{
		actionStitch->setOffset1(switchVal(actionStitch->getOffset1(), &oldOffset));
		active = false;
	}
}

void OE_actionSetBirailStitchOffset1::redo()
{
raoul's avatar
raoul committed
	if (!active)
	{
		actionStitch->setOffset1(switchVal(actionStitch->getOffset1(), &oldOffset));
		active = true;
	}
}

///////// OE_actionSetBirailStitchOffset2 ///////////////
/// \brief OE_actionSetBirailStitchOffset2::OE_actionSetBirailStitchOffset2
/// \param stitch
/// \param offset
///
OE_actionSetBirailStitchOffset2::OE_actionSetBirailStitchOffset2(OE_document* doc, OE_birailstitch* stitch, float offset) : OE_actions(doc)
raoul's avatar
raoul committed
	if (document&&stitch)
	{
		actionStitch = stitch;
		oldOffset = actionStitch->getOffset2();
raoul's avatar
raoul committed
		actionStitch->setOffset2(offset);
	}
raoul's avatar
raoul committed
OE_actionSetBirailStitchOffset2::~OE_actionSetBirailStitchOffset2()
{
}

void OE_actionSetBirailStitchOffset2::undo()
{
raoul's avatar
raoul committed
	if (active)
	{
		actionStitch->setOffset2(switchVal(actionStitch->getOffset2(), &oldOffset));
		active = false;
	}
}

void OE_actionSetBirailStitchOffset2::redo()
{
raoul's avatar
raoul committed
	if (!active)
	{
		actionStitch->setOffset2(switchVal(actionStitch->getOffset2(), &oldOffset));
		active = true;
	}
///////// OE_actionScaleSelectedBirailStitchLen///////////////
/// \brief OE_actionScaleSelectedBirailStitchLen::OE_actionScaleSelectedBirailStitchLen
/// \param scale
///
OE_actionScaleSelectedBirailStitchLen::OE_actionScaleSelectedBirailStitchLen(OE_document* doc, float scale) : OE_actions(doc)
{
	if (document)
	{
		OE_birailstitch* tmpBirailStitch;
		for(auto selStitch : document->selectedStitchs)
		{
			tmpBirailStitch = dynamic_cast<OE_birailstitch*>(selStitch);
raoul's avatar
raoul committed
			if (tmpBirailStitch)
			{
				actions.push_back(new OE_actionSetBirailStitchLen(document, tmpBirailStitch, tmpBirailStitch->getLen()*scale));
raoul's avatar
raoul committed
			}
raoul's avatar
raoul committed
OE_actionScaleSelectedBirailStitchLen::~OE_actionScaleSelectedBirailStitchLen()
{
3dsman's avatar
3dsman committed
	if (!active)
	{
		while(!actions.empty()) delete actions.front(), actions.pop_front();
	}
raoul's avatar
raoul committed
}

void OE_actionScaleSelectedBirailStitchLen::undo()
{
	if (active)
	{
		for(auto action : actions)
raoul's avatar
raoul committed
		{
			action->undo();
raoul's avatar
raoul committed
		}
		active = false;
	}
}

void OE_actionScaleSelectedBirailStitchLen::redo()
{
	if (!active)
	{
		for(auto action : actions)
raoul's avatar
raoul committed
		{
			action->redo();
raoul's avatar
raoul committed
		}
		active = true;
	}
}

void OE_actionScaleSelectedBirailStitchLen::scaleLen(float /*scale*/)