(defvar emus-current-volume 100
"The current playback volume.")
+(defvar emus-current-progress ""
+ "String describing the progress through the current track.")
+
;;; mpg123 process
;;
(make-process :name "emus-process"
:command `(,emus-mpg123-program "-R"))))
(set-process-query-on-exit-flag proc nil)
- (process-send-string proc "silence\n")
+ ;; (process-send-string proc "silence\n")
proc))))
(defun emus--send-cmd-raw (cmd &rest args)
(defun emus--resume-cp ()
"Resume continuous playback."
- (setq emus-continuous-playback t)
- (set-process-filter (emus-get-process)
- (lambda (_proc string)
- (and emus-continuous-playback
- (eq emus-state 'playing)
- (string-suffix-p "@P 0\n" string)
- (emus-play-next)))))
+ (setq emus-continuous-playback t))
+
+(defun emus--timestamp (seconds-total)
+ "Produce a timestamp string representation of SECONDS-TOTAL."
+ (let* ((seconds (truncate (mod seconds-total 60)))
+ (minutes (truncate (/ seconds-total 60))))
+ (format "%02d:%02d" minutes seconds)))
(defun emus-play-track (track)
"Set TRACK as current and start playing."
(emus-send-cmd "l" (emus-track-file track))
(setq emus-state 'playing)
(setq emus-current-track track)
+ (setq emus-current-progress "")
+ (set-process-filter
+ (emus-get-process)
+ (lambda (_proc string)
+ (pcase string
+ ((and "@P 0\n"
+ (guard emus-continuous-playback)
+ (guard (eq emus-state 'playing)))
+ (emus-play-next))
+ ((rx (: string-start
+ "@F "
+ (+ digit)
+ " "
+ (+ digit)
+ " "
+ (let left-str (+ (not " ")))
+ " "
+ (let right-str (+ any))))
+ (let* ((left (string-to-number left-str))
+ (right (string-to-number right-str))
+ (total (+ left right)))
+ (setq emus-current-progress
+ (format " %s/%s"
+ (emus--timestamp left)
+ (emus--timestamp total))))))))
(emus--update-track old-track)
(emus--update-track track)
(emus--resume-cp)
(concat "Emus: Volume %d%%"
(pcase emus-state
('stopped " [Stopped]")
- ('paused " [Paused]")
- ('playing " [Playing]")
+ ('paused (format " [Paused%s]" emus-current-progress))
+ ('playing (format " [Playing%s]" emus-current-progress))
(_ ""))
" %s")
emus-current-volume