]> Shamusworld >> Repos - architektonas/blobdiff - src/dimension.cpp
Added visual feedback to switch side handle.
[architektonas] / src / dimension.cpp
index 7c4488d05bacbf27c4825b21d28a132a116846c0..9c9e15c8dd5af0ed3824c7926775caab700c8ec8 100644 (file)
@@ -27,17 +27,9 @@ Dimension::Dimension(Vector p1, Vector p2, DimensionType dt/*= DTLinear*/, Objec
 {
        // We set the size to 1/4 base unit. Could be anything.
        type = OTDimension;
+//     dimensionType = DTLinearHorz;
 }
 
-#if 0
-// This is bad, p1 & p2 could be NULL, causing much consternation...
-Dimension::Dimension(Connection p1, Connection p2, DimensionType dt/*= DTLinear*/, Object * p/*= NULL*/):
-       dragging(false), draggingHandle1(false), draggingHandle2(false),
-       length(0), dimensionType(dt), size(0.25)//, point1(p1), point2(p2)
-{
-       type = OTDimension;
-}
-#endif
 
 Dimension::~Dimension()
 {
@@ -71,35 +63,75 @@ all objects move as a unified whole.
        // Draw an aligned dimension line
        Vector v(position, endpoint);
        double angle = v.Angle();
-       Vector orthogonal = Vector::Normal(position, endpoint);
+//     Vector orthogonal = Vector::Normal(position, endpoint);
        Vector unit = v.Unit();
+       linePt1 = position, linePt2 = endpoint;
 
 // Horizontally aligned display
 #if 1
-       Vector pos = position, endp = endpoint, ortho;
-       double y1, y2;
+       Vector ortho;
+       double x1, y1, length;
 
-       if ((angle < PI_OVER_2) || (angle > PI3_OVER_2))
+       if (dimensionType == DTLinearVert)
        {
-               y1 = (pos.y > endp.y ? pos.y : endp.y);
-               y2 = (pos.y > endp.y ? endp.y : pos.y);
-               ortho = Vector(0, 1.0);
-               angle = 0;
+               if ((angle < 0) || (angle > PI))
+       //      if ((angle < PI_OVER_2) || (angle > PI3_OVER_2))
+               {
+                       x1 = (position.x > endpoint.x ? position.x : endpoint.x);
+                       y1 = (position.y > endpoint.y ? position.y : endpoint.y);
+                       ortho = Vector(1.0, 0);
+       //              ortho = Vector(0, 1.0);
+                       angle = PI3_OVER_2;
+       //              angle = 0;
+               }
+               else
+               {
+                       x1 = (position.x > endpoint.x ? endpoint.x : position.x);
+                       y1 = (position.y > endpoint.y ? endpoint.y : position.y);
+                       ortho = Vector(-1.0, 0);
+       //              ortho = Vector(0, -1.0);
+                       angle = PI_OVER_2;
+       //              angle = PI;
+               }
+
+               linePt1.x = linePt2.x = x1;
+               length = fabs(position.y - endpoint.y);
        }
-       else
+       else if (dimensionType == DTLinearHorz)
+       {
+               if ((angle < PI_OVER_2) || (angle > PI3_OVER_2))
+               {
+                       x1 = (position.x > endpoint.x ? position.x : endpoint.x);
+                       y1 = (position.y > endpoint.y ? position.y : endpoint.y);
+                       ortho = Vector(0, 1.0);
+                       angle = 0;
+               }
+               else
+               {
+                       x1 = (position.x > endpoint.x ? endpoint.x : position.x);
+                       y1 = (position.y > endpoint.y ? endpoint.y : position.y);
+                       ortho = Vector(0, -1.0);
+                       angle = PI;
+               }
+
+               linePt1.y = linePt2.y = y1;
+               length = fabs(position.x - endpoint.x);
+       }
+       else if (dimensionType == DTLinear)
        {
-               y1 = (pos.y > endp.y ? endp.y : pos.y);
-               y2 = (pos.y > endp.y ? pos.y : endp.y);
-               ortho = Vector(0, -1.0);
-               angle = PI;
+               angle = Vector(linePt1, linePt2).Angle();
+               ortho = Vector::Normal(linePt1, linePt2);
+               length = v.Magnitude();
        }
 
-       pos.y = endp.y = y1;
-       unit = Vector(pos, endp).Unit();
-       Point p1 = pos + (ortho * 10.0 * size);
-       Point p2 = endp + (ortho * 10.0 * size);
-       Point p3 = pos + (ortho * 16.0 * size);
-       Point p4 = endp + (ortho * 16.0 * size);
+       unit = Vector(linePt1, linePt2).Unit();
+//     angle = Vector(linePt1, linePt2).Angle();
+//     ortho = Vector::Normal(linePt1, linePt2);
+
+       Point p1 = linePt1 + (ortho * 10.0 * size);
+       Point p2 = linePt2 + (ortho * 10.0 * size);
+       Point p3 = linePt1 + (ortho * 16.0 * size);
+       Point p4 = linePt2 + (ortho * 16.0 * size);
        Point p5 = position + (ortho * 4.0 * size);
        Point p6 = endpoint + (ortho * 4.0 * size);
 #endif
@@ -124,7 +156,8 @@ I believe they are pixels.
        // Calculate whether or not the arrowheads are too crowded to put inside
        // the extension lines. 9.0 is the length of the arrowhead.
 //     double t = Geometry::ParameterOfLineAndPoint(position, endpoint, endpoint - (unit * 9.0 * size));
-       double t = Geometry::ParameterOfLineAndPoint(pos, endp, endp - (unit * 9.0 * size));
+//     double t = Geometry::ParameterOfLineAndPoint(pos, endp, endp - (unit * 9.0 * size));
+       double t = Geometry::ParameterOfLineAndPoint(linePt1, linePt2, linePt2 - (unit * 9.0 * size));
 //printf("Dimension::Draw(): t = %lf\n", t);
 
 // On the screen, it's acting like this is actually 58%...
@@ -149,19 +182,12 @@ I believe they are pixels.
 
        // Draw length of dimension line...
        painter->SetFont(QFont("Arial", 8.0 * Painter::zoom * size));
-#if 0
-       Vector v1((p1.x - p2.x) / 2.0, (p1.y - p2.y) / 2.0);
-       Point ctr = p2 + v1;
-#else
        Point ctr = p2 + (Vector(p2, p1) / 2.0);
-#endif
 
 #if 0
        QString dimText = QString("%1\"").arg(Vector(endpoint - position).Magnitude());
 #else
        QString dimText;
-//     double length = v.Magnitude();
-       double length = fabs(position.x - endpoint.x);
 
        if (length < 12.0)
                dimText = QString("%1\"").arg(length);
@@ -179,20 +205,19 @@ I believe they are pixels.
 
        painter->DrawAngledText(ctr, angle, dimText, size);
 
-// need to make another handle drawing function in Painter, instead of this
        if (hitLine)
        {
-               Point p9 = ((position + endpoint) / 2.0) + (orthogonal * 14.0)
-                + (unit * 7.0);
-
-               Point p10 = p9 + (orthogonal * -7.0);
-               Point p11 = p10 + (unit * 7.0);
-               Point p12 = p11 + (orthogonal * 7.0);
-               Point p13 = p12 + (unit * -7.0);
-               painter->DrawLine(p10, p11);
-               painter->DrawLine(p11, p12);
-               painter->DrawLine(p12, p13);
-               painter->DrawLine(p13, p10);
+               Point hp1 = (p1 + p2) / 2.0;
+
+               if (hitFlipSwitch)
+               {
+                       painter->SetPen(QPen(Qt::magenta, 1.0, Qt::SolidLine));
+                       painter->SetBrush(QBrush(QColor(Qt::magenta)));
+                       painter->DrawArrowHandle(hp1, ortho.Angle() + PI);
+                       painter->SetPen(QPen(Qt::magenta, 2.0, Qt::DotLine));
+               }
+
+               painter->DrawHandle(hp1);
        }
 }
 
@@ -236,13 +261,20 @@ I believe they are pixels.
                draggingHandle2 = true;
                return true;
        }
