Merge pull request 'Add support for touring a range where the start index is bigger than the end index' (#25) from rmgr/AV-98:reverse-range into master

Reviewed-on: #25
This commit is contained in:
Solderpunk 2023-11-12 10:33:10 +00:00
commit b9d0633f38
1 changed files with 9 additions and 3 deletions

12
av98.py
View File

@ -1326,9 +1326,15 @@ Current tour can be listed with `tour ls` and scrubbed with `tour clear`."""
self.waypoints.append(gi)
elif len(pair) == 2:
# Two endpoints for a range of indices
for n in range(int(pair[0]), int(pair[1]) + 1):
gi = self.lookup[n-1]
self.waypoints.append(gi)
if int(pair[0]) < int(pair[1]):
for n in range(int(pair[0]), int(pair[1]) + 1):
gi = self.lookup[n-1]
self.waypoints.append(gi)
else:
for n in range(int(pair[0]), int(pair[1]) - 1, -1):
gi = self.lookup[n-1]
self.waypoints.append(gi)
else:
# Syntax error
print("Invalid use of range syntax %s, skipping" % index)