Skip to content
OE_actionsLineStitchs.cpp 9.36 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_actionsLineStitchs.h"
#include "OE_document.h"

///////// actionNewLineStitch ///////////////
/// \brief OE_actionNewLineStitch::OE_actionNewLineStitch
/// \param curve
/// \param len
/// \param width
/// \param Pattern
OE_actionNewLineStitch::OE_actionNewLineStitch(OE_document* doc, float len, float width, OE_pattern* pattern, unsigned patternSteps,
raoul's avatar
raoul committed
                                               float xOffset, float yOffset) :
    OE_actions(doc), action(nullptr), linestitch(nullptr)
raoul's avatar
raoul committed
	if (document)
	{
		linestitch = new OE_linestitch(document->threads.front(), len, width, pattern, patternSteps, xOffset, yOffset);
		action = new OE_actionNewStitch(document, linestitch);
raoul's avatar
raoul committed
	}
}

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

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

void OE_actionNewLineStitch::redo()
{
raoul's avatar
raoul committed
	if (!active && action)
	{
		action->redo();
	}
	active = true;
///////// OE_actionSetLineStitchPattern ///////////////
/// \brief OE_actionSetLineStitchPattern::OE_actionSetLineStitchPattern
/// \param pattern
OE_actionSetLineStitchPattern::OE_actionSetLineStitchPattern(OE_document* doc, OE_linestitch* stitch, OE_pattern* pattern) :
    OE_actions(doc), actionStitch(nullptr), oldPattern(nullptr), newPattern(nullptr)
raoul's avatar
raoul committed
	if (document && stitch)
	{
		actionStitch = stitch;
		oldPattern = actionStitch->getPattern();
		newPattern = pattern;
		actionStitch->setPattern(pattern);
raoul's avatar
raoul committed
	}
raoul's avatar
raoul committed
OE_actionSetLineStitchPattern::~OE_actionSetLineStitchPattern()
{
}
void OE_actionSetLineStitchPattern::undo()
raoul's avatar
raoul committed
	if (active)
	{
		actionStitch->setPattern(oldPattern);
raoul's avatar
raoul committed
		active = false;
	}
void OE_actionSetLineStitchPattern::redo()
raoul's avatar
raoul committed
	if (!active)
	{
		actionStitch->setPattern(newPattern);
raoul's avatar
raoul committed
		active = true;
	}
}

