Skip to content
OE_actionsSelection.cpp 8.58 KiB
Newer Older
3dsman's avatar
3dsman committed
/*
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
*/
3dsman's avatar
3dsman committed

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

///////// actionSelectionAddCurves ///////////////
/// \brief OE_actionSelectionAddCurves::OE_actionSelectionAddCurves
/// \param curves
///
OE_actionSelectionAddCurves::OE_actionSelectionAddCurves(OE_document* doc, std::list<OE_pointcurve*> curves, bool replace) : OE_actions(doc)
3dsman's avatar
3dsman committed
{
raoul's avatar
raoul committed
	if (document)
	{
		actionCurves = document->selectedCurves;
		if (replace)
		{
			document->selectedCurves = curves;
		}
		else
		{
			document->selectedCurves.merge(curves);
			document->selectedCurves.sort();
			document->selectedCurves.unique();
raoul's avatar
raoul committed
		}
	}
3dsman's avatar
3dsman committed
}

OE_actionSelectionAddCurves::~OE_actionSelectionAddCurves()
{
}

void OE_actionSelectionAddCurves::undo()
{
raoul's avatar
raoul committed
	if (active)
	{
		document->selectedCurves = switchVal(document->selectedCurves, &actionCurves);
		active = false;
	}
3dsman's avatar
3dsman committed
}

void OE_actionSelectionAddCurves::redo()
{
raoul's avatar
raoul committed
	if (!active)
	{
		document->selectedCurves = switchVal(document->selectedCurves, &actionCurves);
		active = true;
	}
3dsman's avatar
3dsman committed
}

///////// actionSelectionRemoveCurves ///////////////
/// \brief OE_actionSelectionRemoveCurves::OE_actionSelectionRemoveCurves
/// \param curves
///
OE_actionSelectionRemoveCurves::OE_actionSelectionRemoveCurves(OE_document* doc, std::list<OE_pointcurve*> curves) : OE_actions(doc)
3dsman's avatar
3dsman committed
{
raoul's avatar
raoul committed
	if (document)
	{
		actionCurves = document->selectedCurves;
		for (std::list<OE_pointcurve*>::iterator it=curves.begin(); it!=curves.end(); ++it)
		{
			document->selectedCurves.remove(*it);
		}
	}
3dsman's avatar
3dsman committed
}

OE_actionSelectionRemoveCurves::~OE_actionSelectionRemoveCurves()
{
}

void OE_actionSelectionRemoveCurves::undo()
{
raoul's avatar
raoul committed
	if (active)
	{
		document->selectedCurves = switchVal(document->selectedCurves, &actionCurves);
		active = false;
	}
3dsman's avatar
3dsman committed
}

void OE_actionSelectionRemoveCurves::redo()
{
raoul's avatar
raoul committed
	if (!active)
	{
		document->selectedCurves = switchVal(document->selectedCurves, &actionCurves);
		active = true;
	}
3dsman's avatar
3dsman committed
}

///////// actionSelectionClearCurves ///////////////
/// \brief OE_actionSelectionClearCurves::OE_actionSelectionClearCurves
///
OE_actionSelectionClearCurves::OE_actionSelectionClearCurves(OE_document* doc) : OE_actions(doc)
3dsman's avatar
3dsman committed
{
raoul's avatar
raoul committed
	if (document)
	{
		actionCurves = document->selectedCurves;
		document->selectedCurves.clear();
	}
3dsman's avatar
3dsman committed
}

OE_actionSelectionClearCurves::~OE_actionSelectionClearCurves()
{
}

void OE_actionSelectionClearCurves::undo()
{
raoul's avatar
raoul committed
	if (active)
	{
		document->selectedCurves = actionCurves;
	}
	active = false;
3dsman's avatar
3dsman committed
}

void OE_actionSelectionClearCurves::redo()
{
raoul's avatar
raoul committed
	if (!active)
	{
		document->selectedCurves.clear();
	}
	active = true;
3dsman's avatar
3dsman committed
}

