-- Copyright (c) 2014-2015 Jonathan M. Lange -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. {-# LANGUAGE MultiParamTypeClasses #-} {-# LANGUAGE NoImplicitPrelude #-} {-# LANGUAGE OverloadedStrings #-} {-# OPTIONS_GHC -fno-warn-orphans #-} import BasicPrelude hiding (round) import qualified Haverer.Engine as E import Haverer ( toPlayerSet, finalScores, scores, winners, roundsPlayed ) import Haverer.CLI.CommandLine ( ConsoleText(..), formatScores, pickNumPlayers, pickCardToPlay, pickPlay, ) import Haverer.CLI.Prompt (underline) import Haverer.Internal.Error (assertRight) main :: IO () main = do result <- pickNumPlayers let players = assertRight ("Couldn't make set for "++ show result ++ " players: ") (makePlayerSet result) void $ E.playGame players where makePlayerSet n = toPlayerSet $ take n $ map PlayerId [1..] newtype PlayerId = PlayerId Int deriving (Show, Eq, Ord) instance ConsoleText PlayerId where toText (PlayerId i) = "Player #" ++ show i instance E.MonadEngine IO PlayerId where badPlay e = putStrLn $ "ERROR: " ++ show e choosePlay players _ dealt hand = do card <- pickCardToPlay (dealt, hand) putStrLn $ "You chose: " ++ show card play <- pickPlay card players return (card, play) handStarted = putStrLn . toText handOver event = putStrLn $ "\n" ++ toText event ++ "\n" gameStarted _ = do putStrLn $ underline '=' "GAME BEGIN" putStrLn "" gameOver outcome = do putStrLn "GAME OVER" case winners outcome of [x] -> putStrLn $ "The winner is: " ++ toText x ++ "!" xs -> putStrLn $ "The winners are: " ++ intercalate ", " (map toText xs) ++ "!" putStrLn $ formatScores $ finalScores outcome roundStarted game _ = do putStrLn $ formatScores $ scores game putStrLn $ underline '=' ("ROUND #" ++ show (roundsPlayed game + 1) ++ " BEGIN") putStrLn "" roundOver v = do putStrLn "ROUND OVER" putStrLn $ toText v putStrLn ""