gameServer/HWProtoChecker.hs
author mikade
Sat, 13 Apr 2013 19:31:31 +0200
branch0.9.19
changeset 8877 928050d58c2b
parent 8507 f4475782cf45
child 9109 878f06e9c484
permissions -rw-r--r--
remove delays from "one of everything" weaponset it doesn't make sense to have the default delays on stuff like baseball bat, cake etc. when you can just use melons/hellish grenades etc. straight from the go

{-# LANGUAGE OverloadedStrings #-}
module HWProtoChecker where

import qualified Data.Map as Map
import Data.Maybe
import Data.List
import Control.Monad.Reader
--------------------------------------
import CoreTypes
import Actions
import Utils
import HandlerUtils
import RoomsAndClients
import EngineInteraction


handleCmd_checker :: CmdHandler

handleCmd_checker ["READY"] = return [CheckRecord]

handleCmd_checker ["CHECKED", "FAIL", msg] = do
    isChecking <- liftM (isJust . checkInfo) thisClient
    if not isChecking then
        return []
        else
        return [CheckFailed msg, ModifyClient $ \c -> c{checkInfo = Nothing}]


handleCmd_checker ("CHECKED" : "OK" : info) = do
    isChecking <- liftM (isJust . checkInfo) thisClient
    if not isChecking then
        return []
        else
        return [CheckSuccess info, ModifyClient $ \c -> c{checkInfo = Nothing}]

handleCmd_checker _ = return [ProtocolError "Unknown command"]