about summary refs log tree commit homepage
diff options
context:
space:
mode:
authorEric Wong <e@80x24.org>2015-05-19 08:17:38 +0000
committerEric Wong <e@80x24.org>2015-05-19 08:17:49 +0000
commitf6d8ba3c8de6c409c39fcaabe4e5c8fa86a7614a (patch)
tree6f3058871e2ad8cc7375e4025215a5b99cc32932
parent7ca5d0bfc714c254c374af9cbc2e024a8b439725 (diff)
downloaddtas-f6d8ba3c8de6c409c39fcaabe4e5c8fa86a7614a.tar.gz
It can be useful to display time as absolute seconds to
ease arithmetic for tracking files.
-rw-r--r--Documentation/dtas-console.txt1
-rwxr-xr-xbin/dtas-console16
2 files changed, 12 insertions, 5 deletions
diff --git a/Documentation/dtas-console.txt b/Documentation/dtas-console.txt
index 55b0bde..2547036 100644
--- a/Documentation/dtas-console.txt
+++ b/Documentation/dtas-console.txt
@@ -33,6 +33,7 @@ Key bindings are inspired partially by mplayer(1)
 - 'f'/'F' - decrease/increase ReplayGain fallback_gain value
 - 'r'/'R' - cycle forward/backwards through ReplayGain modes
 - 'q'/Ctrl-C - exit dtas-console
+- 'o' - toggle display between HH:MM:SS and absolute seconds
 
 # ENVIRONMENT
 
diff --git a/bin/dtas-console b/bin/dtas-console
index 9fa4d09..a98244b 100755
--- a/bin/dtas-console
+++ b/bin/dtas-console
@@ -14,6 +14,7 @@ rescue LoadError
   abort "please install the 'curses' RubyGem to use #$0"
 end
 
+tsec = false
 se = DTAS::Sigevent.new
 trap(:WINCH) { se.signal }
 w = DTAS::UNIXClient.new
@@ -30,8 +31,12 @@ else
   rg_mode_i = 0
 end
 
-def update_tfmt(prec)
-  prec == 0 ? '%H:%M:%S' : "%H:%M:%S.%#{prec}N"
+def update_tfmt(prec, tsec)
+  if tsec
+    prec == 0 ? '%_8s' : "%_8s.%#{prec}N"
+  else
+    prec == 0 ? '%H:%M:%S' : "%H:%M:%S.%#{prec}N"
+  end
 end
 trap(:INT) { exit(0) }
 trap(:TERM) { exit(0) }
@@ -40,7 +45,7 @@ trap(:TERM) { exit(0) }
 prec_nr = 1
 prec_step = (0..9).to_a
 prec_max = prec_step.size - 1
-tfmt = update_tfmt(prec_step[prec_nr])
+tfmt = update_tfmt(prec_step[prec_nr], tsec)
 events = []
 interval = 1.0 / 10 ** prec_nr
 
@@ -209,6 +214,7 @@ begin
         when "<" then c.req_ok("tl prev")
         when "!" then may_fail(c.req("cue prev"), events)
         when "@" then may_fail(c.req("cue next"), events)
+        when "o" then tfmt = update_tfmt(prec_step[prec_nr], tsec = !tsec)
         when " "
           c.req("play_pause")
         when "r" # cycle through replaygain modes
@@ -219,13 +225,13 @@ begin
         when "p" # lower precision of time display
           if prec_nr >= 1
             prec_nr -= 1
-            tfmt = update_tfmt(prec_step[prec_nr])
+            tfmt = update_tfmt(prec_step[prec_nr], tsec)
             interval = 1.0 / 10 ** prec_nr
           end
         when "P" # increase precision of time display
           if prec_nr < prec_max
             prec_nr += 1
-            tfmt = update_tfmt(prec_step[prec_nr])
+            tfmt = update_tfmt(prec_step[prec_nr], tsec)
             interval = 1.0 / 10 ** prec_nr
           end
         when 27 # TODO readline/edit mode?