Skip to content
OE_controller.cpp 27 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 "OE_controller.h"
#include <iostream>
#include <typeinfo>

#include "actions/OE_actionsCurves.h"
#include "actions/OE_actionsStitchs.h"
#include "actions/OE_actionsLineStitchs.h"
#include "actions/OE_actionsBirailStitchs.h"
#include "actions/OE_actionsSelection.h"
#include "actions/OE_actionsThreads.h"

//OE_controller::OE_controller(OE_display * display, OE_document* document ) : comm("/dev/ttyUSB0", 80, 10)
  OE_controller::OE_controller(OE_display * display, OE_document* document ) : comm("/dev/tty", 80, 10)
//OE_controller::OE_controller(OE_display * display, OE_document* document ) : comm("20:15:05:11:28:40", 80, 30)
{
	this->display = display;
	this->document = document;
    OE_linestitch::initMotifs();
    if (document) document->addThread(new OE_thread(100,100,100,2));
}

OE_controller::~OE_controller()
{
}

void OE_controller::newSubCurve(OE_curve* curve, float curveStart, float curveEnd, bool reverse)
	addAction(new OE_actionNewSubCurve(curve, curveStart, curveEnd, reverse));
}
void OE_controller::newSubCurve(int ncurve, float curveStart, float curveEnd, bool reverse)
{
	newSubCurve(getCurve(ncurve), curveStart, curveEnd, reverse);
}
void OE_controller::newBirailStitch(bool reverse1, bool reverse2, float offset1, float offset2, float len)
    addAction(new OE_actionNewBirailStitch(reverse1, reverse2, offset1, offset2, len));
void OE_controller::newBirailStitch(int ncurve1, int ncurve2, bool reverse1, bool reverse2, float offset1, float offset2, float len)
{
	newBirailStitch(getCurve(ncurve1), getCurve(ncurve2), reverse1, reverse2, offset1, offset2, len);
}
3dsman's avatar
3dsman committed
/*
void OE_controller::newJoinCurve(OE_subcurve* curve1, OE_subcurve* curve2)
{
	addAction(new OE_actionNewJoinCurve(curve1, curve2));
}
void OE_controller::newJoinCurve(int ncurve1, int ncurve2)
{
	newJoinCurve(getCurve(ncurve1), getCurve(ncurve2));
}
3dsman's avatar
3dsman committed
*/
void OE_controller::newLineStitch( float len, float width, unsigned motif, float offset)
3dsman's avatar
3dsman committed
    addAction(new OE_actionNewLineStitch( len, width, motif, offset));
