parabox/app/Main.hs

802 lines
21 KiB
Haskell
Raw Normal View History

2022-11-30 13:38:12 -08:00
module Main where
import Data.Map qualified as Map
import Graphics.Vty
2022-12-02 21:33:44 -08:00
import Control.Exception ( bracket )
2022-11-30 13:38:12 -08:00
import Data.List.NonEmpty (NonEmpty(..))
import Data.List.NonEmpty qualified as NonEmpty
2022-12-02 20:53:45 -08:00
import Data.Set qualified as Set
2022-12-02 21:33:44 -08:00
import System.Environment ( getArgs )
2022-11-30 13:38:12 -08:00
2022-12-02 10:54:31 -08:00
import Model
2022-12-02 21:33:44 -08:00
import Rendering ( render )
2022-11-30 16:44:30 -08:00
2022-12-03 11:50:06 -08:00
data Game = Game {
gameWorlds :: NonEmpty World,
gameFlat :: Bool
}
2022-11-30 13:38:12 -08:00
main :: IO ()
main =
2022-12-02 20:53:45 -08:00
do args <- getArgs
2022-12-02 20:56:58 -08:00
case args of
x:_ | Just w <- Map.lookup x worldList ->
bracket (mkVty =<< userConfig) shutdown \vty ->
2022-12-03 11:50:06 -08:00
loop vty Game {
gameWorlds = pure w,
gameFlat = True
}
2022-12-02 20:56:58 -08:00
_ ->
do putStrLn "Usage: parabox <worldname>"
putStrLn ""
putStrLn "Available worlds:"
mapM_ putStrLn (Map.keys worldList)
2022-11-30 13:38:12 -08:00
2022-12-03 11:50:06 -08:00
loop :: Vty -> Game -> IO ()
loop vty game =
do let world = NonEmpty.head (gameWorlds game)
update vty (render (gameFlat game) (NonEmpty.head (gameWorlds game)))
2022-11-30 13:38:12 -08:00
ev <- nextEvent vty
case ev of
EvKey key _modifier ->
case key of
2022-12-03 11:50:06 -08:00
KUp -> loop vty game{ gameWorlds = NonEmpty.cons (move world (-1,0)) (gameWorlds game) }
KDown -> loop vty game{ gameWorlds = NonEmpty.cons (move world (1,0) ) (gameWorlds game) }
KLeft -> loop vty game{ gameWorlds = NonEmpty.cons (move world (0,-1)) (gameWorlds game) }
KRight -> loop vty game{ gameWorlds = NonEmpty.cons (move world (0,1) ) (gameWorlds game) }
KChar 'r' -> loop vty game{ gameWorlds = pure (NonEmpty.last (gameWorlds game)) }
2022-11-30 13:38:12 -08:00
KChar 'z'
2022-12-03 11:50:06 -08:00
| Just worlds <- NonEmpty.nonEmpty (NonEmpty.tail (gameWorlds game)) ->
loop vty game{ gameWorlds = worlds }
2022-11-30 13:38:12 -08:00
KEsc -> pure ()
2022-12-03 11:50:06 -08:00
KChar 'f' -> loop vty game{ gameFlat = not (gameFlat game) }
_ -> loop vty game
_ -> loop vty game
2022-12-02 18:49:26 -08:00
2022-12-02 20:56:58 -08:00
worldList :: Map.Map String World
worldList = Map.fromList
[ ("world0", world0)
, ("small", smallWorld)
, ("center8", center8)
, ("center13", center13)
, ("clone11", clone11)
, ("transfer14", transfer14)
2022-12-03 11:50:06 -08:00
, ("open4", open4)
2022-12-03 13:33:02 -08:00
, ("cycle10", cycle10)
, ("player10", player10)
, ("player11", player11)
, ("player18", player18)
2022-12-02 20:56:58 -08:00
]
2022-12-02 20:53:45 -08:00
2022-12-02 18:49:26 -08:00
smallWorld :: World
smallWorld =
World
(Map.fromList
[('a',
Box (Location 'a' 0 0)
(Original (makeWalls [
"▓▓▓▓▓▓▓▓▓",
"▓ ▓ ▓",
"▓ ▓ ▓",
"▓▓▓▓ ▓",
"▓ ▓",
"▓ ▓",
"▓ ▓",
"▓ ▓",
"▓▓▓▓▓▓▓▓▓"
]))
2022-12-03 13:33:02 -08:00
(withForeColor defAttr black) False),
2022-12-02 18:49:26 -08:00
('1',
Box
(Location 'a' (-3) (-3))
(Original (makeWalls (replicate 9 (replicate 9 ' '))))
2022-12-03 13:33:02 -08:00
(withForeColor defAttr yellow) False),
2022-12-02 18:49:26 -08:00
('2',
Box
(Location 'a' (-3) (-2))
(Original (makeWalls (replicate 9 (replicate 9 ' '))))
2022-12-03 13:33:02 -08:00
(withForeColor defAttr magenta) False),
2022-12-02 18:49:26 -08:00
('3',
Box
(Location 'a' (-2) (-3))
(Original (makeWalls (replicate 9 (replicate 9 ' '))))
2022-12-03 13:33:02 -08:00
(withForeColor defAttr blue) False),
2022-12-02 18:49:26 -08:00
('4',
Box
(Location 'a' (-2) (-2))
(Original (makeWalls (replicate 9 (replicate 9 ' '))))
2022-12-03 13:33:02 -08:00
(withForeColor defAttr green) False),
2022-12-02 18:49:26 -08:00
('b',
Box
(Location '1' 0 0)
(Original (solid 9))
2022-12-03 13:33:02 -08:00
(withForeColor defAttr red) True)
2022-12-02 18:49:26 -08:00
]) 'b'
2022-12-02 20:53:45 -08:00
Set.empty
(Location 'b' 0 0)
2022-12-02 19:57:04 -08:00
center8 :: World
center8 =
World
(Map.fromList
[('a',
Box (Location 'a' 3 (-3))
(Original (makeWalls [
"▓▓▓▓▓▓▓▓▓",
"▓▓▓▓▓▓▓▓▓",
"▓▓ ▓▓",
"▓▓ ▓▓",
"▓ ▓▓",
"▓ ▓▓",
"▓▓▓▓ ▓▓▓▓",
"▓ ▓▓ ▓▓",
"▓▓▓▓▓▓▓▓▓"
]))
2022-12-03 13:33:02 -08:00
(withForeColor defAttr black)
False),
2022-12-02 19:57:04 -08:00
('1',
Box
(Location 'a' 0 0)
(Original (makeWalls [
" ▓▓",
" ▓▓▓▓▓",
" ",
" ",
" ",
" ",
" ",
" ",
" "
]))
2022-12-03 13:33:02 -08:00
(withForeColor defAttr green)
False),
2022-12-02 19:57:04 -08:00
('2',
Box
(Location '1' (-4) 0)
(Original (solid 9))
2022-12-03 13:33:02 -08:00
(withForeColor defAttr yellow)
True),
2022-12-02 19:57:04 -08:00
('b',
Box
(Location 'a' (-1) 0)
(Original (solid 9))
2022-12-03 13:33:02 -08:00
(withForeColor defAttr red)
True)
2022-12-02 19:57:04 -08:00
]) 'b'
2022-12-02 20:53:45 -08:00
Set.empty
(Location 'a' 3 2)
2022-12-02 19:57:04 -08:00
center13 :: World
center13 =
World
(Map.fromList
[('a',
Box (Location 'a' 3 (-3))
(Original (makeWalls [
"▓▓▓▓▓▓▓▓▓",
"▓ ▓",
"▓ ▓",
"▓ ▓",
"▓ ▓",
"▓ ▓▓▓ ▓▓",
"▓ ▓ ▓ ▓▓",
"▓ ▓▓ ▓",
"▓▓▓▓▓▓▓▓▓"
]))
2022-12-03 13:33:02 -08:00
(withForeColor defAttr cyan)
False),
2022-12-02 19:57:04 -08:00
('1',
Box
(Location 'a' (-1) 1)
(Original (makeWalls [
" ",
" ▓▓▓▓▓▓▓ ",
" ▓▓▓▓▓▓▓ ",
" ▓▓▓▓▓▓▓ ",
" ▓▓▓▓▓▓▓ ",
" ▓▓▓▓▓▓▓ ",
" ▓▓▓▓▓▓▓ ",
" ▓▓▓▓▓▓▓ ",
" "
]))
2022-12-03 13:33:02 -08:00
(withForeColor defAttr green)
False),
2022-12-02 19:57:04 -08:00
('2',
Box
(Location 'a' (-1) (-1))
(Original (solid 9))
2022-12-03 13:33:02 -08:00
(withForeColor defAttr yellow)
True),
2022-12-02 19:57:04 -08:00
('b',
Box
(Location 'a' (-3) 0)
(Original (solid 9))
2022-12-03 13:33:02 -08:00
(withForeColor defAttr red)
True)
2022-12-02 19:57:04 -08:00
]) 'b'
2022-12-02 20:53:45 -08:00
Set.empty
(Location 'a' 2 0)
2022-12-02 19:57:04 -08:00
clone11 :: World
clone11 =
World
(Map.fromList
[('a',
Box (Location 'a' (-2) 2)
(Original (makeWalls [
"▓▓▓▓▓▓▓▓▓",
"▓ ▓ ▓",
"▓ ▓ ▓",
"▓ ▓ ▓",
"",
"▓ ▓ ▓",
"▓ ▓ ▓",
"▓▓▓ ▓▓▓",
"▓▓▓▓▓▓▓▓▓"
]))
2022-12-03 13:33:02 -08:00
(withForeColor defAttr green)
False),
2022-12-02 19:57:04 -08:00
('A',
Box
(Location 'a' 0 2)
(Link 'a')
2022-12-03 13:33:02 -08:00
(withForeColor defAttr green)
True),
2022-12-02 19:57:04 -08:00
('b',
Box
(Location 'a' 0 (-2))
(Original (solid 9))
2022-12-03 13:33:02 -08:00
(withForeColor defAttr red)
True)
2022-12-02 20:53:45 -08:00
])
'b'
(Set.fromList [Location 'a' (-1) (-3), Location 'a' (-2) (-3)])
(Location 'a' (-3) (-3))
transfer14 :: World
transfer14 =
World
(Map.fromList
[('a',
Box (Location 'a' 1 1)
(Original (makeWalls [
" ",
" ",
" ",
" ",
"",
" ",
" ",
" ",
" "
]))
2022-12-03 13:33:02 -08:00
(withForeColor defAttr cyan)
False),
2022-12-02 20:53:45 -08:00
('g',
Box
(Location 'a' (-1) (-1))
(Original (makeWalls [
" ▓▓▓ ",
" ▓ ▓ ",
" ",
"",
"▓▓ ▓ ▓▓",
"",
" ",
" ",
""
]))
2022-12-03 13:33:02 -08:00
(withForeColor defAttr green)
False),
2022-12-02 20:53:45 -08:00
('x',
Box
(Location 'g' 3 (-3))
(Original (makeWalls [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
]))
2022-12-03 13:33:02 -08:00
(withForeColor defAttr magenta)
False),
2022-12-02 20:53:45 -08:00
('b',
Box
(Location 'a' 1 (-1))
(Original (solid 9))
2022-12-03 13:33:02 -08:00
(withForeColor defAttr red)
True)
2022-12-02 20:53:45 -08:00
])
'b'
(Set.fromList [Location 'g' (-2) 0])
(Location 'g' (-3) 0)
2022-12-03 11:50:06 -08:00
open4 :: World
open4 =
World
(Map.fromList
[('a',
Box (Location 'a' 0 (-1))
(Original (makeWalls [
"▓▓▓▓▓▓▓▓▓",
"▓▓ ▓▓▓▓",
"▓▓ ▓",
"▓ ▓",
"▓▓ ▓",
"▓▓ ▓",
"▓▓ ▓",
"▓▓ ▓",
"▓▓ ▓"
]))
2022-12-03 13:33:02 -08:00
(withForeColor defAttr cyan)
False),
2022-12-03 11:50:06 -08:00
('g',
Box
(Location 'a' 2 (-1))
(Original (makeWalls [
"▓▓▓▓ ▓▓▓▓",
"▓▓▓▓ ▓▓▓▓",
"▓▓▓▓ ▓▓▓▓",
"▓▓▓▓ ▓▓▓▓",
"▓▓▓▓ ▓▓▓▓",
"▓▓▓▓ ▓▓▓▓",
"▓▓▓▓ ▓▓▓▓",
"▓▓▓▓ ▓▓▓▓",
"▓▓▓▓ ▓▓▓▓"
]))
2022-12-03 13:33:02 -08:00
(withForeColor defAttr green)
False),
2022-12-03 11:50:06 -08:00
('y',
Box
(Location 'a' 2 1)
(Original (makeWalls [
"▓▓▓▓▓▓ ▓▓",
"▓▓▓▓▓▓ ▓▓",
"▓▓▓▓▓▓▓▓▓",
"▓▓▓▓▓▓▓▓▓",
"▓▓▓▓▓▓▓▓▓",
"▓▓▓▓▓▓▓▓▓",
"▓▓▓▓▓▓▓▓▓",
"▓▓▓▓▓▓▓▓▓",
"▓▓▓▓▓▓▓▓▓"
]))
2022-12-03 13:33:02 -08:00
(withForeColor defAttr yellow)
False),
2022-12-03 11:50:06 -08:00
('b',
Box
(Location 'a' 0 1)
(Original (solid 9))
2022-12-03 13:33:02 -08:00
(withForeColor defAttr red)
True)
2022-12-03 11:50:06 -08:00
])
'b'
Set.empty
(Location 'y' (-3) 2)
world0 :: World
world0 = World {
worldButtons = Set.empty,
worldHome = Location '2' 0 0,
worldMe = 'b',
worldBoxes = Map.fromList
[('1', Box {
boxColor = withForeColor defAttr green,
boxLocation = Location '1' (-1) 0,
boxType = Original $ makeWalls [
"▓▓ ▓▓",
"▓ ▓",
"▓ ▓",
"▓ ▓",
"",
"▓ ▓ ▓",
"▓ ▓",
"▓ ▓",
"▓ ▓▓▓▓▓ ▓"
2022-12-03 13:33:02 -08:00
],
boxBoring = False
2022-12-03 11:50:06 -08:00
}),
('2', Box {
boxColor = withForeColor defAttr cyan,
boxLocation = Location '1' 1 1,
boxType = Original $ makeWalls [
"▓ ▓▓ ▓▓ ▓",
" ",
"",
"",
" ",
"▓ ▓",
"▓ ▓",
" ",
"▓ ▓▓ ▓▓ ▓"
2022-12-03 13:33:02 -08:00
],
boxBoring = False
2022-12-03 11:50:06 -08:00
}),
('₂', Box {
boxColor = withForeColor defAttr cyan,
boxLocation = Location '1' 2 (-1),
2022-12-03 13:33:02 -08:00
boxType = Link '2',
boxBoring = True
2022-12-03 11:50:06 -08:00
}),
('3', Box {
boxColor = withForeColor defAttr blue,
boxLocation = Location '2' 1 1,
boxType = Original $ makeWalls [
"▓▓▓▓▓▓▓▓▓",
" ",
"▓▓▓▓▓▓▓▓ ",
"▓▓ ▓▓▓ ",
"▓▓ ▓▓▓ ",
"▓▓▓▓ ▓▓▓ ",
"▓▓ ▓▓▓▓",
"▓▓ ▓▓▓▓",
"▓▓▓▓ ▓▓▓▓"
2022-12-03 13:33:02 -08:00
],
boxBoring = False
2022-12-03 11:50:06 -08:00
}),
('4', Box {
boxColor = withForeColor defAttr black,
boxLocation = Location 'b' (-3) 0,
boxType = Original $ makeWalls [
"▓▓▓ ▓▓▓",
"▓ ▓ ▓",
"▓ ▓",
"▓ ▓",
"▓ ▓",
"▓ ▓",
"▓ ▓",
"▓ ▓",
"▓▓▓▓ ▓▓▓▓"
2022-12-03 13:33:02 -08:00
],
boxBoring = False
2022-12-03 11:50:06 -08:00
}),
('b', Box {
boxColor = withForeColor defAttr red,
boxLocation = Location '1' 0 1,
boxType = Original $ makeWalls [
"▓▓▓▓▓▓▓▓▓",
"▓ ▓",
"▓ ▓",
"▓ ▓ ▓ ▓",
"▓ ▓",
"▓ ▓",
"▓ ▓",
"▓ ▓",
"▓▓▓▓▓▓▓▓▓"
2022-12-03 13:33:02 -08:00
],
boxBoring = True
2022-12-03 11:50:06 -08:00
}),
('x', Box {
boxColor = withForeColor defAttr yellow,
boxLocation = Location '1' 0 (-1),
boxType = Original $
makeWalls [
"▓▓ ▓ ",
" ",
" ▓ ▓▓▓ ",
"",
"▓ ▓▓▓▓",
" ▓▓▓ ",
" ▓ ▓▓▓ ",
" ",
2022-12-03 13:33:02 -08:00
"▓ ▓ ▓"],
boxBoring = False
2022-12-03 11:50:06 -08:00
}),
('y', Box {
boxColor = withForeColor defAttr magenta,
boxLocation = Location '1' 0 (-2),
boxType = Original $ makeWalls [
"▓▓ ▓ ",
" ",
"▓▓ ▓▓▓ ",
"▓▓ ",
" ▓▓▓▓",
"▓▓▓▓ ",
"▓▓ ▓▓▓ ",
" ",
2022-12-03 13:33:02 -08:00
"▓ ▓ ▓"],
boxBoring = False
2022-12-03 11:50:06 -08:00
}),
('i', Box {
boxColor = withForeColor defAttr black,
boxLocation = Location 'b' 0 (-2),
2022-12-03 13:33:02 -08:00
boxType = Original $ solid 9,
boxBoring = True
2022-12-03 11:50:06 -08:00
}),
('j', Box {
boxColor = withForeColor defAttr black,
boxLocation = Location 'b' 0 (-1),
2022-12-03 13:33:02 -08:00
boxType = Original $ solid 9,
boxBoring = True
2022-12-03 11:50:06 -08:00
}),
('k', Box {
boxColor = withForeColor defAttr black,
boxLocation = Location 'b' 0 0,
2022-12-03 13:33:02 -08:00
boxType = Original $ solid 9,
boxBoring = True
2022-12-03 11:50:06 -08:00
}),
('l', Box {
boxColor = withForeColor defAttr black,
boxLocation = Location 'b' 0 1,
2022-12-03 13:33:02 -08:00
boxType = Original $ solid 9,
boxBoring = True
2022-12-03 11:50:06 -08:00
}),
('₁', Box {
boxColor = withForeColor defAttr green,
boxLocation = Location '1' 2 1,
2022-12-03 13:33:02 -08:00
boxType = Link '1',
boxBoring = True
2022-12-03 11:50:06 -08:00
})
]
2022-12-03 13:33:02 -08:00
}
cycle10 :: World
cycle10 =
World
(Map.fromList
[('g',
Box (Location 'g' 3 3)
(Original (makeWalls [
"▓▓▓▓ ▓▓▓▓",
"▓▓▓▓ ▓▓▓▓",
"▓▓▓▓ ▓▓▓▓",
"▓ ▓▓▓",
"▓ ▓▓▓",
"▓ ▓▓▓",
"▓ ▓▓▓",
"▓ ▓ ▓",
"▓ ▓ ▓"
]))
(withForeColor defAttr green)
False),
('G',
Box
(Location 'g' 0 (-2))
(Link 'g')
(withForeColor defAttr green)
True),
('p',
Box
(Location 'g' 0 0)
(Original (makeWalls [
"▓▓▓▓▓▓▓▓▓",
"▓▓▓▓▓▓▓▓▓",
"▓▓ ▓▓▓ ▓▓",
"▓▓▓▓▓▓▓▓▓",
"▓▓▓▓▓▓▓▓▓",
"▓▓▓▓▓▓▓▓▓",
"▓▓▓▓▓▓▓▓▓",
"▓▓▓▓▓▓▓▓▓",
"▓▓▓▓▓▓▓▓▓"
]))
(withForeColor defAttr magenta)
True),
('y',
Box
(Location 'g' (-4) 0)
(Original (makeWalls [
"▓▓▓▓▓▓▓▓▓",
"▓▓▓▓▓▓▓▓▓",
"▓▓▓▓▓▓▓▓▓",
"▓▓▓▓▓▓▓▓▓",
"▓▓▓▓▓▓▓ ",
"▓▓▓▓▓▓▓▓▓",
"▓▓▓▓▓▓▓▓▓",
"▓▓▓▓▓▓▓▓▓",
"▓▓▓▓▓▓▓▓▓"
]))
(withForeColor defAttr yellow)
False),
('1',
Box
(Location 'g' (-2) 0)
(Original (solid 9))
(withForeColor defAttr red)
True),
('2',
Box
(Location 'g' 2 0)
(Original (solid 9))
(withForeColor defAttr red)
True),
('3',
Box
(Location 'g' 2 (-2))
(Original (solid 9))
(withForeColor defAttr red)
True)
])
'p'
Set.empty
(Location 'y' 0 3)
player10 :: World
player10 =
World
(Map.fromList
[('a',
Box (Location 'a' 3 3)
(Original (makeWalls [
"▓▓▓▓▓▓▓▓▓",
"▓▓ ▓▓",
"▓▓ ▓▓",
"▓▓ ▓▓",
"▓▓ ▓▓",
"▓▓ ▓▓▓▓▓▓",
"▓▓ ▓▓▓",
"▓▓ ▓ ▓",
"▓▓▓▓▓▓▓▓▓"
]))
(withForeColor defAttr cyan)
False),
('p',
Box
(Location 'a' (-2) 0)
(Link 'c')
(withForeColor defAttr magenta)
True),
('C',
Box
(Location 'a' 0 2)
(Link 'c')
(withForeColor defAttr magenta)
True),
('c',
Box
(Location 'a' (-1) 0)
(Original (makeWalls [
"▓▓▓▓▓▓▓▓▓",
"▓▓▓▓▓▓▓▓▓",
"▓▓▓▓▓▓▓▓▓",
"▓▓▓▓▓ ",
"▓▓▓▓▓ ",
"▓▓▓▓▓ ",
"▓▓▓▓▓▓▓▓▓",
"▓▓▓▓▓▓▓▓▓",
"▓▓▓▓▓▓▓▓▓"
]))
(withForeColor defAttr magenta)
False),
('1',
Box
(Location 'a' (-3) 2)
(Original (solid 9))
(withForeColor defAttr blue)
True)
])
'p'
(Set.singleton (Location 'a' 2 1))
(Location 'a' 3 1)
player11 :: World
player11 =
World
(Map.fromList
[('_',
Box (Location '_' 3 3)
(Original (makeWalls [
"▓▓▓▓▓▓▓▓▓",
"▓▓▓▓▓▓▓▓▓",
"▓▓▓▓▓▓▓▓▓",
"▓▓▓▓▓▓▓▓▓",
"▓▓▓▓ ▓▓▓▓",
"▓▓▓▓▓▓▓▓▓",
"▓▓▓▓▓▓▓▓▓",
"▓▓▓▓▓▓▓ ▓",
"▓▓▓▓▓▓▓▓▓"
]))
(withForeColor defAttr cyan)
True),
('a',
Box
(Location '_' 0 0)
(Original (makeWalls [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
]))
(withForeColor defAttr magenta)
True),
('A',
Box
(Location 'a' 0 0)
(Link 'a')
(withForeColor defAttr brightMagenta)
True),
('b',
Box
(Location 'a' (-1) (-4))
(Original (makeWalls [
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" ",
" "
]))
(withForeColor defAttr yellow)
False),
('1',
Box
(Location 'a' 0 4)
(Original (solid 9))
(withForeColor defAttr blue)
True)
])
'A'
(Set.fromList [Location 'a' 1 4, Location 'a' (-1) 4])
(Location 'a' 1 (-4))
player18 :: World
player18 =
World
(Map.fromList
[('c',
Box (Location 'c' (-1) (-1))
(Original (makeWalls [
"▓▓▓▓▓▓▓▓▓",
"▓▓▓▓▓▓▓▓▓",
"▓▓ ▓▓",
"▓▓ ▓▓",
"▓▓ ",
"▓▓ ▓▓",
"▓▓ ▓▓",
"▓▓▓▓▓▓▓▓▓",
"▓▓▓▓▓▓▓▓▓"
]))
(withForeColor defAttr yellow)
False),
('u',
Box
(Location 'c' 0 0)
(Original (makeWalls [
"▓▓▓▓ ▓▓▓▓",
"▓▓▓▓ ▓▓▓▓",
"▓▓▓▓ ▓▓▓▓",
"▓▓ ▓▓",
"▓▓ ▓▓",
"▓▓ ▓▓",
"▓▓▓▓▓▓▓▓▓",
"▓▓▓▓▓▓▓▓▓",
"▓▓▓▓▓▓▓▓▓"
]))
(withForeColor defAttr magenta)
False),
('1',
Box
(Location 'c' (-1) 1)
(Original (solid 9))
(withForeColor defAttr blue)
True),
('2',
Box
(Location 'c' 1 (-1))
(Original (solid 9))
(withForeColor defAttr blue)
True),
('3',
Box
(Location 'c' 1 1)
(Original (solid 9))
(withForeColor defAttr blue)
True)
])
'u'
(Set.singleton (Location 'u' (-1) 2))
(Location 'u' 1 (-2))