/* * 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 #include #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("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(OE_curve* curve1, OE_curve* curve2, bool reverse1, bool reverse2, float offset1, float offset2, float len) { addAction(new OE_actionNewBirailStitch(curve1, curve2, 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); } void OE_controller::newJoinCurve(OE_curve* curve1, OE_curve* curve2) { addAction(new OE_actionNewJoinCurve(curve1, curve2)); } void OE_controller::newJoinCurve(int ncurve1, int ncurve2) { newJoinCurve(getCurve(ncurve1), getCurve(ncurve2)); } void OE_controller::newLineStitch(OE_curve* curve, float len, float width, unsigned motif, float offset) { addAction(new OE_actionNewLineStitch(curve, len, width, motif, offset)); } void OE_controller::newLineStitch(int ncurve, float len, float width, unsigned motif, float offset) { newLineStitch(getCurve(ncurve), 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)); } 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)); // 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); //E 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); //e newSubCurve(8, 0, 2, false); newJoinCurve(7, -1); newSubCurve(8, 3, 9, true); newBirailStitch(-1, -2, false, false, 0.2, 0.2, 0.5); //c 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); //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); return true; } // fin motifs return false; } 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); document->setZeroPoint(vector_2d(255,267)); unsigned curStitch = 0; //fil addAction(new OE_actionNewLineStitch(getCurve(3),3,0.4,1,0)); addAction(new OE_actionNewLineStitch(getCurve(4),3,0.4,1,0)); //addLineStitch(getCurve(3),3,0.4,1,0); //addLineStitch(getCurve(4),3,0.4,1,0); //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)); addAction(new OE_actionNewBirailStitch(getCurve(19),getCurve(20),true,false, 0, 0, 0.5)); 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)); //cercle //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)); //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))); //aiguille 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))); 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))); document->setZeroPoint(vector_2d(45,60)); unsigned curStitch = 0; addAction(new OE_actionNewLineStitch(getCurve(0),4,1,0,0.5)); addAction(new OE_actionNewLineStitch(getCurve(0),4,1,0,0.5)); addAction(new OE_actionNewLineStitch(getCurve(0),3,2,4,-0.4)); 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)); 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)); addAction(new OE_actionNewSubCurve(getCurve(1),5, 7, false)); addAction(new OE_actionNewSubCurve(getCurve(3),0, 3, false)); addAction(new OE_actionNewBirailStitch(getCurve(document->curves.size()-2),getCurve(document->curves.size()-1),false,false, 0.2, 0.2, 0.5)); 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)); 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)); return true; } return false; } bool OE_controller::setDefault() { OE_birailstitch::defaultLen = 1; OE_birailstitch::defaultMaxlen = 0; return true; } OE_curve* OE_controller::getCurve (int index) { if (document && index<0) index = document->curves.size() + index; if ((document)&&(0<=index && indexcurves.size())) { std::list::iterator curve = document->curves.begin(); for(unsigned i=0; i (getCurve (index))); } OE_subcurve* OE_controller::getSubcurve (unsigned index) { return (dynamic_cast (getCurve (index))); } OE_joincurve* OE_controller::getJoincurve (unsigned index) { return (dynamic_cast (getCurve (index))); } OE_stitchs* OE_controller::getStitch (int index) { if (document && index<0) index = document->stitchs.size() + index; if ((document)&&(0<=index && indexstitchs.size())) { std::list::iterator stitch = document->stitchs.begin(); for(unsigned i=0; i (getStitch(index))); } OE_birailstitch* OE_controller::getBirailStitch (unsigned index) { return (dynamic_cast (getStitch(index))); } OE_linkstitch* OE_controller::getLinkStitch (unsigned index) { return (dynamic_cast (getStitch(index))); } OE_thread* OE_controller::getThread (int index) { if (document && index<0) index = document->threads.size() + index; if ((document)&&(0<=index && indexthreads.size())) { std::list::iterator thread = document->threads.begin(); for(unsigned i=0; iundoActionsStack.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() { if (document && document->activeActionsStack.size()) { // get and undo the last action from active action stack OE_actions * action = *document->activeActionsStack.begin(); if (action) { action->undo(); // move the action from active to undo action stack document->activeActionsStack.pop_front(); document->undoActionsStack.push_front(action); } } } bool OE_controller::redoAction() { if (document && document->undoActionsStack.size()) { // get and redo the last action from undo action stack OE_actions * action = *document->undoActionsStack.begin(); action->redo(); // 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 tmp; tmp.push_back(curve); return selectCurves(tmp, replace); } bool OE_controller::selectCurves( std::list curves, bool replace) { if (document) { addAction(new OE_actionSelectionAddCurves(curves, replace)); return true; } return false; } bool OE_controller::unselectCurves( std::list curves) { if (document) { addAction(new OE_actionSelectionRemoveCurves(curves)); return true; } return false; } bool OE_controller::selectStitch( OE_stitchs* stitch, bool replace) { std::list tmp; tmp.push_back(stitch); return selectStitches(tmp, replace); } bool OE_controller::selectStitches( std::list stitches, bool replace) { if (document) { addAction(new OE_actionSelectionAddStitches(stitches, replace)); return true; } return false; } bool OE_controller::unselectStitches( std::list stitches) { if (document) { addAction(new OE_actionSelectionRemoveStitches(stitches)); return true; } return false; } bool OE_controller::editLastAction(vector_2d offset) { if (document && document->activeActionsStack.size()) { // get and undo the last action from active action stack OE_actions * action = *document->activeActionsStack.begin(); if (action) { OE_actionMovePointCurve* actionMovePointCurve = dynamic_cast(action); if (actionMovePointCurve) actionMovePointCurve->setMove( offset); } } } bool OE_controller::refreshStitchs() { if (document) { std::list::iterator stitch = document->stitchs.begin(); while (stitch != document->stitchs.end()) { (*stitch)->refresh(); stitch++; } } return true; } /* 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; } 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::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 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; } 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) { std::cout << "sendInstPoint x " << document->instPoints.size() <curPoint = comm.info.nPoint; int x, y, dx, dy, bigdx, bigdy; unsigned cmdPoints = 0; if (!started && comm.info.spaceSize && (comm.info.freeSpace<512) ) { comm.startMove(); if (!comm.ack()) std::cerr << "Can't start" << std::endl; started = true; } if ((sndPointinstPoints.size()) && comm.info.spaceSize && (comm.info.freeSpace>64)) { while (sndPointinstPoints.size()) { x = roundf(document->instPoints.at(sndPoint).x); y = roundf(-document->instPoints.at(sndPoint).y); dx = x-oldX; dy = y-oldY; if ((dx<-64)||(63=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++; } dxys[2*cmdPoints] = int7(dx); dxys[2*cmdPoints+1] = int7(dy); 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; } } if (cmdPoints) { comm.addPoints(dxys, cmdPoints); if (!comm.ack()) std::cerr << "Can't add points" << std::endl; return; } } } }