summaryrefslogtreecommitdiff
path: root/src/Main.hs
blob: f0af6c12e0cf431fc10438f7eac57f7a4384d4d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{-# LANGUAGE DeriveAnyClass    #-}
{-# LANGUAGE DeriveGeneric     #-}
{-# LANGUAGE NamedFieldPuns    #-}
{-# LANGUAGE OverloadedStrings #-}

module Main where

import           Data.Maybe                    (fromMaybe)
import           WithCli

import           CheckMap                      (runLinter)
import           Data.Aeson                    (encode)
import           Data.Aeson.Encode.Pretty      (encodePretty)
import qualified Data.ByteString.Lazy          as LB
import qualified Data.ByteString.Lazy.Encoding as LB
import           Data.Text.Lazy                as T
import           System.IO                     (utf8)
import           Tiled2

-- | the options this cli tool can take
data Options = Options
  { inpath       :: Maybe String
  -- ^ path to input map files
  , outpath      :: Maybe String
  -- ^ path to out directory (should be empty)
  , allowScripts :: Bool
  -- ^ pass --allowScripts to allow javascript in map
  , scriptInject :: Maybe String
  -- ^ optional filepath to javascript that should be injected
  , json         :: Bool
  -- ^ emit json if --json was given
  , pretty       :: Bool
  -- ^ pretty-print the json to make it human-readable
  } deriving (Show, Generic, HasArguments)


main :: IO ()
main = withCli run

run :: Options -> IO ()
run options = do
  -- TODO: what if parsing fails and we get Left err?
  Right waMap <- loadTiledmap $ fromMaybe "example.json" (inpath options)

  let lints = runLinter waMap

  if json options
    then printLB
    $ if pretty options then encodePretty lints else encode lints
    else print lints

-- | haskell's many string types are FUN …
printLB :: LB.ByteString -> IO ()
printLB = putStrLn . T.unpack . LB.decode utf8