///////// actionSelectionAddStitches ///////////////
/// \brief OE_actionSelectionAddStitches::OE_actionSelectionAddStitches
/// \param stitches
///
OE_actionSelectionAddStitches::OE_actionSelectionAddStitches(OE_document* doc, std::list<OE_stitchs*> stitches, bool replace) : OE_actions(doc)
raoul's avatar
raoul committed
	if (document)
	{
		actionStitches = document->selectedStitchs;
		if (replace)
		{
			document->selectedStitchs = stitches;
		}
		else
		{
			document->selectedStitchs.merge(stitches);
			document->selectedStitchs.sort();
			document->selectedStitchs.unique();
raoul's avatar
raoul committed
		}
	}
3dsman's avatar
3dsman committed
}

OE_actionSelectionAddStitches::~OE_actionSelectionAddStitches()
{
}

void OE_actionSelectionAddStitches::undo()
{
raoul's avatar
raoul committed
	if (active)
	{
		document->selectedStitchs = switchVal(document->selectedStitchs, &actionStitches);
		active = false;
	}
3dsman's avatar
3dsman committed
}

void OE_actionSelectionAddStitches::redo()
{
raoul's avatar
raoul committed
	if (!active)
	{
		document->selectedStitchs = switchVal(document->selectedStitchs, &actionStitches);
		active = true;
	}
3dsman's avatar
3dsman committed
}

///////// actionSelectionRemoveStitches ///////////////
/// \brief OE_actionSelectionRemoveStitches::OE_actionSelectionRemoveStitches
/// \param stitches
///
OE_actionSelectionRemoveStitches::OE_actionSelectionRemoveStitches(OE_document* doc, std::list<OE_stitchs*> stitches) : OE_actions(doc)
raoul's avatar
raoul committed
	if (document)
	{
		actionStitches = document->selectedStitchs;
		for (std::list<OE_stitchs*>::iterator it=stitches.begin(); it!=stitches.end(); ++it)
		{
			document->selectedStitchs.remove(*it);
		}
	}
3dsman's avatar
3dsman committed
}

OE_actionSelectionRemoveStitches::~OE_actionSelectionRemoveStitches()
{
}

void OE_actionSelectionRemoveStitches::undo()
{
raoul's avatar
raoul committed
	if (active)
	{
		document->selectedStitchs = switchVal(document->selectedStitchs, &actionStitches);
		active = false;
	}
3dsman's avatar
3dsman committed
}

void OE_actionSelectionRemoveStitches::redo()
{
raoul's avatar
raoul committed
	if (!active)
	{
		document->selectedStitchs = switchVal(document->selectedStitchs, &actionStitches);
		active = true;
	}
3dsman's avatar
3dsman committed
}

///////// actionSelectionClearStitches ///////////////
/// \brief OE_actionSelectionClearStitches::OE_actionSelectionClearStitches
///
OE_actionSelectionClearStitches::OE_actionSelectionClearStitches(OE_document* doc) : OE_actions(doc)
raoul's avatar
raoul committed
	if (document)
	{
		actionStitches = document->selectedStitchs;
		document->selectedStitchs.clear();
	}
3dsman's avatar
3dsman committed
}

OE_actionSelectionClearStitches::~OE_actionSelectionClearStitches()
{
}

void OE_actionSelectionClearStitches::undo()
{
raoul's avatar
raoul committed
	if (active)
	{
		document->selectedStitchs = actionStitches;
	}
	active = false;
3dsman's avatar
3dsman committed
}

