banner stuff
This commit is contained in:
parent
13b173322b
commit
00997dff13
1 changed files with 49 additions and 11 deletions
60
src/Quox.idr
60
src/Quox.idr
|
@ -9,19 +9,57 @@ import public Quox.Pretty
|
||||||
|
|
||||||
import Data.Nat
|
import Data.Nat
|
||||||
import Data.Vect
|
import Data.Vect
|
||||||
|
import Control.ANSI
|
||||||
|
|
||||||
|
|
||||||
|
public export
|
||||||
|
record BannerOpts where
|
||||||
|
constructor MakeBannerOpts
|
||||||
|
unicode, color : Bool
|
||||||
|
|
||||||
|
public export
|
||||||
|
defBannerOpts : BannerOpts
|
||||||
|
defBannerOpts = MakeBannerOpts {unicode = True, color = True}
|
||||||
|
|
||||||
|
private
|
||||||
|
text : BannerOpts -> List String
|
||||||
|
text _ =
|
||||||
|
["",
|
||||||
|
#" ___ ___ _____ __ __"#,
|
||||||
|
#"/ _ `/ // / _ \\ \ /"#,
|
||||||
|
#"\_, /\_,_/\___/_\_\"#,
|
||||||
|
#" /_/"#,
|
||||||
|
""]
|
||||||
|
|
||||||
|
private
|
||||||
|
qtuwu : BannerOpts -> List String
|
||||||
|
qtuwu opts =
|
||||||
|
if opts.unicode then
|
||||||
|
[#" ___,-´⎠ "#,
|
||||||
|
#"(·`──´ ◡ -´⎠"#,
|
||||||
|
#" \⋀/───´⎞/`──´ "#,
|
||||||
|
#" ⋃────,-₎ ⎞ "#,
|
||||||
|
#" (‾‾) ⎟ "#,
|
||||||
|
#" (‾‾‾) ⎟ "#]
|
||||||
|
else
|
||||||
|
[#" ___,-´/ "#,
|
||||||
|
#"(.`--´ u -´/"#,
|
||||||
|
#" \/\/--´|/`--´ "#,
|
||||||
|
#" U----,-, \ "#,
|
||||||
|
#" (--) | "#,
|
||||||
|
#" (---) | "#]
|
||||||
|
|
||||||
|
private
|
||||||
|
join1 : BannerOpts -> String -> String -> String
|
||||||
|
join1 opts l r =
|
||||||
|
if opts.color then
|
||||||
|
" " <+> show (colored Green l) <+> " " <+> show (colored Magenta r)
|
||||||
|
else
|
||||||
|
" " <+> l <+> " " <+> r
|
||||||
|
|
||||||
export
|
export
|
||||||
banner : String
|
banner : BannerOpts -> String
|
||||||
banner = #"""
|
banner opts = unlines $ zipWith (join1 opts) (qtuwu opts) (text opts)
|
||||||
_ ___,-´/
|
|
||||||
(.`--´ ∪ -´/ ___ ___ _____ __ __
|
|
||||||
\/\/--´`´`--´ / _ `/ // / _ \\ \ /
|
|
||||||
U ---, / \_, /\_,_/\___/_\_\
|
|
||||||
/--/ | /_/
|
|
||||||
/--/ |
|
|
||||||
|
|
||||||
"""#
|
|
||||||
|
|
||||||
export
|
export
|
||||||
tm : Term 1 2
|
tm : Term 1 2
|
||||||
|
@ -32,6 +70,6 @@ tm =
|
||||||
|
|
||||||
main : IO Unit
|
main : IO Unit
|
||||||
main = do
|
main = do
|
||||||
putStrLn banner
|
putStrLn $ banner defBannerOpts
|
||||||
prettyTerm tm
|
prettyTerm tm
|
||||||
prettyTerm $ pushSubstsT tm
|
prettyTerm $ pushSubstsT tm
|
||||||
|
|
Loading…
Reference in a new issue