draw box around title
This commit is contained in:
parent
abad72ce01
commit
9c2e2291c8
|
@ -33,8 +33,7 @@ import Mtlstats.Types
|
||||||
titleScreenC :: Controller
|
titleScreenC :: Controller
|
||||||
titleScreenC = Controller
|
titleScreenC = Controller
|
||||||
{ drawController = const $ do
|
{ drawController = const $ do
|
||||||
C.drawString titleText
|
C.drawString $ unlines $ titleText ++
|
||||||
C.drawString $ unlines
|
|
||||||
[ ""
|
[ ""
|
||||||
, "Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe"
|
, "Copyright (C) 1984, 1985, 2019, 2020 Rhéal Lamothe"
|
||||||
, "<rheal.lamothe@gmail.com>"
|
, "<rheal.lamothe@gmail.com>"
|
||||||
|
@ -48,10 +47,24 @@ titleScreenC = Controller
|
||||||
_ -> return True
|
_ -> return True
|
||||||
}
|
}
|
||||||
|
|
||||||
titleText :: String
|
titleText :: [String]
|
||||||
titleText = map blockify $ unlines $ foldl joinBlocks (repeat "")
|
titleText = box $ map (map blockify) $ foldl joinBlocks (repeat "")
|
||||||
[chM, chT, chL, chS, chT, chA, chT, chS]
|
[chM, chT, chL, chS, chT, chA, chT, chS]
|
||||||
|
|
||||||
|
box :: [String] -> [String]
|
||||||
|
box strs
|
||||||
|
= [[tl] ++ replicate width horiz ++ [tr]]
|
||||||
|
++ map (\str -> [vert] ++ str ++ [vert]) strs
|
||||||
|
++ [[bl] ++ replicate width horiz ++ [br]]
|
||||||
|
where
|
||||||
|
width = length $ head strs
|
||||||
|
tl = chr 0x2554
|
||||||
|
tr = chr 0x2557
|
||||||
|
bl = chr 0x255a
|
||||||
|
br = chr 0x255d
|
||||||
|
horiz = chr 0x2550
|
||||||
|
vert = chr 0x2551
|
||||||
|
|
||||||
blockify :: Char -> Char
|
blockify :: Char -> Char
|
||||||
blockify = \case
|
blockify = \case
|
||||||
'#' -> chr 0x2588
|
'#' -> chr 0x2588
|
||||||
|
|
Loading…
Reference in New Issue
Block a user