X-Git-Url: https://njoseph.me/gitweb/nimcoon.git/blobdiff_plain/956837326555259ef33d1bab42a3981b4082b20a..4918a147760087de4d1d4dc5e8d5a26cc573f91a:/src/nimcoon.nim diff --git a/src/nimcoon.nim b/src/nimcoon.nim index 56e6867..81db732 100644 --- a/src/nimcoon.nim +++ b/src/nimcoon.nim @@ -57,10 +57,13 @@ proc main() = let searchResults = extractTitlesAndUrls(getYoutubePage(searchQuery)) - proc getUserInput(): string = + # Currently available range to choose from depending on pagination + var selectionRange: SelectionRange = (0, limit-1) # Nim decided to deviate from Python ranges here + + proc offerSelection(): string = if options["feelingLucky"]: "0" else: - presentVideoOptions(searchResults[..(limit-1)]) + presentVideoOptions(searchResults[selectionRange.begin .. selectionRange.until]) stdout.styledWrite(fgYellow, "Choose video number: ") readLine(stdin) @@ -71,26 +74,34 @@ proc main() = if options["fullScreen"]: args.add("--fullscreen") return args - proc handleUserInput(number: int) = + proc handleUserInput(selection: int) = if options["download"]: if options["musicOnly"]: - download(buildMusicDownloadArgs(searchResults[number].url), searchResults[number].title) + download(buildMusicDownloadArgs(searchResults[selection].url), searchResults[selection].title) else: - download(buildVideoDownloadArgs(searchResults[number].url), searchResults[number].title) + download(buildVideoDownloadArgs(searchResults[selection].url), searchResults[selection].title) else: - play(player, buildPlayerArgs(number), searchResults[number].title) + play(player, buildPlayerArgs(selection), searchResults[selection].title) while(true): - let userInput = getUserInput() + let userInput = offerSelection() - if userInput == "all": - for number in 0..(len(searchResults)): + case userInput + of "all": + for selection in selectionRange.begin .. selectionRange.until: # TODO `spawn` this? - handleUserInput(number) - - if userInput == "q": - break + handleUserInput(selection) + of "n": + if selectionRange.until + 1 < len(searchResults): + selectionRange = (selectionRange.until + 1, min(len(searchResults) - 1, selectionRange.until + limit)) + continue + of "p": + if selectionRange.begin > 0: + selectionRange = (selectionRange.begin - limit, selectionRange.until - limit) + continue + of "q": + quit(0) # Play the video using the preferred/available media player let videoNumber = parseInt(userInput)