gameServer/OfficialServer/GameReplayStore.hs
author sheepluva
Sat, 17 Sep 2011 19:43:45 +0200
branch0.9.16
changeset 5953 57af6f3abf4a
parent 5143 649d87819682
child 5996 2c72fe81dd37
permissions -rw-r--r--
fix style of lobby chatroom user context menu

{-# 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)