mtlstats/src/Mtlstats/Prompt.hs

143 lines
4.0 KiB
Haskell
Raw Normal View History

2019-08-24 16:23:56 -04:00
{- |
mtlstats
Copyright (C) 2019 Rhéal Lamothe
<rheal.lamothe@gmail.com>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or (at
your option) any later version.
This program is distributed in the hope that it will be useful, but
WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
-}
module Mtlstats.Prompt (
-- * Prompt Functions
drawPrompt,
promptHandler,
2019-08-24 21:15:50 -04:00
strPrompt,
2019-08-24 19:02:29 -04:00
numPrompt,
-- * Individual prompts
2019-08-31 11:28:09 -04:00
gameYearPrompt,
gameDayPrompt,
2019-08-25 10:04:37 -04:00
otherTeamPrompt,
2019-08-24 20:14:49 -04:00
homeScorePrompt,
2019-09-09 13:04:39 -04:00
awayScorePrompt,
2019-09-09 22:50:44 -04:00
playerNumPrompt,
playerNamePrompt,
2019-09-09 22:57:36 -04:00
playerPosPrompt
2019-08-24 16:23:56 -04:00
) where
import Control.Monad (when)
import Control.Monad.Trans.State (gets, modify)
import Data.Char (isDigit, toUpper)
import Data.Foldable (forM_)
import Lens.Micro ((^.), (.~), (?~))
import Lens.Micro.Extras (view)
import Text.Read (readMaybe)
import qualified UI.NCurses as C
import Mtlstats.Actions
import Mtlstats.Types
-- | Draws the prompt to the screen
drawPrompt :: Prompt -> ProgState -> C.Update C.CursorMode
drawPrompt p s = do
promptDrawer p s
return C.CursorVisible
-- | Event handler for a prompt
promptHandler :: Prompt -> C.Event -> Action ()
promptHandler p (C.EventCharacter '\n') = do
val <- gets $ view inputBuffer
modify $ inputBuffer .~ ""
promptAction p val
promptHandler p (C.EventCharacter c) = let
c' = toUpper c
in when (promptCharCheck p c') $
modify $ addChar c'
promptHandler _ (C.EventSpecialKey C.KeyBackspace) =
modify removeChar
promptHandler p (C.EventSpecialKey (C.KeyFunction k)) =
promptFunctionKey p k
promptHandler _ _ = return ()
2019-08-24 21:15:50 -04:00
-- | Builds a string prompt
strPrompt
:: String
-- ^ The prompt string
-> (String -> Action ())
-- ^ The callback function for the result
-> Prompt
strPrompt pStr act = Prompt
{ promptDrawer = drawSimplePrompt pStr
, promptCharCheck = const True
, promptAction = act
, promptFunctionKey = const $ return ()
}
2019-08-24 16:23:56 -04:00
-- | Builds a numeric prompt
numPrompt
:: String
-- ^ The prompt string
-> (Int -> Action ())
-- ^ The callback function for the result
-> Prompt
numPrompt pStr act = Prompt
2019-08-24 21:15:50 -04:00
{ promptDrawer = drawSimplePrompt pStr
2019-08-24 16:23:56 -04:00
, promptCharCheck = isDigit
, promptAction = \inStr -> forM_ (readMaybe inStr) act
, promptFunctionKey = const $ return ()
}
2019-08-24 19:02:29 -04:00
2019-08-31 11:28:09 -04:00
-- | Prompts for the game year
gameYearPrompt :: Prompt
gameYearPrompt = numPrompt "Game year: " $
modify . (progMode.gameStateL.gameYear ?~)
-- | Prompts for the day of the month the game took place
gameDayPrompt :: Prompt
gameDayPrompt = numPrompt "Day of month: " $
modify . (progMode.gameStateL.gameDay ?~)
2019-08-31 11:24:55 -04:00
-- | Prompts for the other team name
2019-08-25 10:04:37 -04:00
otherTeamPrompt :: Prompt
otherTeamPrompt = strPrompt "Other team: " $
2019-08-31 11:27:02 -04:00
modify . (progMode.gameStateL.otherTeam .~)
2019-08-25 10:04:37 -04:00
2019-08-31 11:24:55 -04:00
-- | Prompts for the home score
2019-08-24 19:02:29 -04:00
homeScorePrompt :: Prompt
homeScorePrompt = numPrompt "Home score: " $
2019-08-31 11:27:02 -04:00
modify . (progMode.gameStateL.homeScore ?~)
2019-08-24 20:14:49 -04:00
2019-08-31 11:24:55 -04:00
-- | Prompts for the away score
2019-08-24 20:14:49 -04:00
awayScorePrompt :: Prompt
awayScorePrompt = numPrompt "Away score: " $
2019-08-31 11:27:02 -04:00
modify . (progMode.gameStateL.awayScore ?~)
2019-08-24 21:15:50 -04:00
2019-09-09 13:04:39 -04:00
-- | Prompts for a new player's number
playerNumPrompt :: Prompt
playerNumPrompt = numPrompt "Player number: " $
modify . (progMode.createPlayerStateL.cpsNumber ?~)
2019-09-09 22:50:44 -04:00
-- | Prompts for a new player's name
playerNamePrompt :: Prompt
playerNamePrompt = strPrompt "Player name: " $
modify . (progMode.createPlayerStateL.cpsName .~)
2019-09-09 22:57:36 -04:00
-- | Prompts for a new player's position
playerPosPrompt :: Prompt
playerPosPrompt = strPrompt "Player position: " $
modify . (progMode.createPlayerStateL.cpsPosition .~)
2019-08-24 21:15:50 -04:00
drawSimplePrompt :: String -> ProgState -> C.Update ()
2019-08-31 11:27:02 -04:00
drawSimplePrompt pStr s = C.drawString $ pStr ++ s^.inputBuffer