void OE_actionSelectionClearStitches::redo()
{
raoul's avatar
raoul committed
	if (!active)
	{
		document->selectedStitchs.clear();
	}
	active = true;

///////// OE_actionSelectionClear ///////////////
/// \brief OE_actionSelectionClear::OE_actionSelectionClear
///
OE_actionSelectionClear::OE_actionSelectionClear(OE_document* doc) : OE_actions(doc)
raoul's avatar
raoul committed
	if (document)
	{
		actionClearCurves = new OE_actionSelectionClearCurves(document);
		actionClearStitches = new OE_actionSelectionClearStitches(document);
raoul's avatar
raoul committed
	}
3dsman's avatar
3dsman committed
	if (!active)
	{
		if(actionClearCurves)
		{
			delete actionClearCurves;
		}
		if(actionClearStitches)
		{
			delete actionClearStitches;
		}
	}
raoul's avatar
raoul committed
	if (!active)
	{
		return;
	}
raoul's avatar
raoul committed
	if (actionClearCurves)
	{
		actionClearCurves->undo();
	}
	if (actionClearStitches)
	{
		actionClearStitches->undo();
	}
	active = false;
raoul's avatar
raoul committed
	if (active)
	{
		return;
	}
raoul's avatar
raoul committed
	if (actionClearCurves)
	{
		actionClearCurves->redo();
	}
	if (actionClearStitches)
	{
		actionClearStitches->redo();
	}
	active = true;
OE_actionMoveSelection::OE_actionMoveSelection(OE_document* doc, vector_2d offset) : OE_actions(doc)
{
	if (document)
	{
		this->offset = offset;
		for (auto curve : document->selectedCurves)
		{
			curve->move(offset);
		}
		for (auto stitch : document->selectedStitchs)
		{
			stitch->move(offset);
		}
	}
}

OE_actionMoveSelection::~OE_actionMoveSelection()
{
}

void OE_actionMoveSelection::undo()
{
	if (active)
	{
3dsman's avatar
3dsman committed
		for (auto curve : document->selectedCurves)
3dsman's avatar
3dsman committed
			curve->move(-offset);
		for (auto stitch : document->selectedStitchs)
		{
			stitch->move(-offset);
		}
	}
	active = false;
}

void OE_actionMoveSelection::redo()
{
	if (!active)
	{
3dsman's avatar
3dsman committed
		for (auto curve : document->selectedCurves)
3dsman's avatar
3dsman committed
			curve->move(offset);
		for (auto stitch : document->selectedStitchs)
		{
			stitch->move(offset);
		}
	}
	active = true;
}

void OE_actionMoveSelection::setMove(vector_2d offset)
{
	if (active)
	{
3dsman's avatar
3dsman committed
		for (auto curve : document->selectedCurves)
3dsman's avatar
3dsman committed
			curve->move(offset-this->offset);
		for (auto stitch : document->selectedStitchs)
		{
			stitch->move(offset-this->offset);
		}
	}
	this->offset = offset;
}
OE_actionScaleSelection::OE_actionScaleSelection(OE_document* doc, vector_2d ratio, vector_2d pos) : OE_actions(doc)
{
	if (document)
	{
		this->pos = pos;
		this->ratio = ratio;
		for (auto curve : document->selectedCurves)
		{
			curve->scale(ratio, pos);
		}
		for (auto stitch : document->selectedStitchs)
		{
			stitch->scale(ratio, pos);
		}
	}
}

OE_actionScaleSelection::~OE_actionScaleSelection()
{
}

void OE_actionScaleSelection::undo()
{
	if (active)
	{
		for (auto curve : document->selectedCurves)
		{
			curve->scale(vector_2d(1,1)/ratio, pos);
		}
		for (auto stitch : document->selectedStitchs)
		{
			stitch->scale(vector_2d(1,1)/ratio, pos);
		}
	}
	active = false;
}

void OE_actionScaleSelection::redo()
{
	if (!active)
	{
		for (auto curve : document->selectedCurves)
		{
			curve->scale(ratio, pos);
		}
		for (auto stitch : document->selectedStitchs)
		{
			stitch->scale(ratio, pos);
		}
	}
	active = true;
}

void OE_actionScaleSelection::setScale(vector_2d ratio)
{
	if (active)
	{
		for (auto curve : document->selectedCurves)
		{
			curve->scale(ratio/this->ratio, pos);
		}
		for (auto stitch : document->selectedStitchs)
		{
			stitch->scale(ratio/this->ratio, pos);
		}
	}
	this->ratio = ratio;
}
raoul's avatar
raoul committed