+       else if (hitFlipSwitch)
+       {
+               FlipSides();
+               hitFlipSwitch = hitLine = false;
+//             state = OSInactive;
+//             return true;
+       }
 
        state = OSInactive;
        return false;
 }
 
 
-/*virtual*/ void Dimension::PointerMoved(Vector point)
+/*virtual*/ bool Dimension::PointerMoved(Vector point)
 {
        if (selectionInProgress)
        {
@@ -253,13 +285,13 @@ I believe they are pixels.
                else
                        state = OSInactive;
 
-               return;
+               return false;
        }
 
        // Hit test tells us what we hit (if anything) through boolean variables. (It
        // also tells us whether or not the state changed. --not any more)
        SaveHitState();
-       HitTest(point);
+       bool hovered = HitTest(point);
        needUpdate = HitStateChanged();
 
        objectWasDragged = (/*draggingLine |*/ draggingHandle1 | draggingHandle2);
@@ -277,6 +309,8 @@ I believe they are pixels.
                oldPoint = point;
                needUpdate = true;
        }
+
+       return hovered;
 }
 
 
@@ -324,10 +358,16 @@ about keeping track of old states...
 
 /*virtual*/ bool Dimension::HitTest(Point point)
 {
-       Vector orthogonal = Vector::Normal(position, endpoint);
+//     Vector orthogonal = Vector::Normal(position, endpoint);
+       Vector orthogonal = Vector::Normal(linePt1, linePt2);
        // Get our line parallel to our points
+#if 0
        Point p1 = position + (orthogonal * 10.0 * size);
        Point p2 = endpoint + (orthogonal * 10.0 * size);
+#else
+       Point p1 = linePt1 + (orthogonal * 10.0 * size);
+       Point p2 = linePt2 + (orthogonal * 10.0 * size);
+#endif
        Point p3(p1, point);
 
        hitPoint1 = hitPoint2 = hitLine = hitFlipSwitch = false;
@@ -338,6 +378,7 @@ about keeping track of old states...
 //     double t = Geometry::ParameterOfLineAndPoint(position, endpoint, point);
        double t = Geometry::ParameterOfLineAndPoint(p1, p2, point);
        double distance;
+       Point hFSPoint = Point((p1 + p2) / 2.0, point);
 
        if (t < 0.0)
                distance = v1.Magnitude();
@@ -356,7 +397,10 @@ about keeping track of old states...
        else if ((distance * Painter::zoom) < 5.0)
                hitLine = true;
 
-       return (hitPoint1 || hitPoint2 || hitLine ? true : false);
+       if ((hFSPoint.Magnitude() * Painter::zoom) < 8.0)
+               hitFlipSwitch = true;
+
+       return (hitPoint1 || hitPoint2 || hitLine || hitFlipSwitch ? true : false);
 }
 
 
@@ -365,12 +409,13 @@ void Dimension::SaveHitState(void)
        oldHitPoint1 = hitPoint1;
        oldHitPoint2 = hitPoint2;
        oldHitLine = hitLine;
+       oldHitFlipSwitch = hitFlipSwitch;
 }
 
 
 bool Dimension::HitStateChanged(void)
 {
-       if ((hitPoint1 != oldHitPoint1) || (hitPoint2 != oldHitPoint2) || (hitLine != oldHitLine))
+       if ((hitPoint1 != oldHitPoint1) || (hitPoint2 != oldHitPoint2) || (hitLine != oldHitLine) || (hitFlipSwitch != oldHitFlipSwitch))
                return true;
 
        return false;