///////// OE_actionSetLineStitchCurve ///////////////
/// \brief OE_actionSetLineStitchCurve::OE_actionSetLineStitchCurve
/// \param stitch
/// \param curve
///
OE_actionSetLineStitchCurve::OE_actionSetLineStitchCurve(OE_linestitch* stitch, OE_curve * curve)
{
raoul's avatar
raoul committed
	if (document&&stitch)
	{
		actionStitch = stitch;
		oldCurve = actionStitch->getCurve();
raoul's avatar
raoul committed
		actionStitch->setCurve(curve);
	}
raoul's avatar
raoul committed
OE_actionSetLineStitchCurve::~OE_actionSetLineStitchCurve()
{
}

void OE_actionSetLineStitchCurve::undo()
{
raoul's avatar
raoul committed
	if (active)
	{
		actionStitch->setCurve(switchVal(actionStitch->getCurve(), &oldCurve));
		active = false;
	}
}

void OE_actionSetLineStitchCurve::redo()
{
raoul's avatar
raoul committed
	if (!active)
	{
		actionStitch->setCurve(switchVal(actionStitch->getCurve(), &oldCurve));
		active = true;
	}

///////// OE_actionSetLineStitchLen ///////////////
/// \brief OE_actionSetLineStitchLen::OE_actionSetLineStitchLen
/// \param stitch
/// \param len
///
OE_actionSetLineStitchLen::OE_actionSetLineStitchLen(OE_document* doc, OE_linestitch* stitch, float len) :
    OE_actions(doc), actionStitch(nullptr)
raoul's avatar
raoul committed
    if (document && stitch)
    {
        actionStitch = stitch;
        oldLen = actionStitch->getLen();

        actionStitch->setLen(len);
    }
}

raoul's avatar
raoul committed
OE_actionSetLineStitchLen::~OE_actionSetLineStitchLen()
{
}

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

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

///////// OE_actionSetLineStitchWidth ///////////////
/// \brief OE_actionSetLineStitchWidth::OE_actionSetLineStitchWidth
/// \param stitch
/// \param width
///
OE_actionSetLineStitchWidth::OE_actionSetLineStitchWidth(OE_document* doc, OE_linestitch* stitch, float width) :
    OE_actions(doc), actionStitch(nullptr), oldWidth(0), oldOffset(0)
raoul's avatar
raoul committed
	if (document && stitch)
	{
		actionStitch = stitch;
		oldWidth = actionStitch->getWidth();
raoul's avatar
raoul committed
		actionStitch->setWidth(width);
	}
raoul's avatar
raoul committed
OE_actionSetLineStitchWidth::~OE_actionSetLineStitchWidth()
{
}

void OE_actionSetLineStitchWidth::undo()
{
raoul's avatar
raoul committed
	if (active)
	{
		actionStitch->setWidth(switchVal(actionStitch->getWidth(), &oldWidth));
		active = false;
	}
}

void OE_actionSetLineStitchWidth::redo()
{
raoul's avatar
raoul committed
	if (!active)
	{
		actionStitch->setWidth(switchVal(actionStitch->getWidth(), &oldWidth));
		active = true;
	}
void OE_actionSetLineStitchWidth::setWidth(float width)
{
	if (document)
	{
		actionStitch->setWidth(width);
	}
}

void OE_actionSetLineStitchWidth::offsetWidth(float offset)
{
	if (document)
	{
		actionStitch->setWidth(actionStitch->getWidth()-oldOffset+offset);
	}
	oldOffset = offset;
}

float OE_actionSetLineStitchWidth::getWidth()
{
	if (document)
	{
		return actionStitch->getWidth();
	}
	return 0;
}

///////// OE_actionSetLineStitchReverse ///////////////
/// \brief OE_actionSetLineStitchReverse::OE_actionSetLineStitchReverse
/// \param stitch
/// \param reverse
///
OE_actionSetLineStitchReverse::OE_actionSetLineStitchReverse(OE_document* doc, OE_linestitch* stitch, bool reverse) :
    OE_actions(doc), actionStitch(nullptr), oldReverse(false)
raoul's avatar
raoul committed
	if (document && stitch)
	{
		actionStitch = stitch;
		oldReverse = actionStitch->getReverse();
raoul's avatar
raoul committed
		actionStitch->setReverse(reverse);
	}
raoul's avatar
raoul committed
OE_actionSetLineStitchReverse::~OE_actionSetLineStitchReverse()
{
}

void OE_actionSetLineStitchReverse::undo()
{
raoul's avatar
raoul committed
	if (active)
	{
		actionStitch->setReverse(switchVal(actionStitch->getReverse(), &oldReverse));
		active = false;
	}
}

void OE_actionSetLineStitchReverse::redo()
{
raoul's avatar
raoul committed
	if (!active)
	{
		actionStitch->setReverse(switchVal(actionStitch->getReverse(), &oldReverse));
		active = true;
	}

///////// OE_actionSetSelectedLineStitchWidth ///////////////
/// \brief OE_actionSetSelectedLineStitchWidth::OE_actionSetLineStitchWidth
/// \param scale
///
OE_actionScaleSelectedLineStitchWidth::OE_actionScaleSelectedLineStitchWidth(OE_document* doc, float scale) : OE_actions(doc)
{
	if (document)
	{
		OE_linestitch* tmpLineStitch;
		for(auto selStitch : document->selectedStitchs)
		{
			tmpLineStitch = dynamic_cast<OE_linestitch*>(selStitch);
raoul's avatar
raoul committed
			if (tmpLineStitch)
			{
				actions.push_back(new OE_actionSetLineStitchWidth(document, tmpLineStitch, tmpLineStitch->getWidth()*scale));
raoul's avatar
raoul committed
			}
raoul's avatar
raoul committed
OE_actionScaleSelectedLineStitchWidth::~OE_actionScaleSelectedLineStitchWidth()
{
3dsman's avatar
3dsman committed
	if (!active)
	{
		while(!actions.empty()) delete actions.front(), actions.pop_front();
	}
raoul's avatar
raoul committed
}

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

void OE_actionScaleSelectedLineStitchWidth::redo()
{
	if (!active)
	{
		for(auto action : actions)
raoul's avatar
raoul committed
		{
raoul's avatar
raoul committed
		}
void OE_actionScaleSelectedLineStitchWidth::scaleWidth(float scale)
{
	for(auto action : actions)
	{
		action->setWidth(action->getWidth()/oldScale*scale);
	}
	oldScale = scale;
///////// OE_actionSetSelectedLineStitchLen///////////////
/// \brief OE_actionSetSelectedLineStitchLen::OE_actionSetSelectedLineStitchLen
/// \param scale
///
OE_actionScaleSelectedLineStitchLen::OE_actionScaleSelectedLineStitchLen(OE_document* doc, float scale) : OE_actions(doc)
{
	if (document)
	{
		OE_linestitch* tmpLineStitch;
		for(auto selStitch : document->selectedStitchs)
		{
			tmpLineStitch = dynamic_cast<OE_linestitch*>(selStitch);
raoul's avatar
raoul committed
			if (tmpLineStitch)
			{
				actions.push_back( new OE_actionSetLineStitchLen(document, tmpLineStitch, tmpLineStitch->getLen()*scale));
raoul's avatar
raoul committed
			}
raoul's avatar
raoul committed
OE_actionScaleSelectedLineStitchLen::~OE_actionScaleSelectedLineStitchLen()
{
3dsman's avatar
3dsman committed
	if (!active)
	{
		while(!actions.empty()) delete actions.front(), actions.pop_front();
	}
raoul's avatar
raoul committed
}

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

void OE_actionScaleSelectedLineStitchLen::redo()
{
	if (!active)
	{
		for(auto action : actions)
raoul's avatar
raoul committed
		{
raoul's avatar
raoul committed
		}
void OE_actionScaleSelectedLineStitchLen::scaleLen(float /*scale*/)
///////// OE_actionSetSelectedLineStitchPattern ///////////////
/// \brief OE_actionSetSelectedLineStitchPattern::OE_actionSetSelectedLineStitchPattern
/// \param pattern
OE_actionSetSelectedLineStitchPattern::OE_actionSetSelectedLineStitchPattern(OE_document* doc, OE_pattern* pattern) : OE_actions(doc)
{
	if (document)
	{
		OE_linestitch* tmpLineStitch;
		for(auto selStitch : document->selectedStitchs)
		{
			tmpLineStitch = dynamic_cast<OE_linestitch*>(selStitch);
raoul's avatar
raoul committed
			if (tmpLineStitch)
			{
				actions.push_back( new OE_actionSetLineStitchPattern(document, tmpLineStitch, pattern));
raoul's avatar
raoul committed
			}
raoul's avatar
raoul committed
OE_actionSetSelectedLineStitchPattern::~OE_actionSetSelectedLineStitchPattern()
{
3dsman's avatar
3dsman committed
	if (!active)
	{
		while(!actions.empty()) delete actions.front(), actions.pop_front();
	}
raoul's avatar
raoul committed
}
void OE_actionSetSelectedLineStitchPattern::undo()
{
	if (active)
	{
		for(auto action : actions)
raoul's avatar
raoul committed
		{
raoul's avatar
raoul committed
		}
void OE_actionSetSelectedLineStitchPattern::redo()
{
	if (!active)
	{
		for(auto action : actions)
raoul's avatar
raoul committed
		{
raoul's avatar
raoul committed
		}
raoul's avatar
raoul committed