gameServer/OfficialServer/GameReplayStore.hs
author unc0rr
Fri, 02 Sep 2011 12:06:24 +0400
changeset 5734 d710db47a1ef
parent 5143 649d87819682
child 5996 2c72fe81dd37
permissions -rw-r--r--
Implement save button on game statistics page. I'm surprised I did it. Closes issue #264

{-# LANGUAGE ScopedTypeVariables #-}
module OfficialServer.GameReplayStore where

import CoreTypes
import Data.Time
import Control.Exception as E
import qualified Data.Map as Map
import Data.Sequence()
import System.Log.Logger

saveReplay :: RoomInfo -> IO ()
saveReplay r = do
    time <- getCurrentTime
    let fileName = "replays/" ++ show time
    let replayInfo = (teamsAtStart r, Map.toList $ mapParams r, Map.toList $ params r, roundMsgs r)
    E.catch
        (writeFile fileName (show replayInfo))
        (\(e :: IOException) -> warningM "REPLAYS" $ "Couldn't write to " ++ fileName ++ ": " ++ show e)