Skip to content
OE_actionsStitchs.cpp 17.5 KiB
Newer Older
/*
 * Copyright (c) 2015 Tricoire Sebastien 3dsman@free.fr
 *
 * This software is provided 'as-is', without any express or implied
 * warranty.  In no event will the authors be held liable for any damages
 * arising from the use of this software.
 *
 * Permission is granted to anyone to use this software for any purpose,
 * including commercial applications, and to alter it and redistribute it
 * freely, subject to the following restrictions:
 *
 * 1. The origin of this software must not be misrepresented; you must not
 * claim that you wrote the original software. If you use this software
 * in a product, an acknowledgment in the product documentation would be
 * appreciated but is not required.
 * 2. Altered source versions must be plainly marked as such, and must not be
 * misrepresented as being the original software.
 * 3. This notice may not be removed or altered from any source distribution.
 *
 */

#include "actions/OE_actionsStitchs.h"
3dsman's avatar
3dsman committed
#include "actions/OE_actionsLineStitchs.h"
#include "actions/OE_actionsBirailStitchs.h"
#include "actions/OE_actionsFillStitchs.h"
#include "stitchs/OE_linkstitch.h"
#include "OE_document.h"
#include <algorithm>

///////// actionNewStitch ///////////////

OE_actionNewStitch::OE_actionNewStitch(OE_document* doc, OE_stitchs* stitch) : OE_actions(doc), actionStitch(nullptr), linkStitch(nullptr)
raoul's avatar
raoul committed
	if (document)
	{
		if (document->stitchs.size() > 0)
		{
			OE_stitchs* tmpstitch = document->stitchs.back();
			linkStitch = new OE_linkstitch(tmpstitch, stitch);
			document->addStitch(linkStitch);
		}
		actionStitch = stitch;
		document->addStitch( actionStitch);
	}
}

OE_actionNewStitch::~OE_actionNewStitch()
{
raoul's avatar
raoul committed
	if (!active)
	{
		if (linkStitch)
		{
			delete linkStitch;
		}
	}
}

void OE_actionNewStitch::undo()
{
raoul's avatar
raoul committed
	if (active)
	{
		if (linkStitch)
		{
			document->removeStitch(linkStitch);
		}
		if (actionStitch)
		{
			document->removeStitch(actionStitch);
		}
		active = false;
	}
}

void OE_actionNewStitch::redo()
{
raoul's avatar
raoul committed
	if (!active)
	{
		if (linkStitch)
		{
			document->addStitch(linkStitch);
		}
		if (actionStitch)
		{
			document->addStitch(actionStitch);
		}
		active = true;
	}
}

///////// actionDelStitch ///////////////
/// \brief OE_actionDelStitch::OE_actionDelStitch
/// \param stitch
///
OE_actionDelStitch::OE_actionDelStitch(OE_document* doc, OE_stitchs* stitch) :
    OE_actions(doc), actionStitch(nullptr), linkStitchBefore(nullptr), linkStitchAfter(nullptr),
raoul's avatar
raoul committed
    nextStitch(nullptr), selNextLinkStitchBefore(nullptr), selNextLinkStitchAfter(nullptr),
    selNextStitch(nullptr), newLinkStitch(nullptr),
    linkStitchBeforeSelected(false),linkStitchAfterSelected(false), selected(false)
raoul's avatar
raoul committed
	if (document)
	{
		actionStitch = stitch;
raoul's avatar
raoul committed
		std::list<OE_stitchs*>::iterator it = find (document->stitchs.begin(), document->stitchs.end(), actionStitch);
		if (it != document->stitchs.end())
		{
			// if this is not the first stich
			if (it != document->stitchs.begin())
			{
				//get the previous one, store the linkstitch and remove it from the list
				it--;

				linkStitchBefore = dynamic_cast<OE_linkstitch*>(*it);
				if (linkStitchBefore)
				{
raoul's avatar
raoul committed
					it = document->stitchs.erase(it);
				}
				else
				{
					it++;
raoul's avatar
raoul committed
				}
			}
			//remove the actionStitch from the list
			it = document->stitchs.erase(it);
			nextStitch = *it;
			//if there is other stitches after the actionStitch get the next one, store it in linkStitchAfter and remove it from the list
			if (it != document->stitchs.end())
			{
				linkStitchAfter = dynamic_cast<OE_linkstitch*>(*it);
				if (linkStitchAfter)
				{
raoul's avatar
raoul committed
					it = document->stitchs.erase(it);
					nextStitch = *it;
				}
				//linkStitchAfter = *it;
				//it = document->stitchs.erase(it);
			}
		}

raoul's avatar
raoul committed
		if (linkStitchBefore && linkStitchAfter)
raoul's avatar
raoul committed
			newLinkStitch = new OE_linkstitch(linkStitchBefore->getStitchStart(), linkStitchAfter->getStitchEnd());
			document->stitchs.insert(it, newLinkStitch);
		}

