summaryrefslogtreecommitdiff
path: root/src/Sequence
diff options
context:
space:
mode:
authorGregor Kleen <pngwjpgh@users.noreply.github.com>2016-07-08 01:31:19 +0200
committerGregor Kleen <pngwjpgh@users.noreply.github.com>2016-07-08 01:32:01 +0200
commitf235d13556440d9ae6e4cf0885f68e1794b81e61 (patch)
treee20f310b7421b25b72dc97a2bbb3e2ad9551fb39 /src/Sequence
parent3496781f3ebad2901b60f19b388c893d8ad8aa37 (diff)
download2017-01-16_17:13:37-f235d13556440d9ae6e4cf0885f68e1794b81e61.tar
2017-01-16_17:13:37-f235d13556440d9ae6e4cf0885f68e1794b81e61.tar.gz
2017-01-16_17:13:37-f235d13556440d9ae6e4cf0885f68e1794b81e61.tar.bz2
2017-01-16_17:13:37-f235d13556440d9ae6e4cf0885f68e1794b81e61.tar.xz
2017-01-16_17:13:37-f235d13556440d9ae6e4cf0885f68e1794b81e61.zip
More logging
Diffstat (limited to 'src/Sequence')
-rw-r--r--src/Sequence/Utils.hs8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/Sequence/Utils.hs b/src/Sequence/Utils.hs
index 1d34a4f..fbf3c7d 100644
--- a/src/Sequence/Utils.hs
+++ b/src/Sequence/Utils.hs
@@ -4,6 +4,7 @@ module Sequence.Utils
4 ( withArg, withFocus, withFocus' 4 ( withArg, withFocus, withFocus'
5 , focusState 5 , focusState
6 , toName, toDesc 6 , toName, toDesc
7 , outputLogged
7 , Argument(..) 8 , Argument(..)
8 , Completion(..) 9 , Completion(..)
9 , module Sequence.Utils.Ask 10 , module Sequence.Utils.Ask
@@ -47,6 +48,8 @@ import Sequence.Utils.Ask
47import Sequence.Contact.Types 48import Sequence.Contact.Types
48import Sequence.Formula 49import Sequence.Formula
49 50
51import Text.Regex (mkRegex, subRegex)
52
50class Argument a st | a -> st where 53class Argument a st | a -> st where
51 arg :: String -> Sh st (Maybe a) 54 arg :: String -> Sh st (Maybe a)
52 55
@@ -85,6 +88,11 @@ toDesc ident = do
85 Just dmg -> return $ name ++ " " ++ show dmg 88 Just dmg -> return $ name ++ " " ++ show dmg
86 Nothing -> return name 89 Nothing -> return name
87 90
91outputLogged :: EntityIdentifier -> String -> Sh GameState ()
92outputLogged id str = gLog <>= pure (id, clean str) >> shellPutStrLn str
93 where
94 clean str = subRegex (mkRegex "(\x9B|\x1B\\[)[0-?]*[ -/]*[@-~]") str "" -- remove ANSI escapes
95
88instance Completion EntityIdentifier GameState where 96instance Completion EntityIdentifier GameState where
89 completableLabel _ = "<entity>" 97 completableLabel _ = "<entity>"
90 complete _ st prefix = return . filter ((isPrefixOf `on` CI.foldCase) prefix) . map ((evalState ?? st) . toName) . Map.keys $ st ^. gEntities 98 complete _ st prefix = return . filter ((isPrefixOf `on` CI.foldCase) prefix) . map ((evalState ?? st) . toName) . Map.keys $ st ^. gEntities