#define INKSCAPE_LPE_KNOT_CPP /** \file * LPE implementation */ /* * Authors: * JF Barraud * * Copyright (C) JF Barraud 2007 * * Released under GNU GPL, read the file 'COPYING' for more information */ #include "sp-shape.h" #include "display/curve.h" #include "live_effects/lpe-knot.h" #include "svg/svg.h" #include <2geom/sbasis-to-bezier.h> #include <2geom/sbasis.h> #include <2geom/d2.h> #include <2geom/d2-sbasis.h> #include <2geom/piecewise.h> #include <2geom/piecewise.h> #include <2geom/path.h> #include <2geom/d2.h> #include <2geom/crossing.h> #include <2geom/path-intersection.h> #include <2geom/elliptical-arc.h> namespace Inkscape { namespace LivePathEffect { class KnotHolderEntityCrossingSwitcher : public LPEKnotHolderEntity { public: virtual void knot_set(Geom::Point const &p, Geom::Point const &origin, guint state); virtual Geom::Point knot_get(); virtual void knot_click(guint state); }; //--------------------------------------------------------------------------- //LPEKnot specific Interval manipulation. //--------------------------------------------------------------------------- //remove an interval from an union of intervals. //TODO: is it worth moving it to 2Geom? static std::vector complementOf(Geom::Interval I, std::vector domain){ std::vector ret; double min = domain.front().min(); double max = domain.back().max(); Geom::Interval I1 = Geom::Interval(min,I.min()); Geom::Interval I2 = Geom::Interval(I.max(),max); for (unsigned i = 0; i I1i = intersect(domain.at(i),I1); if (I1i) ret.push_back(I1i.get()); boost::optional I2i = intersect(domain.at(i),I2); if (I2i) ret.push_back(I2i.get()); } return ret; } //find the time interval during which patha is hidden by pathb near a given crossing. // Warning: not accurate! static Geom::Interval findShadowedTime(Geom::Path const &patha, Geom::Path const &pathb, Geom::Crossing const &crossing, unsigned idx, double width){ using namespace Geom; double curveidx, timeoncurve = modf(crossing.getOtherTime(idx),&curveidx); if(curveidx == pathb.size() ) { curveidx--; timeoncurve = 1.;}//FIXME: 0.99999; needed? assert(curveidx >= 0 && curveidx < pathb.size()); std::vector MV = pathb[unsigned(curveidx)].pointAndDerivatives(timeoncurve,1); Point T = unit_vector(MV.at(1)); Point N = T.cw(); Point A = MV.at(0)-3*width*T, B = MV.at(0)+3*width*T; std::vector cutter; Geom::Path cutterPath(A-width*N); cutterPath.appendNew (B-width*N); cutterPath.appendNew (B+width*N); cutterPath.appendNew (A+width*N); cutterPath.appendNew (A-width*N); cutter.push_back(cutterPath); std::vector patha_as_vect = std::vector(1,patha); CrossingSet crossingTable = crossings (patha_as_vect, cutter); double t0 = crossing.getTime(idx); double tmin = 0,tmax = patha.size();//-0.00001;FIXME: FIXED? assert(crossingTable.size()>=1); for (unsigned c=0; ctmin and tt0) tmax = t; } return Interval(tmin,tmax); } //--------------------------------------------------------------------------- // a 2Geom work around. //--------------------------------------------------------------------------- //Cubic Bezier curves might self intersect; the 2geom code used to miss them. //This is a quick work around; maybe not needed anymore? -- TODO: check! //TODO/TOCHECK/TOFIX: I think the BUG is in path-intersection.cpp -> curve_mono_split(...): //the derivative of the curve should be used instead of the curve itself. std::vector split_at_horiz_vert_tgt (std::vector const & path_in){ std::vector ret; using namespace Geom; Piecewise > f = paths_to_pw(path_in); D2 > df = make_cuts_independent(derivative(f)); std::vector xyroots = roots(df[X]); std::vector yroots = roots(df[Y]); xyroots.insert(xyroots.end(), yroots.begin(), yroots.end()); std::sort(xyroots.begin(),xyroots.end()); Piecewise > newf = partition(f,xyroots); ret = path_from_piecewise(newf,LPE_CONVERSION_TOLERANCE); return ret; } //--------------------------------------------------------------------------- //LPEKnot specific Crossing Data manipulation. //--------------------------------------------------------------------------- //TODO: evaluate how lpeknot specific that is. Worth being moved to 2geom? namespace LPEKnotNS { CrossingPoints::CrossingPoints(Geom::CrossingSet const &input, std::vector const &path) : std::vector() { using namespace Geom; for( unsigned i=0; i const &input) : std::vector() { if (input.size()>0 && input.size()%7 ==0){ using namespace Geom; for( unsigned n=0; n CrossingPoints::to_vector() { using namespace Geom; std::vector result; for( unsigned n=0; ndist_k){ result = k; dist = dist_k; } } return result; } //TODO: Find a way to warn the user when the topology changes. //TODO: be smarter at guessing the signs when the topology changed? void CrossingPoints::inherit_signs(CrossingPoints const &other, int default_value) { bool topo_changed = false; for (unsigned n=0; n(&interruption_width) ); registerParameter( dynamic_cast(&switcher_size) ); registerParameter( dynamic_cast(&crossing_points_vector) ); registerKnotHolderHandle(new KnotHolderEntityCrossingSwitcher(), _("Drag to select a crossing, click to flip it")); crossing_points = LPEKnotNS::CrossingPoints(); selectedCrossing = 0; switcher = Geom::Point(0,0); } LPEKnot::~LPEKnot() { } void LPEKnot::doOnApply(SPLPEItem *lpeitem) { //SPCurve *curve = SP_SHAPE(lpeitem)->curve; // //TODO: where should the switcher be initialized? (it shows up here if there is no crossing at all) // //The best would be able to hide it when there is no crossing! //Geom::Point A = *(curve->first_point()); //Geom::Point B = *(curve->last_point()); //switcher = (A+B)*.5; } void LPEKnot::updateSwitcher(){ if (selectedCrossing < crossing_points.size()){ switcher = crossing_points[selectedCrossing].pt; }else if (crossing_points.size()>0){ selectedCrossing = 0; switcher = crossing_points[selectedCrossing].pt; }else{ //TODO: is there a way to properly hide the helper. //switcher = Geom::Point(Geom::infinity(),Geom::infinity()); switcher = Geom::Point(1e10,1e10); } } std::vector LPEKnot::doEffect_path (std::vector const &input_path) { using namespace Geom; std::vector path_out; double width = interruption_width; LPEKnotNS::CrossingPoints old_crdata(crossing_points_vector.data()); std::vector path_in = split_at_horiz_vert_tgt(input_path); CrossingSet crossingTable = crossings_among(path_in); crossing_points = LPEKnotNS::CrossingPoints(crossingTable, path_in); crossing_points.inherit_signs(old_crdata); crossing_points_vector.param_set_and_write_new_value(crossing_points.to_vector()); updateSwitcher(); if (crossingTable.size()==0){ return input_path; } for (unsigned i = 0; i < crossingTable.size(); i++){ std::vector dom; dom.push_back(Interval(0.,path_in.at(i).size()));//-0.00001));FIX ME: this should not be needed anymore. for (unsigned n = 0; n < crossingTable.at(i).size(); n++){ Crossing crossing = crossingTable.at(i).at(n); unsigned j = crossing.getOther(i); //FIXME: check success... LPEKnotNS::CrossingPoint crpt; crpt = crossing_points.get(i,n); int sign_code = crpt.sign; if (sign_code!=0){ bool sign = (sign_code>0 ? true : false); Interval hidden; if (((crossing.dir==sign) and crossing.a==i) or ((crossing.dir!=sign) and crossing.b==i)){ if (i==j and (crossing.dir!=sign)) { double temp = crossing.ta; crossing.ta = crossing.tb; crossing.tb = temp; crossing.dir = not crossing.dir; } hidden = findShadowedTime(path_in.at(i),path_in.at(j),crossing,i,width); } dom = complementOf(hidden,dom); } } for (unsigned comp = 0; comp < dom.size(); comp++){ assert(dom.at(comp).min() >=0 and dom.at(comp).max() <= path_in.at(i).size()); path_out.push_back(path_in.at(i).portion(dom.at(comp))); } } return path_out; } static LPEKnot * get_effect(SPItem *item) { Effect *effect = sp_lpe_item_get_current_lpe(SP_LPE_ITEM(item)); if (effect->effectType() != KNOT) { g_print ("Warning: Effect is not of type LPEKnot!\n"); return NULL; } return static_cast(effect); } void LPEKnot::addCanvasIndicators(SPLPEItem */*lpeitem*/, std::vector &hp_vec) { using namespace Geom; double r = switcher_size*.1; char const * svgd; //TODO: use a nice path! if (selectedCrossing >= crossing_points.size()||crossing_points[selectedCrossing].sign > 0){ //svgd = "M -10,0 A 10 10 0 1 0 0,-10 l 5,-1 -1,2"; svgd = "m -7.07,7.07 c 3.9,3.91 10.24,3.91 14.14,0 3.91,-3.9 3.91,-10.24 0,-14.14 -3.9,-3.91 -10.24,-3.91 -14.14,0 l 2.83,-4.24 0.7,2.12"; }else if (crossing_points[selectedCrossing].sign < 0){ //svgd = "M 10,0 A 10 10 0 1 1 0,-10 l -5,-1 1,2"; svgd = "m 7.07,7.07 c -3.9,3.91 -10.24,3.91 -14.14,0 -3.91,-3.9 -3.91,-10.24 0,-14.14 3.9,-3.91 10.24,-3.91 14.14,0 l -2.83,-4.24 -0.7,2.12"; }else{ //svgd = "M 10,0 A 10 10 0 1 0 -10,0 A 10 10 0 1 0 10,0 "; svgd = "M 10,0 C 10,5.52 5.52,10 0,10 -5.52,10 -10,5.52 -10,0 c 0,-5.52 4.48,-10 10,-10 5.52,0 10,4.48 10,10 z"; } PathVector pathv = sp_svg_read_pathv(svgd); pathv *= Matrix(r,0,0,r,0,0); pathv+=switcher; hp_vec.push_back(pathv); } void KnotHolderEntityCrossingSwitcher::knot_set(Geom::Point const &p, Geom::Point const &/*origin*/, guint state) { LPEKnot* lpe = get_effect(item); lpe->selectedCrossing = idx_of_nearest(lpe->crossing_points,p); lpe->updateSwitcher(); // if(lpe->selectedCrossing < lpe->crossing_points.size()) // lpe->switcher = lpe->crossing_points[lpe->selectedCrossing].pt; // else // lpe->switcher = p; // FIXME: this should not directly ask for updating the item. It should write to SVG, which triggers updating. sp_lpe_item_update_patheffect (SP_LPE_ITEM(item), false, true); } Geom::Point KnotHolderEntityCrossingSwitcher::knot_get() { LPEKnot* lpe = get_effect(item); return snap_knot_position(lpe->switcher); } void KnotHolderEntityCrossingSwitcher::knot_click(guint state) { LPEKnot* lpe = get_effect(item); unsigned s = lpe->selectedCrossing; if (s < lpe->crossing_points.size()){ if (state & GDK_SHIFT_MASK){ lpe->crossing_points[s].sign = 1; }else{ int sign = lpe->crossing_points[s].sign; lpe->crossing_points[s].sign = ((sign+2)%3)-1; } lpe->crossing_points_vector.param_set_and_write_new_value(lpe->crossing_points.to_vector()); // FIXME: this should not directly ask for updating the item. It should write to SVG, which triggers updating. sp_lpe_item_update_patheffect (SP_LPE_ITEM(item), false, true); } } /* ######################## */ } //namespace LivePathEffect (setq default-directory "c:/Documents And Settings/jf/Mes Documents/InkscapeSVN") } /* namespace Inkscape */ /* Local Variables: mode:c++ c-file-style:"stroustrup" c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) indent-tabs-mode:nil fill-column:99 End: */ // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4 :