raoul's avatar
raoul committed
		it = find(document->selectedStitchs.begin(), document->selectedStitchs.end(), actionStitch);
		if (it != document->selectedStitchs.end())
		{
			selected = true;
			it = document->selectedStitchs.erase(it);
			if (it != document->stitchs.end())
			{
				selNextStitch = *it;
			}
		}

		if (linkStitchBefore)
		{
			it = find (document->selectedStitchs.begin(), document->selectedStitchs.end(), linkStitchBefore);
			if (it != document->selectedStitchs.end())
			{
				linkStitchBeforeSelected = true;
				it = document->selectedStitchs.erase(it);
				if (it != document->stitchs.end())
				{
					selNextLinkStitchBefore = *it;
				}
			}
		}

		if (linkStitchAfter)
		{
			it = find (document->selectedStitchs.begin(), document->selectedStitchs.end(), linkStitchAfter);
			if (it != document->selectedStitchs.end())
			{
				linkStitchAfterSelected = true;
				it = document->selectedStitchs.erase(it);
				if (it != document->stitchs.end())
				{
					selNextLinkStitchAfter = *it;
				}
			}
		}
raoul's avatar
raoul committed
	}
}

OE_actionDelStitch::~OE_actionDelStitch()
{
	if (active)
	{
raoul's avatar
raoul committed
		if (linkStitchBefore)
		{
			delete linkStitchBefore;
		}
		if (linkStitchAfter)
		{
			delete linkStitchAfter;
		}
		if (actionStitch)
		{
			delete actionStitch;
		}
	}
	else if (newLinkStitch)
	{
		delete newLinkStitch;
	}
}

void OE_actionDelStitch::undo()
{
	if (actionStitch && active)
	{
		if (newLinkStitch)
raoul's avatar
raoul committed
		{
			document->stitchs.remove(newLinkStitch);
raoul's avatar
raoul committed
		}
		std::list<OE_stitchs*>::iterator  it = document->stitchs.end();
		if (nextStitch)
raoul's avatar
raoul committed
		{
			it = find (document->stitchs.begin(), document->stitchs.end(), nextStitch);
raoul's avatar
raoul committed
		}
		if (linkStitchAfter)
raoul's avatar
raoul committed
		{
			it = document->stitchs.insert(it, linkStitchAfter);
raoul's avatar
raoul committed
		}
		it = document->stitchs.insert(it, actionStitch);
		if (linkStitchBefore)
raoul's avatar
raoul committed
		{
			it = document->stitchs.insert(it, linkStitchBefore);
raoul's avatar
raoul committed
		}

		if (linkStitchAfterSelected)
		{
			it = document->selectedStitchs.end();
			if (selNextLinkStitchAfter)
raoul's avatar
raoul committed
			{
				it = find (document->selectedStitchs.begin(), document->selectedStitchs.end(), selNextLinkStitchAfter);
raoul's avatar
raoul committed
			}
			document->selectedStitchs.insert(it, linkStitchAfter);
		}
		if (linkStitchBeforeSelected)
		{
			it = document->selectedStitchs.end();
			if (selNextLinkStitchBefore)
raoul's avatar
raoul committed
			{
				it = find (document->selectedStitchs.begin(), document->selectedStitchs.end(), selNextLinkStitchBefore);
raoul's avatar
raoul committed
			}
			document->selectedStitchs.insert(it, linkStitchBefore);
		}
		if (selected)
		{
			it = document->selectedStitchs.end();
			if (selNextStitch)
raoul's avatar
raoul committed
			{
				it = find (document->selectedStitchs.begin(), document->selectedStitchs.end(), selNextStitch);
raoul's avatar
raoul committed
			}
			document->selectedStitchs.insert(it, actionStitch);
		}
	}
raoul's avatar
raoul committed
	active = false;
}