void OE_controller::newLineStitch(int ncurve, float len, float width, unsigned motif, float offset)
{
3dsman's avatar
3dsman committed
    newLineStitch(len, width, motif, offset);
void OE_controller::setStitchThread(OE_stitchs* stitch, OE_thread * thread)
{
	addAction(new OE_actionSetStitchThread(stitch, thread));
}
void OE_controller::setStitchThread(int nstitch, int nthread)
{
	setStitchThread(getStitch(nstitch), getThread(nthread));
}

void OE_controller::setCloseCurve(OE_curve* curve, bool closed)
{
    addAction(new OE_actionSetCloseCurve(curve, closed));
}

void OE_controller::setCloseCurve(int ncurve, bool closed)
{
    setCloseCurve(getCurve(ncurve), closed);
}

void OE_controller::toggleCloseSelectedCurve()
{
    OE_curve* curve = document->selectedCurves.back();
    if (curve) setCloseCurve(curve, !curve->getClosed());
}




bool OE_controller::testLogo2()
    // test motifs
    if (document)
    {
        OE_actions::curDocument = document; // TODO: REMOVE, UGLY AS FUCK !!!!

        addAction(new OE_actionNewThread(new OE_thread(220,120,20,2)));

        document->setZeroPoint(vector_2d(0,1050));
        addAction(new OE_actionNewMetaLineStitch(1.2,0.5,1,0));

        addAction(new OE_actionJoincurveAddSubCurve(getMetaLineStitch(-1)->getJoinCurve(),-1,getCurve(1),0,1,false));
        addAction(new OE_actionJoincurveAddSubCurve(getMetaLineStitch(-1)->getJoinCurve(),-1,getCurve(1),2,3.5,false));
        //addAction(new OE_actionAddMetaLineStitchSubCurve(getMetaLineStitch(document->stitchs.size()-1),getCurve(1),0,1));
        //addAction(new OE_actionAddMetaLineStitchSubCurve(getMetaLineStitch(document->stitchs.size()-1),getCurve(1),2,3.5));
        // interrieur 1er rectangle
        newSubCurve(2, 2, 3, false);
        newSubCurve(2, 0, 1, true);
        newBirailStitch(-1, -2, false, false, -0.2, -0.2, 0.5);
        setStitchThread(-1 , 1);
        // interrieur 2eme rectangle
        newSubCurve(4, 2, 4, true);
        newSubCurve(4, 6, 1, false);
        newBirailStitch(-1, -2, false, false, 0.2, 0.2, 0.5);
        setStitchThread(-1, 1);
        // interrieur 3eme rectangle
        newSubCurve(3, 0, 1, false);
        newSubCurve(3, 2, 3, true);
        newBirailStitch(-1, -2, false, false, -0.2, -0.2, 0.5);
        setStitchThread(-1, 1);

        addAction(new OE_actionNewThread(new OE_thread(120,220,20,2)));
        //addThread(120,220,20,2);
        // circle logo
        newSubCurve(1, 0, 2, true);
        newSubCurve(1, 2, 4, true);
		newJoinCurve(-2, -1);
		newBirailStitch(0, -1, false, false, 0.2, 0.2, 0.5);
		addAction(new OE_actionSetStitchMaxLen(getStitch(-1),5));
		setStitchThread(-1, 1);
        //selectCurve(getCurve(-1), true);
        newSubCurve(5, 9, 10, false);
        newSubCurve(5, 11, 12, true);
        newBirailStitch(-1, -2, false, false, 0.2, 0.2, 0.5);
        newSubCurve(5, 0, 2, false);
        newSubCurve(5, 7, 9, false);
		newJoinCurve(-1, -2);
        newSubCurve(5, 3, 6, true);
        newBirailStitch(-1, -2, false, false, 0.2, 0.2, 0.5);

        //l
        newSubCurve(6, 3, 0, true);
        newSubCurve(6, 1, 2, false);
        newBirailStitch(-1, -2, false, false, -0.2, -0.2, 0.5);
        newSubCurve(8, 0, 2, false);
        newJoinCurve(7, -1);
        newSubCurve(8, 3, 9, true);
        newBirailStitch(-1, -2, false, false, 0.2, 0.2, 0.5);
        newSubCurve(9, 10, 4, false);
        newSubCurve(9, 5, 9, true);
        newBirailStitch(-1, -2, false, false, 0.2, 0.2, 0.5);

        //t
        newSubCurve(10, 1, 2, true);
        newSubCurve(10, 5, 6, true);
        newJoinCurve(-1, -2);
        newSubCurve(10, 7, 8, true);
        newSubCurve(10, 15, 16, true);
        newJoinCurve(-1, -2);
        newBirailStitch(-1, -4, false, true, 0.2, 0.2, 0.5);

        newSubCurve(10, 2, 3, false);
        newSubCurve(10, 12, 15, false);
        newJoinCurve(-1, -2);
        newSubCurve(10, 4, 5, true);
        newSubCurve(10, 8, 11, true);
        newJoinCurve(-1, -2);
        newBirailStitch(-1, -4, true, true, -0.2, -0.2, 0.5);
3dsman's avatar
3dsman committed
		
        //r
        newSubCurve(11, 6, 7, true);
        newSubCurve(11, 2, 3, true);
        newJoinCurve(-1, -2);
        newSubCurve(11, 4, 5, false);
        newBirailStitch(-2, -1, false, false, 0.2, 0.2, 0.5);
        newSubCurve(11, 0, 2, true);
        newSubCurve(11, 7, 9, false);
        newBirailStitch(-1, -2, false, false, -0.2, -0.2, 0.5);
        //o
        newSubCurve(13, 0, 4, false);
        newSubCurve(12, 0, 4, true);
        newBirailStitch(-1, -2, false, false, 0.2, 0.2, 0.5);

        //l
        //newSubCurve(14, 3, 0, true);
        //newSubCurve(14, 1, 2, false);
        //newBirailStitch(-1, -2, false, false, -0.2, -0.2, 0.5);

        //a

        newSubCurve(16, 11, 12, true);
        newSubCurve(16, 0, 2, true);
        newJoinCurve(-1, -2);

        newSubCurve(16, 8, 10, false);
        newSubCurve(15, 4, 0, false);
        newJoinCurve(-1,-2);
        newSubCurve(16, 3, 4, false);
        newJoinCurve(-1, -2);
        newBirailStitch(-6, -1, true, true, -0.2, -0.2, 0.5);

        newSubCurve(15, 0, 4, true);
        newSubCurve(16, 4, 8, false);
        newBirailStitch(-1, -2, false, false, -0.2, -0.2, 0.5);

        //b

        newSubCurve(18, 6, 7, true);
        newSubCurve(17, 2, 3, true);
        newJoinCurve(-1, -2);
        newSubCurve(18, 2, 3, true);
        newJoinCurve(-1, -2);
        newSubCurve(18, 4, 5, false);
        newBirailStitch(-2, -1, true, true, -0.2, -0.2, 0.5);


        newSubCurve(17, 3, 5, true);
        newSubCurve(17, 0, 2, true);
        newJoinCurve(-1, -2);
        newSubCurve(18, 0, 2, false);
        newSubCurve(18, 7, 9, false);
        newJoinCurve(-1, -2);
        newBirailStitch(-1, -4, true, true, 0.2, 0.2, 0.5);

        newLineStitch(19,1.2,0.5,1,0);
        newLineStitch(20,1.2,0.5,1,0);
        newLineStitch(21,1.2,0.5,1,0);
        newLineStitch(22,1.2,0.5,1,0);
        //e
        newLineStitch(41,1.2,0.5,1,0);
        newLineStitch(40,1.2,0.5,1,0);
        //c
        newLineStitch(38,1.2,0.5,1,0);
        //a
        newLineStitch(37,1.2,0.5,1,0);
        newLineStitch(36,1.2,0.5,1,0);
        //p
        newLineStitch(35,1.2,0.5,1,0);
        //s
        newLineStitch(34,1.2,0.5,1,0);
        //r
        newLineStitch(33,1.2,0.5,1,0);
        newLineStitch(32,1.2,0.5,1,0);
        //e
        newLineStitch(31,1.2,0.5,1,0);
        newLineStitch(30,1.2,0.5,1,0);
        //k
        newLineStitch(29,1.2,0.5,1,0);
        newLineStitch(28,1.2,0.5,1,0);
        //c
        newLineStitch(27,1.2,0.5,1,0);
        //a
        newLineStitch(26,1.2,0.5,1,0);
        newLineStitch(25,1.2,0.5,1,0);
        //h
        newLineStitch(39,1.2,0.5,1,0);
        newLineStitch(24,1.2,0.5,1,0);
        newLineStitch(23,1.2,0.5,1,0);
3dsman's avatar
3dsman committed
		return true;
	}
	// fin motifs
	return false;
}

