1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-26 00:42:57 +00:00

stats: print bold text in terminals

This simply prints ASCII codes to display any text marked as bold in the
terminal. Supported by every sane terminal since 1986. For those insane,
there's a check. The check has been copied from the ansicolors.lua
script floating around and it checks if the directory path uses "\"
instead of "/", and in case it does, it checks whether ANSICON env
variable has been set (which is used to indicate the Windows terminal
supports ACII escape sequences).
This commit is contained in:
Rostislav Pehlivanov 2015-07-21 20:53:23 +01:00 committed by wm4
parent 89c854dc09
commit 918774b5aa

View File

@ -45,8 +45,8 @@ local o = {
no_ass_nl = "\n", no_ass_nl = "\n",
no_ass_prop_indent = "\t", no_ass_prop_indent = "\t",
no_ass_kv_sep = " ", no_ass_kv_sep = " ",
no_ass_b1 = "", no_ass_b1 = "\027[1m",
no_ass_b0 = "", no_ass_b0 = "\027[0m",
} }
options.read_options(o) options.read_options(o)
@ -64,8 +64,13 @@ function main()
o.nl = o.no_ass_nl o.nl = o.no_ass_nl
o.prop_indent = o.no_ass_prop_indent o.prop_indent = o.no_ass_prop_indent
o.kv_sep = o.no_ass_kv_sep o.kv_sep = o.no_ass_kv_sep
o.b1 = o.no_ass_b1 if not has_ansi() then
o.b0 = o.no_ass_b0 o.b1 = ""
o.b0 = ""
else
o.b1 = o.no_ass_b1
o.b0 = o.no_ass_b0
end
end end
add_header(stats) add_header(stats)
@ -242,6 +247,13 @@ function has_audio()
return r and r ~= "no" and r ~= "" return r and r ~= "no" and r ~= ""
end end
function has_ansi()
local is_windows = type(package) == 'table' and type(package.config) == 'string' and package.config:sub(1,1) == '\\'
if is_windows then
return os.getenv("ANSICON")
end
return true
end
function b(t) function b(t)
return o.b1 .. t .. o.b0 return o.b1 .. t .. o.b0