261 lines
8.2 KiB
Julia
261 lines
8.2 KiB
Julia
# https://github.com/JuliaPlots/UnicodePlots.jl
|
|
|
|
# don't warn on unsupported... there's just too many warnings!!
|
|
warn_on_unsupported_args(::UnicodePlotsBackend, plotattributes) = nothing
|
|
|
|
# ------------------------------------------------------------------------------------------
|
|
const _canvas_map = (
|
|
ascii = UnicodePlots.AsciiCanvas,
|
|
block = UnicodePlots.BlockCanvas,
|
|
braille = UnicodePlots.BrailleCanvas,
|
|
density = UnicodePlots.DensityCanvas,
|
|
dot = UnicodePlots.DotCanvas,
|
|
heatmap = UnicodePlots.HeatmapCanvas,
|
|
lookup = UnicodePlots.LookupCanvas,
|
|
)
|
|
|
|
# do all the magic here... build it all at once,
|
|
# since we need to know about all the series at the very beginning
|
|
function unicodeplots_rebuild(plt::Plot{UnicodePlotsBackend})
|
|
plt.o = UnicodePlots.Plot[]
|
|
|
|
for sp in plt.subplots
|
|
xaxis = sp[:xaxis]
|
|
yaxis = sp[:yaxis]
|
|
xlim = collect(axis_limits(sp, :x))
|
|
ylim = collect(axis_limits(sp, :y))
|
|
|
|
# we set x/y to have a single point,
|
|
# since we need to create the plot with some data.
|
|
# since this point is at the bottom left corner of the plot,
|
|
# it shouldn't actually be shown
|
|
x = Float64[xlim[1]]
|
|
y = Float64[ylim[1]]
|
|
|
|
# create a plot window with xlim/ylim set,
|
|
# but the X/Y vectors are outside the bounds
|
|
canvas_type = if (ct = _canvas_type[]) == :auto
|
|
isijulia() ? :ascii : :braille
|
|
else
|
|
ct
|
|
end
|
|
|
|
border_type = if (bt = _border_type[]) == :auto
|
|
isijulia() ? :ascii : :solid
|
|
else
|
|
bt
|
|
end
|
|
|
|
kw = (
|
|
compact = true,
|
|
title = texmath2unicode(sp[:title]),
|
|
xlabel = texmath2unicode(xaxis[:guide]),
|
|
ylabel = texmath2unicode(yaxis[:guide]),
|
|
xscale = xaxis[:scale],
|
|
yscale = yaxis[:scale],
|
|
border = border_type,
|
|
xlim = xlim,
|
|
ylim = ylim,
|
|
)
|
|
|
|
o = UnicodePlots.Plot(x, y, _canvas_map[canvas_type]; kw...)
|
|
for series in series_list(sp)
|
|
o = addUnicodeSeries!(sp, o, kw, series, sp[:legend_position] != :none)
|
|
end
|
|
|
|
for ann in sp[:annotations]
|
|
x, y, val = locate_annotation(sp, ann...)
|
|
o = UnicodePlots.annotate!(
|
|
o,
|
|
x,
|
|
y,
|
|
texmath2unicode(val.str);
|
|
color = up_color(val.font.color),
|
|
halign = val.font.halign,
|
|
valign = val.font.valign,
|
|
)
|
|
end
|
|
|
|
push!(plt.o, o) # save the object
|
|
end
|
|
end
|
|
|
|
up_color(col::UnicodePlots.UserColorType) = col
|
|
up_color(col::RGBA) =
|
|
(c = convert(ARGB32, col); map(Int, (red(c).i, green(c).i, blue(c).i)))
|
|
up_color(col) = :auto
|
|
|
|
# add a single series
|
|
function addUnicodeSeries!(
|
|
sp::Subplot{UnicodePlotsBackend},
|
|
up::UnicodePlots.Plot,
|
|
kw,
|
|
series,
|
|
addlegend::Bool,
|
|
)
|
|
st = series[:seriestype]
|
|
|
|
# get the series data and label
|
|
x, y = if st == :straightline
|
|
straightline_data(series)
|
|
elseif st == :shape
|
|
shape_data(series)
|
|
else
|
|
float(series[:x]), float(series[:y])
|
|
end
|
|
|
|
# special handling (src/interface)
|
|
if st == :histogram2d
|
|
kw[:xlim][:] .= kw[:ylim][:] .= 0
|
|
return UnicodePlots.densityplot(x, y; kw...)
|
|
elseif st == :heatmap
|
|
rng = range(0, 1, length = length(UnicodePlots.COLOR_MAP_DATA[:viridis]))
|
|
cmap = [(red(c), green(c), blue(c)) for c in get(get_colorgradient(series), rng)]
|
|
return UnicodePlots.heatmap(
|
|
series[:z].surf;
|
|
zlabel = sp[:colorbar_title],
|
|
colormap = cmap,
|
|
kw...,
|
|
)
|
|
elseif st == :spy
|
|
return UnicodePlots.spy(series[:z].surf; kw...)
|
|
end
|
|
|
|
series_kw = (;)
|
|
|
|
# now use the ! functions to add to the plot
|
|
if st in (:path, :straightline, :shape)
|
|
func = UnicodePlots.lineplot!
|
|
elseif st == :scatter || series[:markershape] != :none
|
|
func = UnicodePlots.scatterplot!
|
|
series_kw = (; marker = series[:markershape])
|
|
else
|
|
error("Series type $st not supported by UnicodePlots")
|
|
end
|
|
|
|
label = addlegend ? series[:label] : ""
|
|
|
|
for (n, segment) in enumerate(series_segments(series, st; check = true))
|
|
i, rng = segment.attr_index, segment.range
|
|
lc = get_linecolor(series, i)
|
|
up = func(
|
|
up,
|
|
x[rng],
|
|
y[rng];
|
|
color = up_color(lc),
|
|
name = n == 1 ? label : "",
|
|
series_kw...,
|
|
)
|
|
end
|
|
|
|
for (xi, yi, str, fnt) in EachAnn(series[:series_annotations], x, y)
|
|
up = UnicodePlots.annotate!(
|
|
up,
|
|
xi,
|
|
yi,
|
|
str;
|
|
color = up_color(fnt.color),
|
|
halign = fnt.halign,
|
|
valign = fnt.valign,
|
|
)
|
|
end
|
|
|
|
return up
|
|
end
|
|
|
|
# ------------------------------------------------------------------------------------------
|
|
|
|
# since this is such a hack, it's only callable using `png`...
|
|
# should error during normal `show`
|
|
function png(plt::Plot{UnicodePlotsBackend}, fn::AbstractString)
|
|
fn = addExtension(fn, "png")
|
|
|
|
@static if Sys.isapple()
|
|
# make some whitespace and show the plot
|
|
println("\n\n\n\n\n\n")
|
|
gui(plt)
|
|
sleep(0.5)
|
|
# use osx screen capture when my terminal is maximized
|
|
# and cursor starts at the bottom (I know, right?)
|
|
run(`screencapture -R50,600,700,420 $fn`)
|
|
return
|
|
elseif Sys.islinux()
|
|
run(`clear`)
|
|
gui(plt)
|
|
run(`import -window $(ENV["WINDOWID"]) $fn`)
|
|
return
|
|
end
|
|
|
|
error(
|
|
"Can only savepng on MacOS or Linux with UnicodePlots " *
|
|
"(though even then I wouldn't do it)",
|
|
)
|
|
end
|
|
|
|
# ------------------------------------------------------------------------------------------
|
|
Base.show(plt::Plot{UnicodePlotsBackend}) = show(stdout, plt)
|
|
|
|
function Base.show(io::IO, plt::Plot{UnicodePlotsBackend})
|
|
unicodeplots_rebuild(plt)
|
|
nr, nc = size(plt.layout)
|
|
if nr == 1 && nc == 1 # fast path
|
|
n = length(plt.o)
|
|
for (i, p) in enumerate(plt.o)
|
|
show(io, p)
|
|
i < n && println(io)
|
|
end
|
|
else
|
|
lines_colored = Array{Union{Nothing,Vector{String}}}(undef, nr, nc)
|
|
lines_uncolored = similar(lines_colored)
|
|
l_max = zeros(Int, nr)
|
|
w_max = zeros(Int, nc)
|
|
buf = IOContext(PipeBuffer(), :color => Base.get_have_color())
|
|
re_col = r"\e\[[0-9;]*[a-zA-Z]"
|
|
sps = 0
|
|
for r in 1:nr
|
|
lmax = 0
|
|
for c in 1:nc
|
|
l = plt.layout[r, c]
|
|
if l isa GridLayout && size(l) != (1, 1)
|
|
@error "UnicodePlots: complex nested layout is currently unsupported !"
|
|
else
|
|
if get(l.attr, :blank, false)
|
|
lines_colored[r, c] = lines_uncolored[r, c] = nothing
|
|
else
|
|
sp = plt.o[sps += 1]
|
|
show(buf, sp)
|
|
colored = read(buf, String)
|
|
uncolored = replace(colored, re_col => "")
|
|
lines_colored[r, c] = lc = split(colored, "\n")
|
|
lines_uncolored[r, c] = lu = split(uncolored, "\n")
|
|
lmax = max(length(lc), lmax)
|
|
w_max[c] = max(maximum(length.(lu)), w_max[c])
|
|
end
|
|
end
|
|
end
|
|
l_max[r] = lmax
|
|
end
|
|
empty = String[' '^w for w in w_max]
|
|
for r in 1:nr
|
|
for n in 1:l_max[r]
|
|
for c in 1:nc
|
|
pre = c == 1 ? '\0' : ' '
|
|
lc = lines_colored[r, c]
|
|
if lc === nothing || length(lc) < n
|
|
print(io, pre, empty[c])
|
|
else
|
|
lu = lines_uncolored[r, c]
|
|
print(io, pre, lc[n], ' '^(w_max[c] - length(lu[n])))
|
|
end
|
|
end
|
|
n < l_max[r] && println(io)
|
|
end
|
|
r < nr && println(io)
|
|
end
|
|
end
|
|
nothing
|
|
end
|
|
|
|
# we only support MIME"text/plain", hence display(...) falls back to plain-text on stdout
|
|
_display(plt::Plot{UnicodePlotsBackend}) = (show(stdout, plt); println(stdout))
|