3dsman's avatar
3dsman committed
bool OE_controller::testOpenEmbroider()
{
	if (document)
	{
        OE_actions::curDocument = document;

        addAction(new OE_actionNewThread(new OE_thread(220,120,20,2)));

        //addThread(220,120,20,2);
3dsman's avatar
3dsman committed
		document->setZeroPoint(vector_2d(255,267));
		unsigned curStitch = 0;	
3dsman's avatar
3dsman committed
		//fil
3dsman's avatar
3dsman committed
        addAction(new OE_actionNewLineStitch(3,0.4,1,0));
        addAction(new OE_actionNewLineStitch(3,0.4,1,0));
        //addLineStitch(getCurve(3),3,0.4,1,0);
        //addLineStitch(getCurve(4),3,0.4,1,0);
3dsman's avatar
3dsman committed
		//dents
        addAction(new OE_actionNewBirailStitch(getCurve(17),getCurve(18),true,false, 0, 0, 0.5));
        addAction(new OE_actionNewBirailStitch(getCurve(15),getCurve(16),true,false, 0, 0, 0.5));
3dsman's avatar
3dsman committed
		
        addAction(new OE_actionNewBirailStitch(getCurve(19),getCurve(20),true,false, 0, 0, 0.5));
3dsman's avatar
3dsman committed
		
        addAction(new OE_actionNewBirailStitch(getCurve(7),getCurve(8),false,true, 0, 0, 0.5));
        addAction(new OE_actionNewBirailStitch(getCurve(9),getCurve(10),false,true, 0, 0, 0.5));
        addAction(new OE_actionNewBirailStitch(getCurve(11),getCurve(12),false,true, 0, 0, 0.5));
        addAction(new OE_actionNewBirailStitch(getCurve(13),getCurve(14),false,true, 0, 0, 0.5));
3dsman's avatar
3dsman committed
		
		//cercle
3dsman's avatar
3dsman committed
		//addBirailStitch(getCurve(5),getCurve(6),true,true, 0, 0, 0.5);
        addAction(new OE_actionNewBirailStitch(getCurve(5),getCurve(21),true,true, -0.4, -0.6, 0.5));
        addAction(new OE_actionNewBirailStitch(getCurve(21),getCurve(6),true,true, -0.6, -0.4, 0.5));
3dsman's avatar
3dsman committed
		//setStitchMaxLen(document->stitchs.size()-1,4);
		
		
		//pointe
        addAction(new OE_actionNewSubCurve(getCurve(2),0, 1, true));
        addAction(new OE_actionNewSubCurve(getCurve(2),1, 2, false));
        addAction(new OE_actionNewBirailStitch(getCurve(document->curves.size()-2),getCurve(document->curves.size()-1),false,false, 0, 0, 0.5));
        addAction(new OE_actionSetStitchThread(getStitch(document->stitchs.size()-1), getThread(1)));
3dsman's avatar
3dsman committed
		
3dsman's avatar
3dsman committed
		
		//aiguille
3dsman's avatar
3dsman committed
        /*addAction(new OE_actionNewSubCurve(getCurve(1),3, 3, false));
        addAction(new OE_actionNewSubCurve(getCurve(0),3.5, 5, true));
        addAction(new OE_actionNewJoinCurve(getCurve(document->curves.size()-1),getCurve(document->curves.size()-2)));
        addAction(new OE_actionNewSubCurve(getCurve(document->curves.size()-1),0, 5.2, false));
        addAction(new OE_actionNewSubCurve(getCurve(0),0, 2.4, false));
        addAction(new OE_actionNewBirailStitch(getCurve(document->curves.size()-2),getCurve(document->curves.size()-1),false,false, 0, 0, 0.5));
        addAction(new OE_actionSetStitchThread(getStitch(document->stitchs.size()-1), getThread(1)));
        addAction(new OE_actionNewSubCurve(getCurve(document->curves.size()-3),5.2, 7, false));
        addAction(new OE_actionNewSubCurve(getCurve(0),2.4, 3.5, false));
        addAction(new OE_actionNewBirailStitch(getCurve(document->curves.size()-2),getCurve(document->curves.size()-1),false,false, 0, 0, 0.5));
        addAction(new OE_actionSetStitchThread(getStitch(document->stitchs.size()-1), getThread(1)));
3dsman's avatar
3dsman committed
		return true;
	}
	return false;
}

bool OE_controller::testStarTrek()
{
	if (document)
	{

        OE_actions::curDocument = document;
        addAction(new OE_actionNewThread(new OE_thread(220,120,20,2)));

3dsman's avatar
3dsman committed
		document->setZeroPoint(vector_2d(45,60));
3dsman's avatar
3dsman committed
		
        addAction(new OE_actionNewLineStitch(getCurve(0),4,1,0,0.5));
3dsman's avatar
3dsman committed
		
        addAction(new OE_actionNewLineStitch(getCurve(0),4,1,0,0.5));
3dsman's avatar
3dsman committed
		
        addAction(new OE_actionNewLineStitch(getCurve(0),3,2,4,-0.4));
3dsman's avatar
3dsman committed
		
        addAction(new OE_actionNewSubCurve(getCurve(1),1, 3, false));
        addAction(new OE_actionNewSubCurve(getCurve(2),0, 4, false));

        addAction(new OE_actionNewBirailStitch(getCurve(document->curves.size()-2),getCurve(document->curves.size()-1),false,false, 0.2, 0.2, 0.5));
3dsman's avatar
3dsman committed
		
        addAction(new OE_actionNewSubCurve(getCurve(1),3, 4, false));
        addAction(new OE_actionNewSubCurve(getCurve(1),4, 5, true));
        addAction(new OE_actionNewBirailStitch(getCurve(document->curves.size()-2),getCurve(document->curves.size()-1),false,false, 0.2, 0.2, 0.5));
3dsman's avatar
3dsman committed
		
        addAction(new OE_actionNewSubCurve(getCurve(1),5, 7, false));
        addAction(new OE_actionNewSubCurve(getCurve(3),0, 3, false));
3dsman's avatar
3dsman committed
		
        addAction(new OE_actionNewBirailStitch(getCurve(document->curves.size()-2),getCurve(document->curves.size()-1),false,false, 0.2, 0.2, 0.5));
3dsman's avatar
3dsman committed
		
        addAction(new OE_actionNewSubCurve(getCurve(1),7, 8, false));
        addAction(new OE_actionNewSubCurve(getCurve(1),0, 1, true));
        addAction(new OE_actionNewBirailStitch(getCurve(document->curves.size()-2),getCurve(document->curves.size()-1),false,false, 0.2, 0.2, 0.5));
3dsman's avatar
3dsman committed

        addAction(new OE_actionNewBirailStitch(getCurve(4),getCurve(5),true,false, 0.2, 0.2, 0.5));
        addAction(new OE_actionNewBirailStitch(getCurve(6),getCurve(7),true,false, 0.2, 0.2, 0.5));
        addAction(new OE_actionNewBirailStitch(getCurve(8),getCurve(9),true,false, 0.2, 0.2, 0.5));
        addAction(new OE_actionNewBirailStitch(getCurve(10),getCurve(11),false,true, 0.2, 0.2, 0.5));


        addAction(new OE_actionNewLineStitch(getCurve(12),2,0.6,1,0));
3dsman's avatar
3dsman committed
		return true;
	}
	return false;
}

bool OE_controller::setDefault()
{
	OE_birailstitch::defaultLen = 1;
	OE_birailstitch::defaultMaxlen = 0;
OE_curve* OE_controller::getCurve (int index)
	if (document && index<0)
		index = document->curves.size() + index;
	if ((document)&&(0<=index && index<document->curves.size()))
	{
		std::list<OE_curve*>::iterator curve = document->curves.begin();
		for(unsigned i=0; i<index;i++)
			curve++;
		return (*curve);
	}

	return nullptr;
}

OE_pointcurve* OE_controller::getPointcurve (unsigned index)
{
        return (dynamic_cast<OE_pointcurve*> (getCurve (index)));
}

OE_subcurve* OE_controller::getSubcurve (unsigned index)
{
        return (dynamic_cast<OE_subcurve*> (getCurve (index)));
}

OE_joincurve* OE_controller::getJoincurve (unsigned index)
{
        return (dynamic_cast<OE_joincurve*> (getCurve (index)));
OE_stitchs* OE_controller::getStitch (int index)
	if (document && index<0)
		index = document->stitchs.size() + index;
	if ((document)&&(0<=index && index<document->stitchs.size()))
	{
		std::list<OE_stitchs*>::iterator stitch = document->stitchs.begin();
		for(unsigned i=0; i<index;i++)
			stitch++;
		return (*stitch);
OE_linestitch* OE_controller::getLineStitch (unsigned index)
		return (dynamic_cast<OE_linestitch*> (getStitch(index)));
}

OE_birailstitch* OE_controller::getBirailStitch (unsigned index)
{
        return (dynamic_cast<OE_birailstitch*> (getStitch(index)));
OE_linkstitch* OE_controller::getLinkStitch (unsigned index)
{
        return (dynamic_cast<OE_linkstitch*> (getStitch(index)));
OE_thread* OE_controller::getThread (int index)
	if (document && index<0)
		index = document->threads.size() + index;
	if ((document)&&(0<=index && index<document->threads.size()))
	{
		std::list<OE_thread*>::iterator thread = document->threads.begin();
		for(unsigned i=0; i<index;i++)
			thread++;
		return (*thread);
bool OE_controller::addAction(OE_actions * action)
{
    if (document)
    {
raoul's avatar
raoul committed
		OE_document::ScopeLock lock(*document);
		//flush the undoActionStack
        while(!(document->undoActionsStack.empty()))
            delete document->undoActionsStack.back();
            document->undoActionsStack.pop_back();
        }

        //push the new action to the active stack
        document->activeActionsStack.push_front(action);
    }
}

bool OE_controller::undoAction()
{
raoul's avatar
raoul committed
	if (document)
	{
		OE_document::ScopeLock lock(*document);
		if (document->activeActionsStack.size())
		{
			// get and undo the last action from active action stack
			OE_actions * action = *document->activeActionsStack.begin();
			if (action)
			{
				action->undo();
raoul's avatar
raoul committed
				// move the action from active to undo action stack
				document->activeActionsStack.pop_front();
				document->undoActionsStack.push_front(action);
			}
		}
	}
}

bool OE_controller::redoAction()
{
raoul's avatar
raoul committed
	if (document)
	{
		OE_document::ScopeLock lock(*document);
		if (document->undoActionsStack.size())
		{
			// get and redo the last action from undo action stack
			OE_actions * action = *document->undoActionsStack.begin();
raoul's avatar
raoul committed
			action->redo();
raoul's avatar
raoul committed
			// move the action from undo to active action stack
			document->undoActionsStack.pop_front();
			document->activeActionsStack.push_front(action);
		}
bool OE_controller::selectCurve( OE_curve* curve, bool replace)
    std::list<OE_curve*> tmp;
    tmp.push_back(curve);

    return selectCurves(tmp, replace);
bool OE_controller::selectCurves( std::list<OE_curve*> curves, bool replace)
    if (document)
    {
        addAction(new OE_actionSelectionAddCurves(curves, replace));
        return true;
    }
    return false;
}

3dsman's avatar
3dsman committed
bool OE_controller::unselectCurves( std::list<OE_curve*> curves)
{
    if (document)
    {
        addAction(new OE_actionSelectionRemoveCurves(curves));
        return true;
    }
    return false;
}

bool OE_controller::clearSelectCurves()
{
    if (document)
    {
        addAction(new OE_actionSelectionClearCurves());
        return true;
    }
    return false;
}

bool OE_controller::selectStitch( OE_stitchs* stitch, bool replace)
{
    std::list<OE_stitchs*> tmp;
    tmp.push_back(stitch);

    return selectStitches(tmp, replace);
}

bool OE_controller::selectStitches( std::list<OE_stitchs*> stitches, bool replace)
{
    if (document)
    {
3dsman's avatar
3dsman committed
        addAction(new OE_actionSelectionAddStitches(stitches, replace));
        return true;
    }
    return false;
}

bool OE_controller::unselectStitches( std::list<OE_stitchs*> stitches)
{
    if (document)
    {
        addAction(new OE_actionSelectionRemoveStitches(stitches));
bool OE_controller::clearSelectStitches()
{
    if (document)
    {
        addAction(new OE_actionSelectionClearStitches());
        return true;
    }
    return false;
}

bool OE_controller::clearSelection()
{
    if (document)
    {
        addAction(new OE_actionSelectionClear());
        return true;
    }
    return false;
}


OE_actions * OE_controller::getLastAction()
{
    if (document && document->activeActionsStack.size())
    {
        return *document->activeActionsStack.begin();
    return 0;
}
bool OE_controller::editActionMovePointCurve(vector_2d offset)
{
    OE_actionMovePointCurve* actionMovePointCurve = dynamic_cast<OE_actionMovePointCurve*>(getLastAction());
    if (actionMovePointCurve)
    {
            actionMovePointCurve->setMove( offset);
            return true;
    }
    return false;
bool OE_controller::editActionSetSubcurvePos(float val)
    OE_actionSetSubcurvePos* actionSetSubcurvePos = dynamic_cast<OE_actionSetSubcurvePos*>(getLastAction());
    if (actionSetSubcurvePos)
        actionSetSubcurvePos->setPos(val);
        return true;
    }
    return false;
}
bool OE_controller::editActionSetSubcurvePosSwitchDir()
{
    OE_actionSetSubcurvePos* actionJoincurveSetSubcurve = dynamic_cast<OE_actionSetSubcurvePos*>(getLastAction());
    if (actionJoincurveSetSubcurve)
    {
        actionJoincurveSetSubcurve->setInvertDir(!actionJoincurveSetSubcurve->getInvertDir());
        return true;
    }
    return false;
}
bool OE_controller::editActionAddSubcurvePosEnd(float val)
{
    OE_actionJoincurveAddSubCurve* actionJoincurveAddSubcurve = dynamic_cast<OE_actionJoincurveAddSubCurve*>(getLastAction());
    if (actionJoincurveAddSubcurve)
    {
        actionJoincurveAddSubcurve->setEnd(val);
        return true;
    return false;
bool OE_controller::editActionAddSubcurvePosSwitchDir()
{
    OE_actionJoincurveAddSubCurve* actionJoincurveAddSubcurve = dynamic_cast<OE_actionJoincurveAddSubCurve*>(getLastAction());
    if (actionJoincurveAddSubcurve)
    {
        actionJoincurveAddSubcurve->setDir(!actionJoincurveAddSubcurve->getDir());
bool OE_controller::refreshStitchs()
{
	if (document)
	{
		std::list<OE_stitchs*>::iterator stitch = document->stitchs.begin();
		
		while (stitch != document->stitchs.end())
bool OE_controller::setThreadColor(unsigned index, unsigned char r, unsigned char g, unsigned char b )
{
	OE_thread * tmpthread = getThread(index);
	if (!tmpthread)return false;
	
	tmpthread->setColor(r, g, b);

	return true;
}

bool OE_controller::setThreadWidth(unsigned index, float width)
{
	OE_thread * tmpthread = getThread(index);
	if (!tmpthread)return false;
	
	tmpthread->setWidth(width);

	return true;
}
bool OE_controller::setsubcurvePos( unsigned index, float start, float end)
{
	OE_subcurve * tmpcurve = getSubcurve(index);
	if (!tmpcurve)return false;
	
	tmpcurve->setStart(start);
	tmpcurve->setEnd(end);
	return true;
}
vector_2dt OE_controller::getClosestPoint(OE_curve* curve, vector_2d point)
{
    if (curve)
        return curve->closestPoint(point);
}

OE_curve* OE_controller::getClosestCurve(vector_2d point, vector_2dt &closestPoint)
{
    if (document)
    {
        std::list<OE_curve*>::iterator curve = document->curves.begin();
        vector_2dt tmpPoint;
        //vector_2dt minPoint;
        double minDistance;
        double tmpDistance;
        OE_curve* minCurve;

        if (curve != document->curves.end())
        {
            closestPoint = (*curve)->closestPoint(point);
            minDistance = (closestPoint.v-point).len();
            minCurve = *curve;
            curve++;
        }
        while (curve != document->curves.end())
        {
            tmpPoint = (*curve)->closestPoint(point);
            tmpDistance = (tmpPoint.v-point).len();
            if (tmpDistance < minDistance)
            {
                closestPoint = tmpPoint;
                minDistance = tmpDistance;
                minCurve = *curve;
            }
            curve++;
        }
        return (minCurve);
    }
    return nullptr;

}

bool OE_controller::generateInstructions()
{
		
	if (document)
	{
		document->instPoints.clear();
		for (unsigned i = 0; i < document->instCommand.size(); i++) {
			delete (document->instCommand.at(i));
		}
		document->instCommand.clear();
		
		std::list<OE_stitchs*>::iterator stitch = document->stitchs.begin();
		
		OE_thread * instThread = (*stitch)->getThread();
		if(!instThread)
			instThread = document->threads.front();
		
		document->instCommand.push_back(new OE_start(document->instPoints.size(), instThread->getColor()));
		
		while (stitch != document->stitchs.end())
		{
			(*stitch)->refresh();
			if((*stitch)->check()&&(*stitch)->getNpts()>0)
			{
				OE_thread * curThread = (*stitch)->getThread();
				if (!curThread)
					curThread = document->threads.front();
				if ((curThread!=instThread))
					instThread = curThread;
					document->instCommand.push_back(new OE_waitcolor(document->instPoints.size(), instThread->getColor()));
				}								
				std::vector<vector_2d> points = (*stitch)->getPoints();
			
				document->instPoints.insert( document->instPoints.end(), points.begin(), points.end() );

			}
			stitch++;
		}
		
		vector_2d zero = document->getZeroPoint();
		float size = document->getPulseByMm();
		for ( unsigned i = 0; i < document->instPoints.size(); i++)
		{
			document->instPoints.at(i) = (document->instPoints.at(i) - zero)*size;
		}
	}
	return true;
}

3dsman's avatar
3dsman committed
uint8_t int7(int i) // transform int32 to int7
{
	if (i>=0)
		return i;
	int8_t i8 = 2*i;
	return (*(uint8_t*)&i8)>>1;
}

void OE_controller::sendInstPoint()
{
	static bool running = false;
	static int oldX, oldY;
	static unsigned sndPoint;
	static uint8_t dxys[32];
	static bool started = false;

	if (!running)
	{
3dsman's avatar
3dsman committed
		std::cout << "sendInstPoint x " << document->instPoints.size() <<std::endl;
		comm.stopMove();
		if (!comm.ack()) std::cerr << "Can't set pos" << std::endl;
		comm.setPos(0, 0);
		if (!comm.ack()) std::cerr << "Can't set pos" << std::endl;
		comm.setNPoint(0);
		if (!comm.ack()) std::cerr << "Can't set point" << std::endl;
		comm.deletePoints();
		if (!comm.ack()) std::cerr << "Can't delete points" << std::endl;
		oldX = oldY = 0;
		sndPoint = 0;
		running = true;
	} else {
		document->curPoint = comm.info.nPoint;
		int x, y, dx, dy, bigdx, bigdy;
		unsigned cmdPoints = 0;
3dsman's avatar
3dsman committed
		if (!started && comm.info.spaceSize && (comm.info.freeSpace<512) ) {
			comm.startMove();
			if (!comm.ack()) std::cerr << "Can't start" << std::endl;
			started = true;
		}
		if ((sndPoint<document->instPoints.size()) && comm.info.spaceSize && (comm.info.freeSpace>64))
3dsman's avatar
3dsman committed
		{
			while (sndPoint<document->instPoints.size())
3dsman's avatar
3dsman committed
			{
				x = roundf(document->instPoints.at(sndPoint).x);
				y = roundf(-document->instPoints.at(sndPoint).y);
				dx = x-oldX;
				dy = y-oldY;
				if ((dx<-64)||(63<dx)||(dy<-64)||(63<dy))
3dsman's avatar
3dsman committed
				{
					bigdx = (dx+(dx>=0?0:1))/64;
					bigdy = (dy+(dy>=0?0:1))/64;
					dx -= 64*bigdx;
					dy -= 64*bigdy;
					if (cmdPoints==15)
					{
						comm.addPoints(dxys, 15);
						if (!comm.ack()) std::cerr << "Can't add points" << std::endl;
						return;
					}
					dxys[2*cmdPoints] = 0x80|int7(bigdx);
					dxys[2*cmdPoints+1] = int7(bigdy);
					cmdPoints++;
3dsman's avatar
3dsman committed
				}
				dxys[2*cmdPoints] = int7(dx);
				dxys[2*cmdPoints+1] = int7(dy);
3dsman's avatar
3dsman committed
				cmdPoints++;
				sndPoint++;
				oldX = x;
				oldY = y;
				if (cmdPoints==16)
				{
					comm.addPoints(dxys, 16);
					if (!comm.ack()) std::cerr << "Can't add points" << std::endl;
					return;
				}
3dsman's avatar
3dsman committed
			}
3dsman's avatar
3dsman committed
			{
				comm.addPoints(dxys, cmdPoints);
3dsman's avatar
3dsman committed
				if (!comm.ack()) std::cerr << "Can't add points" << std::endl;
3dsman's avatar
3dsman committed
			}
		}