wizard-wipeout/src-server/Server/Types.hs

93 lines
2 KiB
Haskell
Raw Normal View History

2023-12-07 23:45:33 +00:00
{-# LANGUAGE DeriveGeneric #-}
2023-12-08 04:19:32 +00:00
module Server.Types where
import Control.Concurrent
import qualified Control.Concurrent.STM as STM
2023-12-08 04:19:32 +00:00
import Control.Monad.RWS.Strict
2023-12-07 23:45:33 +00:00
import qualified Data.Aeson as Aeson
2023-12-08 04:19:32 +00:00
import Data.Time.Clock
2023-12-11 08:49:24 +00:00
import Data.UUID
2023-12-07 23:45:33 +00:00
import GHC.Generics
2023-12-09 12:58:59 +00:00
import Network.Socket
2023-12-08 04:19:32 +00:00
import Options.Applicative as O
--internal imports
2023-12-08 04:19:32 +00:00
import Library.Types
2023-12-08 01:26:29 +00:00
data Settings = Settings
{ setSocketPath :: FilePath
, setMapRows :: Int
, setMapColumns :: Int
, setSpawnerProbability :: Float
2023-12-08 04:19:32 +00:00
, setFPS :: Int
2024-02-02 07:16:28 +00:00
, setClientMaxTimeout :: Float
, setFramesPerPing :: Int
2023-12-07 23:45:33 +00:00
}
deriving (Show, Generic)
2023-12-08 01:26:29 +00:00
instance Aeson.FromJSON Settings
2023-12-08 04:19:32 +00:00
newtype Options = Options
2023-12-08 01:26:29 +00:00
{ optConfLoc :: FilePath
}
2023-12-08 04:19:32 +00:00
options :: O.Parser Options
options = Options
<$> strOption
( long "configuration"
<> short 'c'
<> metavar "FILEPATH"
<> help "Location of the configuration YAML-file"
)
data ReaderContainer = ReaderContainer
2024-02-02 07:16:28 +00:00
{ rcMap :: ServerMap
, rcFPS :: Int
, rcFramesPerPing :: Int
, rcClientMaxTimeout :: Float
, rcMainSocket :: Socket
2023-12-08 04:19:32 +00:00
}
deriving (Eq, Show)
data StateContainer = StateContainer
2023-12-11 10:04:29 +00:00
{ scSpawners :: [Spawner]
, scPlayers :: STM.TMVar [Player]
, scServerState :: STM.TMVar ServerState
2023-12-08 04:19:32 +00:00
, scServerLastTick :: UTCTime
, scClientSockets :: STM.TMVar [ClientComms]
2023-12-11 08:49:24 +00:00
, scMessageQueue :: STM.TQueue ClientMessage
2023-12-08 04:19:32 +00:00
}
data ClientComms = ClientComms
{ ccUUID :: Maybe UUID
, ccSocket :: Socket
, ccListener :: ThreadId
}
deriving (Eq)
data Player = Player
2024-02-02 07:16:28 +00:00
{ playerId :: UUID
, playerWizard :: Wizard
, playerReady :: Bool
2024-02-02 15:34:50 +00:00
, playerLastPong :: (UTCTime, UUID)
}
deriving (Eq, Show)
2023-12-10 01:02:09 +00:00
-- | Data object for storing the server's state
data ServerState = ServerState
{ serverGameOver :: Bool -- ^ global game over state (only one contestant left)
, serverStop :: Bool -- ^ Server shutdown
}
deriving (Show, Eq)
type Game = RWST ReaderContainer String StateContainer IO