void OE_actionDelStitch::redo()
{
	if (actionStitch && !active)
	{
raoul's avatar
raoul committed
		if (selected)
		{
			document->selectedStitchs.remove(actionStitch);
		}
		if (linkStitchBeforeSelected)
		{
			document->selectedStitchs.remove(linkStitchBefore);
		}
		if (linkStitchAfterSelected)
		{
			document->selectedStitchs.remove(linkStitchAfter);
		}
		if(linkStitchBefore)
		{
			document->stitchs.remove(linkStitchBefore);
		}
		document->stitchs.remove(actionStitch);
raoul's avatar
raoul committed
		if(linkStitchAfter)
		{
			document->stitchs.remove(linkStitchAfter);
		}

		if (newLinkStitch)
		{
			std::list<OE_stitchs*>::iterator it = find (document->stitchs.begin(), document->stitchs.end(), nextStitch);
			it = document->stitchs.insert(it, newLinkStitch);
		}
	}
raoul's avatar
raoul committed
	active = true;
///////// OE_actionSetStitchMaxLen ///////////////
/// \brief OE_actionSetStitchMaxLen::OE_actionSetStitchMaxLen
/// \param stitch
/// \param maxLen
OE_actionSetStitchMaxLen::OE_actionSetStitchMaxLen(OE_document* doc, OE_stitchs* stitch, float maxLen) :
    OE_actions(doc), actionStitch(nullptr)
raoul's avatar
raoul committed
	if (document && stitch)
	{
		actionStitch = stitch;
		oldMaxLen = actionStitch->getMaxLen();
		actionStitch->setMaxLen(maxLen);
	}
OE_actionSetStitchMaxLen::~OE_actionSetStitchMaxLen()
void OE_actionSetStitchMaxLen::undo()
raoul's avatar
raoul committed
	if (active)
	{
		float tmpMaxLen = actionStitch->getMaxLen();
		actionStitch->setMaxLen(oldMaxLen);
		oldMaxLen = tmpMaxLen;
		active = false;
	}
void OE_actionSetStitchMaxLen::redo()
raoul's avatar
raoul committed
	if (!active)
	{
		float tmpMaxLen = actionStitch->getMaxLen();
		actionStitch->setMaxLen(oldMaxLen);
		oldMaxLen = tmpMaxLen;
		active = true;
	}
///////// actionSetStitchThread ///////////////
OE_actionSetStitchThread::OE_actionSetStitchThread(OE_document* doc, OE_stitchs* stitch, OE_thread* thread) :
    OE_actions(doc), actionStitch(nullptr), oldThread(nullptr)
raoul's avatar
raoul committed
	if (document && stitch)
	{
		actionStitch = stitch;
		oldThread = actionStitch->getThread();
		actionStitch->setThread(thread);
	}
OE_actionSetStitchThread::~OE_actionSetStitchThread()
void OE_actionSetStitchThread::undo()
raoul's avatar
raoul committed
	if (active)
	{
		OE_thread * tmpThread = actionStitch->getThread();
		actionStitch->setThread(oldThread);
		oldThread = tmpThread;
		active = false;
	}
void OE_actionSetStitchThread::redo()
raoul's avatar
raoul committed
	if (!active)
	{
		OE_thread * tmpThread = actionStitch->getThread();
		actionStitch->setThread(oldThread);
		oldThread = tmpThread;
		active = true;
	}
3dsman's avatar
3dsman committed

///////// actionScaleSelectedStitchLen ///////////////
OE_actionScaleSelectedStitchLen::OE_actionScaleSelectedStitchLen(OE_document* doc, float scale) : OE_actions(doc)
3dsman's avatar
3dsman committed
{
	if (document)
	{
		actionScaleSelectedLineStitchLen = new OE_actionScaleSelectedLineStitchLen(document, scale);
		actionScaleSelectedBirailStitchLen = new OE_actionScaleSelectedBirailStitchLen(document, scale);
		actionScaleSelectedFillStitchLen = new OE_actionScaleSelectedFillStitchLen(document, scale);
3dsman's avatar
3dsman committed

	}
}

OE_actionScaleSelectedStitchLen::~OE_actionScaleSelectedStitchLen()
{
	if(actionScaleSelectedLineStitchLen)
	{
		delete actionScaleSelectedLineStitchLen;
	}
	if(actionScaleSelectedBirailStitchLen)
	{
		delete actionScaleSelectedBirailStitchLen;
	}
	if(actionScaleSelectedFillStitchLen)
	{
		delete actionScaleSelectedFillStitchLen;
	}
}

void OE_actionScaleSelectedStitchLen::undo()
{
	if (active)
	{
		actionScaleSelectedLineStitchLen->undo();
		actionScaleSelectedBirailStitchLen->undo();
		actionScaleSelectedFillStitchLen->undo();

		active = false;
	}
}

void OE_actionScaleSelectedStitchLen::redo()
{
	if (!active)
	{
		actionScaleSelectedLineStitchLen->redo();
		actionScaleSelectedBirailStitchLen->redo();
		actionScaleSelectedFillStitchLen->redo();
		active = true;
	}
}

///////// actionScaleSelectedStitchWidth ///////////////
OE_actionScaleSelectedStitchWidth::OE_actionScaleSelectedStitchWidth(OE_document* doc, float scale) : OE_actions(doc)
3dsman's avatar
3dsman committed
{
	if (document)
	{
		actionScaleSelectedLineStitchWidth = new OE_actionScaleSelectedLineStitchWidth(document, scale);
		actionScaleSelectedFillStitchWidth = new OE_actionScaleSelectedFillStitchWidth(document, scale);
3dsman's avatar
3dsman committed

	}
}

OE_actionScaleSelectedStitchWidth::~OE_actionScaleSelectedStitchWidth()
{
	if (!active)
	{
		if (actionScaleSelectedLineStitchWidth)
		{
			delete actionScaleSelectedLineStitchWidth;
		}

		if(actionScaleSelectedFillStitchWidth)
		{
			delete actionScaleSelectedFillStitchWidth;
		}
	}
}

void OE_actionScaleSelectedStitchWidth::undo()
{
	if (active)
	{
		actionScaleSelectedLineStitchWidth->undo();
		actionScaleSelectedFillStitchWidth->undo();

		active = false;
	}
}

void OE_actionScaleSelectedStitchWidth::redo()
{
	if (!active)
	{
		actionScaleSelectedLineStitchWidth->redo();
		actionScaleSelectedFillStitchWidth->redo();
		active = true;
	}
}

///////// OE_actionSetSelectedStitchPattern ///////////////
OE_actionSetSelectedStitchPattern::OE_actionSetSelectedStitchPattern(OE_document* doc, OE_pattern* pattern) : OE_actions(doc)
3dsman's avatar
3dsman committed
{
	if (document)
	{
		actionSetSelectedLineStitchPattern = new OE_actionSetSelectedLineStitchPattern(document, pattern);
		actionSetSelectedFillStitchPattern = new OE_actionSetSelectedFillStitchPattern(document, pattern);
3dsman's avatar
3dsman committed
	}
}

OE_actionSetSelectedStitchPattern::~OE_actionSetSelectedStitchPattern()
{
	if (!active)
	{
		if (actionSetSelectedLineStitchPattern)
		{
			delete actionSetSelectedLineStitchPattern;
		}

		if(actionSetSelectedFillStitchPattern)
		{
			delete actionSetSelectedFillStitchPattern;
		}
	}
}

void OE_actionSetSelectedStitchPattern::undo()
{
	if (active)
	{
		actionSetSelectedLineStitchPattern->undo();
		actionSetSelectedFillStitchPattern->undo();

		active = false;
	}
}

void OE_actionSetSelectedStitchPattern::redo()
{
	if (!active)
	{
		actionSetSelectedLineStitchPattern->redo();
		actionSetSelectedFillStitchPattern->redo();
		active = true;
	}
}


///////// OE_actionShiftSelectedStitches ///////////////
OE_actionMoveInListSelectedStitches::OE_actionMoveInListSelectedStitches(OE_document* doc, int posInsertion) : OE_actions(doc)
{
    if (document)
    {
        actionStitches = document->stitchs;

        std::list<OE_stitchs*> tmpBeforeStitchList;
        std::list<OE_stitchs*> tmpAfterStitchList;
        std::list<OE_stitchs*> tmpSelectedStitchList;
        bool selected = false;
        int curIndex = 0;
        // to always get good insertion point (just after a linkstitches)
        posInsertion += posInsertion & 1;


        //loop on every stitches, split before and after insertion and make a lists with selected ones
        for (std::list<OE_stitchs*>::iterator stitchIt=document->stitchs.begin(); stitchIt!=document->stitchs.end(); ++stitchIt)
        {
            curIndex++;

            OE_linkstitch* linkStitch = dynamic_cast<OE_linkstitch*>(*stitchIt);
            if (!linkStitch)
            {
                //check if the stitch is selected
                auto it = std::find(document->selectedStitchs.begin(), document->selectedStitchs.end(), *stitchIt);
                if(it != document->selectedStitchs.end())
                {
                    //if we start a new selected block
                    if (selected == false)
                        startNewBlock(tmpSelectedStitchList, *stitchIt);
                    selected = true;
                }
                else
                {
                    //if we start a new unselected block
                    if (selected == true)
                    {
                        if (curIndex <= posInsertion)
                            startNewBlock(tmpBeforeStitchList, *stitchIt);
                        else
                            startNewBlock(tmpAfterStitchList, *stitchIt);
                    }
                    selected = false;
                }
            }

            //add the stitch to the corresponding list
            if (selected)
                tmpSelectedStitchList.push_back(*stitchIt);
            else
            {
                if (curIndex <= posInsertion) //if we're before the insertion point
                    tmpBeforeStitchList.push_back(*stitchIt);
                else
                    tmpAfterStitchList.push_back(*stitchIt);
            }
        }

        //remove last linkstitch in each lists if needed
        OE_linkstitch* linkStitch = dynamic_cast<OE_linkstitch*>(tmpBeforeStitchList.back());
        if (linkStitch)
        {
            document->selectedStitchs.remove(linkStitch);
            oldLinkStitches.push_back(linkStitch);
            tmpBeforeStitchList.pop_back();
        }

        linkStitch = dynamic_cast<OE_linkstitch*>(tmpAfterStitchList.back());
        if (linkStitch)
        {
            document->selectedStitchs.remove(linkStitch);
            oldLinkStitches.push_back(linkStitch);
            tmpAfterStitchList.pop_back();
        }

        linkStitch = dynamic_cast<OE_linkstitch*>(tmpSelectedStitchList.back());
        if (linkStitch)
        {
            document->selectedStitchs.remove(linkStitch);
            oldLinkStitches.push_back(linkStitch);
            tmpSelectedStitchList.pop_back();
        }

        //concatenate the lists
        if (tmpSelectedStitchList.size()>0)
        {
            if (tmpBeforeStitchList.size()>0)
            {
                OE_linkstitch* link = new OE_linkstitch(tmpBeforeStitchList.back(),tmpSelectedStitchList.front());
                newLinkStitches.push_back(link);
                tmpBeforeStitchList.push_back(link);
            }
            tmpBeforeStitchList.insert(tmpBeforeStitchList.end(),tmpSelectedStitchList.begin(),tmpSelectedStitchList.end());

            if (tmpAfterStitchList.size()>0)
            {
                OE_linkstitch* link = new OE_linkstitch(tmpBeforeStitchList.back(),tmpAfterStitchList.front());
                newLinkStitches.push_back(link);
                tmpBeforeStitchList.push_back(link);
                tmpBeforeStitchList.insert(tmpBeforeStitchList.end(),tmpAfterStitchList.begin(),tmpAfterStitchList.end());
            }

            //then replace stitchlist in the document
            document->stitchs = tmpBeforeStitchList;
        }
    }
}

void OE_actionMoveInListSelectedStitches::startNewBlock(std::list<OE_stitchs*> &list, OE_stitchs* stitch)
{
    if (list.size()!=0)
    {
        //remove previous linkstitch
        OE_linkstitch* linkStitch = dynamic_cast<OE_linkstitch*>(list.back());
        document->selectedStitchs.remove(linkStitch);
        oldLinkStitches.push_back(linkStitch);
        list.pop_back();
        //and make a new one
        OE_linkstitch* link = new OE_linkstitch(list.back(),stitch);
        newLinkStitches.push_back(link);
        list.push_back(link);
    }
}

OE_actionMoveInListSelectedStitches::~OE_actionMoveInListSelectedStitches()
{
    if (active)
    {
        for(auto&& stitch : oldLinkStitches) {
          delete stitch;
        }
    }else
    {
        for(auto&& stitch : newLinkStitches) {
          delete stitch;
        }
    }
}

void OE_actionMoveInListSelectedStitches::undo()
{
    if (active)
    {
        document->stitchs = switchVal(document->stitchs, &actionStitches);
        active = false;
    }
}

void OE_actionMoveInListSelectedStitches::redo()
{
    if (!active)
    {
        document->stitchs = switchVal(document->stitchs, &actionStitches);
        active = true;
    }
}