/* * 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 OE_controller::OE_controller(OE_display * display, OE_document* document ) { this->display = display; this->document = document; OE_linestitch::initMotifs(); } OE_controller::~OE_controller() { } bool OE_controller::test() { // test motifs if (document) { //document->curves.at(0); //OE_linestitch* toto = new OE_linestitch(curve,0.1,1.8,0.5,1); //OE_linestitch* toto = new OE_linestitch(&curve,1,1); //toto->setMotif(1); /* OE_linestitch* toto = new OE_linestitch(curve,4,4); toto->setMotif(4);*/ //toto->setOffset(-0.5); //toto->refresh(); addLineStitch(); addLineStitch(); setLineStitchCurve(0, document->curves.at(0)); setLineStitchMotif(0, 1); setLineStitchSize(0,2,2); setLineStitchCurve(1, document->curves.at(1)); setLineStitchMotif(1, 3); setLineStitchSize(1,3,2); addLineStitch(document->curves.at(2),0.1,0.8,0.5,1,1,-0.5); //document->stitchs.at(0).refresh(); //if (display) display->forceRefresh=true; } // fin motifs return false; } OE_linestitch * OE_controller::getLineStitch (unsigned index) { if ((document)&&(indexstitchs.size())) { return (dynamic_cast (document->stitchs.at(index))); } return nullptr; } bool OE_controller::addCurve( std::vector points, bool closed) { if (document) { return document->addCurve( new OE_curve(points, closed)); } return false; } bool OE_controller::addLineStitch() { if (document) return document->addStitch(new OE_linestitch()); return false; } bool OE_controller::addLineStitch( OE_curve* curve,float curveStart, float curveEnd, float len, float width, unsigned motif, float offset) { if (document) return document->addStitch(new OE_linestitch(curve,curveStart, curveEnd, len, width, motif, offset)); return false; } bool OE_controller::setLineStitchMotif( unsigned index, unsigned motif) { OE_linestitch * tmpstitch = getLineStitch(index); if (!tmpstitch)return false; tmpstitch->setMotif(motif); tmpstitch->needRefresh=true; return true; } bool OE_controller::setLineStitchCurve( unsigned index, OE_curve* curve) { OE_linestitch * tmpstitch = getLineStitch(index); if (!tmpstitch)return false; tmpstitch->setCurve(curve); tmpstitch->needRefresh=true; return true; } bool OE_controller::setLineStitchSub( unsigned index, float start, float end) { OE_linestitch * tmpstitch = getLineStitch(index); if (!tmpstitch)return false; tmpstitch->setStart(start); tmpstitch->setEnd(end); tmpstitch->needRefresh=true; return true; } bool OE_controller::setLineStitchSize( unsigned index, float len, float width) { OE_linestitch * tmpstitch = getLineStitch(index); if (!tmpstitch)return false; tmpstitch->setLen(len); tmpstitch->setWidth(width); tmpstitch->needRefresh=true; return true; }