Skip to content

Commit

Permalink
Merge pull request #3500 from Courseplay/headland-turn-fix
Browse files Browse the repository at this point in the history
fix: multitool headland turn
  • Loading branch information
Tensuko authored Oct 5, 2024
2 parents 0f6c454 + 96c6ce0 commit 02ea18e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
13 changes: 9 additions & 4 deletions scripts/Course.lua
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,8 @@ function Course:enrichWaypointData(startIx)
end
for i = startIx or 1, #self.waypoints - 1 do
self.waypoints[i].dToHere = self.length
local cx, _, cz = self:getWaypointPosition(i)
local nx, _, nz = self:getWaypointPosition(i + 1)
local cx, _, cz = self.waypoints[i]:getPosition()
local nx, _, nz = self.waypoints[i + 1]:getPosition()
local dToNext = MathUtil.getPointPointDistance(cx, cz, nx, nz)
self.waypoints[i].dToNext = dToNext
self.length = self.length + dToNext
Expand Down Expand Up @@ -356,6 +356,10 @@ function Course:isTurnStartAtIx(ix)
(self.waypoints[ix + 1] and self.waypoints[ix + 1]:isHeadlandTurn())
end

function Course:isHeadlandTurnAtIx(ix)
return ix <= #self.waypoints and self.waypoints[ix]:isHeadlandTurn()
end

function Course:isTurnEndAtIx(ix)
return (self.waypoints[ix]:isRowStart() and not self:shouldUsePathfinderToThisWaypoint(ix)) or
self.waypoints[ix]:isHeadlandTurn()
Expand Down Expand Up @@ -497,10 +501,11 @@ end
---@param ix number waypoint index
---@return number, number, number x, y, z
function Course:getWaypointPosition(ix)
if self:isTurnStartAtIx(ix) then
if self:isTurnStartAtIx(ix) and not self:isHeadlandTurnAtIx(ix) then
-- turn start waypoints point to the turn end wp, for example at the row end they point 90 degrees to the side
-- from the row direction. This is a problem when there's an offset so use the direction of the previous wp
-- when calculating the offset for a turn start wp.
-- when calculating the offset for a turn start wp, except for headlands turns where we actually drive the
-- section between turn start and turn end.
return self:getOffsetPositionWithOtherWaypointDirection(ix, ix - 1)
else
return self.waypoints[ix]:getOffsetPosition(self.offsetX + self.temporaryOffsetX:get(), self.offsetZ + self.temporaryOffsetZ:get())
Expand Down
1 change: 1 addition & 0 deletions scripts/ai/turns/TurnContext.lua
Original file line number Diff line number Diff line change
Expand Up @@ -243,6 +243,7 @@ function TurnContext:isHeadlandCorner()
-- both the turn start and end waypoints
-- a turn is a headland turn only when there is minimal direction change at the turn start and the total direction
-- change is less than 150 degrees
-- TODO: consider using course:isHeadlandTurnAtIx() instead as with the current generator, we know the turn type
return math.abs(CpMathUtil.getDeltaAngle(math.rad(self.turnStartWp.angle), math.rad(self.beforeTurnStartWp.angle))) < (math.pi / 6) and
math.abs( self.directionChangeDeg ) < 150
end
Expand Down

0 comments on commit 02ea18e

Please sign in to comment.