attempt to fix the SafeDistance algo

This commit is contained in:
Philip Puk 2022-03-26 10:03:16 +00:00
parent 7d41b95c2c
commit c61434be12

View file

@ -644,7 +644,6 @@ let convertVerticesToASegs connId (isLeftToRight: bool) routetype rotation (yref
ManualRoute = false ManualRoute = false
}) })
|> List.map aSegToRISeg |> List.map aSegToRISeg
|> List.map ppRISeg
|> List.map ( |> List.map (
fun risegs-> fun risegs->
{ {
@ -658,7 +657,6 @@ let convertVerticesToASegs connId (isLeftToRight: bool) routetype rotation (yref
Draggable = risegs.Draggable; Draggable = risegs.Draggable;
ManualRoute = risegs.ManualRoute ManualRoute = risegs.ManualRoute
}) })
|> List.map ppRISeg
((dummySeg,startPos),risegs') ((dummySeg,startPos),risegs')
||> List.scan (fun start_resSeg currSeg-> ||> List.scan (fun start_resSeg currSeg->
@ -1331,6 +1329,13 @@ let getSafeDistanceForMove
(lastSegment: ASeg) (lastSegment: ASeg)
(distance: float) = (distance: float) =
let controlSegOri =
match firstSegment.Dir,lastSegment.Dir,testSegment.Dir with
| Horizontal, Horizontal, _ ->Vertical
| Vertical, Vertical, _ -> Horizontal
| _,_,Horizontal -> Horizontal
| _,_,Vertical -> Vertical
// Stick length can be shrunk for segments which aren't at the end of their // Stick length can be shrunk for segments which aren't at the end of their
// wires -- so we find a value for that shrink factor here // wires -- so we find a value for that shrink factor here
let shrink = let shrink =
@ -1340,14 +1345,23 @@ let getSafeDistanceForMove
// With that shrink factor, we find the minimum and maximum distance from // With that shrink factor, we find the minimum and maximum distance from
// the segment to the wire's start/end // the segment to the wire's start/end
let minimumDistance = let minimumDistanceX =
firstSegment.Start.X + firstSegment.Start.X +
Wire.stickLength * shrink - Wire.stickLength * shrink -
abs testSegment.End.X testSegment.End.X
let maximumDistance = let maximumDistanceX =
lastSegment.End.X - lastSegment.End.X -
Wire.stickLength * shrink - Wire.stickLength * shrink -
abs testSegment.Start.X testSegment.Start.X
let minimumDistanceY =
firstSegment.Start.Y +
Wire.stickLength * shrink -
testSegment.End.Y
let maximumDistanceY =
lastSegment.End.Y -
Wire.stickLength * shrink -
testSegment.Start.Y
// These helpers make the match case a little less verbose // These helpers make the match case a little less verbose
let positive = distance > 0.0 let positive = distance > 0.0
@ -1356,20 +1370,35 @@ let getSafeDistanceForMove
// Check whether a given end of the test segment is vertically close to the // Check whether a given end of the test segment is vertically close to the
// first/last segment in the wire // first/last segment in the wire
let yJoined (segment: ASeg) (point: XYPos): bool = let yJoined (segment: ASeg) (point: XYPos): bool =
abs (abs segment.Start.Y - abs point.Y) < 0.0001 abs (segment.Start.Y - point.Y) > 0.0001
let xJoined (segment: ASeg) (point: XYPos): bool =
abs (segment.Start.X - point.X) > 0.0001
printfn $"controlSegOri:{controlSegOri},Index:{testSegment.Index};minDistX:{minimumDistanceX};maxDistX:{maximumDistanceX}"
printfn $"Seg0.Start:{firstSegment.Start};Seg0.End:{firstSegment.End};Seg6.Start:{lastSegment.Start};Seg6.End:{lastSegment.End}"
// I haven't spent the time to understand this match case, but it works. // I haven't spent the time to understand this match case, but it works.
// I assume finds how much a wire section _can_ move given its position in // I assume finds how much a wire section _can_ move given its position in
// that wire. // that wire.
match controlSegOri with
| Vertical ->
match testSegment.Index with match testSegment.Index with
| _ when testSegment.Dir = Horizontal -> distance | _ when testSegment.Dir = Horizontal -> distance
| 3 when negative && yJoined firstSegment testSegment.Start -> distance | 3 when negative && yJoined firstSegment testSegment.Start -> distance
| 3 when positive && yJoined lastSegment testSegment.End -> distance | 3 when positive && yJoined lastSegment testSegment.End -> distance
| 1 | 1 | 2 -> max minimumDistanceX distance
| 2 -> max minimumDistance distance | 4 | 5 -> min maximumDistanceX distance
| 4 | 3 -> distance |> max minimumDistanceX |> min maximumDistanceX
| 5 -> min maximumDistance distance | _ -> distance
| 3 -> distance |> max minimumDistance |> min maximumDistance | Horizontal ->
match testSegment.Index with
| _ when testSegment.Dir = Horizontal -> distance
| 3 when negative && xJoined firstSegment testSegment.Start -> distance
| 3 when positive && xJoined lastSegment testSegment.End -> distance
| 1 | 2 -> max minimumDistanceY distance
| 4 | 5 -> min maximumDistanceY distance
| 3 -> distance |> max minimumDistanceY |> min maximumDistanceY
| _ -> distance | _ -> distance
/// Remove pairs of adjacent segments which are aligned but not of the same /// Remove pairs of adjacent segments which are aligned but not of the same
@ -1453,13 +1482,15 @@ let moveSegment (segment: ASeg) (distance:float) (model:Model) =
let startSegment, endSegment = wire.Segments[0], wire.Segments[6] let startSegment, endSegment = wire.Segments[0], wire.Segments[6]
getSafeDistanceForMove segment startSegment endSegment distance getSafeDistanceForMove segment startSegment endSegment distance
printfn $"distance:{distance};moveDistance:{moveDistance}"
// Get new values for the current segment, the end of the last one, and // Get new values for the current segment, the end of the last one, and
// the start of the next one // the start of the next one
let newLastEnd, newCurrentStart, newCurrentEnd, newNextStart = let newLastEnd, newCurrentStart, newCurrentEnd, newNextStart =
// Sets the X/Y value of a point along a given axis // Sets the X/Y value of a point along a given axis
let setValue (point: XYPos) (value: float) (axis: Orientation) = let setValue (point: XYPos) (value: float) (axis: Orientation) =
let newValue = - (abs value + moveDistance) let newValue = value + moveDistance
match axis with match axis with
| Horizontal -> {point with X = newValue} | Horizontal -> {point with X = newValue}
| Vertical -> {point with Y = newValue} | Vertical -> {point with Y = newValue}
@ -1483,6 +1514,7 @@ let moveSegment (segment: ASeg) (distance:float) (model:Model) =
let newCurrentSegment = let newCurrentSegment =
{ {
segment with segment with
ManualRoute = true
Start = newCurrentStart Start = newCurrentStart
End = newCurrentEnd End = newCurrentEnd
} }
@ -1730,12 +1762,8 @@ let partialAutoRoute
// Get the index of the last autorouted segment in the list // Get the index of the last autorouted segment in the list
let lastAutoroutedIndex = let lastAutoroutedIndex =
let isNegative (position: XYPos): bool =
position.X < 0.0 || position.Y < 0.0
let segmentAutorouted (segment: ASeg): bool = let segmentAutorouted (segment: ASeg): bool =
not (isNegative segment.Start || isNegative segment.End) segment.ManualRoute
segments segments
|> List.takeWhile segmentAutorouted |> List.takeWhile segmentAutorouted
@ -1817,19 +1845,6 @@ let partialAutoRoute
|> Option.bind checkTopology |> Option.bind checkTopology
|> Option.bind preEndScale |> Option.bind preEndScale
/// Returns the new positions keeping manual coordinates negative, and auto
/// coordinates positive
let negXYPos (position: XYPos) (difference: XYPos): XYPos =
let newPosition = Symbol.posAdd (absXYPos position) difference
if position.X < 0.0 || position.Y < 0.0 then
{
X = - newPosition.X
Y = - newPosition.Y
}
else
newPosition
/// Moves a wire by a specified amount by adding a XYPos to each start and end /// Moves a wire by a specified amount by adding a XYPos to each start and end
/// point of each segment /// point of each segment
let moveWire (wire : Wire) (difference : XYPos): Wire = let moveWire (wire : Wire) (difference : XYPos): Wire =
@ -1837,8 +1852,9 @@ let moveWire (wire : Wire) (difference : XYPos): Wire =
let transformer (segment: ASeg) : ASeg = let transformer (segment: ASeg) : ASeg =
{ {
segment with segment with
Start = negXYPos segment.Start difference ManualRoute = segment.ManualRoute
End = negXYPos segment.End difference Start = Symbol.posAdd segment.Start difference
End = Symbol.posAdd segment.End difference
} }
{ {